Skip to main content

Methods

Fetch all deployments for a given application ID with optional filters such as deployment ID or version. Supports pagination.

Parameters

str
required
Id of the application
typing.Optional[int]
Number of items per page
typing.Optional[int]
Number of items to skip
typing.Optional[str]
Deployment version. Filter deployments by version.
typing.Optional[str]
Deployment ID. Filter deployments by a specific ID.

Returns

SyncPager[Deployment, ListApplicationDeploymentsResponse]
🔗 ListApplicationDeploymentsResponseList of deployments matching the provided filters.

Usage

Get Deployment associated with the provided application ID and deployment ID.

Parameters

str
required
Application id of the application
str
required
Deployment id of the deployment

Returns

GetApplicationDeploymentResponse
🔗 GetApplicationDeploymentResponseDeployment details returned successfully.

Usage