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

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

Returns

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

Usage

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

Parameters

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

Returns

GetApplicationDeploymentResponse
GetApplicationDeploymentResponse
🔗 GetApplicationDeploymentResponseDeployment details returned successfully.

Usage