We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3ca15d commit 6f289eeCopy full SHA for 6f289ee
cloudfoundry_client/v3/apps.py
@@ -24,3 +24,6 @@ def get_env(self, application_guid: str) -> JsonObject:
24
25
def get_routes(self, application_guid: str) -> JsonObject:
26
return super(AppManager, self)._get("%s%s/%s/routes" % (self.target_endpoint, self.entity_uri, application_guid))
27
+
28
+ def get_manifest(self, application_guid: str) -> str:
29
+ return self.client.get(url="%s%s/%s/manifest" % (self.target_endpoint, self.entity_uri, application_guid)).text
0 commit comments