@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
|
@@ -5464,10 +5464,10 @@ var require_dist_cjs27 = __commonJS({
|
|
|
5464
5464
|
return {};
|
|
5465
5465
|
}
|
|
5466
5466
|
}, "loadConfigsForDefaultMode");
|
|
5467
|
-
var
|
|
5467
|
+
var warningEmitted = false;
|
|
5468
5468
|
var emitWarningIfUnsupportedVersion2 = /* @__PURE__ */ __name((version3) => {
|
|
5469
|
-
if (version3 && !
|
|
5470
|
-
|
|
5469
|
+
if (version3 && !warningEmitted && parseInt(version3.substring(1, version3.indexOf("."))) < 16) {
|
|
5470
|
+
warningEmitted = true;
|
|
5471
5471
|
}
|
|
5472
5472
|
}, "emitWarningIfUnsupportedVersion");
|
|
5473
5473
|
function extendedEncodeURIComponent(str) {
|
|
@@ -7428,14 +7428,16 @@ var require_dist_cjs30 = __commonJS({
|
|
|
7428
7428
|
});
|
|
7429
7429
|
|
|
7430
7430
|
// node_modules/@aws-sdk/core/dist-es/submodules/client/emitWarningIfUnsupportedVersion.js
|
|
7431
|
-
var
|
|
7431
|
+
var state, emitWarningIfUnsupportedVersion;
|
|
7432
7432
|
var init_emitWarningIfUnsupportedVersion = __esm({
|
|
7433
7433
|
"node_modules/@aws-sdk/core/dist-es/submodules/client/emitWarningIfUnsupportedVersion.js"() {
|
|
7434
7434
|
"use strict";
|
|
7435
|
-
|
|
7435
|
+
state = {
|
|
7436
|
+
warningEmitted: false
|
|
7437
|
+
};
|
|
7436
7438
|
emitWarningIfUnsupportedVersion = (version3) => {
|
|
7437
|
-
if (version3 && !warningEmitted && parseInt(version3.substring(1, version3.indexOf("."))) < 18) {
|
|
7438
|
-
warningEmitted = true;
|
|
7439
|
+
if (version3 && !state.warningEmitted && parseInt(version3.substring(1, version3.indexOf("."))) < 18) {
|
|
7440
|
+
state.warningEmitted = true;
|
|
7439
7441
|
process.emitWarning(`NodeDeprecationWarning: The AWS SDK for JavaScript (v3) will
|
|
7440
7442
|
no longer support Node.js 16.x on January 6, 2025.
|
|
7441
7443
|
|
|
@@ -7484,7 +7486,8 @@ var client_exports = {};
|
|
|
7484
7486
|
__export(client_exports, {
|
|
7485
7487
|
emitWarningIfUnsupportedVersion: () => emitWarningIfUnsupportedVersion,
|
|
7486
7488
|
setCredentialFeature: () => setCredentialFeature,
|
|
7487
|
-
setFeature: () => setFeature
|
|
7489
|
+
setFeature: () => setFeature,
|
|
7490
|
+
state: () => state
|
|
7488
7491
|
});
|
|
7489
7492
|
var init_client = __esm({
|
|
7490
7493
|
"node_modules/@aws-sdk/core/dist-es/submodules/client/index.js"() {
|
|
@@ -10248,6 +10251,7 @@ __export(dist_es_exports2, {
|
|
|
10248
10251
|
resolveAwsSdkSigV4Config: () => resolveAwsSdkSigV4Config,
|
|
10249
10252
|
setCredentialFeature: () => setCredentialFeature,
|
|
10250
10253
|
setFeature: () => setFeature,
|
|
10254
|
+
state: () => state,
|
|
10251
10255
|
validateSigningProperties: () => validateSigningProperties
|
|
10252
10256
|
});
|
|
10253
10257
|
var init_dist_es2 = __esm({
|
|
@@ -11186,20 +11190,20 @@ function __importStar(mod) {
|
|
|
11186
11190
|
function __importDefault(mod) {
|
|
11187
11191
|
return mod && mod.__esModule ? mod : { default: mod };
|
|
11188
11192
|
}
|
|
11189
|
-
function __classPrivateFieldGet(receiver,
|
|
11193
|
+
function __classPrivateFieldGet(receiver, state2, kind, f) {
|
|
11190
11194
|
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
|
|
11191
|
-
if (typeof
|
|
11192
|
-
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value :
|
|
11195
|
+
if (typeof state2 === "function" ? receiver !== state2 || !f : !state2.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
|
11196
|
+
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state2.get(receiver);
|
|
11193
11197
|
}
|
|
11194
|
-
function __classPrivateFieldSet(receiver,
|
|
11198
|
+
function __classPrivateFieldSet(receiver, state2, value, kind, f) {
|
|
11195
11199
|
if (kind === "m") throw new TypeError("Private method is not writable");
|
|
11196
11200
|
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter");
|
|
11197
|
-
if (typeof
|
|
11198
|
-
return kind === "a" ? f.call(receiver, value) : f ? f.value = value :
|
|
11201
|
+
if (typeof state2 === "function" ? receiver !== state2 || !f : !state2.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
|
|
11202
|
+
return kind === "a" ? f.call(receiver, value) : f ? f.value = value : state2.set(receiver, value), value;
|
|
11199
11203
|
}
|
|
11200
|
-
function __classPrivateFieldIn(
|
|
11204
|
+
function __classPrivateFieldIn(state2, receiver) {
|
|
11201
11205
|
if (receiver === null || typeof receiver !== "object" && typeof receiver !== "function") throw new TypeError("Cannot use 'in' operator on non-object");
|
|
11202
|
-
return typeof
|
|
11206
|
+
return typeof state2 === "function" ? receiver === state2 : state2.has(receiver);
|
|
11203
11207
|
}
|
|
11204
11208
|
function __addDisposableResource(env, value, async) {
|
|
11205
11209
|
if (value !== null && value !== void 0) {
|
|
@@ -11324,7 +11328,7 @@ var require_package = __commonJS({
|
|
|
11324
11328
|
module2.exports = {
|
|
11325
11329
|
name: "@aws-sdk/client-ecs",
|
|
11326
11330
|
description: "AWS SDK for JavaScript Ecs Client for Node.js, Browser and React Native",
|
|
11327
|
-
version: "3.
|
|
11331
|
+
version: "3.683.0",
|
|
11328
11332
|
scripts: {
|
|
11329
11333
|
build: "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
11330
11334
|
"build:cjs": "node ../../scripts/compilation/inline client-ecs",
|
|
@@ -11343,19 +11347,19 @@ var require_package = __commonJS({
|
|
|
11343
11347
|
dependencies: {
|
|
11344
11348
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
11345
11349
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
11346
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
11347
|
-
"@aws-sdk/client-sts": "3.
|
|
11348
|
-
"@aws-sdk/core": "3.
|
|
11349
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
11350
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
11351
|
-
"@aws-sdk/middleware-logger": "3.
|
|
11352
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
11353
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
11354
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
11355
|
-
"@aws-sdk/types": "3.
|
|
11356
|
-
"@aws-sdk/util-endpoints": "3.
|
|
11357
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
11358
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
11350
|
+
"@aws-sdk/client-sso-oidc": "3.682.0",
|
|
11351
|
+
"@aws-sdk/client-sts": "3.682.0",
|
|
11352
|
+
"@aws-sdk/core": "3.679.0",
|
|
11353
|
+
"@aws-sdk/credential-provider-node": "3.682.0",
|
|
11354
|
+
"@aws-sdk/middleware-host-header": "3.679.0",
|
|
11355
|
+
"@aws-sdk/middleware-logger": "3.679.0",
|
|
11356
|
+
"@aws-sdk/middleware-recursion-detection": "3.679.0",
|
|
11357
|
+
"@aws-sdk/middleware-user-agent": "3.682.0",
|
|
11358
|
+
"@aws-sdk/region-config-resolver": "3.679.0",
|
|
11359
|
+
"@aws-sdk/types": "3.679.0",
|
|
11360
|
+
"@aws-sdk/util-endpoints": "3.679.0",
|
|
11361
|
+
"@aws-sdk/util-user-agent-browser": "3.679.0",
|
|
11362
|
+
"@aws-sdk/util-user-agent-node": "3.682.0",
|
|
11359
11363
|
"@smithy/config-resolver": "^3.0.9",
|
|
11360
11364
|
"@smithy/core": "^2.4.8",
|
|
11361
11365
|
"@smithy/fetch-http-handler": "^3.2.9",
|
|
@@ -12174,7 +12178,7 @@ var require_package2 = __commonJS({
|
|
|
12174
12178
|
module2.exports = {
|
|
12175
12179
|
name: "@aws-sdk/client-sso",
|
|
12176
12180
|
description: "AWS SDK for JavaScript Sso Client for Node.js, Browser and React Native",
|
|
12177
|
-
version: "3.
|
|
12181
|
+
version: "3.682.0",
|
|
12178
12182
|
scripts: {
|
|
12179
12183
|
build: "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
12180
12184
|
"build:cjs": "node ../../scripts/compilation/inline client-sso",
|
|
@@ -12193,16 +12197,16 @@ var require_package2 = __commonJS({
|
|
|
12193
12197
|
dependencies: {
|
|
12194
12198
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
12195
12199
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
12196
|
-
"@aws-sdk/core": "3.
|
|
12197
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
12198
|
-
"@aws-sdk/middleware-logger": "3.
|
|
12199
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
12200
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
12201
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
12202
|
-
"@aws-sdk/types": "3.
|
|
12203
|
-
"@aws-sdk/util-endpoints": "3.
|
|
12204
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
12205
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
12200
|
+
"@aws-sdk/core": "3.679.0",
|
|
12201
|
+
"@aws-sdk/middleware-host-header": "3.679.0",
|
|
12202
|
+
"@aws-sdk/middleware-logger": "3.679.0",
|
|
12203
|
+
"@aws-sdk/middleware-recursion-detection": "3.679.0",
|
|
12204
|
+
"@aws-sdk/middleware-user-agent": "3.682.0",
|
|
12205
|
+
"@aws-sdk/region-config-resolver": "3.679.0",
|
|
12206
|
+
"@aws-sdk/types": "3.679.0",
|
|
12207
|
+
"@aws-sdk/util-endpoints": "3.679.0",
|
|
12208
|
+
"@aws-sdk/util-user-agent-browser": "3.679.0",
|
|
12209
|
+
"@aws-sdk/util-user-agent-node": "3.682.0",
|
|
12206
12210
|
"@smithy/config-resolver": "^3.0.9",
|
|
12207
12211
|
"@smithy/core": "^2.4.8",
|
|
12208
12212
|
"@smithy/fetch-http-handler": "^3.2.9",
|
|
@@ -13442,7 +13446,7 @@ var require_package3 = __commonJS({
|
|
|
13442
13446
|
module2.exports = {
|
|
13443
13447
|
name: "@aws-sdk/client-sso-oidc",
|
|
13444
13448
|
description: "AWS SDK for JavaScript Sso Oidc Client for Node.js, Browser and React Native",
|
|
13445
|
-
version: "3.
|
|
13449
|
+
version: "3.682.0",
|
|
13446
13450
|
scripts: {
|
|
13447
13451
|
build: "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
13448
13452
|
"build:cjs": "node ../../scripts/compilation/inline client-sso-oidc",
|
|
@@ -13461,17 +13465,17 @@ var require_package3 = __commonJS({
|
|
|
13461
13465
|
dependencies: {
|
|
13462
13466
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
13463
13467
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
13464
|
-
"@aws-sdk/core": "3.
|
|
13465
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
13466
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
13467
|
-
"@aws-sdk/middleware-logger": "3.
|
|
13468
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
13469
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
13470
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
13471
|
-
"@aws-sdk/types": "3.
|
|
13472
|
-
"@aws-sdk/util-endpoints": "3.
|
|
13473
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
13474
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
13468
|
+
"@aws-sdk/core": "3.679.0",
|
|
13469
|
+
"@aws-sdk/credential-provider-node": "3.682.0",
|
|
13470
|
+
"@aws-sdk/middleware-host-header": "3.679.0",
|
|
13471
|
+
"@aws-sdk/middleware-logger": "3.679.0",
|
|
13472
|
+
"@aws-sdk/middleware-recursion-detection": "3.679.0",
|
|
13473
|
+
"@aws-sdk/middleware-user-agent": "3.682.0",
|
|
13474
|
+
"@aws-sdk/region-config-resolver": "3.679.0",
|
|
13475
|
+
"@aws-sdk/types": "3.679.0",
|
|
13476
|
+
"@aws-sdk/util-endpoints": "3.679.0",
|
|
13477
|
+
"@aws-sdk/util-user-agent-browser": "3.679.0",
|
|
13478
|
+
"@aws-sdk/util-user-agent-node": "3.682.0",
|
|
13475
13479
|
"@smithy/config-resolver": "^3.0.9",
|
|
13476
13480
|
"@smithy/core": "^2.4.8",
|
|
13477
13481
|
"@smithy/fetch-http-handler": "^3.2.9",
|
|
@@ -13526,7 +13530,7 @@ var require_package3 = __commonJS({
|
|
|
13526
13530
|
},
|
|
13527
13531
|
license: "Apache-2.0",
|
|
13528
13532
|
peerDependencies: {
|
|
13529
|
-
"@aws-sdk/client-sts": "^3.
|
|
13533
|
+
"@aws-sdk/client-sts": "^3.682.0"
|
|
13530
13534
|
},
|
|
13531
13535
|
browser: {
|
|
13532
13536
|
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser"
|
|
@@ -15178,7 +15182,7 @@ var require_package4 = __commonJS({
|
|
|
15178
15182
|
module2.exports = {
|
|
15179
15183
|
name: "@aws-sdk/client-sts",
|
|
15180
15184
|
description: "AWS SDK for JavaScript Sts Client for Node.js, Browser and React Native",
|
|
15181
|
-
version: "3.
|
|
15185
|
+
version: "3.682.0",
|
|
15182
15186
|
scripts: {
|
|
15183
15187
|
build: "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
15184
15188
|
"build:cjs": "node ../../scripts/compilation/inline client-sts",
|
|
@@ -15189,8 +15193,8 @@ var require_package4 = __commonJS({
|
|
|
15189
15193
|
clean: "rimraf ./dist-* && rimraf *.tsbuildinfo",
|
|
15190
15194
|
"extract:docs": "api-extractor run --local",
|
|
15191
15195
|
"generate:client": "node ../../scripts/generate-clients/single-service --solo sts",
|
|
15192
|
-
test: "
|
|
15193
|
-
"test:
|
|
15196
|
+
test: "vitest run",
|
|
15197
|
+
"test:watch": "vitest watch"
|
|
15194
15198
|
},
|
|
15195
15199
|
main: "./dist-cjs/index.js",
|
|
15196
15200
|
types: "./dist-types/index.d.ts",
|
|
@@ -15199,18 +15203,18 @@ var require_package4 = __commonJS({
|
|
|
15199
15203
|
dependencies: {
|
|
15200
15204
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
15201
15205
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
15202
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
15203
|
-
"@aws-sdk/core": "3.
|
|
15204
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
15205
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
15206
|
-
"@aws-sdk/middleware-logger": "3.
|
|
15207
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
15208
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
15209
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
15210
|
-
"@aws-sdk/types": "3.
|
|
15211
|
-
"@aws-sdk/util-endpoints": "3.
|
|
15212
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
15213
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
15206
|
+
"@aws-sdk/client-sso-oidc": "3.682.0",
|
|
15207
|
+
"@aws-sdk/core": "3.679.0",
|
|
15208
|
+
"@aws-sdk/credential-provider-node": "3.682.0",
|
|
15209
|
+
"@aws-sdk/middleware-host-header": "3.679.0",
|
|
15210
|
+
"@aws-sdk/middleware-logger": "3.679.0",
|
|
15211
|
+
"@aws-sdk/middleware-recursion-detection": "3.679.0",
|
|
15212
|
+
"@aws-sdk/middleware-user-agent": "3.682.0",
|
|
15213
|
+
"@aws-sdk/region-config-resolver": "3.679.0",
|
|
15214
|
+
"@aws-sdk/types": "3.679.0",
|
|
15215
|
+
"@aws-sdk/util-endpoints": "3.679.0",
|
|
15216
|
+
"@aws-sdk/util-user-agent-browser": "3.679.0",
|
|
15217
|
+
"@aws-sdk/util-user-agent-node": "3.682.0",
|
|
15214
15218
|
"@smithy/config-resolver": "^3.0.9",
|
|
15215
15219
|
"@smithy/core": "^2.4.8",
|
|
15216
15220
|
"@smithy/fetch-http-handler": "^3.2.9",
|
|
@@ -18156,9 +18160,9 @@ var require_dist_cjs53 = __commonJS({
|
|
|
18156
18160
|
var randomInRange = /* @__PURE__ */ __name((min, max) => min + Math.random() * (max - min), "randomInRange");
|
|
18157
18161
|
var runPolling = /* @__PURE__ */ __name(async ({ minDelay, maxDelay, maxWaitTime, abortController, client, abortSignal }, input, acceptorChecks) => {
|
|
18158
18162
|
var _a;
|
|
18159
|
-
const { state, reason } = await acceptorChecks(client, input);
|
|
18160
|
-
if (
|
|
18161
|
-
return { state, reason };
|
|
18163
|
+
const { state: state2, reason } = await acceptorChecks(client, input);
|
|
18164
|
+
if (state2 !== "RETRY") {
|
|
18165
|
+
return { state: state2, reason };
|
|
18162
18166
|
}
|
|
18163
18167
|
let currentAttempt = 1;
|
|
18164
18168
|
const waitUntil = Date.now() + maxWaitTime * 1e3;
|
|
@@ -18178,9 +18182,9 @@ var require_dist_cjs53 = __commonJS({
|
|
|
18178
18182
|
};
|
|
18179
18183
|
}
|
|
18180
18184
|
await sleep(delay);
|
|
18181
|
-
const { state:
|
|
18182
|
-
if (
|
|
18183
|
-
return { state:
|
|
18185
|
+
const { state: state22, reason: reason2 } = await acceptorChecks(client, input);
|
|
18186
|
+
if (state22 !== "RETRY") {
|
|
18187
|
+
return { state: state22, reason: reason2 };
|
|
18184
18188
|
}
|
|
18185
18189
|
currentAttempt += 1;
|
|
18186
18190
|
}
|
|
@@ -18298,6 +18302,8 @@ var require_dist_cjs54 = __commonJS({
|
|
|
18298
18302
|
DescribeCapacityProvidersCommand: () => DescribeCapacityProvidersCommand,
|
|
18299
18303
|
DescribeClustersCommand: () => DescribeClustersCommand,
|
|
18300
18304
|
DescribeContainerInstancesCommand: () => DescribeContainerInstancesCommand,
|
|
18305
|
+
DescribeServiceDeploymentsCommand: () => DescribeServiceDeploymentsCommand,
|
|
18306
|
+
DescribeServiceRevisionsCommand: () => DescribeServiceRevisionsCommand,
|
|
18301
18307
|
DescribeServicesCommand: () => DescribeServicesCommand,
|
|
18302
18308
|
DescribeTaskDefinitionCommand: () => DescribeTaskDefinitionCommand,
|
|
18303
18309
|
DescribeTaskSetsCommand: () => DescribeTaskSetsCommand,
|
|
@@ -18328,6 +18334,7 @@ var require_dist_cjs54 = __commonJS({
|
|
|
18328
18334
|
ListAttributesCommand: () => ListAttributesCommand,
|
|
18329
18335
|
ListClustersCommand: () => ListClustersCommand2,
|
|
18330
18336
|
ListContainerInstancesCommand: () => ListContainerInstancesCommand,
|
|
18337
|
+
ListServiceDeploymentsCommand: () => ListServiceDeploymentsCommand,
|
|
18331
18338
|
ListServicesByNamespaceCommand: () => ListServicesByNamespaceCommand,
|
|
18332
18339
|
ListServicesCommand: () => ListServicesCommand,
|
|
18333
18340
|
ListTagsForResourceCommand: () => ListTagsForResourceCommand,
|
|
@@ -18366,6 +18373,8 @@ var require_dist_cjs54 = __commonJS({
|
|
|
18366
18373
|
SchedulingStrategy: () => SchedulingStrategy,
|
|
18367
18374
|
Scope: () => Scope,
|
|
18368
18375
|
ServerException: () => ServerException,
|
|
18376
|
+
ServiceDeploymentRollbackMonitorsStatus: () => ServiceDeploymentRollbackMonitorsStatus,
|
|
18377
|
+
ServiceDeploymentStatus: () => ServiceDeploymentStatus,
|
|
18369
18378
|
ServiceField: () => ServiceField,
|
|
18370
18379
|
ServiceNotActiveException: () => ServiceNotActiveException,
|
|
18371
18380
|
ServiceNotFoundException: () => ServiceNotFoundException,
|
|
@@ -18783,6 +18792,7 @@ var require_dist_cjs54 = __commonJS({
|
|
|
18783
18792
|
var TaskFilesystemType = {
|
|
18784
18793
|
EXT3: "ext3",
|
|
18785
18794
|
EXT4: "ext4",
|
|
18795
|
+
NTFS: "ntfs",
|
|
18786
18796
|
XFS: "xfs"
|
|
18787
18797
|
};
|
|
18788
18798
|
var EBSResourceType = {
|
|
@@ -19116,6 +19126,22 @@ var require_dist_cjs54 = __commonJS({
|
|
|
19116
19126
|
CONTAINER_INSTANCE_HEALTH: "CONTAINER_INSTANCE_HEALTH",
|
|
19117
19127
|
TAGS: "TAGS"
|
|
19118
19128
|
};
|
|
19129
|
+
var ServiceDeploymentRollbackMonitorsStatus = {
|
|
19130
|
+
DISABLED: "DISABLED",
|
|
19131
|
+
MONITORING: "MONITORING",
|
|
19132
|
+
MONITORING_COMPLETE: "MONITORING_COMPLETE",
|
|
19133
|
+
TRIGGERED: "TRIGGERED"
|
|
19134
|
+
};
|
|
19135
|
+
var ServiceDeploymentStatus = {
|
|
19136
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
19137
|
+
PENDING: "PENDING",
|
|
19138
|
+
ROLLBACK_FAILED: "ROLLBACK_FAILED",
|
|
19139
|
+
ROLLBACK_IN_PROGRESS: "ROLLBACK_IN_PROGRESS",
|
|
19140
|
+
ROLLBACK_SUCCESSFUL: "ROLLBACK_SUCCESSFUL",
|
|
19141
|
+
STOPPED: "STOPPED",
|
|
19142
|
+
STOP_REQUESTED: "STOP_REQUESTED",
|
|
19143
|
+
SUCCESSFUL: "SUCCESSFUL"
|
|
19144
|
+
};
|
|
19119
19145
|
var ServiceField = {
|
|
19120
19146
|
TAGS: "TAGS"
|
|
19121
19147
|
};
|
|
@@ -19275,6 +19301,14 @@ var require_dist_cjs54 = __commonJS({
|
|
|
19275
19301
|
};
|
|
19276
19302
|
__name(_ConflictException, "ConflictException");
|
|
19277
19303
|
var ConflictException = _ConflictException;
|
|
19304
|
+
var SessionFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
19305
|
+
...obj,
|
|
19306
|
+
...obj.tokenValue && { tokenValue: import_smithy_client5.SENSITIVE_STRING }
|
|
19307
|
+
}), "SessionFilterSensitiveLog");
|
|
19308
|
+
var ExecuteCommandResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
19309
|
+
...obj,
|
|
19310
|
+
...obj.session && { session: SessionFilterSensitiveLog(obj.session) }
|
|
19311
|
+
}), "ExecuteCommandResponseFilterSensitiveLog");
|
|
19278
19312
|
var _MissingVersionException = class _MissingVersionException2 extends ECSServiceException {
|
|
19279
19313
|
/**
|
|
19280
19314
|
* @internal
|
|
@@ -19309,14 +19343,6 @@ var require_dist_cjs54 = __commonJS({
|
|
|
19309
19343
|
};
|
|
19310
19344
|
__name(_NoUpdateAvailableException, "NoUpdateAvailableException");
|
|
19311
19345
|
var NoUpdateAvailableException = _NoUpdateAvailableException;
|
|
19312
|
-
var SessionFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
19313
|
-
...obj,
|
|
19314
|
-
...obj.tokenValue && { tokenValue: import_smithy_client5.SENSITIVE_STRING }
|
|
19315
|
-
}), "SessionFilterSensitiveLog");
|
|
19316
|
-
var ExecuteCommandResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
19317
|
-
...obj,
|
|
19318
|
-
...obj.session && { session: SessionFilterSensitiveLog(obj.session) }
|
|
19319
|
-
}), "ExecuteCommandResponseFilterSensitiveLog");
|
|
19320
19346
|
var se_CreateCapacityProviderCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
19321
19347
|
const headers = sharedHeaders("CreateCapacityProvider");
|
|
19322
19348
|
let body;
|
|
@@ -19413,6 +19439,18 @@ var require_dist_cjs54 = __commonJS({
|
|
|
19413
19439
|
body = JSON.stringify((0, import_smithy_client5._json)(input));
|
|
19414
19440
|
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
19415
19441
|
}, "se_DescribeContainerInstancesCommand");
|
|
19442
|
+
var se_DescribeServiceDeploymentsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
19443
|
+
const headers = sharedHeaders("DescribeServiceDeployments");
|
|
19444
|
+
let body;
|
|
19445
|
+
body = JSON.stringify((0, import_smithy_client5._json)(input));
|
|
19446
|
+
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
19447
|
+
}, "se_DescribeServiceDeploymentsCommand");
|
|
19448
|
+
var se_DescribeServiceRevisionsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
19449
|
+
const headers = sharedHeaders("DescribeServiceRevisions");
|
|
19450
|
+
let body;
|
|
19451
|
+
body = JSON.stringify((0, import_smithy_client5._json)(input));
|
|
19452
|
+
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
19453
|
+
}, "se_DescribeServiceRevisionsCommand");
|
|
19416
19454
|
var se_DescribeServicesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
19417
19455
|
const headers = sharedHeaders("DescribeServices");
|
|
19418
19456
|
let body;
|
|
@@ -19479,6 +19517,12 @@ var require_dist_cjs54 = __commonJS({
|
|
|
19479
19517
|
body = JSON.stringify((0, import_smithy_client5._json)(input));
|
|
19480
19518
|
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
19481
19519
|
}, "se_ListContainerInstancesCommand");
|
|
19520
|
+
var se_ListServiceDeploymentsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
19521
|
+
const headers = sharedHeaders("ListServiceDeployments");
|
|
19522
|
+
let body;
|
|
19523
|
+
body = JSON.stringify(se_ListServiceDeploymentsRequest(input, context));
|
|
19524
|
+
return buildHttpRpcRequest(context, headers, "/", void 0, body);
|
|
19525
|
+
}, "se_ListServiceDeploymentsCommand");
|
|
19482
19526
|
var se_ListServicesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
19483
19527
|
const headers = sharedHeaders("ListServices");
|
|
19484
19528
|
let body;
|
|
@@ -19861,6 +19905,32 @@ var require_dist_cjs54 = __commonJS({
|
|
|
19861
19905
|
};
|
|
19862
19906
|
return response;
|
|
19863
19907
|
}, "de_DescribeContainerInstancesCommand");
|
|
19908
|
+
var de_DescribeServiceDeploymentsCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
19909
|
+
if (output.statusCode >= 300) {
|
|
19910
|
+
return de_CommandError(output, context);
|
|
19911
|
+
}
|
|
19912
|
+
const data = await (0, import_core22.parseJsonBody)(output.body, context);
|
|
19913
|
+
let contents = {};
|
|
19914
|
+
contents = de_DescribeServiceDeploymentsResponse(data, context);
|
|
19915
|
+
const response = {
|
|
19916
|
+
$metadata: deserializeMetadata(output),
|
|
19917
|
+
...contents
|
|
19918
|
+
};
|
|
19919
|
+
return response;
|
|
19920
|
+
}, "de_DescribeServiceDeploymentsCommand");
|
|
19921
|
+
var de_DescribeServiceRevisionsCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
19922
|
+
if (output.statusCode >= 300) {
|
|
19923
|
+
return de_CommandError(output, context);
|
|
19924
|
+
}
|
|
19925
|
+
const data = await (0, import_core22.parseJsonBody)(output.body, context);
|
|
19926
|
+
let contents = {};
|
|
19927
|
+
contents = de_DescribeServiceRevisionsResponse(data, context);
|
|
19928
|
+
const response = {
|
|
19929
|
+
$metadata: deserializeMetadata(output),
|
|
19930
|
+
...contents
|
|
19931
|
+
};
|
|
19932
|
+
return response;
|
|
19933
|
+
}, "de_DescribeServiceRevisionsCommand");
|
|
19864
19934
|
var de_DescribeServicesCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
19865
19935
|
if (output.statusCode >= 300) {
|
|
19866
19936
|
return de_CommandError(output, context);
|
|
@@ -20004,6 +20074,19 @@ var require_dist_cjs54 = __commonJS({
|
|
|
20004
20074
|
};
|
|
20005
20075
|
return response;
|
|
20006
20076
|
}, "de_ListContainerInstancesCommand");
|
|
20077
|
+
var de_ListServiceDeploymentsCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
20078
|
+
if (output.statusCode >= 300) {
|
|
20079
|
+
return de_CommandError(output, context);
|
|
20080
|
+
}
|
|
20081
|
+
const data = await (0, import_core22.parseJsonBody)(output.body, context);
|
|
20082
|
+
let contents = {};
|
|
20083
|
+
contents = de_ListServiceDeploymentsResponse(data, context);
|
|
20084
|
+
const response = {
|
|
20085
|
+
$metadata: deserializeMetadata(output),
|
|
20086
|
+
...contents
|
|
20087
|
+
};
|
|
20088
|
+
return response;
|
|
20089
|
+
}, "de_ListServiceDeploymentsCommand");
|
|
20007
20090
|
var de_ListServicesCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
20008
20091
|
if (output.statusCode >= 300) {
|
|
20009
20092
|
return de_CommandError(output, context);
|
|
@@ -20709,6 +20792,12 @@ var require_dist_cjs54 = __commonJS({
|
|
|
20709
20792
|
});
|
|
20710
20793
|
return (0, import_smithy_client5.decorateServiceException)(exception, body);
|
|
20711
20794
|
}, "de_UpdateInProgressExceptionRes");
|
|
20795
|
+
var se_CreatedAt = /* @__PURE__ */ __name((input, context) => {
|
|
20796
|
+
return (0, import_smithy_client5.take)(input, {
|
|
20797
|
+
after: (_) => _.getTime() / 1e3,
|
|
20798
|
+
before: (_) => _.getTime() / 1e3
|
|
20799
|
+
});
|
|
20800
|
+
}, "se_CreatedAt");
|
|
20712
20801
|
var se_CreateTaskSetRequest = /* @__PURE__ */ __name((input, context) => {
|
|
20713
20802
|
return (0, import_smithy_client5.take)(input, {
|
|
20714
20803
|
capacityProviderStrategy: import_smithy_client5._json,
|
|
@@ -20726,6 +20815,16 @@ var require_dist_cjs54 = __commonJS({
|
|
|
20726
20815
|
taskDefinition: []
|
|
20727
20816
|
});
|
|
20728
20817
|
}, "se_CreateTaskSetRequest");
|
|
20818
|
+
var se_ListServiceDeploymentsRequest = /* @__PURE__ */ __name((input, context) => {
|
|
20819
|
+
return (0, import_smithy_client5.take)(input, {
|
|
20820
|
+
cluster: [],
|
|
20821
|
+
createdAt: (_) => se_CreatedAt(_, context),
|
|
20822
|
+
maxResults: [],
|
|
20823
|
+
nextToken: [],
|
|
20824
|
+
service: [],
|
|
20825
|
+
status: import_smithy_client5._json
|
|
20826
|
+
});
|
|
20827
|
+
}, "se_ListServiceDeploymentsRequest");
|
|
20729
20828
|
var se_RegisterContainerInstanceRequest = /* @__PURE__ */ __name((input, context) => {
|
|
20730
20829
|
return (0, import_smithy_client5.take)(input, {
|
|
20731
20830
|
attributes: import_smithy_client5._json,
|
|
@@ -20938,6 +21037,18 @@ var require_dist_cjs54 = __commonJS({
|
|
|
20938
21037
|
failures: import_smithy_client5._json
|
|
20939
21038
|
});
|
|
20940
21039
|
}, "de_DescribeContainerInstancesResponse");
|
|
21040
|
+
var de_DescribeServiceDeploymentsResponse = /* @__PURE__ */ __name((output, context) => {
|
|
21041
|
+
return (0, import_smithy_client5.take)(output, {
|
|
21042
|
+
failures: import_smithy_client5._json,
|
|
21043
|
+
serviceDeployments: (_) => de_ServiceDeployments(_, context)
|
|
21044
|
+
});
|
|
21045
|
+
}, "de_DescribeServiceDeploymentsResponse");
|
|
21046
|
+
var de_DescribeServiceRevisionsResponse = /* @__PURE__ */ __name((output, context) => {
|
|
21047
|
+
return (0, import_smithy_client5.take)(output, {
|
|
21048
|
+
failures: import_smithy_client5._json,
|
|
21049
|
+
serviceRevisions: (_) => de_ServiceRevisions(_, context)
|
|
21050
|
+
});
|
|
21051
|
+
}, "de_DescribeServiceRevisionsResponse");
|
|
20941
21052
|
var de_DescribeServicesResponse = /* @__PURE__ */ __name((output, context) => {
|
|
20942
21053
|
return (0, import_smithy_client5.take)(output, {
|
|
20943
21054
|
failures: import_smithy_client5._json,
|
|
@@ -20982,6 +21093,12 @@ var require_dist_cjs54 = __commonJS({
|
|
|
20982
21093
|
});
|
|
20983
21094
|
return retVal;
|
|
20984
21095
|
}, "de_InstanceHealthCheckResultList");
|
|
21096
|
+
var de_ListServiceDeploymentsResponse = /* @__PURE__ */ __name((output, context) => {
|
|
21097
|
+
return (0, import_smithy_client5.take)(output, {
|
|
21098
|
+
nextToken: import_smithy_client5.expectString,
|
|
21099
|
+
serviceDeployments: (_) => de_ServiceDeploymentsBrief(_, context)
|
|
21100
|
+
});
|
|
21101
|
+
}, "de_ListServiceDeploymentsResponse");
|
|
20985
21102
|
var de_ManagedAgent = /* @__PURE__ */ __name((output, context) => {
|
|
20986
21103
|
return (0, import_smithy_client5.take)(output, {
|
|
20987
21104
|
lastStartedAt: (_) => (0, import_smithy_client5.expectNonNull)((0, import_smithy_client5.parseEpochTimestamp)((0, import_smithy_client5.expectNumber)(_))),
|
|
@@ -21036,6 +21153,13 @@ var require_dist_cjs54 = __commonJS({
|
|
|
21036
21153
|
});
|
|
21037
21154
|
return retVal;
|
|
21038
21155
|
}, "de_Resources");
|
|
21156
|
+
var de_Rollback = /* @__PURE__ */ __name((output, context) => {
|
|
21157
|
+
return (0, import_smithy_client5.take)(output, {
|
|
21158
|
+
reason: import_smithy_client5.expectString,
|
|
21159
|
+
serviceRevisionArn: import_smithy_client5.expectString,
|
|
21160
|
+
startedAt: (_) => (0, import_smithy_client5.expectNonNull)((0, import_smithy_client5.parseEpochTimestamp)((0, import_smithy_client5.expectNumber)(_)))
|
|
21161
|
+
});
|
|
21162
|
+
}, "de_Rollback");
|
|
21039
21163
|
var de_RunTaskResponse = /* @__PURE__ */ __name((output, context) => {
|
|
21040
21164
|
return (0, import_smithy_client5.take)(output, {
|
|
21041
21165
|
failures: import_smithy_client5._json,
|
|
@@ -21083,6 +21207,51 @@ var require_dist_cjs54 = __commonJS({
|
|
|
21083
21207
|
taskSets: (_) => de_TaskSets(_, context)
|
|
21084
21208
|
});
|
|
21085
21209
|
}, "de_Service");
|
|
21210
|
+
var de_ServiceDeployment = /* @__PURE__ */ __name((output, context) => {
|
|
21211
|
+
return (0, import_smithy_client5.take)(output, {
|
|
21212
|
+
alarms: import_smithy_client5._json,
|
|
21213
|
+
clusterArn: import_smithy_client5.expectString,
|
|
21214
|
+
createdAt: (_) => (0, import_smithy_client5.expectNonNull)((0, import_smithy_client5.parseEpochTimestamp)((0, import_smithy_client5.expectNumber)(_))),
|
|
21215
|
+
deploymentCircuitBreaker: import_smithy_client5._json,
|
|
21216
|
+
deploymentConfiguration: import_smithy_client5._json,
|
|
21217
|
+
finishedAt: (_) => (0, import_smithy_client5.expectNonNull)((0, import_smithy_client5.parseEpochTimestamp)((0, import_smithy_client5.expectNumber)(_))),
|
|
21218
|
+
rollback: (_) => de_Rollback(_, context),
|
|
21219
|
+
serviceArn: import_smithy_client5.expectString,
|
|
21220
|
+
serviceDeploymentArn: import_smithy_client5.expectString,
|
|
21221
|
+
sourceServiceRevisions: import_smithy_client5._json,
|
|
21222
|
+
startedAt: (_) => (0, import_smithy_client5.expectNonNull)((0, import_smithy_client5.parseEpochTimestamp)((0, import_smithy_client5.expectNumber)(_))),
|
|
21223
|
+
status: import_smithy_client5.expectString,
|
|
21224
|
+
statusReason: import_smithy_client5.expectString,
|
|
21225
|
+
stoppedAt: (_) => (0, import_smithy_client5.expectNonNull)((0, import_smithy_client5.parseEpochTimestamp)((0, import_smithy_client5.expectNumber)(_))),
|
|
21226
|
+
targetServiceRevision: import_smithy_client5._json,
|
|
21227
|
+
updatedAt: (_) => (0, import_smithy_client5.expectNonNull)((0, import_smithy_client5.parseEpochTimestamp)((0, import_smithy_client5.expectNumber)(_)))
|
|
21228
|
+
});
|
|
21229
|
+
}, "de_ServiceDeployment");
|
|
21230
|
+
var de_ServiceDeploymentBrief = /* @__PURE__ */ __name((output, context) => {
|
|
21231
|
+
return (0, import_smithy_client5.take)(output, {
|
|
21232
|
+
clusterArn: import_smithy_client5.expectString,
|
|
21233
|
+
createdAt: (_) => (0, import_smithy_client5.expectNonNull)((0, import_smithy_client5.parseEpochTimestamp)((0, import_smithy_client5.expectNumber)(_))),
|
|
21234
|
+
finishedAt: (_) => (0, import_smithy_client5.expectNonNull)((0, import_smithy_client5.parseEpochTimestamp)((0, import_smithy_client5.expectNumber)(_))),
|
|
21235
|
+
serviceArn: import_smithy_client5.expectString,
|
|
21236
|
+
serviceDeploymentArn: import_smithy_client5.expectString,
|
|
21237
|
+
startedAt: (_) => (0, import_smithy_client5.expectNonNull)((0, import_smithy_client5.parseEpochTimestamp)((0, import_smithy_client5.expectNumber)(_))),
|
|
21238
|
+
status: import_smithy_client5.expectString,
|
|
21239
|
+
statusReason: import_smithy_client5.expectString,
|
|
21240
|
+
targetServiceRevisionArn: import_smithy_client5.expectString
|
|
21241
|
+
});
|
|
21242
|
+
}, "de_ServiceDeploymentBrief");
|
|
21243
|
+
var de_ServiceDeployments = /* @__PURE__ */ __name((output, context) => {
|
|
21244
|
+
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
21245
|
+
return de_ServiceDeployment(entry, context);
|
|
21246
|
+
});
|
|
21247
|
+
return retVal;
|
|
21248
|
+
}, "de_ServiceDeployments");
|
|
21249
|
+
var de_ServiceDeploymentsBrief = /* @__PURE__ */ __name((output, context) => {
|
|
21250
|
+
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
21251
|
+
return de_ServiceDeploymentBrief(entry, context);
|
|
21252
|
+
});
|
|
21253
|
+
return retVal;
|
|
21254
|
+
}, "de_ServiceDeploymentsBrief");
|
|
21086
21255
|
var de_ServiceEvent = /* @__PURE__ */ __name((output, context) => {
|
|
21087
21256
|
return (0, import_smithy_client5.take)(output, {
|
|
21088
21257
|
createdAt: (_) => (0, import_smithy_client5.expectNonNull)((0, import_smithy_client5.parseEpochTimestamp)((0, import_smithy_client5.expectNumber)(_))),
|
|
@@ -21096,6 +21265,33 @@ var require_dist_cjs54 = __commonJS({
|
|
|
21096
21265
|
});
|
|
21097
21266
|
return retVal;
|
|
21098
21267
|
}, "de_ServiceEvents");
|
|
21268
|
+
var de_ServiceRevision = /* @__PURE__ */ __name((output, context) => {
|
|
21269
|
+
return (0, import_smithy_client5.take)(output, {
|
|
21270
|
+
capacityProviderStrategy: import_smithy_client5._json,
|
|
21271
|
+
clusterArn: import_smithy_client5.expectString,
|
|
21272
|
+
containerImages: import_smithy_client5._json,
|
|
21273
|
+
createdAt: (_) => (0, import_smithy_client5.expectNonNull)((0, import_smithy_client5.parseEpochTimestamp)((0, import_smithy_client5.expectNumber)(_))),
|
|
21274
|
+
fargateEphemeralStorage: import_smithy_client5._json,
|
|
21275
|
+
guardDutyEnabled: import_smithy_client5.expectBoolean,
|
|
21276
|
+
launchType: import_smithy_client5.expectString,
|
|
21277
|
+
loadBalancers: import_smithy_client5._json,
|
|
21278
|
+
networkConfiguration: import_smithy_client5._json,
|
|
21279
|
+
platformFamily: import_smithy_client5.expectString,
|
|
21280
|
+
platformVersion: import_smithy_client5.expectString,
|
|
21281
|
+
serviceArn: import_smithy_client5.expectString,
|
|
21282
|
+
serviceConnectConfiguration: import_smithy_client5._json,
|
|
21283
|
+
serviceRegistries: import_smithy_client5._json,
|
|
21284
|
+
serviceRevisionArn: import_smithy_client5.expectString,
|
|
21285
|
+
taskDefinition: import_smithy_client5.expectString,
|
|
21286
|
+
volumeConfigurations: import_smithy_client5._json
|
|
21287
|
+
});
|
|
21288
|
+
}, "de_ServiceRevision");
|
|
21289
|
+
var de_ServiceRevisions = /* @__PURE__ */ __name((output, context) => {
|
|
21290
|
+
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
21291
|
+
return de_ServiceRevision(entry, context);
|
|
21292
|
+
});
|
|
21293
|
+
return retVal;
|
|
21294
|
+
}, "de_ServiceRevisions");
|
|
21099
21295
|
var de_Services = /* @__PURE__ */ __name((output, context) => {
|
|
21100
21296
|
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
21101
21297
|
return de_Service(entry, context);
|
|
@@ -21437,6 +21633,24 @@ var require_dist_cjs54 = __commonJS({
|
|
|
21437
21633
|
};
|
|
21438
21634
|
__name(_DescribeContainerInstancesCommand, "DescribeContainerInstancesCommand");
|
|
21439
21635
|
var DescribeContainerInstancesCommand = _DescribeContainerInstancesCommand;
|
|
21636
|
+
var _DescribeServiceDeploymentsCommand = class _DescribeServiceDeploymentsCommand extends import_smithy_client5.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
21637
|
+
return [
|
|
21638
|
+
(0, import_middleware_serde2.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
21639
|
+
(0, import_middleware_endpoint2.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
21640
|
+
];
|
|
21641
|
+
}).s("AmazonEC2ContainerServiceV20141113", "DescribeServiceDeployments", {}).n("ECSClient", "DescribeServiceDeploymentsCommand").f(void 0, void 0).ser(se_DescribeServiceDeploymentsCommand).de(de_DescribeServiceDeploymentsCommand).build() {
|
|
21642
|
+
};
|
|
21643
|
+
__name(_DescribeServiceDeploymentsCommand, "DescribeServiceDeploymentsCommand");
|
|
21644
|
+
var DescribeServiceDeploymentsCommand = _DescribeServiceDeploymentsCommand;
|
|
21645
|
+
var _DescribeServiceRevisionsCommand = class _DescribeServiceRevisionsCommand extends import_smithy_client5.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
21646
|
+
return [
|
|
21647
|
+
(0, import_middleware_serde2.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
21648
|
+
(0, import_middleware_endpoint2.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
21649
|
+
];
|
|
21650
|
+
}).s("AmazonEC2ContainerServiceV20141113", "DescribeServiceRevisions", {}).n("ECSClient", "DescribeServiceRevisionsCommand").f(void 0, void 0).ser(se_DescribeServiceRevisionsCommand).de(de_DescribeServiceRevisionsCommand).build() {
|
|
21651
|
+
};
|
|
21652
|
+
__name(_DescribeServiceRevisionsCommand, "DescribeServiceRevisionsCommand");
|
|
21653
|
+
var DescribeServiceRevisionsCommand = _DescribeServiceRevisionsCommand;
|
|
21440
21654
|
var _DescribeServicesCommand = class _DescribeServicesCommand extends import_smithy_client5.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
21441
21655
|
return [
|
|
21442
21656
|
(0, import_middleware_serde2.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
@@ -21536,6 +21750,15 @@ var require_dist_cjs54 = __commonJS({
|
|
|
21536
21750
|
};
|
|
21537
21751
|
__name(_ListContainerInstancesCommand, "ListContainerInstancesCommand");
|
|
21538
21752
|
var ListContainerInstancesCommand = _ListContainerInstancesCommand;
|
|
21753
|
+
var _ListServiceDeploymentsCommand = class _ListServiceDeploymentsCommand extends import_smithy_client5.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
21754
|
+
return [
|
|
21755
|
+
(0, import_middleware_serde2.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
21756
|
+
(0, import_middleware_endpoint2.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
21757
|
+
];
|
|
21758
|
+
}).s("AmazonEC2ContainerServiceV20141113", "ListServiceDeployments", {}).n("ECSClient", "ListServiceDeploymentsCommand").f(void 0, void 0).ser(se_ListServiceDeploymentsCommand).de(de_ListServiceDeploymentsCommand).build() {
|
|
21759
|
+
};
|
|
21760
|
+
__name(_ListServiceDeploymentsCommand, "ListServiceDeploymentsCommand");
|
|
21761
|
+
var ListServiceDeploymentsCommand = _ListServiceDeploymentsCommand;
|
|
21539
21762
|
var _ListServicesByNamespaceCommand = class _ListServicesByNamespaceCommand extends import_smithy_client5.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
21540
21763
|
return [
|
|
21541
21764
|
(0, import_middleware_serde2.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
@@ -21814,6 +22037,8 @@ var require_dist_cjs54 = __commonJS({
|
|
|
21814
22037
|
DescribeCapacityProvidersCommand,
|
|
21815
22038
|
DescribeClustersCommand,
|
|
21816
22039
|
DescribeContainerInstancesCommand,
|
|
22040
|
+
DescribeServiceDeploymentsCommand,
|
|
22041
|
+
DescribeServiceRevisionsCommand,
|
|
21817
22042
|
DescribeServicesCommand,
|
|
21818
22043
|
DescribeTaskDefinitionCommand,
|
|
21819
22044
|
DescribeTasksCommand,
|
|
@@ -21825,6 +22050,7 @@ var require_dist_cjs54 = __commonJS({
|
|
|
21825
22050
|
ListAttributesCommand,
|
|
21826
22051
|
ListClustersCommand: ListClustersCommand2,
|
|
21827
22052
|
ListContainerInstancesCommand,
|
|
22053
|
+
ListServiceDeploymentsCommand,
|
|
21828
22054
|
ListServicesCommand,
|
|
21829
22055
|
ListServicesByNamespaceCommand,
|
|
21830
22056
|
ListTagsForResourceCommand,
|