@rio-cloud/cdk-v2-constructs 6.12.1 → 6.12.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jsii +327 -16
- package/docs/API.md +242 -4
- package/docs/changelog.md +9 -0
- package/lib/datadogv2/datadog-lambda-instrumentation.js +3 -4
- package/lib/datadogv2/datadog-shared-secrets.d.ts +19 -2
- package/lib/datadogv2/datadog-shared-secrets.js +60 -1
- package/lib/datadogv2/secret-locator-custom-resource/on-create.cjs +117 -109
- package/lib/datadogv2/secret-locator-custom-resource/on-create.js +6 -2
- package/lib/fargate/codedeploy-custom-resources/create-deployment-is-complete.cjs +79 -75
- package/lib/fargate/codedeploy-custom-resources/create-deployment-on-create.cjs +79 -75
- package/lib/fargate/codedeploy-custom-resources/run-monitoring-test-suite-runner.cjs +309 -83
- package/node_modules/@aws-sdk/client-cloudformation/package.json +14 -14
- package/node_modules/@aws-sdk/client-codedeploy/package.json +14 -14
- package/node_modules/@aws-sdk/client-ecs/README.md +25 -1
- package/node_modules/@aws-sdk/client-ecs/dist-cjs/index.js +255 -11
- package/node_modules/@aws-sdk/client-ecs/dist-es/ECS.js +6 -0
- package/node_modules/@aws-sdk/client-ecs/dist-es/commands/DescribeServiceDeploymentsCommand.js +22 -0
- package/node_modules/@aws-sdk/client-ecs/dist-es/commands/DescribeServiceRevisionsCommand.js +22 -0
- package/node_modules/@aws-sdk/client-ecs/dist-es/commands/ListServiceDeploymentsCommand.js +22 -0
- package/node_modules/@aws-sdk/client-ecs/dist-es/commands/index.js +3 -0
- package/node_modules/@aws-sdk/client-ecs/dist-es/models/models_0.js +17 -24
- package/node_modules/@aws-sdk/client-ecs/dist-es/models/models_1.js +25 -1
- package/node_modules/@aws-sdk/client-ecs/dist-es/protocols/Aws_json1_1.js +178 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/ECS.d.ts +21 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/ECSClient.d.ts +5 -2
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/CreateCapacityProviderCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/CreateClusterCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/CreateServiceCommand.d.ts +6 -6
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/CreateTaskSetCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DeleteAccountSettingCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DeleteCapacityProviderCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DeleteClusterCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DeleteServiceCommand.d.ts +3 -3
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DeleteTaskDefinitionsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DeleteTaskSetCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DeregisterContainerInstanceCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DeregisterTaskDefinitionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DescribeCapacityProvidersCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DescribeClustersCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DescribeContainerInstancesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DescribeServiceDeploymentsCommand.d.ts +177 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DescribeServiceRevisionsCommand.d.ts +243 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DescribeServicesCommand.d.ts +3 -3
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DescribeTaskDefinitionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DescribeTaskSetsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DescribeTasksCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DiscoverPollEndpointCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/ExecuteCommandCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/GetTaskProtectionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/ListAccountSettingsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/ListClustersCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/ListContainerInstancesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/ListServiceDeploymentsCommand.d.ts +130 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/ListServicesByNamespaceCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/ListServicesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/ListTaskDefinitionFamiliesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/ListTaskDefinitionsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/ListTasksCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/PutAccountSettingCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/PutAccountSettingDefaultCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/PutClusterCapacityProvidersCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/RegisterContainerInstanceCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/RegisterTaskDefinitionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/RunTaskCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/StartTaskCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/StopTaskCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/SubmitAttachmentStateChangesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/SubmitContainerStateChangeCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/SubmitTaskStateChangeCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/UpdateCapacityProviderCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/UpdateClusterCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/UpdateClusterSettingsCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/UpdateContainerAgentCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/UpdateContainerInstancesStateCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/UpdateServiceCommand.d.ts +6 -6
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/UpdateServicePrimaryTaskSetCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/UpdateTaskProtectionCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/UpdateTaskSetCommand.d.ts +2 -3
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/models/models_0.d.ts +3026 -2918
- package/node_modules/@aws-sdk/client-ecs/dist-types/models/models_1.d.ts +517 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/protocols/Aws_json1_1.d.ts +27 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/ECS.d.ts +51 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/ECSClient.d.ts +18 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/DescribeServiceDeploymentsCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/DescribeServiceRevisionsCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/ListServiceDeploymentsCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/UpdateClusterCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/UpdateClusterSettingsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/UpdateContainerAgentCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/UpdateContainerInstancesStateCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/UpdateServiceCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/UpdateServicePrimaryTaskSetCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/UpdateTaskProtectionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/UpdateTaskSetCommand.d.ts +4 -2
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/models/models_0.d.ts +126 -95
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/models/models_1.d.ts +119 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +36 -0
- package/node_modules/@aws-sdk/client-ecs/package.json +14 -14
- package/node_modules/@aws-sdk/client-organizations/package.json +14 -14
- package/node_modules/@aws-sdk/client-secrets-manager/package.json +14 -14
- package/node_modules/@aws-sdk/client-ssm/package.json +14 -14
- package/node_modules/@aws-sdk/client-sso/package.json +11 -11
- package/node_modules/@aws-sdk/client-sso-oidc/package.json +13 -13
- package/node_modules/@aws-sdk/client-sts/package.json +15 -15
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.js +9 -5
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/emitWarningIfUnsupportedVersion.js +5 -3
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/emitWarningIfUnsupportedVersion.d.ts +3 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/emitWarningIfUnsupportedVersion.d.ts +3 -0
- package/node_modules/@aws-sdk/core/package.json +6 -4
- package/node_modules/@aws-sdk/credential-provider-env/package.json +5 -4
- package/node_modules/@aws-sdk/credential-provider-http/package.json +5 -4
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +11 -10
- package/node_modules/@aws-sdk/credential-provider-node/package.json +11 -10
- package/node_modules/@aws-sdk/credential-provider-process/package.json +5 -4
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +7 -6
- package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +6 -5
- package/node_modules/@aws-sdk/middleware-host-header/package.json +6 -4
- package/node_modules/@aws-sdk/middleware-logger/package.json +6 -4
- package/node_modules/@aws-sdk/middleware-recursion-detection/package.json +6 -4
- package/node_modules/@aws-sdk/middleware-user-agent/package.json +9 -7
- package/node_modules/@aws-sdk/region-config-resolver/package.json +4 -3
- package/node_modules/@aws-sdk/token-providers/package.json +5 -4
- package/node_modules/@aws-sdk/types/package.json +1 -1
- package/node_modules/@aws-sdk/util-endpoints/package.json +6 -4
- package/node_modules/@aws-sdk/util-user-agent-browser/package.json +4 -3
- package/node_modules/@aws-sdk/util-user-agent-node/package.json +5 -4
- package/node_modules/@smithy/protocol-http/package.json +2 -2
- package/node_modules/@smithy/service-error-classification/package.json +2 -2
- package/node_modules/@smithy/signature-v4/package.json +4 -4
- package/node_modules/@smithy/types/dist-cjs/feature-ids.js +1 -0
- package/node_modules/@smithy/types/dist-es/feature-ids.js +1 -0
- package/node_modules/@smithy/types/dist-es/index.js +1 -0
- package/node_modules/@smithy/types/dist-types/feature-ids.d.ts +16 -0
- package/node_modules/@smithy/types/dist-types/index.d.ts +1 -0
- package/node_modules/@smithy/types/dist-types/middleware.d.ts +30 -6
- package/node_modules/@smithy/types/dist-types/ts3.4/feature-ids.d.ts +16 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/middleware.d.ts +26 -2
- package/node_modules/@smithy/types/package.json +1 -1
- package/node_modules/@smithy/util-middleware/package.json +2 -2
- package/node_modules/@smithy/util-retry/package.json +3 -3
- package/package.json +13 -11
- package/version.json +1 -1
|
@@ -109,6 +109,14 @@ import {
|
|
|
109
109
|
DescribeContainerInstancesCommandInput,
|
|
110
110
|
DescribeContainerInstancesCommandOutput,
|
|
111
111
|
} from "./commands/DescribeContainerInstancesCommand";
|
|
112
|
+
import {
|
|
113
|
+
DescribeServiceDeploymentsCommandInput,
|
|
114
|
+
DescribeServiceDeploymentsCommandOutput,
|
|
115
|
+
} from "./commands/DescribeServiceDeploymentsCommand";
|
|
116
|
+
import {
|
|
117
|
+
DescribeServiceRevisionsCommandInput,
|
|
118
|
+
DescribeServiceRevisionsCommandOutput,
|
|
119
|
+
} from "./commands/DescribeServiceRevisionsCommand";
|
|
112
120
|
import {
|
|
113
121
|
DescribeServicesCommandInput,
|
|
114
122
|
DescribeServicesCommandOutput,
|
|
@@ -153,6 +161,10 @@ import {
|
|
|
153
161
|
ListContainerInstancesCommandInput,
|
|
154
162
|
ListContainerInstancesCommandOutput,
|
|
155
163
|
} from "./commands/ListContainerInstancesCommand";
|
|
164
|
+
import {
|
|
165
|
+
ListServiceDeploymentsCommandInput,
|
|
166
|
+
ListServiceDeploymentsCommandOutput,
|
|
167
|
+
} from "./commands/ListServiceDeploymentsCommand";
|
|
156
168
|
import {
|
|
157
169
|
ListServicesByNamespaceCommandInput,
|
|
158
170
|
ListServicesByNamespaceCommandOutput,
|
|
@@ -293,6 +305,8 @@ export type ServiceInputTypes =
|
|
|
293
305
|
| DescribeCapacityProvidersCommandInput
|
|
294
306
|
| DescribeClustersCommandInput
|
|
295
307
|
| DescribeContainerInstancesCommandInput
|
|
308
|
+
| DescribeServiceDeploymentsCommandInput
|
|
309
|
+
| DescribeServiceRevisionsCommandInput
|
|
296
310
|
| DescribeServicesCommandInput
|
|
297
311
|
| DescribeTaskDefinitionCommandInput
|
|
298
312
|
| DescribeTaskSetsCommandInput
|
|
@@ -304,6 +318,7 @@ export type ServiceInputTypes =
|
|
|
304
318
|
| ListAttributesCommandInput
|
|
305
319
|
| ListClustersCommandInput
|
|
306
320
|
| ListContainerInstancesCommandInput
|
|
321
|
+
| ListServiceDeploymentsCommandInput
|
|
307
322
|
| ListServicesByNamespaceCommandInput
|
|
308
323
|
| ListServicesCommandInput
|
|
309
324
|
| ListTagsForResourceCommandInput
|
|
@@ -350,6 +365,8 @@ export type ServiceOutputTypes =
|
|
|
350
365
|
| DescribeCapacityProvidersCommandOutput
|
|
351
366
|
| DescribeClustersCommandOutput
|
|
352
367
|
| DescribeContainerInstancesCommandOutput
|
|
368
|
+
| DescribeServiceDeploymentsCommandOutput
|
|
369
|
+
| DescribeServiceRevisionsCommandOutput
|
|
353
370
|
| DescribeServicesCommandOutput
|
|
354
371
|
| DescribeTaskDefinitionCommandOutput
|
|
355
372
|
| DescribeTaskSetsCommandOutput
|
|
@@ -361,6 +378,7 @@ export type ServiceOutputTypes =
|
|
|
361
378
|
| ListAttributesCommandOutput
|
|
362
379
|
| ListClustersCommandOutput
|
|
363
380
|
| ListContainerInstancesCommandOutput
|
|
381
|
+
| ListServiceDeploymentsCommandOutput
|
|
364
382
|
| ListServicesByNamespaceCommandOutput
|
|
365
383
|
| ListServicesCommandOutput
|
|
366
384
|
| ListTagsForResourceCommandOutput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ECSClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../ECSClient";
|
|
8
|
+
import {
|
|
9
|
+
DescribeServiceDeploymentsRequest,
|
|
10
|
+
DescribeServiceDeploymentsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DescribeServiceDeploymentsCommandInput
|
|
15
|
+
extends DescribeServiceDeploymentsRequest {}
|
|
16
|
+
export interface DescribeServiceDeploymentsCommandOutput
|
|
17
|
+
extends DescribeServiceDeploymentsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DescribeServiceDeploymentsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DescribeServiceDeploymentsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DescribeServiceDeploymentsCommandInput,
|
|
24
|
+
DescribeServiceDeploymentsCommandOutput,
|
|
25
|
+
ECSClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: DescribeServiceDeploymentsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DescribeServiceDeploymentsCommandInput,
|
|
33
|
+
DescribeServiceDeploymentsCommandOutput,
|
|
34
|
+
ECSClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DescribeServiceDeploymentsCommand extends DescribeServiceDeploymentsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DescribeServiceDeploymentsRequest;
|
|
44
|
+
output: DescribeServiceDeploymentsResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DescribeServiceDeploymentsCommandInput;
|
|
48
|
+
output: DescribeServiceDeploymentsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ECSClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../ECSClient";
|
|
8
|
+
import {
|
|
9
|
+
DescribeServiceRevisionsRequest,
|
|
10
|
+
DescribeServiceRevisionsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DescribeServiceRevisionsCommandInput
|
|
15
|
+
extends DescribeServiceRevisionsRequest {}
|
|
16
|
+
export interface DescribeServiceRevisionsCommandOutput
|
|
17
|
+
extends DescribeServiceRevisionsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DescribeServiceRevisionsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DescribeServiceRevisionsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DescribeServiceRevisionsCommandInput,
|
|
24
|
+
DescribeServiceRevisionsCommandOutput,
|
|
25
|
+
ECSClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: DescribeServiceRevisionsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DescribeServiceRevisionsCommandInput,
|
|
33
|
+
DescribeServiceRevisionsCommandOutput,
|
|
34
|
+
ECSClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DescribeServiceRevisionsCommand extends DescribeServiceRevisionsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DescribeServiceRevisionsRequest;
|
|
44
|
+
output: DescribeServiceRevisionsResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DescribeServiceRevisionsCommandInput;
|
|
48
|
+
output: DescribeServiceRevisionsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ECSClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../ECSClient";
|
|
8
|
+
import {
|
|
9
|
+
ListServiceDeploymentsRequest,
|
|
10
|
+
ListServiceDeploymentsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListServiceDeploymentsCommandInput
|
|
15
|
+
extends ListServiceDeploymentsRequest {}
|
|
16
|
+
export interface ListServiceDeploymentsCommandOutput
|
|
17
|
+
extends ListServiceDeploymentsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListServiceDeploymentsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListServiceDeploymentsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListServiceDeploymentsCommandInput,
|
|
24
|
+
ListServiceDeploymentsCommandOutput,
|
|
25
|
+
ECSClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: ListServiceDeploymentsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListServiceDeploymentsCommandInput,
|
|
33
|
+
ListServiceDeploymentsCommandOutput,
|
|
34
|
+
ECSClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListServiceDeploymentsCommand extends ListServiceDeploymentsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListServiceDeploymentsRequest;
|
|
44
|
+
output: ListServiceDeploymentsResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListServiceDeploymentsCommandInput;
|
|
48
|
+
output: ListServiceDeploymentsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/UpdateClusterCommand.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
UpdateClusterRequest,
|
|
10
10
|
UpdateClusterResponse,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface UpdateClusterCommandInput extends UpdateClusterRequest {}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
UpdateContainerInstancesStateRequest,
|
|
10
10
|
UpdateContainerInstancesStateResponse,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface UpdateContainerInstancesStateCommandInput
|
package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/UpdateServiceCommand.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
UpdateServiceRequest,
|
|
10
10
|
UpdateServiceResponse,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface UpdateServiceCommandInput extends UpdateServiceRequest {}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
UpdateServicePrimaryTaskSetRequest,
|
|
10
10
|
UpdateServicePrimaryTaskSetResponse,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface UpdateServicePrimaryTaskSetCommandInput
|
package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/UpdateTaskSetCommand.d.ts
CHANGED
|
@@ -5,8 +5,10 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../ECSClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
8
|
+
import {
|
|
9
|
+
UpdateTaskSetRequest,
|
|
10
|
+
UpdateTaskSetResponse,
|
|
11
|
+
} from "../models/models_1";
|
|
10
12
|
export { __MetadataBearer };
|
|
11
13
|
export { $Command };
|
|
12
14
|
export interface UpdateTaskSetCommandInput extends UpdateTaskSetRequest {}
|
|
@@ -14,6 +14,8 @@ export * from "./DeregisterTaskDefinitionCommand";
|
|
|
14
14
|
export * from "./DescribeCapacityProvidersCommand";
|
|
15
15
|
export * from "./DescribeClustersCommand";
|
|
16
16
|
export * from "./DescribeContainerInstancesCommand";
|
|
17
|
+
export * from "./DescribeServiceDeploymentsCommand";
|
|
18
|
+
export * from "./DescribeServiceRevisionsCommand";
|
|
17
19
|
export * from "./DescribeServicesCommand";
|
|
18
20
|
export * from "./DescribeTaskDefinitionCommand";
|
|
19
21
|
export * from "./DescribeTaskSetsCommand";
|
|
@@ -25,6 +27,7 @@ export * from "./ListAccountSettingsCommand";
|
|
|
25
27
|
export * from "./ListAttributesCommand";
|
|
26
28
|
export * from "./ListClustersCommand";
|
|
27
29
|
export * from "./ListContainerInstancesCommand";
|
|
30
|
+
export * from "./ListServiceDeploymentsCommand";
|
|
28
31
|
export * from "./ListServicesByNamespaceCommand";
|
|
29
32
|
export * from "./ListServicesCommand";
|
|
30
33
|
export * from "./ListTagsForResourceCommand";
|
|
@@ -219,8 +219,8 @@ export declare class ClusterNotFoundException extends __BaseException {
|
|
|
219
219
|
}
|
|
220
220
|
export interface DeploymentAlarms {
|
|
221
221
|
alarmNames: string[] | undefined;
|
|
222
|
-
enable: boolean | undefined;
|
|
223
222
|
rollback: boolean | undefined;
|
|
223
|
+
enable: boolean | undefined;
|
|
224
224
|
}
|
|
225
225
|
export interface DeploymentCircuitBreaker {
|
|
226
226
|
enable: boolean | undefined;
|
|
@@ -360,6 +360,7 @@ export interface ServiceRegistry {
|
|
|
360
360
|
export declare const TaskFilesystemType: {
|
|
361
361
|
readonly EXT3: "ext3";
|
|
362
362
|
readonly EXT4: "ext4";
|
|
363
|
+
readonly NTFS: "ntfs";
|
|
363
364
|
readonly XFS: "xfs";
|
|
364
365
|
};
|
|
365
366
|
export type TaskFilesystemType =
|
|
@@ -1184,6 +1185,103 @@ export interface DescribeContainerInstancesResponse {
|
|
|
1184
1185
|
containerInstances?: ContainerInstance[];
|
|
1185
1186
|
failures?: Failure[];
|
|
1186
1187
|
}
|
|
1188
|
+
export interface DescribeServiceDeploymentsRequest {
|
|
1189
|
+
serviceDeploymentArns: string[] | undefined;
|
|
1190
|
+
}
|
|
1191
|
+
export declare const ServiceDeploymentRollbackMonitorsStatus: {
|
|
1192
|
+
readonly DISABLED: "DISABLED";
|
|
1193
|
+
readonly MONITORING: "MONITORING";
|
|
1194
|
+
readonly MONITORING_COMPLETE: "MONITORING_COMPLETE";
|
|
1195
|
+
readonly TRIGGERED: "TRIGGERED";
|
|
1196
|
+
};
|
|
1197
|
+
export type ServiceDeploymentRollbackMonitorsStatus =
|
|
1198
|
+
(typeof ServiceDeploymentRollbackMonitorsStatus)[keyof typeof ServiceDeploymentRollbackMonitorsStatus];
|
|
1199
|
+
export interface ServiceDeploymentAlarms {
|
|
1200
|
+
status?: ServiceDeploymentRollbackMonitorsStatus;
|
|
1201
|
+
alarmNames?: string[];
|
|
1202
|
+
triggeredAlarmNames?: string[];
|
|
1203
|
+
}
|
|
1204
|
+
export interface ServiceDeploymentCircuitBreaker {
|
|
1205
|
+
status?: ServiceDeploymentRollbackMonitorsStatus;
|
|
1206
|
+
failureCount?: number;
|
|
1207
|
+
threshold?: number;
|
|
1208
|
+
}
|
|
1209
|
+
export interface Rollback {
|
|
1210
|
+
reason?: string;
|
|
1211
|
+
startedAt?: Date;
|
|
1212
|
+
serviceRevisionArn?: string;
|
|
1213
|
+
}
|
|
1214
|
+
export interface ServiceRevisionSummary {
|
|
1215
|
+
arn?: string;
|
|
1216
|
+
requestedTaskCount?: number;
|
|
1217
|
+
runningTaskCount?: number;
|
|
1218
|
+
pendingTaskCount?: number;
|
|
1219
|
+
}
|
|
1220
|
+
export declare const ServiceDeploymentStatus: {
|
|
1221
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
1222
|
+
readonly PENDING: "PENDING";
|
|
1223
|
+
readonly ROLLBACK_FAILED: "ROLLBACK_FAILED";
|
|
1224
|
+
readonly ROLLBACK_IN_PROGRESS: "ROLLBACK_IN_PROGRESS";
|
|
1225
|
+
readonly ROLLBACK_SUCCESSFUL: "ROLLBACK_SUCCESSFUL";
|
|
1226
|
+
readonly STOPPED: "STOPPED";
|
|
1227
|
+
readonly STOP_REQUESTED: "STOP_REQUESTED";
|
|
1228
|
+
readonly SUCCESSFUL: "SUCCESSFUL";
|
|
1229
|
+
};
|
|
1230
|
+
export type ServiceDeploymentStatus =
|
|
1231
|
+
(typeof ServiceDeploymentStatus)[keyof typeof ServiceDeploymentStatus];
|
|
1232
|
+
export interface ServiceDeployment {
|
|
1233
|
+
serviceDeploymentArn?: string;
|
|
1234
|
+
serviceArn?: string;
|
|
1235
|
+
clusterArn?: string;
|
|
1236
|
+
createdAt?: Date;
|
|
1237
|
+
startedAt?: Date;
|
|
1238
|
+
finishedAt?: Date;
|
|
1239
|
+
stoppedAt?: Date;
|
|
1240
|
+
updatedAt?: Date;
|
|
1241
|
+
sourceServiceRevisions?: ServiceRevisionSummary[];
|
|
1242
|
+
targetServiceRevision?: ServiceRevisionSummary;
|
|
1243
|
+
status?: ServiceDeploymentStatus;
|
|
1244
|
+
statusReason?: string;
|
|
1245
|
+
deploymentConfiguration?: DeploymentConfiguration;
|
|
1246
|
+
rollback?: Rollback;
|
|
1247
|
+
deploymentCircuitBreaker?: ServiceDeploymentCircuitBreaker;
|
|
1248
|
+
alarms?: ServiceDeploymentAlarms;
|
|
1249
|
+
}
|
|
1250
|
+
export interface DescribeServiceDeploymentsResponse {
|
|
1251
|
+
serviceDeployments?: ServiceDeployment[];
|
|
1252
|
+
failures?: Failure[];
|
|
1253
|
+
}
|
|
1254
|
+
export interface DescribeServiceRevisionsRequest {
|
|
1255
|
+
serviceRevisionArns: string[] | undefined;
|
|
1256
|
+
}
|
|
1257
|
+
export interface ContainerImage {
|
|
1258
|
+
containerName?: string;
|
|
1259
|
+
imageDigest?: string;
|
|
1260
|
+
image?: string;
|
|
1261
|
+
}
|
|
1262
|
+
export interface ServiceRevision {
|
|
1263
|
+
serviceRevisionArn?: string;
|
|
1264
|
+
serviceArn?: string;
|
|
1265
|
+
clusterArn?: string;
|
|
1266
|
+
taskDefinition?: string;
|
|
1267
|
+
capacityProviderStrategy?: CapacityProviderStrategyItem[];
|
|
1268
|
+
launchType?: LaunchType;
|
|
1269
|
+
platformVersion?: string;
|
|
1270
|
+
platformFamily?: string;
|
|
1271
|
+
loadBalancers?: LoadBalancer[];
|
|
1272
|
+
serviceRegistries?: ServiceRegistry[];
|
|
1273
|
+
networkConfiguration?: NetworkConfiguration;
|
|
1274
|
+
containerImages?: ContainerImage[];
|
|
1275
|
+
guardDutyEnabled?: boolean;
|
|
1276
|
+
serviceConnectConfiguration?: ServiceConnectConfiguration;
|
|
1277
|
+
volumeConfigurations?: ServiceVolumeConfiguration[];
|
|
1278
|
+
fargateEphemeralStorage?: DeploymentEphemeralStorage;
|
|
1279
|
+
createdAt?: Date;
|
|
1280
|
+
}
|
|
1281
|
+
export interface DescribeServiceRevisionsResponse {
|
|
1282
|
+
serviceRevisions?: ServiceRevision[];
|
|
1283
|
+
failures?: Failure[];
|
|
1284
|
+
}
|
|
1187
1285
|
export declare const ServiceField: {
|
|
1188
1286
|
readonly TAGS: "TAGS";
|
|
1189
1287
|
};
|
|
@@ -1474,6 +1572,33 @@ export interface ListContainerInstancesResponse {
|
|
|
1474
1572
|
containerInstanceArns?: string[];
|
|
1475
1573
|
nextToken?: string;
|
|
1476
1574
|
}
|
|
1575
|
+
export interface CreatedAt {
|
|
1576
|
+
before?: Date;
|
|
1577
|
+
after?: Date;
|
|
1578
|
+
}
|
|
1579
|
+
export interface ListServiceDeploymentsRequest {
|
|
1580
|
+
service: string | undefined;
|
|
1581
|
+
cluster?: string;
|
|
1582
|
+
status?: ServiceDeploymentStatus[];
|
|
1583
|
+
createdAt?: CreatedAt;
|
|
1584
|
+
nextToken?: string;
|
|
1585
|
+
maxResults?: number;
|
|
1586
|
+
}
|
|
1587
|
+
export interface ServiceDeploymentBrief {
|
|
1588
|
+
serviceDeploymentArn?: string;
|
|
1589
|
+
serviceArn?: string;
|
|
1590
|
+
clusterArn?: string;
|
|
1591
|
+
startedAt?: Date;
|
|
1592
|
+
createdAt?: Date;
|
|
1593
|
+
finishedAt?: Date;
|
|
1594
|
+
targetServiceRevisionArn?: string;
|
|
1595
|
+
status?: ServiceDeploymentStatus;
|
|
1596
|
+
statusReason?: string;
|
|
1597
|
+
}
|
|
1598
|
+
export interface ListServiceDeploymentsResponse {
|
|
1599
|
+
serviceDeployments?: ServiceDeploymentBrief[];
|
|
1600
|
+
nextToken?: string;
|
|
1601
|
+
}
|
|
1477
1602
|
export interface ListServicesRequest {
|
|
1478
1603
|
cluster?: string;
|
|
1479
1604
|
nextToken?: string;
|
|
@@ -1806,100 +1931,6 @@ export interface UpdateCapacityProviderRequest {
|
|
|
1806
1931
|
export interface UpdateCapacityProviderResponse {
|
|
1807
1932
|
capacityProvider?: CapacityProvider;
|
|
1808
1933
|
}
|
|
1809
|
-
export interface UpdateClusterRequest {
|
|
1810
|
-
cluster: string | undefined;
|
|
1811
|
-
settings?: ClusterSetting[];
|
|
1812
|
-
configuration?: ClusterConfiguration;
|
|
1813
|
-
serviceConnectDefaults?: ClusterServiceConnectDefaultsRequest;
|
|
1814
|
-
}
|
|
1815
|
-
export interface UpdateClusterResponse {
|
|
1816
|
-
cluster?: Cluster;
|
|
1817
|
-
}
|
|
1818
|
-
export interface UpdateClusterSettingsRequest {
|
|
1819
|
-
cluster: string | undefined;
|
|
1820
|
-
settings: ClusterSetting[] | undefined;
|
|
1821
|
-
}
|
|
1822
|
-
export interface UpdateClusterSettingsResponse {
|
|
1823
|
-
cluster?: Cluster;
|
|
1824
|
-
}
|
|
1825
|
-
export declare class MissingVersionException extends __BaseException {
|
|
1826
|
-
readonly name: "MissingVersionException";
|
|
1827
|
-
readonly $fault: "client";
|
|
1828
|
-
constructor(
|
|
1829
|
-
opts: __ExceptionOptionType<MissingVersionException, __BaseException>
|
|
1830
|
-
);
|
|
1831
|
-
}
|
|
1832
|
-
export declare class NoUpdateAvailableException extends __BaseException {
|
|
1833
|
-
readonly name: "NoUpdateAvailableException";
|
|
1834
|
-
readonly $fault: "client";
|
|
1835
|
-
constructor(
|
|
1836
|
-
opts: __ExceptionOptionType<NoUpdateAvailableException, __BaseException>
|
|
1837
|
-
);
|
|
1838
|
-
}
|
|
1839
|
-
export interface UpdateContainerAgentRequest {
|
|
1840
|
-
cluster?: string;
|
|
1841
|
-
containerInstance: string | undefined;
|
|
1842
|
-
}
|
|
1843
|
-
export interface UpdateContainerAgentResponse {
|
|
1844
|
-
containerInstance?: ContainerInstance;
|
|
1845
|
-
}
|
|
1846
|
-
export interface UpdateContainerInstancesStateRequest {
|
|
1847
|
-
cluster?: string;
|
|
1848
|
-
containerInstances: string[] | undefined;
|
|
1849
|
-
status: ContainerInstanceStatus | undefined;
|
|
1850
|
-
}
|
|
1851
|
-
export interface UpdateContainerInstancesStateResponse {
|
|
1852
|
-
containerInstances?: ContainerInstance[];
|
|
1853
|
-
failures?: Failure[];
|
|
1854
|
-
}
|
|
1855
|
-
export interface UpdateServiceRequest {
|
|
1856
|
-
cluster?: string;
|
|
1857
|
-
service: string | undefined;
|
|
1858
|
-
desiredCount?: number;
|
|
1859
|
-
taskDefinition?: string;
|
|
1860
|
-
capacityProviderStrategy?: CapacityProviderStrategyItem[];
|
|
1861
|
-
deploymentConfiguration?: DeploymentConfiguration;
|
|
1862
|
-
networkConfiguration?: NetworkConfiguration;
|
|
1863
|
-
placementConstraints?: PlacementConstraint[];
|
|
1864
|
-
placementStrategy?: PlacementStrategy[];
|
|
1865
|
-
platformVersion?: string;
|
|
1866
|
-
forceNewDeployment?: boolean;
|
|
1867
|
-
healthCheckGracePeriodSeconds?: number;
|
|
1868
|
-
enableExecuteCommand?: boolean;
|
|
1869
|
-
enableECSManagedTags?: boolean;
|
|
1870
|
-
loadBalancers?: LoadBalancer[];
|
|
1871
|
-
propagateTags?: PropagateTags;
|
|
1872
|
-
serviceRegistries?: ServiceRegistry[];
|
|
1873
|
-
serviceConnectConfiguration?: ServiceConnectConfiguration;
|
|
1874
|
-
volumeConfigurations?: ServiceVolumeConfiguration[];
|
|
1875
|
-
}
|
|
1876
|
-
export interface UpdateServiceResponse {
|
|
1877
|
-
service?: Service;
|
|
1878
|
-
}
|
|
1879
|
-
export interface UpdateServicePrimaryTaskSetRequest {
|
|
1880
|
-
cluster: string | undefined;
|
|
1881
|
-
service: string | undefined;
|
|
1882
|
-
primaryTaskSet: string | undefined;
|
|
1883
|
-
}
|
|
1884
|
-
export interface UpdateServicePrimaryTaskSetResponse {
|
|
1885
|
-
taskSet?: TaskSet;
|
|
1886
|
-
}
|
|
1887
|
-
export interface UpdateTaskProtectionRequest {
|
|
1888
|
-
cluster: string | undefined;
|
|
1889
|
-
tasks: string[] | undefined;
|
|
1890
|
-
protectionEnabled: boolean | undefined;
|
|
1891
|
-
expiresInMinutes?: number;
|
|
1892
|
-
}
|
|
1893
|
-
export interface UpdateTaskProtectionResponse {
|
|
1894
|
-
protectedTasks?: ProtectedTask[];
|
|
1895
|
-
failures?: Failure[];
|
|
1896
|
-
}
|
|
1897
|
-
export interface UpdateTaskSetRequest {
|
|
1898
|
-
cluster: string | undefined;
|
|
1899
|
-
service: string | undefined;
|
|
1900
|
-
taskSet: string | undefined;
|
|
1901
|
-
scale: Scale | undefined;
|
|
1902
|
-
}
|
|
1903
1934
|
export declare const SessionFilterSensitiveLog: (obj: Session) => any;
|
|
1904
1935
|
export declare const ExecuteCommandResponseFilterSensitiveLog: (
|
|
1905
1936
|
obj: ExecuteCommandResponse
|