You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -377,14 +378,20 @@ export class BackupManagementApi {
377
378
});
378
379
}
379
380
/**
380
-
*
381
+
* Retrieves a list of backups (database or filesystem) for the environment with status, size, and metadata. Supports filtering and ordering via query parameters.
381
382
* @summary List backups for an environment
382
383
* @param organisation The organisation ID
383
384
* @param application The application ID
384
385
* @param environment The environment ID
385
386
* @param type The backup type
387
+
* @param order Sort order for backups by creation date (asc = oldest first, desc = newest first)
388
+
* @param limit Maximum number of backups to return (max 100)
389
+
* @param createdBefore Only return backups created before this ISO 8601 timestamp (e.g., 2025-01-01T00:00:00Z)
390
+
* @param createdAfter Only return backups created after this ISO 8601 timestamp (e.g., 2024-12-01T00:00:00Z)
391
+
* @param status Filter backups by status
392
+
* @param nextToken Token for retrieving the next page of results
@@ -746,8 +747,8 @@ export class EnvironmentsApi {
746
747
});
747
748
}
748
749
/**
749
-
*
750
-
* @summary Update the compose for an environment
750
+
* Replaces the entire task definition for the environment based on the provided multi-container compose definition. This will create a new task definition revision and update the ECS service, triggering a redeployment. Optionally accepts minCapacity and maxCapacity at the root level for convenience.
751
+
* @summary Update Environment Compose Definition
751
752
* @param organisation The organisation ID
752
753
* @param application The application ID
753
754
* @param environment The environment ID
@@ -760,6 +761,13 @@ export class EnvironmentsApi {
0 commit comments