aws-cdk 2.1114.1 → 2.1115.0
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/README.md +10 -6
- package/THIRD_PARTY_LICENSES +43 -248
- package/build-info.json +2 -2
- package/db.json.gz +0 -0
- package/lib/cli/cdk-toolkit.d.ts +11 -18
- package/lib/cli/cdk-toolkit.js +38 -37
- package/lib/cli/cli-config.js +14 -6
- package/lib/cli/cli-type-registry.json +19 -6
- package/lib/cli/cli.js +20 -2
- package/lib/cli/convert-to-user-input.js +3 -1
- package/lib/cli/parse-command-line-arguments.js +15 -6
- package/lib/cli/user-input.d.ts +14 -5
- package/lib/cli/user-input.js +1 -1
- package/lib/index.js +739 -657
- package/lib/init-templates/.init-version.json +1 -1
- package/lib/init-templates/.recommended-feature-flags.json +3 -1
- package/package.json +5 -5
package/lib/index.js
CHANGED
|
@@ -3599,7 +3599,7 @@ var require_semver2 = __commonJS({
|
|
|
3599
3599
|
// ../@aws-cdk/cloud-assembly-schema/cli-version.json
|
|
3600
3600
|
var require_cli_version = __commonJS({
|
|
3601
3601
|
"../@aws-cdk/cloud-assembly-schema/cli-version.json"(exports2, module2) {
|
|
3602
|
-
module2.exports = { version: "2.
|
|
3602
|
+
module2.exports = { version: "2.1115.0" };
|
|
3603
3603
|
}
|
|
3604
3604
|
});
|
|
3605
3605
|
|
|
@@ -10333,7 +10333,7 @@ var init_container_images = __esm({
|
|
|
10333
10333
|
}
|
|
10334
10334
|
async isPublished() {
|
|
10335
10335
|
try {
|
|
10336
|
-
const initOnce = await this.initOnce(
|
|
10336
|
+
const initOnce = await this.initOnce();
|
|
10337
10337
|
return initOnce.destinationAlreadyExists;
|
|
10338
10338
|
} catch (e6) {
|
|
10339
10339
|
this.host.emitMessage("debug" /* DEBUG */, `${e6.message}`);
|
|
@@ -10362,15 +10362,12 @@ var init_container_images = __esm({
|
|
|
10362
10362
|
tag: initOnce.imageUri
|
|
10363
10363
|
});
|
|
10364
10364
|
}
|
|
10365
|
-
async initOnce(
|
|
10365
|
+
async initOnce() {
|
|
10366
10366
|
if (this.init) {
|
|
10367
10367
|
return this.init;
|
|
10368
10368
|
}
|
|
10369
10369
|
const destination = await replaceAwsPlaceholders(this.asset.destination, this.host.aws);
|
|
10370
|
-
const ecr = await this.host.aws.ecrClient(
|
|
10371
|
-
...destinationToClientOptions(destination),
|
|
10372
|
-
quiet: options.quiet
|
|
10373
|
-
});
|
|
10370
|
+
const ecr = await this.host.aws.ecrClient(destinationToClientOptions(destination));
|
|
10374
10371
|
const account = /* @__PURE__ */ __name(async () => (await this.host.aws.discoverCurrentAccount())?.accountId, "account");
|
|
10375
10372
|
const repoUri = await repositoryUri(ecr, destination.repositoryName);
|
|
10376
10373
|
if (!repoUri) {
|
|
@@ -16715,7 +16712,7 @@ var require_brace_expansion = __commonJS({
|
|
|
16715
16712
|
var x6 = numeric(n6[0]);
|
|
16716
16713
|
var y3 = numeric(n6[1]);
|
|
16717
16714
|
var width = Math.max(n6[0].length, n6[1].length);
|
|
16718
|
-
var incr = n6.length == 3 ? Math.abs(numeric(n6[2])) : 1;
|
|
16715
|
+
var incr = n6.length == 3 ? Math.max(Math.abs(numeric(n6[2])), 1) : 1;
|
|
16719
16716
|
var test = lte2;
|
|
16720
16717
|
var reverse = y3 < x6;
|
|
16721
16718
|
if (reverse) {
|
|
@@ -59216,10 +59213,7 @@ var init_files = __esm({
|
|
|
59216
59213
|
const destination = await replaceAwsPlaceholders(this.asset.destination, this.host.aws);
|
|
59217
59214
|
const s3Url = `s3://${destination.bucketName}/${destination.objectKey}`;
|
|
59218
59215
|
try {
|
|
59219
|
-
const s32 = await this.host.aws.s3Client(
|
|
59220
|
-
...destinationToClientOptions(destination),
|
|
59221
|
-
quiet: true
|
|
59222
|
-
});
|
|
59216
|
+
const s32 = await this.host.aws.s3Client(destinationToClientOptions(destination));
|
|
59223
59217
|
this.host.emitMessage("check" /* CHECK */, `Check ${s3Url}`);
|
|
59224
59218
|
if (await objectExists(s32, destination.bucketName, destination.objectKey)) {
|
|
59225
59219
|
this.host.emitMessage("found" /* FOUND */, `Found ${s3Url}`);
|
|
@@ -59805,6 +59799,7 @@ var init_publishing = __esm({
|
|
|
59805
59799
|
this.publishInParallel = options.publishInParallel ?? false;
|
|
59806
59800
|
this.buildAssets = options.buildAssets ?? true;
|
|
59807
59801
|
this.publishAssets = options.publishAssets ?? true;
|
|
59802
|
+
this.subprocessOutputDestination = options.subprocessOutputDestination ?? (options.quiet ? "ignore" : "stdio");
|
|
59808
59803
|
const self2 = this;
|
|
59809
59804
|
this.handlerHost = {
|
|
59810
59805
|
aws: this.options.aws,
|
|
@@ -59961,14 +59956,8 @@ var init_publishing = __esm({
|
|
|
59961
59956
|
if (existing) {
|
|
59962
59957
|
return existing;
|
|
59963
59958
|
}
|
|
59964
|
-
if (this.options.quiet !== void 0 && this.options.subprocessOutputDestination) {
|
|
59965
|
-
throw new Error(
|
|
59966
|
-
"Cannot set both quiet and subprocessOutputDestination. Please use only subprocessOutputDestination"
|
|
59967
|
-
);
|
|
59968
|
-
}
|
|
59969
|
-
const subprocessOutputDestination = this.options.subprocessOutputDestination ?? (this.options.quiet ? "ignore" : "stdio");
|
|
59970
59959
|
const ret = makeAssetHandler(this.manifest, asset, this.handlerHost, {
|
|
59971
|
-
subprocessOutputDestination
|
|
59960
|
+
subprocessOutputDestination: this.subprocessOutputDestination
|
|
59972
59961
|
});
|
|
59973
59962
|
this.handlerCache.set(asset, ret);
|
|
59974
59963
|
return ret;
|
|
@@ -76154,7 +76143,7 @@ var require_httpAuthSchemeProvider = __commonJS({
|
|
|
76154
76143
|
"use strict";
|
|
76155
76144
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
76156
76145
|
exports2.resolveHttpAuthSchemeConfig = exports2.defaultECRHttpAuthSchemeProvider = exports2.defaultECRHttpAuthSchemeParametersProvider = void 0;
|
|
76157
|
-
var
|
|
76146
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
76158
76147
|
var util_middleware_1 = require_dist_cjs6();
|
|
76159
76148
|
var defaultECRHttpAuthSchemeParametersProvider = /* @__PURE__ */ __name(async (config, context, input) => {
|
|
76160
76149
|
return {
|
|
@@ -76192,7 +76181,7 @@ var require_httpAuthSchemeProvider = __commonJS({
|
|
|
76192
76181
|
}, "defaultECRHttpAuthSchemeProvider");
|
|
76193
76182
|
exports2.defaultECRHttpAuthSchemeProvider = defaultECRHttpAuthSchemeProvider;
|
|
76194
76183
|
var resolveHttpAuthSchemeConfig6 = /* @__PURE__ */ __name((config) => {
|
|
76195
|
-
const config_0 = (0,
|
|
76184
|
+
const config_0 = (0, httpAuthSchemes_1.resolveAwsSdkSigV4Config)(config);
|
|
76196
76185
|
return Object.assign(config_0, {
|
|
76197
76186
|
authSchemePreference: (0, util_middleware_1.normalizeProvider)(config.authSchemePreference ?? [])
|
|
76198
76187
|
});
|
|
@@ -76207,7 +76196,7 @@ var require_package = __commonJS({
|
|
|
76207
76196
|
module2.exports = {
|
|
76208
76197
|
name: "@aws-sdk/client-ecr",
|
|
76209
76198
|
description: "AWS SDK for JavaScript Ecr Client for Node.js, Browser and React Native",
|
|
76210
|
-
version: "3.
|
|
76199
|
+
version: "3.1019.0",
|
|
76211
76200
|
scripts: {
|
|
76212
76201
|
build: "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
76213
76202
|
"build:cjs": "node ../../scripts/compilation/inline client-ecr",
|
|
@@ -76229,17 +76218,17 @@ var require_package = __commonJS({
|
|
|
76229
76218
|
dependencies: {
|
|
76230
76219
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
76231
76220
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
76232
|
-
"@aws-sdk/core": "^3.973.
|
|
76233
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
76221
|
+
"@aws-sdk/core": "^3.973.25",
|
|
76222
|
+
"@aws-sdk/credential-provider-node": "^3.972.27",
|
|
76234
76223
|
"@aws-sdk/middleware-host-header": "^3.972.8",
|
|
76235
76224
|
"@aws-sdk/middleware-logger": "^3.972.8",
|
|
76236
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
76237
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
76238
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
76225
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.9",
|
|
76226
|
+
"@aws-sdk/middleware-user-agent": "^3.972.26",
|
|
76227
|
+
"@aws-sdk/region-config-resolver": "^3.972.10",
|
|
76239
76228
|
"@aws-sdk/types": "^3.973.6",
|
|
76240
76229
|
"@aws-sdk/util-endpoints": "^3.996.5",
|
|
76241
76230
|
"@aws-sdk/util-user-agent-browser": "^3.972.8",
|
|
76242
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
76231
|
+
"@aws-sdk/util-user-agent-node": "^3.973.12",
|
|
76243
76232
|
"@smithy/config-resolver": "^4.4.13",
|
|
76244
76233
|
"@smithy/core": "^3.23.12",
|
|
76245
76234
|
"@smithy/fetch-http-handler": "^5.3.15",
|
|
@@ -76931,7 +76920,7 @@ function createSmithyApiNoAuthHttpAuthOption(authParameters) {
|
|
|
76931
76920
|
var import_util_middleware6, defaultSSOOIDCHttpAuthSchemeParametersProvider, defaultSSOOIDCHttpAuthSchemeProvider, resolveHttpAuthSchemeConfig;
|
|
76932
76921
|
var init_httpAuthSchemeProvider = __esm({
|
|
76933
76922
|
"../../node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/auth/httpAuthSchemeProvider.js"() {
|
|
76934
|
-
|
|
76923
|
+
init_httpAuthSchemes2();
|
|
76935
76924
|
import_util_middleware6 = __toESM(require_dist_cjs6());
|
|
76936
76925
|
defaultSSOOIDCHttpAuthSchemeParametersProvider = /* @__PURE__ */ __name(async (config, context, input) => {
|
|
76937
76926
|
return {
|
|
@@ -76991,7 +76980,7 @@ var init_package = __esm({
|
|
|
76991
76980
|
"../../node_modules/@aws-sdk/nested-clients/package.json"() {
|
|
76992
76981
|
package_default = {
|
|
76993
76982
|
name: "@aws-sdk/nested-clients",
|
|
76994
|
-
version: "3.996.
|
|
76983
|
+
version: "3.996.16",
|
|
76995
76984
|
description: "Nested clients for AWS SDK packages.",
|
|
76996
76985
|
main: "./dist-cjs/index.js",
|
|
76997
76986
|
module: "./dist-es/index.js",
|
|
@@ -77020,16 +77009,16 @@ var init_package = __esm({
|
|
|
77020
77009
|
dependencies: {
|
|
77021
77010
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
77022
77011
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
77023
|
-
"@aws-sdk/core": "^3.973.
|
|
77012
|
+
"@aws-sdk/core": "^3.973.25",
|
|
77024
77013
|
"@aws-sdk/middleware-host-header": "^3.972.8",
|
|
77025
77014
|
"@aws-sdk/middleware-logger": "^3.972.8",
|
|
77026
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
77027
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
77028
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
77015
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.9",
|
|
77016
|
+
"@aws-sdk/middleware-user-agent": "^3.972.26",
|
|
77017
|
+
"@aws-sdk/region-config-resolver": "^3.972.10",
|
|
77029
77018
|
"@aws-sdk/types": "^3.973.6",
|
|
77030
77019
|
"@aws-sdk/util-endpoints": "^3.996.5",
|
|
77031
77020
|
"@aws-sdk/util-user-agent-browser": "^3.972.8",
|
|
77032
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
77021
|
+
"@aws-sdk/util-user-agent-node": "^3.973.12",
|
|
77033
77022
|
"@smithy/config-resolver": "^4.4.13",
|
|
77034
77023
|
"@smithy/core": "^3.23.12",
|
|
77035
77024
|
"@smithy/fetch-http-handler": "^5.3.15",
|
|
@@ -78004,7 +77993,7 @@ var init_schemas_0 = __esm({
|
|
|
78004
77993
|
var import_smithy_client9, import_url_parser2, import_util_base648, import_util_utf88, getRuntimeConfig;
|
|
78005
77994
|
var init_runtimeConfig_shared = __esm({
|
|
78006
77995
|
"../../node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.shared.js"() {
|
|
78007
|
-
|
|
77996
|
+
init_httpAuthSchemes2();
|
|
78008
77997
|
init_protocols2();
|
|
78009
77998
|
init_dist_es();
|
|
78010
77999
|
import_smithy_client9 = __toESM(require_dist_cjs25());
|
|
@@ -78057,7 +78046,8 @@ var import_util_user_agent_node, import_config_resolver, import_hash_node, impor
|
|
|
78057
78046
|
var init_runtimeConfig = __esm({
|
|
78058
78047
|
"../../node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.js"() {
|
|
78059
78048
|
init_package();
|
|
78060
|
-
|
|
78049
|
+
init_client();
|
|
78050
|
+
init_httpAuthSchemes2();
|
|
78061
78051
|
import_util_user_agent_node = __toESM(require_dist_cjs41());
|
|
78062
78052
|
import_config_resolver = __toESM(require_dist_cjs31());
|
|
78063
78053
|
import_hash_node = __toESM(require_dist_cjs42());
|
|
@@ -78577,7 +78567,7 @@ function createSmithyApiNoAuthHttpAuthOption2(authParameters) {
|
|
|
78577
78567
|
var import_util_middleware7, defaultSSOHttpAuthSchemeParametersProvider, defaultSSOHttpAuthSchemeProvider, resolveHttpAuthSchemeConfig2;
|
|
78578
78568
|
var init_httpAuthSchemeProvider2 = __esm({
|
|
78579
78569
|
"../../node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/auth/httpAuthSchemeProvider.js"() {
|
|
78580
|
-
|
|
78570
|
+
init_httpAuthSchemes2();
|
|
78581
78571
|
import_util_middleware7 = __toESM(require_dist_cjs6());
|
|
78582
78572
|
defaultSSOHttpAuthSchemeParametersProvider = /* @__PURE__ */ __name(async (config, context, input) => {
|
|
78583
78573
|
return {
|
|
@@ -78967,7 +78957,7 @@ var init_schemas_02 = __esm({
|
|
|
78967
78957
|
var import_smithy_client16, import_url_parser3, import_util_base649, import_util_utf89, getRuntimeConfig3;
|
|
78968
78958
|
var init_runtimeConfig_shared2 = __esm({
|
|
78969
78959
|
"../../node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.shared.js"() {
|
|
78970
|
-
|
|
78960
|
+
init_httpAuthSchemes2();
|
|
78971
78961
|
init_protocols2();
|
|
78972
78962
|
init_dist_es();
|
|
78973
78963
|
import_smithy_client16 = __toESM(require_dist_cjs25());
|
|
@@ -79020,7 +79010,8 @@ var import_util_user_agent_node2, import_config_resolver3, import_hash_node2, im
|
|
|
79020
79010
|
var init_runtimeConfig2 = __esm({
|
|
79021
79011
|
"../../node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.js"() {
|
|
79022
79012
|
init_package();
|
|
79023
|
-
|
|
79013
|
+
init_client();
|
|
79014
|
+
init_httpAuthSchemes2();
|
|
79024
79015
|
import_util_user_agent_node2 = __toESM(require_dist_cjs41());
|
|
79025
79016
|
import_config_resolver3 = __toESM(require_dist_cjs31());
|
|
79026
79017
|
import_hash_node2 = __toESM(require_dist_cjs42());
|
|
@@ -79486,7 +79477,7 @@ function createSmithyApiNoAuthHttpAuthOption3(authParameters) {
|
|
|
79486
79477
|
var import_util_middleware8, defaultSigninHttpAuthSchemeParametersProvider, defaultSigninHttpAuthSchemeProvider, resolveHttpAuthSchemeConfig3;
|
|
79487
79478
|
var init_httpAuthSchemeProvider3 = __esm({
|
|
79488
79479
|
"../../node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/auth/httpAuthSchemeProvider.js"() {
|
|
79489
|
-
|
|
79480
|
+
init_httpAuthSchemes2();
|
|
79490
79481
|
import_util_middleware8 = __toESM(require_dist_cjs6());
|
|
79491
79482
|
defaultSigninHttpAuthSchemeParametersProvider = /* @__PURE__ */ __name(async (config, context, input) => {
|
|
79492
79483
|
return {
|
|
@@ -79946,7 +79937,7 @@ var init_schemas_03 = __esm({
|
|
|
79946
79937
|
var import_smithy_client23, import_url_parser4, import_util_base6410, import_util_utf810, getRuntimeConfig5;
|
|
79947
79938
|
var init_runtimeConfig_shared3 = __esm({
|
|
79948
79939
|
"../../node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.shared.js"() {
|
|
79949
|
-
|
|
79940
|
+
init_httpAuthSchemes2();
|
|
79950
79941
|
init_protocols2();
|
|
79951
79942
|
init_dist_es();
|
|
79952
79943
|
import_smithy_client23 = __toESM(require_dist_cjs25());
|
|
@@ -79999,7 +79990,8 @@ var import_util_user_agent_node3, import_config_resolver5, import_hash_node3, im
|
|
|
79999
79990
|
var init_runtimeConfig3 = __esm({
|
|
80000
79991
|
"../../node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.js"() {
|
|
80001
79992
|
init_package();
|
|
80002
|
-
|
|
79993
|
+
init_client();
|
|
79994
|
+
init_httpAuthSchemes2();
|
|
80003
79995
|
import_util_user_agent_node3 = __toESM(require_dist_cjs41());
|
|
80004
79996
|
import_config_resolver5 = __toESM(require_dist_cjs31());
|
|
80005
79997
|
import_hash_node3 = __toESM(require_dist_cjs42());
|
|
@@ -80576,7 +80568,7 @@ function createSmithyApiNoAuthHttpAuthOption4(authParameters) {
|
|
|
80576
80568
|
var import_util_middleware9, defaultSTSHttpAuthSchemeParametersProvider, defaultSTSHttpAuthSchemeProvider, resolveStsAuthConfig, resolveHttpAuthSchemeConfig4;
|
|
80577
80569
|
var init_httpAuthSchemeProvider4 = __esm({
|
|
80578
80570
|
"../../node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/auth/httpAuthSchemeProvider.js"() {
|
|
80579
|
-
|
|
80571
|
+
init_httpAuthSchemes2();
|
|
80580
80572
|
import_util_middleware9 = __toESM(require_dist_cjs6());
|
|
80581
80573
|
init_STSClient();
|
|
80582
80574
|
defaultSTSHttpAuthSchemeParametersProvider = /* @__PURE__ */ __name(async (config, context, input) => {
|
|
@@ -81174,7 +81166,7 @@ var init_schemas_04 = __esm({
|
|
|
81174
81166
|
var import_smithy_client30, import_url_parser5, import_util_base6411, import_util_utf811, getRuntimeConfig7;
|
|
81175
81167
|
var init_runtimeConfig_shared4 = __esm({
|
|
81176
81168
|
"../../node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.shared.js"() {
|
|
81177
|
-
|
|
81169
|
+
init_httpAuthSchemes2();
|
|
81178
81170
|
init_protocols2();
|
|
81179
81171
|
init_dist_es();
|
|
81180
81172
|
import_smithy_client30 = __toESM(require_dist_cjs25());
|
|
@@ -81228,7 +81220,8 @@ var import_util_user_agent_node4, import_config_resolver7, import_hash_node4, im
|
|
|
81228
81220
|
var init_runtimeConfig4 = __esm({
|
|
81229
81221
|
"../../node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.js"() {
|
|
81230
81222
|
init_package();
|
|
81231
|
-
|
|
81223
|
+
init_client();
|
|
81224
|
+
init_httpAuthSchemes2();
|
|
81232
81225
|
import_util_user_agent_node4 = __toESM(require_dist_cjs41());
|
|
81233
81226
|
import_config_resolver7 = __toESM(require_dist_cjs31());
|
|
81234
81227
|
init_dist_es();
|
|
@@ -86177,7 +86170,7 @@ var require_runtimeConfig_shared = __commonJS({
|
|
|
86177
86170
|
"use strict";
|
|
86178
86171
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
86179
86172
|
exports2.getRuntimeConfig = void 0;
|
|
86180
|
-
var
|
|
86173
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
86181
86174
|
var protocols_1 = (init_protocols2(), __toCommonJS(protocols_exports2));
|
|
86182
86175
|
var smithy_client_1 = require_dist_cjs25();
|
|
86183
86176
|
var url_parser_1 = require_dist_cjs18();
|
|
@@ -86199,7 +86192,7 @@ var require_runtimeConfig_shared = __commonJS({
|
|
|
86199
86192
|
{
|
|
86200
86193
|
schemeId: "aws.auth#sigv4",
|
|
86201
86194
|
identityProvider: /* @__PURE__ */ __name((ipc) => ipc.getIdentityProvider("aws.auth#sigv4"), "identityProvider"),
|
|
86202
|
-
signer: new
|
|
86195
|
+
signer: new httpAuthSchemes_1.AwsSdkSigV4Signer()
|
|
86203
86196
|
}
|
|
86204
86197
|
],
|
|
86205
86198
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
@@ -86229,7 +86222,8 @@ var require_runtimeConfig = __commonJS({
|
|
|
86229
86222
|
exports2.getRuntimeConfig = void 0;
|
|
86230
86223
|
var tslib_1 = (init_tslib_es6(), __toCommonJS(tslib_es6_exports));
|
|
86231
86224
|
var package_json_1 = tslib_1.__importDefault(require_package());
|
|
86232
|
-
var
|
|
86225
|
+
var client_1 = (init_client(), __toCommonJS(client_exports));
|
|
86226
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
86233
86227
|
var credential_provider_node_1 = require_dist_cjs52();
|
|
86234
86228
|
var util_user_agent_node_1 = require_dist_cjs41();
|
|
86235
86229
|
var config_resolver_1 = require_dist_cjs31();
|
|
@@ -86247,7 +86241,7 @@ var require_runtimeConfig = __commonJS({
|
|
|
86247
86241
|
const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config);
|
|
86248
86242
|
const defaultConfigProvider = /* @__PURE__ */ __name(() => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode), "defaultConfigProvider");
|
|
86249
86243
|
const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
|
|
86250
|
-
(0,
|
|
86244
|
+
(0, client_1.emitWarningIfUnsupportedVersion)(process.version);
|
|
86251
86245
|
const loaderConfig = {
|
|
86252
86246
|
profile: config?.profile,
|
|
86253
86247
|
logger: clientSharedValues.logger
|
|
@@ -86257,7 +86251,7 @@ var require_runtimeConfig = __commonJS({
|
|
|
86257
86251
|
...config,
|
|
86258
86252
|
runtime: "node",
|
|
86259
86253
|
defaultsMode,
|
|
86260
|
-
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(
|
|
86254
|
+
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(httpAuthSchemes_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
86261
86255
|
bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
|
|
86262
86256
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? credential_provider_node_1.defaultProvider,
|
|
86263
86257
|
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? (0, util_user_agent_node_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
@@ -89924,7 +89918,7 @@ var require_httpAuthSchemeProvider2 = __commonJS({
|
|
|
89924
89918
|
"use strict";
|
|
89925
89919
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
89926
89920
|
exports2.resolveHttpAuthSchemeConfig = exports2.defaultS3HttpAuthSchemeProvider = exports2.defaultS3HttpAuthSchemeParametersProvider = void 0;
|
|
89927
|
-
var
|
|
89921
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
89928
89922
|
var signature_v4_multi_region_1 = require_dist_cjs64();
|
|
89929
89923
|
var middleware_endpoint_1 = require_dist_cjs36();
|
|
89930
89924
|
var util_middleware_1 = require_dist_cjs6();
|
|
@@ -90039,8 +90033,8 @@ var require_httpAuthSchemeProvider2 = __commonJS({
|
|
|
90039
90033
|
"aws.auth#sigv4a": createAwsAuthSigv4aHttpAuthOption
|
|
90040
90034
|
});
|
|
90041
90035
|
var resolveHttpAuthSchemeConfig6 = /* @__PURE__ */ __name((config) => {
|
|
90042
|
-
const config_0 = (0,
|
|
90043
|
-
const config_1 = (0,
|
|
90036
|
+
const config_0 = (0, httpAuthSchemes_1.resolveAwsSdkSigV4Config)(config);
|
|
90037
|
+
const config_1 = (0, httpAuthSchemes_1.resolveAwsSdkSigV4AConfig)(config_0);
|
|
90044
90038
|
return Object.assign(config_1, {
|
|
90045
90039
|
authSchemePreference: (0, util_middleware_1.normalizeProvider)(config.authSchemePreference ?? [])
|
|
90046
90040
|
});
|
|
@@ -95531,7 +95525,7 @@ var require_package2 = __commonJS({
|
|
|
95531
95525
|
module2.exports = {
|
|
95532
95526
|
name: "@aws-sdk/client-s3",
|
|
95533
95527
|
description: "AWS SDK for JavaScript S3 Client for Node.js, Browser and React Native",
|
|
95534
|
-
version: "3.
|
|
95528
|
+
version: "3.1019.0",
|
|
95535
95529
|
scripts: {
|
|
95536
95530
|
build: "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
95537
95531
|
"build:cjs": "node ../../scripts/compilation/inline client-s3",
|
|
@@ -95560,24 +95554,24 @@ var require_package2 = __commonJS({
|
|
|
95560
95554
|
"@aws-crypto/sha1-browser": "5.2.0",
|
|
95561
95555
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
95562
95556
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
95563
|
-
"@aws-sdk/core": "^3.973.
|
|
95564
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
95557
|
+
"@aws-sdk/core": "^3.973.25",
|
|
95558
|
+
"@aws-sdk/credential-provider-node": "^3.972.27",
|
|
95565
95559
|
"@aws-sdk/middleware-bucket-endpoint": "^3.972.8",
|
|
95566
95560
|
"@aws-sdk/middleware-expect-continue": "^3.972.8",
|
|
95567
|
-
"@aws-sdk/middleware-flexible-checksums": "^3.974.
|
|
95561
|
+
"@aws-sdk/middleware-flexible-checksums": "^3.974.5",
|
|
95568
95562
|
"@aws-sdk/middleware-host-header": "^3.972.8",
|
|
95569
95563
|
"@aws-sdk/middleware-location-constraint": "^3.972.8",
|
|
95570
95564
|
"@aws-sdk/middleware-logger": "^3.972.8",
|
|
95571
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
95572
|
-
"@aws-sdk/middleware-sdk-s3": "^3.972.
|
|
95565
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.9",
|
|
95566
|
+
"@aws-sdk/middleware-sdk-s3": "^3.972.26",
|
|
95573
95567
|
"@aws-sdk/middleware-ssec": "^3.972.8",
|
|
95574
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
95575
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
95576
|
-
"@aws-sdk/signature-v4-multi-region": "^3.996.
|
|
95568
|
+
"@aws-sdk/middleware-user-agent": "^3.972.26",
|
|
95569
|
+
"@aws-sdk/region-config-resolver": "^3.972.10",
|
|
95570
|
+
"@aws-sdk/signature-v4-multi-region": "^3.996.14",
|
|
95577
95571
|
"@aws-sdk/types": "^3.973.6",
|
|
95578
95572
|
"@aws-sdk/util-endpoints": "^3.996.5",
|
|
95579
95573
|
"@aws-sdk/util-user-agent-browser": "^3.972.8",
|
|
95580
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
95574
|
+
"@aws-sdk/util-user-agent-node": "^3.973.12",
|
|
95581
95575
|
"@smithy/config-resolver": "^4.4.13",
|
|
95582
95576
|
"@smithy/core": "^3.23.12",
|
|
95583
95577
|
"@smithy/eventstream-serde-browser": "^4.2.12",
|
|
@@ -95614,7 +95608,7 @@ var require_package2 = __commonJS({
|
|
|
95614
95608
|
tslib: "^2.6.2"
|
|
95615
95609
|
},
|
|
95616
95610
|
devDependencies: {
|
|
95617
|
-
"@aws-sdk/signature-v4-crt": "3.
|
|
95611
|
+
"@aws-sdk/signature-v4-crt": "3.1019.0",
|
|
95618
95612
|
"@smithy/snapshot-testing": "^2.0.3",
|
|
95619
95613
|
"@tsconfig/node20": "20.1.8",
|
|
95620
95614
|
"@types/node": "^20.14.8",
|
|
@@ -96664,7 +96658,7 @@ var require_runtimeConfig_shared2 = __commonJS({
|
|
|
96664
96658
|
"use strict";
|
|
96665
96659
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
96666
96660
|
exports2.getRuntimeConfig = void 0;
|
|
96667
|
-
var
|
|
96661
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
96668
96662
|
var middleware_sdk_s3_1 = require_dist_cjs62();
|
|
96669
96663
|
var signature_v4_multi_region_1 = require_dist_cjs64();
|
|
96670
96664
|
var smithy_client_1 = require_dist_cjs25();
|
|
@@ -96689,12 +96683,12 @@ var require_runtimeConfig_shared2 = __commonJS({
|
|
|
96689
96683
|
{
|
|
96690
96684
|
schemeId: "aws.auth#sigv4",
|
|
96691
96685
|
identityProvider: /* @__PURE__ */ __name((ipc) => ipc.getIdentityProvider("aws.auth#sigv4"), "identityProvider"),
|
|
96692
|
-
signer: new
|
|
96686
|
+
signer: new httpAuthSchemes_1.AwsSdkSigV4Signer()
|
|
96693
96687
|
},
|
|
96694
96688
|
{
|
|
96695
96689
|
schemeId: "aws.auth#sigv4a",
|
|
96696
96690
|
identityProvider: /* @__PURE__ */ __name((ipc) => ipc.getIdentityProvider("aws.auth#sigv4a"), "identityProvider"),
|
|
96697
|
-
signer: new
|
|
96691
|
+
signer: new httpAuthSchemes_1.AwsSdkSigV4ASigner()
|
|
96698
96692
|
}
|
|
96699
96693
|
],
|
|
96700
96694
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
@@ -96728,7 +96722,8 @@ var require_runtimeConfig2 = __commonJS({
|
|
|
96728
96722
|
exports2.getRuntimeConfig = void 0;
|
|
96729
96723
|
var tslib_1 = (init_tslib_es6(), __toCommonJS(tslib_es6_exports));
|
|
96730
96724
|
var package_json_1 = tslib_1.__importDefault(require_package2());
|
|
96731
|
-
var
|
|
96725
|
+
var client_1 = (init_client(), __toCommonJS(client_exports));
|
|
96726
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
96732
96727
|
var credential_provider_node_1 = require_dist_cjs52();
|
|
96733
96728
|
var middleware_bucket_endpoint_1 = require_dist_cjs65();
|
|
96734
96729
|
var middleware_flexible_checksums_1 = require_dist_cjs60();
|
|
@@ -96751,7 +96746,7 @@ var require_runtimeConfig2 = __commonJS({
|
|
|
96751
96746
|
const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config);
|
|
96752
96747
|
const defaultConfigProvider = /* @__PURE__ */ __name(() => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode), "defaultConfigProvider");
|
|
96753
96748
|
const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
|
|
96754
|
-
(0,
|
|
96749
|
+
(0, client_1.emitWarningIfUnsupportedVersion)(process.version);
|
|
96755
96750
|
const loaderConfig = {
|
|
96756
96751
|
profile: config?.profile,
|
|
96757
96752
|
logger: clientSharedValues.logger
|
|
@@ -96761,7 +96756,7 @@ var require_runtimeConfig2 = __commonJS({
|
|
|
96761
96756
|
...config,
|
|
96762
96757
|
runtime: "node",
|
|
96763
96758
|
defaultsMode,
|
|
96764
|
-
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(
|
|
96759
|
+
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(httpAuthSchemes_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
96765
96760
|
bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
|
|
96766
96761
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? credential_provider_node_1.defaultProvider,
|
|
96767
96762
|
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? (0, util_user_agent_node_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
@@ -96779,7 +96774,7 @@ var require_runtimeConfig2 = __commonJS({
|
|
|
96779
96774
|
}, config),
|
|
96780
96775
|
sha1: config?.sha1 ?? hash_node_1.Hash.bind(null, "sha1"),
|
|
96781
96776
|
sha256: config?.sha256 ?? hash_node_1.Hash.bind(null, "sha256"),
|
|
96782
|
-
sigv4aSigningRegionSet: config?.sigv4aSigningRegionSet ?? (0, node_config_provider_1.loadConfig)(
|
|
96777
|
+
sigv4aSigningRegionSet: config?.sigv4aSigningRegionSet ?? (0, node_config_provider_1.loadConfig)(httpAuthSchemes_1.NODE_SIGV4A_CONFIG_OPTIONS, loaderConfig),
|
|
96783
96778
|
streamCollector: config?.streamCollector ?? node_http_handler_1.streamCollector,
|
|
96784
96779
|
streamHasher: config?.streamHasher ?? hash_stream_node_1.readableStreamHasher,
|
|
96785
96780
|
useArnRegion: config?.useArnRegion ?? (0, node_config_provider_1.loadConfig)(middleware_bucket_endpoint_1.NODE_USE_ARN_REGION_CONFIG_OPTIONS, loaderConfig),
|
|
@@ -99414,7 +99409,7 @@ var require_httpAuthSchemeProvider3 = __commonJS({
|
|
|
99414
99409
|
"use strict";
|
|
99415
99410
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
99416
99411
|
exports2.resolveHttpAuthSchemeConfig = exports2.defaultSecretsManagerHttpAuthSchemeProvider = exports2.defaultSecretsManagerHttpAuthSchemeParametersProvider = void 0;
|
|
99417
|
-
var
|
|
99412
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
99418
99413
|
var util_middleware_1 = require_dist_cjs6();
|
|
99419
99414
|
var defaultSecretsManagerHttpAuthSchemeParametersProvider = /* @__PURE__ */ __name(async (config, context, input) => {
|
|
99420
99415
|
return {
|
|
@@ -99452,7 +99447,7 @@ var require_httpAuthSchemeProvider3 = __commonJS({
|
|
|
99452
99447
|
}, "defaultSecretsManagerHttpAuthSchemeProvider");
|
|
99453
99448
|
exports2.defaultSecretsManagerHttpAuthSchemeProvider = defaultSecretsManagerHttpAuthSchemeProvider;
|
|
99454
99449
|
var resolveHttpAuthSchemeConfig6 = /* @__PURE__ */ __name((config) => {
|
|
99455
|
-
const config_0 = (0,
|
|
99450
|
+
const config_0 = (0, httpAuthSchemes_1.resolveAwsSdkSigV4Config)(config);
|
|
99456
99451
|
return Object.assign(config_0, {
|
|
99457
99452
|
authSchemePreference: (0, util_middleware_1.normalizeProvider)(config.authSchemePreference ?? [])
|
|
99458
99453
|
});
|
|
@@ -99467,7 +99462,7 @@ var require_package3 = __commonJS({
|
|
|
99467
99462
|
module2.exports = {
|
|
99468
99463
|
name: "@aws-sdk/client-secrets-manager",
|
|
99469
99464
|
description: "AWS SDK for JavaScript Secrets Manager Client for Node.js, Browser and React Native",
|
|
99470
|
-
version: "3.
|
|
99465
|
+
version: "3.1019.0",
|
|
99471
99466
|
scripts: {
|
|
99472
99467
|
build: "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
99473
99468
|
"build:cjs": "node ../../scripts/compilation/inline client-secrets-manager",
|
|
@@ -99491,17 +99486,17 @@ var require_package3 = __commonJS({
|
|
|
99491
99486
|
dependencies: {
|
|
99492
99487
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
99493
99488
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
99494
|
-
"@aws-sdk/core": "^3.973.
|
|
99495
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
99489
|
+
"@aws-sdk/core": "^3.973.25",
|
|
99490
|
+
"@aws-sdk/credential-provider-node": "^3.972.27",
|
|
99496
99491
|
"@aws-sdk/middleware-host-header": "^3.972.8",
|
|
99497
99492
|
"@aws-sdk/middleware-logger": "^3.972.8",
|
|
99498
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
99499
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
99500
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
99493
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.9",
|
|
99494
|
+
"@aws-sdk/middleware-user-agent": "^3.972.26",
|
|
99495
|
+
"@aws-sdk/region-config-resolver": "^3.972.10",
|
|
99501
99496
|
"@aws-sdk/types": "^3.973.6",
|
|
99502
99497
|
"@aws-sdk/util-endpoints": "^3.996.5",
|
|
99503
99498
|
"@aws-sdk/util-user-agent-browser": "^3.972.8",
|
|
99504
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
99499
|
+
"@aws-sdk/util-user-agent-node": "^3.973.12",
|
|
99505
99500
|
"@smithy/config-resolver": "^4.4.13",
|
|
99506
99501
|
"@smithy/core": "^3.23.12",
|
|
99507
99502
|
"@smithy/fetch-http-handler": "^5.3.15",
|
|
@@ -100947,7 +100942,7 @@ var require_runtimeConfig_shared3 = __commonJS({
|
|
|
100947
100942
|
"use strict";
|
|
100948
100943
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
100949
100944
|
exports2.getRuntimeConfig = void 0;
|
|
100950
|
-
var
|
|
100945
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
100951
100946
|
var protocols_1 = (init_protocols2(), __toCommonJS(protocols_exports2));
|
|
100952
100947
|
var smithy_client_1 = require_dist_cjs25();
|
|
100953
100948
|
var url_parser_1 = require_dist_cjs18();
|
|
@@ -100969,7 +100964,7 @@ var require_runtimeConfig_shared3 = __commonJS({
|
|
|
100969
100964
|
{
|
|
100970
100965
|
schemeId: "aws.auth#sigv4",
|
|
100971
100966
|
identityProvider: /* @__PURE__ */ __name((ipc) => ipc.getIdentityProvider("aws.auth#sigv4"), "identityProvider"),
|
|
100972
|
-
signer: new
|
|
100967
|
+
signer: new httpAuthSchemes_1.AwsSdkSigV4Signer()
|
|
100973
100968
|
}
|
|
100974
100969
|
],
|
|
100975
100970
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
@@ -100998,7 +100993,8 @@ var require_runtimeConfig3 = __commonJS({
|
|
|
100998
100993
|
exports2.getRuntimeConfig = void 0;
|
|
100999
100994
|
var tslib_1 = (init_tslib_es6(), __toCommonJS(tslib_es6_exports));
|
|
101000
100995
|
var package_json_1 = tslib_1.__importDefault(require_package3());
|
|
101001
|
-
var
|
|
100996
|
+
var client_1 = (init_client(), __toCommonJS(client_exports));
|
|
100997
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
101002
100998
|
var credential_provider_node_1 = require_dist_cjs52();
|
|
101003
100999
|
var util_user_agent_node_1 = require_dist_cjs41();
|
|
101004
101000
|
var config_resolver_1 = require_dist_cjs31();
|
|
@@ -101016,7 +101012,7 @@ var require_runtimeConfig3 = __commonJS({
|
|
|
101016
101012
|
const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config);
|
|
101017
101013
|
const defaultConfigProvider = /* @__PURE__ */ __name(() => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode), "defaultConfigProvider");
|
|
101018
101014
|
const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
|
|
101019
|
-
(0,
|
|
101015
|
+
(0, client_1.emitWarningIfUnsupportedVersion)(process.version);
|
|
101020
101016
|
const loaderConfig = {
|
|
101021
101017
|
profile: config?.profile,
|
|
101022
101018
|
logger: clientSharedValues.logger
|
|
@@ -101026,7 +101022,7 @@ var require_runtimeConfig3 = __commonJS({
|
|
|
101026
101022
|
...config,
|
|
101027
101023
|
runtime: "node",
|
|
101028
101024
|
defaultsMode,
|
|
101029
|
-
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(
|
|
101025
|
+
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(httpAuthSchemes_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
101030
101026
|
bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
|
|
101031
101027
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? credential_provider_node_1.defaultProvider,
|
|
101032
101028
|
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? (0, util_user_agent_node_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
@@ -101444,7 +101440,7 @@ var require_httpAuthSchemeProvider4 = __commonJS({
|
|
|
101444
101440
|
"use strict";
|
|
101445
101441
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
101446
101442
|
exports2.resolveHttpAuthSchemeConfig = exports2.resolveStsAuthConfig = exports2.defaultSTSHttpAuthSchemeProvider = exports2.defaultSTSHttpAuthSchemeParametersProvider = void 0;
|
|
101447
|
-
var
|
|
101443
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
101448
101444
|
var util_middleware_1 = require_dist_cjs6();
|
|
101449
101445
|
var STSClient_1 = require_STSClient();
|
|
101450
101446
|
var defaultSTSHttpAuthSchemeParametersProvider2 = /* @__PURE__ */ __name(async (config, context, input) => {
|
|
@@ -101506,7 +101502,7 @@ var require_httpAuthSchemeProvider4 = __commonJS({
|
|
|
101506
101502
|
exports2.resolveStsAuthConfig = resolveStsAuthConfig2;
|
|
101507
101503
|
var resolveHttpAuthSchemeConfig6 = /* @__PURE__ */ __name((config) => {
|
|
101508
101504
|
const config_0 = (0, exports2.resolveStsAuthConfig)(config);
|
|
101509
|
-
const config_1 = (0,
|
|
101505
|
+
const config_1 = (0, httpAuthSchemes_1.resolveAwsSdkSigV4Config)(config_0);
|
|
101510
101506
|
return Object.assign(config_1, {
|
|
101511
101507
|
authSchemePreference: (0, util_middleware_1.normalizeProvider)(config.authSchemePreference ?? [])
|
|
101512
101508
|
});
|
|
@@ -101546,7 +101542,7 @@ var require_package4 = __commonJS({
|
|
|
101546
101542
|
module2.exports = {
|
|
101547
101543
|
name: "@aws-sdk/client-sts",
|
|
101548
101544
|
description: "AWS SDK for JavaScript Sts Client for Node.js, Browser and React Native",
|
|
101549
|
-
version: "3.
|
|
101545
|
+
version: "3.1019.0",
|
|
101550
101546
|
scripts: {
|
|
101551
101547
|
build: "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
101552
101548
|
"build:cjs": "node ../../scripts/compilation/inline client-sts",
|
|
@@ -101572,17 +101568,17 @@ var require_package4 = __commonJS({
|
|
|
101572
101568
|
dependencies: {
|
|
101573
101569
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
101574
101570
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
101575
|
-
"@aws-sdk/core": "^3.973.
|
|
101576
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
101571
|
+
"@aws-sdk/core": "^3.973.25",
|
|
101572
|
+
"@aws-sdk/credential-provider-node": "^3.972.27",
|
|
101577
101573
|
"@aws-sdk/middleware-host-header": "^3.972.8",
|
|
101578
101574
|
"@aws-sdk/middleware-logger": "^3.972.8",
|
|
101579
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
101580
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
101581
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
101575
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.9",
|
|
101576
|
+
"@aws-sdk/middleware-user-agent": "^3.972.26",
|
|
101577
|
+
"@aws-sdk/region-config-resolver": "^3.972.10",
|
|
101582
101578
|
"@aws-sdk/types": "^3.973.6",
|
|
101583
101579
|
"@aws-sdk/util-endpoints": "^3.996.5",
|
|
101584
101580
|
"@aws-sdk/util-user-agent-browser": "^3.972.8",
|
|
101585
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
101581
|
+
"@aws-sdk/util-user-agent-node": "^3.973.12",
|
|
101586
101582
|
"@smithy/config-resolver": "^4.4.13",
|
|
101587
101583
|
"@smithy/core": "^3.23.12",
|
|
101588
101584
|
"@smithy/fetch-http-handler": "^5.3.15",
|
|
@@ -102550,9 +102546,9 @@ var require_runtimeConfig_shared4 = __commonJS({
|
|
|
102550
102546
|
"use strict";
|
|
102551
102547
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
102552
102548
|
exports2.getRuntimeConfig = void 0;
|
|
102553
|
-
var
|
|
102549
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
102554
102550
|
var protocols_1 = (init_protocols2(), __toCommonJS(protocols_exports2));
|
|
102555
|
-
var
|
|
102551
|
+
var core_1 = (init_dist_es(), __toCommonJS(dist_es_exports));
|
|
102556
102552
|
var smithy_client_1 = require_dist_cjs25();
|
|
102557
102553
|
var url_parser_1 = require_dist_cjs18();
|
|
102558
102554
|
var util_base64_1 = require_dist_cjs10();
|
|
@@ -102573,12 +102569,12 @@ var require_runtimeConfig_shared4 = __commonJS({
|
|
|
102573
102569
|
{
|
|
102574
102570
|
schemeId: "aws.auth#sigv4",
|
|
102575
102571
|
identityProvider: /* @__PURE__ */ __name((ipc) => ipc.getIdentityProvider("aws.auth#sigv4"), "identityProvider"),
|
|
102576
|
-
signer: new
|
|
102572
|
+
signer: new httpAuthSchemes_1.AwsSdkSigV4Signer()
|
|
102577
102573
|
},
|
|
102578
102574
|
{
|
|
102579
102575
|
schemeId: "smithy.api#noAuth",
|
|
102580
102576
|
identityProvider: /* @__PURE__ */ __name((ipc) => ipc.getIdentityProvider("smithy.api#noAuth") || (async () => ({})), "identityProvider"),
|
|
102581
|
-
signer: new
|
|
102577
|
+
signer: new core_1.NoAuthSigner()
|
|
102582
102578
|
}
|
|
102583
102579
|
],
|
|
102584
102580
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
@@ -102608,11 +102604,12 @@ var require_runtimeConfig4 = __commonJS({
|
|
|
102608
102604
|
exports2.getRuntimeConfig = void 0;
|
|
102609
102605
|
var tslib_1 = (init_tslib_es6(), __toCommonJS(tslib_es6_exports));
|
|
102610
102606
|
var package_json_1 = tslib_1.__importDefault(require_package4());
|
|
102611
|
-
var
|
|
102607
|
+
var client_1 = (init_client(), __toCommonJS(client_exports));
|
|
102608
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
102612
102609
|
var credential_provider_node_1 = require_dist_cjs52();
|
|
102613
102610
|
var util_user_agent_node_1 = require_dist_cjs41();
|
|
102614
102611
|
var config_resolver_1 = require_dist_cjs31();
|
|
102615
|
-
var
|
|
102612
|
+
var core_1 = (init_dist_es(), __toCommonJS(dist_es_exports));
|
|
102616
102613
|
var hash_node_1 = require_dist_cjs42();
|
|
102617
102614
|
var middleware_retry_1 = require_dist_cjs37();
|
|
102618
102615
|
var node_config_provider_1 = require_dist_cjs34();
|
|
@@ -102627,7 +102624,7 @@ var require_runtimeConfig4 = __commonJS({
|
|
|
102627
102624
|
const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config);
|
|
102628
102625
|
const defaultConfigProvider = /* @__PURE__ */ __name(() => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode), "defaultConfigProvider");
|
|
102629
102626
|
const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
|
|
102630
|
-
(0,
|
|
102627
|
+
(0, client_1.emitWarningIfUnsupportedVersion)(process.version);
|
|
102631
102628
|
const loaderConfig = {
|
|
102632
102629
|
profile: config?.profile,
|
|
102633
102630
|
logger: clientSharedValues.logger
|
|
@@ -102637,7 +102634,7 @@ var require_runtimeConfig4 = __commonJS({
|
|
|
102637
102634
|
...config,
|
|
102638
102635
|
runtime: "node",
|
|
102639
102636
|
defaultsMode,
|
|
102640
|
-
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(
|
|
102637
|
+
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(httpAuthSchemes_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
102641
102638
|
bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
|
|
102642
102639
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? credential_provider_node_1.defaultProvider,
|
|
102643
102640
|
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? (0, util_user_agent_node_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
@@ -102645,12 +102642,12 @@ var require_runtimeConfig4 = __commonJS({
|
|
|
102645
102642
|
{
|
|
102646
102643
|
schemeId: "aws.auth#sigv4",
|
|
102647
102644
|
identityProvider: /* @__PURE__ */ __name((ipc) => ipc.getIdentityProvider("aws.auth#sigv4") || (async (idProps) => await (0, credential_provider_node_1.defaultProvider)(idProps?.__config || {})()), "identityProvider"),
|
|
102648
|
-
signer: new
|
|
102645
|
+
signer: new httpAuthSchemes_1.AwsSdkSigV4Signer()
|
|
102649
102646
|
},
|
|
102650
102647
|
{
|
|
102651
102648
|
schemeId: "smithy.api#noAuth",
|
|
102652
102649
|
identityProvider: /* @__PURE__ */ __name((ipc) => ipc.getIdentityProvider("smithy.api#noAuth") || (async () => ({})), "identityProvider"),
|
|
102653
|
-
signer: new
|
|
102650
|
+
signer: new core_1.NoAuthSigner()
|
|
102654
102651
|
}
|
|
102655
102652
|
],
|
|
102656
102653
|
maxAttempts: config?.maxAttempts ?? (0, node_config_provider_1.loadConfig)(middleware_retry_1.NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
@@ -103148,7 +103145,7 @@ function createSmithyApiNoAuthHttpAuthOption5(authParameters) {
|
|
|
103148
103145
|
var import_util_middleware10, defaultCognitoIdentityHttpAuthSchemeParametersProvider, defaultCognitoIdentityHttpAuthSchemeProvider, resolveHttpAuthSchemeConfig5;
|
|
103149
103146
|
var init_httpAuthSchemeProvider5 = __esm({
|
|
103150
103147
|
"../../node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/auth/httpAuthSchemeProvider.js"() {
|
|
103151
|
-
|
|
103148
|
+
init_httpAuthSchemes2();
|
|
103152
103149
|
import_util_middleware10 = __toESM(require_dist_cjs6());
|
|
103153
103150
|
defaultCognitoIdentityHttpAuthSchemeParametersProvider = /* @__PURE__ */ __name(async (config, context, input) => {
|
|
103154
103151
|
return {
|
|
@@ -103679,7 +103676,7 @@ var init_schemas_05 = __esm({
|
|
|
103679
103676
|
var import_smithy_client38, import_url_parser6, import_util_base6412, import_util_utf812, getRuntimeConfig9;
|
|
103680
103677
|
var init_runtimeConfig_shared5 = __esm({
|
|
103681
103678
|
"../../node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.shared.js"() {
|
|
103682
|
-
|
|
103679
|
+
init_httpAuthSchemes2();
|
|
103683
103680
|
init_protocols2();
|
|
103684
103681
|
init_dist_es();
|
|
103685
103682
|
import_smithy_client38 = __toESM(require_dist_cjs25());
|
|
@@ -103733,7 +103730,8 @@ var import_util_user_agent_node5, import_config_resolver9, import_hash_node5, im
|
|
|
103733
103730
|
var init_runtimeConfig5 = __esm({
|
|
103734
103731
|
"../../node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.js"() {
|
|
103735
103732
|
init_package();
|
|
103736
|
-
|
|
103733
|
+
init_client();
|
|
103734
|
+
init_httpAuthSchemes2();
|
|
103737
103735
|
import_util_user_agent_node5 = __toESM(require_dist_cjs41());
|
|
103738
103736
|
import_config_resolver9 = __toESM(require_dist_cjs31());
|
|
103739
103737
|
import_hash_node5 = __toESM(require_dist_cjs42());
|
|
@@ -104634,47 +104632,6 @@ var require_dist_cjs76 = __commonJS({
|
|
|
104634
104632
|
}
|
|
104635
104633
|
});
|
|
104636
104634
|
|
|
104637
|
-
// ../../node_modules/@smithy/abort-controller/dist-cjs/index.js
|
|
104638
|
-
var require_dist_cjs77 = __commonJS({
|
|
104639
|
-
"../../node_modules/@smithy/abort-controller/dist-cjs/index.js"(exports2) {
|
|
104640
|
-
"use strict";
|
|
104641
|
-
var AbortSignal2 = class {
|
|
104642
|
-
static {
|
|
104643
|
-
__name(this, "AbortSignal");
|
|
104644
|
-
}
|
|
104645
|
-
onabort = null;
|
|
104646
|
-
_aborted = false;
|
|
104647
|
-
constructor() {
|
|
104648
|
-
Object.defineProperty(this, "_aborted", {
|
|
104649
|
-
value: false,
|
|
104650
|
-
writable: true
|
|
104651
|
-
});
|
|
104652
|
-
}
|
|
104653
|
-
get aborted() {
|
|
104654
|
-
return this._aborted;
|
|
104655
|
-
}
|
|
104656
|
-
abort() {
|
|
104657
|
-
this._aborted = true;
|
|
104658
|
-
if (this.onabort) {
|
|
104659
|
-
this.onabort(this);
|
|
104660
|
-
this.onabort = null;
|
|
104661
|
-
}
|
|
104662
|
-
}
|
|
104663
|
-
};
|
|
104664
|
-
var AbortController2 = class {
|
|
104665
|
-
static {
|
|
104666
|
-
__name(this, "AbortController");
|
|
104667
|
-
}
|
|
104668
|
-
signal = new AbortSignal2();
|
|
104669
|
-
abort() {
|
|
104670
|
-
this.signal.abort();
|
|
104671
|
-
}
|
|
104672
|
-
};
|
|
104673
|
-
exports2.AbortController = AbortController2;
|
|
104674
|
-
exports2.AbortSignal = AbortSignal2;
|
|
104675
|
-
}
|
|
104676
|
-
});
|
|
104677
|
-
|
|
104678
104635
|
// ../../node_modules/@aws-sdk/lib-storage/dist-cjs/runtimeConfig.shared.js
|
|
104679
104636
|
var require_runtimeConfig_shared5 = __commonJS({
|
|
104680
104637
|
"../../node_modules/@aws-sdk/lib-storage/dist-cjs/runtimeConfig.shared.js"(exports2) {
|
|
@@ -104711,11 +104668,10 @@ var require_runtimeConfig5 = __commonJS({
|
|
|
104711
104668
|
});
|
|
104712
104669
|
|
|
104713
104670
|
// ../../node_modules/@aws-sdk/lib-storage/dist-cjs/index.js
|
|
104714
|
-
var
|
|
104671
|
+
var require_dist_cjs77 = __commonJS({
|
|
104715
104672
|
"../../node_modules/@aws-sdk/lib-storage/dist-cjs/index.js"(exports2) {
|
|
104716
104673
|
"use strict";
|
|
104717
104674
|
var clientS3 = require_dist_cjs72();
|
|
104718
|
-
var abortController = require_dist_cjs77();
|
|
104719
104675
|
var middlewareEndpoint = require_dist_cjs36();
|
|
104720
104676
|
var smithyClient = require_dist_cjs25();
|
|
104721
104677
|
var events = require("events");
|
|
@@ -104918,7 +104874,7 @@ var require_dist_cjs78 = __commonJS({
|
|
|
104918
104874
|
this.totalBytes = this.params.ContentLength ?? byteLength(this.params.Body);
|
|
104919
104875
|
this.totalBytesSource = byteLengthSource(this.params.Body, this.params.ContentLength);
|
|
104920
104876
|
this.bytesUploadedSoFar = 0;
|
|
104921
|
-
this.abortController = options.abortController ?? new
|
|
104877
|
+
this.abortController = options.abortController ?? new AbortController();
|
|
104922
104878
|
this.partSize = options.partSize || Math.max(_Upload.MIN_PART_SIZE, Math.floor((this.totalBytes || 0) / this.MAX_PARTS));
|
|
104923
104879
|
if (this.totalBytes !== void 0) {
|
|
104924
104880
|
this.expectedPartsCount = Math.ceil(this.totalBytes / this.partSize);
|
|
@@ -105226,7 +105182,7 @@ var init_aws = __esm({
|
|
|
105226
105182
|
import_client_secrets_manager = __toESM(require_dist_cjs73());
|
|
105227
105183
|
import_client_sts = __toESM(require_dist_cjs74());
|
|
105228
105184
|
import_credential_providers = __toESM(require_dist_cjs76());
|
|
105229
|
-
import_lib_storage = __toESM(
|
|
105185
|
+
import_lib_storage = __toESM(require_dist_cjs77());
|
|
105230
105186
|
import_config_resolver11 = __toESM(require_dist_cjs31());
|
|
105231
105187
|
import_node_config_provider6 = __toESM(require_dist_cjs34());
|
|
105232
105188
|
USER_AGENT = "cdk-assets";
|
|
@@ -109856,9 +109812,9 @@ var init_package_info = __esm({
|
|
|
109856
109812
|
}
|
|
109857
109813
|
});
|
|
109858
109814
|
|
|
109859
|
-
//
|
|
109815
|
+
// ../../node_modules/yaml/dist/PlainValue-516d5bc2.js
|
|
109860
109816
|
var require_PlainValue_516d5bc2 = __commonJS({
|
|
109861
|
-
"
|
|
109817
|
+
"../../node_modules/yaml/dist/PlainValue-516d5bc2.js"(exports2) {
|
|
109862
109818
|
"use strict";
|
|
109863
109819
|
var Char = {
|
|
109864
109820
|
ANCHOR: "&",
|
|
@@ -110592,9 +110548,9 @@ ${ctx}
|
|
|
110592
110548
|
}
|
|
110593
110549
|
});
|
|
110594
110550
|
|
|
110595
|
-
//
|
|
110551
|
+
// ../../node_modules/yaml/dist/parse-cst.js
|
|
110596
110552
|
var require_parse_cst = __commonJS({
|
|
110597
|
-
"
|
|
110553
|
+
"../../node_modules/yaml/dist/parse-cst.js"(exports2) {
|
|
110598
110554
|
"use strict";
|
|
110599
110555
|
var PlainValue = require_PlainValue_516d5bc2();
|
|
110600
110556
|
var BlankLine = class extends PlainValue.Node {
|
|
@@ -112063,9 +112019,9 @@ var require_parse_cst = __commonJS({
|
|
|
112063
112019
|
}
|
|
112064
112020
|
});
|
|
112065
112021
|
|
|
112066
|
-
//
|
|
112022
|
+
// ../../node_modules/yaml/dist/resolveSeq-95613e94.js
|
|
112067
112023
|
var require_resolveSeq_95613e94 = __commonJS({
|
|
112068
|
-
"
|
|
112024
|
+
"../../node_modules/yaml/dist/resolveSeq-95613e94.js"(exports2) {
|
|
112069
112025
|
"use strict";
|
|
112070
112026
|
var PlainValue = require_PlainValue_516d5bc2();
|
|
112071
112027
|
function addCommentBefore(str, indent, comment) {
|
|
@@ -113922,9 +113878,9 @@ ${ca}` : ca;
|
|
|
113922
113878
|
}
|
|
113923
113879
|
});
|
|
113924
113880
|
|
|
113925
|
-
//
|
|
113881
|
+
// ../../node_modules/yaml/dist/warnings-793925ce.js
|
|
113926
113882
|
var require_warnings_793925ce = __commonJS({
|
|
113927
|
-
"
|
|
113883
|
+
"../../node_modules/yaml/dist/warnings-793925ce.js"(exports2) {
|
|
113928
113884
|
"use strict";
|
|
113929
113885
|
var PlainValue = require_PlainValue_516d5bc2();
|
|
113930
113886
|
var resolveSeq = require_resolveSeq_95613e94();
|
|
@@ -114282,9 +114238,9 @@ ${pair.comment}` : item.comment;
|
|
|
114282
114238
|
}
|
|
114283
114239
|
});
|
|
114284
114240
|
|
|
114285
|
-
//
|
|
114241
|
+
// ../../node_modules/yaml/dist/Schema-bcc6c2d7.js
|
|
114286
114242
|
var require_Schema_bcc6c2d7 = __commonJS({
|
|
114287
|
-
"
|
|
114243
|
+
"../../node_modules/yaml/dist/Schema-bcc6c2d7.js"(exports2) {
|
|
114288
114244
|
"use strict";
|
|
114289
114245
|
var PlainValue = require_PlainValue_516d5bc2();
|
|
114290
114246
|
var resolveSeq = require_resolveSeq_95613e94();
|
|
@@ -114745,9 +114701,9 @@ var require_Schema_bcc6c2d7 = __commonJS({
|
|
|
114745
114701
|
}
|
|
114746
114702
|
});
|
|
114747
114703
|
|
|
114748
|
-
//
|
|
114704
|
+
// ../../node_modules/yaml/dist/Document-a8d0fbf9.js
|
|
114749
114705
|
var require_Document_a8d0fbf9 = __commonJS({
|
|
114750
|
-
"
|
|
114706
|
+
"../../node_modules/yaml/dist/Document-a8d0fbf9.js"(exports2) {
|
|
114751
114707
|
"use strict";
|
|
114752
114708
|
var PlainValue = require_PlainValue_516d5bc2();
|
|
114753
114709
|
var resolveSeq = require_resolveSeq_95613e94();
|
|
@@ -115395,9 +115351,9 @@ ${cbNode.commentBefore}` : cb;
|
|
|
115395
115351
|
}
|
|
115396
115352
|
});
|
|
115397
115353
|
|
|
115398
|
-
//
|
|
115354
|
+
// ../../node_modules/yaml/dist/index.js
|
|
115399
115355
|
var require_dist2 = __commonJS({
|
|
115400
|
-
"
|
|
115356
|
+
"../../node_modules/yaml/dist/index.js"(exports2) {
|
|
115401
115357
|
"use strict";
|
|
115402
115358
|
var parseCst = require_parse_cst();
|
|
115403
115359
|
var Document$1 = require_Document_a8d0fbf9();
|
|
@@ -115473,16 +115429,16 @@ var require_dist2 = __commonJS({
|
|
|
115473
115429
|
}
|
|
115474
115430
|
});
|
|
115475
115431
|
|
|
115476
|
-
//
|
|
115432
|
+
// ../../node_modules/yaml/index.js
|
|
115477
115433
|
var require_yaml = __commonJS({
|
|
115478
|
-
"
|
|
115434
|
+
"../../node_modules/yaml/index.js"(exports2, module2) {
|
|
115479
115435
|
module2.exports = require_dist2().YAML;
|
|
115480
115436
|
}
|
|
115481
115437
|
});
|
|
115482
115438
|
|
|
115483
|
-
//
|
|
115439
|
+
// ../../node_modules/yaml/dist/types.js
|
|
115484
115440
|
var require_types = __commonJS({
|
|
115485
|
-
"
|
|
115441
|
+
"../../node_modules/yaml/dist/types.js"(exports2) {
|
|
115486
115442
|
"use strict";
|
|
115487
115443
|
var resolveSeq = require_resolveSeq_95613e94();
|
|
115488
115444
|
var Schema3 = require_Schema_bcc6c2d7();
|
|
@@ -115505,10 +115461,10 @@ var require_types = __commonJS({
|
|
|
115505
115461
|
}
|
|
115506
115462
|
});
|
|
115507
115463
|
|
|
115508
|
-
//
|
|
115464
|
+
// ../../node_modules/yaml/types.mjs
|
|
115509
115465
|
var import_types4, binaryOptions, boolOptions, intOptions, nullOptions, strOptions, Schema2, Alias, Collection, Merge, Node, Pair, Scalar, YAMLMap, YAMLSeq;
|
|
115510
115466
|
var init_types2 = __esm({
|
|
115511
|
-
"
|
|
115467
|
+
"../../node_modules/yaml/types.mjs"() {
|
|
115512
115468
|
import_types4 = __toESM(require_types(), 1);
|
|
115513
115469
|
binaryOptions = import_types4.default.binaryOptions;
|
|
115514
115470
|
boolOptions = import_types4.default.boolOptions;
|
|
@@ -118766,8 +118722,7 @@ async function publishAssets(manifest, sdk, targetEnv, options, ioHelper) {
|
|
|
118766
118722
|
throwOnError: false,
|
|
118767
118723
|
publishInParallel: options.parallel ?? true,
|
|
118768
118724
|
buildAssets: true,
|
|
118769
|
-
publishAssets: true
|
|
118770
|
-
quiet: false
|
|
118725
|
+
publishAssets: true
|
|
118771
118726
|
});
|
|
118772
118727
|
await publisher.publish({ allowCrossAccount: options.allowCrossAccount });
|
|
118773
118728
|
if (publisher.hasFailures) {
|
|
@@ -118831,8 +118786,7 @@ var init_asset_publishing = __esm({
|
|
|
118831
118786
|
env: env2,
|
|
118832
118787
|
// region, name, account
|
|
118833
118788
|
assumeRuleArn: options.assumeRoleArn,
|
|
118834
|
-
assumeRoleExternalId: options.assumeRoleExternalId
|
|
118835
|
-
quiet: options.quiet
|
|
118789
|
+
assumeRoleExternalId: options.assumeRoleExternalId
|
|
118836
118790
|
};
|
|
118837
118791
|
if (options.assumeRoleAdditionalOptions) {
|
|
118838
118792
|
cacheKeyMap.assumeRoleAdditionalOptions = options.assumeRoleAdditionalOptions;
|
|
@@ -118849,8 +118803,7 @@ var init_asset_publishing = __esm({
|
|
|
118849
118803
|
assumeRoleArn: options.assumeRoleArn,
|
|
118850
118804
|
assumeRoleExternalId: options.assumeRoleExternalId,
|
|
118851
118805
|
assumeRoleAdditionalOptions: options.assumeRoleAdditionalOptions
|
|
118852
|
-
}
|
|
118853
|
-
options.quiet
|
|
118806
|
+
}
|
|
118854
118807
|
)).sdk;
|
|
118855
118808
|
this.sdkCache.set(cacheKey, sdk);
|
|
118856
118809
|
return sdk;
|
|
@@ -118912,7 +118865,7 @@ var require_httpAuthSchemeProvider5 = __commonJS({
|
|
|
118912
118865
|
"use strict";
|
|
118913
118866
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
118914
118867
|
exports2.resolveHttpAuthSchemeConfig = exports2.defaultCloudFormationHttpAuthSchemeProvider = exports2.defaultCloudFormationHttpAuthSchemeParametersProvider = void 0;
|
|
118915
|
-
var
|
|
118868
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
118916
118869
|
var util_middleware_1 = require_dist_cjs6();
|
|
118917
118870
|
var defaultCloudFormationHttpAuthSchemeParametersProvider = /* @__PURE__ */ __name(async (config, context, input) => {
|
|
118918
118871
|
return {
|
|
@@ -118950,7 +118903,7 @@ var require_httpAuthSchemeProvider5 = __commonJS({
|
|
|
118950
118903
|
}, "defaultCloudFormationHttpAuthSchemeProvider");
|
|
118951
118904
|
exports2.defaultCloudFormationHttpAuthSchemeProvider = defaultCloudFormationHttpAuthSchemeProvider;
|
|
118952
118905
|
var resolveHttpAuthSchemeConfig6 = /* @__PURE__ */ __name((config) => {
|
|
118953
|
-
const config_0 = (0,
|
|
118906
|
+
const config_0 = (0, httpAuthSchemes_1.resolveAwsSdkSigV4Config)(config);
|
|
118954
118907
|
return Object.assign(config_0, {
|
|
118955
118908
|
authSchemePreference: (0, util_middleware_1.normalizeProvider)(config.authSchemePreference ?? [])
|
|
118956
118909
|
});
|
|
@@ -118965,7 +118918,7 @@ var require_package5 = __commonJS({
|
|
|
118965
118918
|
module2.exports = {
|
|
118966
118919
|
name: "@aws-sdk/client-cloudformation",
|
|
118967
118920
|
description: "AWS SDK for JavaScript Cloudformation Client for Node.js, Browser and React Native",
|
|
118968
|
-
version: "3.
|
|
118921
|
+
version: "3.1019.0",
|
|
118969
118922
|
scripts: {
|
|
118970
118923
|
build: "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
118971
118924
|
"build:cjs": "node ../../scripts/compilation/inline client-cloudformation",
|
|
@@ -118987,17 +118940,17 @@ var require_package5 = __commonJS({
|
|
|
118987
118940
|
dependencies: {
|
|
118988
118941
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
118989
118942
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
118990
|
-
"@aws-sdk/core": "^3.973.
|
|
118991
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
118943
|
+
"@aws-sdk/core": "^3.973.25",
|
|
118944
|
+
"@aws-sdk/credential-provider-node": "^3.972.27",
|
|
118992
118945
|
"@aws-sdk/middleware-host-header": "^3.972.8",
|
|
118993
118946
|
"@aws-sdk/middleware-logger": "^3.972.8",
|
|
118994
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
118995
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
118996
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
118947
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.9",
|
|
118948
|
+
"@aws-sdk/middleware-user-agent": "^3.972.26",
|
|
118949
|
+
"@aws-sdk/region-config-resolver": "^3.972.10",
|
|
118997
118950
|
"@aws-sdk/types": "^3.973.6",
|
|
118998
118951
|
"@aws-sdk/util-endpoints": "^3.996.5",
|
|
118999
118952
|
"@aws-sdk/util-user-agent-browser": "^3.972.8",
|
|
119000
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
118953
|
+
"@aws-sdk/util-user-agent-node": "^3.973.12",
|
|
119001
118954
|
"@smithy/config-resolver": "^4.4.13",
|
|
119002
118955
|
"@smithy/core": "^3.23.12",
|
|
119003
118956
|
"@smithy/fetch-http-handler": "^5.3.15",
|
|
@@ -124071,7 +124024,7 @@ var require_runtimeConfig_shared6 = __commonJS({
|
|
|
124071
124024
|
"use strict";
|
|
124072
124025
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
124073
124026
|
exports2.getRuntimeConfig = void 0;
|
|
124074
|
-
var
|
|
124027
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
124075
124028
|
var protocols_1 = (init_protocols2(), __toCommonJS(protocols_exports2));
|
|
124076
124029
|
var smithy_client_1 = require_dist_cjs25();
|
|
124077
124030
|
var url_parser_1 = require_dist_cjs18();
|
|
@@ -124093,7 +124046,7 @@ var require_runtimeConfig_shared6 = __commonJS({
|
|
|
124093
124046
|
{
|
|
124094
124047
|
schemeId: "aws.auth#sigv4",
|
|
124095
124048
|
identityProvider: /* @__PURE__ */ __name((ipc) => ipc.getIdentityProvider("aws.auth#sigv4"), "identityProvider"),
|
|
124096
|
-
signer: new
|
|
124049
|
+
signer: new httpAuthSchemes_1.AwsSdkSigV4Signer()
|
|
124097
124050
|
}
|
|
124098
124051
|
],
|
|
124099
124052
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
@@ -124123,7 +124076,8 @@ var require_runtimeConfig6 = __commonJS({
|
|
|
124123
124076
|
exports2.getRuntimeConfig = void 0;
|
|
124124
124077
|
var tslib_1 = (init_tslib_es6(), __toCommonJS(tslib_es6_exports));
|
|
124125
124078
|
var package_json_1 = tslib_1.__importDefault(require_package5());
|
|
124126
|
-
var
|
|
124079
|
+
var client_1 = (init_client(), __toCommonJS(client_exports));
|
|
124080
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
124127
124081
|
var credential_provider_node_1 = require_dist_cjs52();
|
|
124128
124082
|
var util_user_agent_node_1 = require_dist_cjs41();
|
|
124129
124083
|
var config_resolver_1 = require_dist_cjs31();
|
|
@@ -124141,7 +124095,7 @@ var require_runtimeConfig6 = __commonJS({
|
|
|
124141
124095
|
const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config);
|
|
124142
124096
|
const defaultConfigProvider = /* @__PURE__ */ __name(() => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode), "defaultConfigProvider");
|
|
124143
124097
|
const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
|
|
124144
|
-
(0,
|
|
124098
|
+
(0, client_1.emitWarningIfUnsupportedVersion)(process.version);
|
|
124145
124099
|
const loaderConfig = {
|
|
124146
124100
|
profile: config?.profile,
|
|
124147
124101
|
logger: clientSharedValues.logger
|
|
@@ -124151,7 +124105,7 @@ var require_runtimeConfig6 = __commonJS({
|
|
|
124151
124105
|
...config,
|
|
124152
124106
|
runtime: "node",
|
|
124153
124107
|
defaultsMode,
|
|
124154
|
-
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(
|
|
124108
|
+
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(httpAuthSchemes_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
124155
124109
|
bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
|
|
124156
124110
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? credential_provider_node_1.defaultProvider,
|
|
124157
124111
|
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? (0, util_user_agent_node_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
@@ -124174,7 +124128,7 @@ var require_runtimeConfig6 = __commonJS({
|
|
|
124174
124128
|
});
|
|
124175
124129
|
|
|
124176
124130
|
// ../../node_modules/@aws-sdk/client-cloudformation/dist-cjs/index.js
|
|
124177
|
-
var
|
|
124131
|
+
var require_dist_cjs78 = __commonJS({
|
|
124178
124132
|
"../../node_modules/@aws-sdk/client-cloudformation/dist-cjs/index.js"(exports2) {
|
|
124179
124133
|
"use strict";
|
|
124180
124134
|
var middlewareHostHeader = require_dist_cjs3();
|
|
@@ -127772,7 +127726,7 @@ var import_client_cloudformation, StackStatus;
|
|
|
127772
127726
|
var init_stack_status = __esm({
|
|
127773
127727
|
"../@aws-cdk/toolkit-lib/lib/api/stack-events/stack-status.ts"() {
|
|
127774
127728
|
"use strict";
|
|
127775
|
-
import_client_cloudformation = __toESM(
|
|
127729
|
+
import_client_cloudformation = __toESM(require_dist_cjs78());
|
|
127776
127730
|
StackStatus = class _StackStatus2 {
|
|
127777
127731
|
constructor(name, reason) {
|
|
127778
127732
|
this.name = name;
|
|
@@ -128182,7 +128136,10 @@ async function waitForChangeSet(cfn, ioHelper, stackName, changeSetName, { fetch
|
|
|
128182
128136
|
async function createDiffChangeSet(ioHelper, options) {
|
|
128183
128137
|
for (const resource of Object.values(options.stack.template.Resources ?? {})) {
|
|
128184
128138
|
if (resource.Type === "AWS::CloudFormation::Stack") {
|
|
128185
|
-
|
|
128139
|
+
if (options.failOnError) {
|
|
128140
|
+
throw new ToolkitError("NestedStacksNotSupported", "Changeset diff is not supported for stacks with nested stacks. Please use '--method=auto' to allow falling back to a template diff.");
|
|
128141
|
+
}
|
|
128142
|
+
await ioHelper.defaults.debug("This stack contains one or more nested stacks, falling back to template diff...");
|
|
128186
128143
|
return void 0;
|
|
128187
128144
|
}
|
|
128188
128145
|
}
|
|
@@ -128217,7 +128174,7 @@ async function uploadBodyParameterAndCreateChangeSet(ioHelper, options) {
|
|
|
128217
128174
|
const exists = (await CloudFormationStack.lookup(cfn, options.stack.stackName, false)).exists;
|
|
128218
128175
|
const executionRoleArn = await env2.replacePlaceholders(options.stack.cloudFormationExecutionRoleArn);
|
|
128219
128176
|
await ioHelper.defaults.info(
|
|
128220
|
-
"Hold on while we create a read-only change set to get a diff with accurate replacement information (use --
|
|
128177
|
+
"Hold on while we create a read-only change set to get a diff with accurate replacement information (use --method=template to use a less accurate but faster template-only diff)\n"
|
|
128221
128178
|
);
|
|
128222
128179
|
return await createChangeSet(ioHelper, {
|
|
128223
128180
|
cfn,
|
|
@@ -128233,14 +128190,14 @@ async function uploadBodyParameterAndCreateChangeSet(ioHelper, options) {
|
|
|
128233
128190
|
role: executionRoleArn
|
|
128234
128191
|
});
|
|
128235
128192
|
} catch (e6) {
|
|
128236
|
-
if (
|
|
128237
|
-
|
|
128238
|
-
await ioHelper.defaults.info(
|
|
128239
|
-
"Could not create a change set, will base the diff on template differences (run again with -v to see the reason)\n"
|
|
128240
|
-
);
|
|
128241
|
-
return void 0;
|
|
128193
|
+
if (options.failOnError) {
|
|
128194
|
+
throw ToolkitError.withCause("ChangeSetCreationFailed", "Could not create a change set, and '--method=change-set' was specified. Please check your permissions or use '--method=auto' to allow falling back to a template diff.", e6);
|
|
128242
128195
|
}
|
|
128243
|
-
|
|
128196
|
+
await ioHelper.defaults.debug(String(e6));
|
|
128197
|
+
await ioHelper.defaults.info(
|
|
128198
|
+
"Could not create a change set, will base the diff on template differences (run again with -v to see the reason)\n"
|
|
128199
|
+
);
|
|
128200
|
+
return void 0;
|
|
128244
128201
|
}
|
|
128245
128202
|
}
|
|
128246
128203
|
async function uploadStackTemplateAssets(stack, deployments) {
|
|
@@ -128260,7 +128217,9 @@ async function uploadStackTemplateAssets(stack, deployments) {
|
|
|
128260
128217
|
}
|
|
128261
128218
|
}
|
|
128262
128219
|
async function createChangeSet(ioHelper, options) {
|
|
128263
|
-
|
|
128220
|
+
if (options.exists) {
|
|
128221
|
+
await cleanupOldChangeset(options.cfn, ioHelper, options.changeSetName, options.stack.stackName);
|
|
128222
|
+
}
|
|
128264
128223
|
await ioHelper.defaults.debug(`Attempting to create ChangeSet with name ${options.changeSetName} for stack ${options.stack.stackName}`);
|
|
128265
128224
|
const templateParams = TemplateParameters.fromTemplate(options.stack.template);
|
|
128266
128225
|
const stackParams = templateParams.supplyAll(options.parameters);
|
|
@@ -128366,7 +128325,7 @@ var init_cfn_api = __esm({
|
|
|
128366
128325
|
import_cdk_assets_lib3 = __toESM(require_lib6());
|
|
128367
128326
|
cxapi = __toESM(require_lib3());
|
|
128368
128327
|
import_cloud_assembly_api4 = __toESM(require_lib3());
|
|
128369
|
-
import_client_cloudformation2 = __toESM(
|
|
128328
|
+
import_client_cloudformation2 = __toESM(require_dist_cjs78());
|
|
128370
128329
|
init_asset_manifest_builder();
|
|
128371
128330
|
init_toolkit_error();
|
|
128372
128331
|
init_cloudformation2();
|
|
@@ -142340,25 +142299,6 @@ async function deployStack(options, ioHelper) {
|
|
|
142340
142299
|
const stackArtifact = options.stack;
|
|
142341
142300
|
const stackEnv = options.resolvedEnvironment;
|
|
142342
142301
|
let deploymentMethod = options.deploymentMethod ?? { method: "change-set" };
|
|
142343
|
-
if (options.hotswap && deploymentMethod?.method !== "hotswap") {
|
|
142344
|
-
switch (options.hotswap) {
|
|
142345
|
-
case "hotswap-only" /* HOTSWAP_ONLY */:
|
|
142346
|
-
deploymentMethod = {
|
|
142347
|
-
method: "hotswap",
|
|
142348
|
-
properties: options.hotswapPropertyOverrides
|
|
142349
|
-
};
|
|
142350
|
-
break;
|
|
142351
|
-
case "fall-back" /* FALL_BACK */:
|
|
142352
|
-
deploymentMethod = {
|
|
142353
|
-
method: "hotswap",
|
|
142354
|
-
properties: options.hotswapPropertyOverrides,
|
|
142355
|
-
fallback: deploymentMethod
|
|
142356
|
-
};
|
|
142357
|
-
break;
|
|
142358
|
-
case "full-deployment" /* FULL_DEPLOYMENT */:
|
|
142359
|
-
break;
|
|
142360
|
-
}
|
|
142361
|
-
}
|
|
142362
142302
|
options.sdk.appendCustomUserAgent(options.extraUserAgent);
|
|
142363
142303
|
const cfn = options.sdk.cloudFormation();
|
|
142364
142304
|
const deployName = options.deployName || stackArtifact.stackName;
|
|
@@ -142975,20 +142915,6 @@ var init_deployments = __esm({
|
|
|
142975
142915
|
return response.ResourceIdentifierSummaries ?? [];
|
|
142976
142916
|
}
|
|
142977
142917
|
async deployStack(options) {
|
|
142978
|
-
let deploymentMethod = options.deploymentMethod;
|
|
142979
|
-
if (options.changeSetName || options.execute !== void 0) {
|
|
142980
|
-
if (deploymentMethod) {
|
|
142981
|
-
throw new ToolkitError(
|
|
142982
|
-
"ConflictingDeploymentOptions",
|
|
142983
|
-
"You cannot supply both 'deploymentMethod' and 'changeSetName/execute'. Supply one or the other."
|
|
142984
|
-
);
|
|
142985
|
-
}
|
|
142986
|
-
deploymentMethod = {
|
|
142987
|
-
method: "change-set",
|
|
142988
|
-
changeSetName: options.changeSetName,
|
|
142989
|
-
execute: options.execute
|
|
142990
|
-
};
|
|
142991
|
-
}
|
|
142992
142918
|
const env2 = await this.envs.accessStackForMutableStackOperations(options.stack);
|
|
142993
142919
|
await this.validateBootstrapStackVersion(
|
|
142994
142920
|
options.stack.stackName,
|
|
@@ -143008,13 +142934,11 @@ var init_deployments = __esm({
|
|
|
143008
142934
|
reuseAssets: options.reuseAssets,
|
|
143009
142935
|
envResources: env2.resources,
|
|
143010
142936
|
tags: options.tags,
|
|
143011
|
-
deploymentMethod,
|
|
142937
|
+
deploymentMethod: options.deploymentMethod,
|
|
143012
142938
|
forceDeployment: options.forceDeployment,
|
|
143013
142939
|
parameters: options.parameters,
|
|
143014
142940
|
usePreviousParameters: options.usePreviousParameters,
|
|
143015
142941
|
rollback: options.rollback,
|
|
143016
|
-
hotswap: options.hotswap,
|
|
143017
|
-
hotswapPropertyOverrides: options.hotswapPropertyOverrides,
|
|
143018
142942
|
extraUserAgent: options.extraUserAgent,
|
|
143019
142943
|
resourcesToImport: options.resourcesToImport,
|
|
143020
142944
|
overrideTemplate: options.overrideTemplate,
|
|
@@ -144402,13 +144326,45 @@ var init_rwlock = __esm({
|
|
|
144402
144326
|
}
|
|
144403
144327
|
});
|
|
144404
144328
|
|
|
144329
|
+
// ../@aws-cdk/toolkit-lib/lib/api/cloud-assembly/private/disposable-box.ts
|
|
144330
|
+
var AsyncDisposableBox;
|
|
144331
|
+
var init_disposable_box = __esm({
|
|
144332
|
+
"../@aws-cdk/toolkit-lib/lib/api/cloud-assembly/private/disposable-box.ts"() {
|
|
144333
|
+
"use strict";
|
|
144334
|
+
AsyncDisposableBox = class {
|
|
144335
|
+
constructor(value) {
|
|
144336
|
+
this.value = value;
|
|
144337
|
+
}
|
|
144338
|
+
static {
|
|
144339
|
+
__name(this, "AsyncDisposableBox");
|
|
144340
|
+
}
|
|
144341
|
+
shouldDispose = true;
|
|
144342
|
+
/**
|
|
144343
|
+
* Remove the value from the Box, preventing it from being disposed in the future.
|
|
144344
|
+
*
|
|
144345
|
+
* Should be the last line of the containing function.
|
|
144346
|
+
*/
|
|
144347
|
+
take() {
|
|
144348
|
+
this.shouldDispose = false;
|
|
144349
|
+
return this.value;
|
|
144350
|
+
}
|
|
144351
|
+
[Symbol.asyncDispose]() {
|
|
144352
|
+
if (this.shouldDispose) {
|
|
144353
|
+
return this.value[Symbol.asyncDispose]();
|
|
144354
|
+
}
|
|
144355
|
+
return Promise.resolve();
|
|
144356
|
+
}
|
|
144357
|
+
};
|
|
144358
|
+
}
|
|
144359
|
+
});
|
|
144360
|
+
|
|
144405
144361
|
// ../../node_modules/@aws-sdk/client-appsync/dist-cjs/auth/httpAuthSchemeProvider.js
|
|
144406
144362
|
var require_httpAuthSchemeProvider6 = __commonJS({
|
|
144407
144363
|
"../../node_modules/@aws-sdk/client-appsync/dist-cjs/auth/httpAuthSchemeProvider.js"(exports2) {
|
|
144408
144364
|
"use strict";
|
|
144409
144365
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
144410
144366
|
exports2.resolveHttpAuthSchemeConfig = exports2.defaultAppSyncHttpAuthSchemeProvider = exports2.defaultAppSyncHttpAuthSchemeParametersProvider = void 0;
|
|
144411
|
-
var
|
|
144367
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
144412
144368
|
var util_middleware_1 = require_dist_cjs6();
|
|
144413
144369
|
var defaultAppSyncHttpAuthSchemeParametersProvider = /* @__PURE__ */ __name(async (config, context, input) => {
|
|
144414
144370
|
return {
|
|
@@ -144446,7 +144402,7 @@ var require_httpAuthSchemeProvider6 = __commonJS({
|
|
|
144446
144402
|
}, "defaultAppSyncHttpAuthSchemeProvider");
|
|
144447
144403
|
exports2.defaultAppSyncHttpAuthSchemeProvider = defaultAppSyncHttpAuthSchemeProvider;
|
|
144448
144404
|
var resolveHttpAuthSchemeConfig6 = /* @__PURE__ */ __name((config) => {
|
|
144449
|
-
const config_0 = (0,
|
|
144405
|
+
const config_0 = (0, httpAuthSchemes_1.resolveAwsSdkSigV4Config)(config);
|
|
144450
144406
|
return Object.assign(config_0, {
|
|
144451
144407
|
authSchemePreference: (0, util_middleware_1.normalizeProvider)(config.authSchemePreference ?? [])
|
|
144452
144408
|
});
|
|
@@ -144461,7 +144417,7 @@ var require_package6 = __commonJS({
|
|
|
144461
144417
|
module2.exports = {
|
|
144462
144418
|
name: "@aws-sdk/client-appsync",
|
|
144463
144419
|
description: "AWS SDK for JavaScript Appsync Client for Node.js, Browser and React Native",
|
|
144464
|
-
version: "3.
|
|
144420
|
+
version: "3.1019.0",
|
|
144465
144421
|
scripts: {
|
|
144466
144422
|
build: "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
144467
144423
|
"build:cjs": "node ../../scripts/compilation/inline client-appsync",
|
|
@@ -144481,17 +144437,17 @@ var require_package6 = __commonJS({
|
|
|
144481
144437
|
dependencies: {
|
|
144482
144438
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
144483
144439
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
144484
|
-
"@aws-sdk/core": "^3.973.
|
|
144485
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
144440
|
+
"@aws-sdk/core": "^3.973.25",
|
|
144441
|
+
"@aws-sdk/credential-provider-node": "^3.972.27",
|
|
144486
144442
|
"@aws-sdk/middleware-host-header": "^3.972.8",
|
|
144487
144443
|
"@aws-sdk/middleware-logger": "^3.972.8",
|
|
144488
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
144489
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
144490
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
144444
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.9",
|
|
144445
|
+
"@aws-sdk/middleware-user-agent": "^3.972.26",
|
|
144446
|
+
"@aws-sdk/region-config-resolver": "^3.972.10",
|
|
144491
144447
|
"@aws-sdk/types": "^3.973.6",
|
|
144492
144448
|
"@aws-sdk/util-endpoints": "^3.996.5",
|
|
144493
144449
|
"@aws-sdk/util-user-agent-browser": "^3.972.8",
|
|
144494
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
144450
|
+
"@aws-sdk/util-user-agent-node": "^3.973.12",
|
|
144495
144451
|
"@smithy/config-resolver": "^4.4.13",
|
|
144496
144452
|
"@smithy/core": "^3.23.12",
|
|
144497
144453
|
"@smithy/fetch-http-handler": "^5.3.15",
|
|
@@ -147987,7 +147943,7 @@ var require_runtimeConfig_shared7 = __commonJS({
|
|
|
147987
147943
|
"use strict";
|
|
147988
147944
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
147989
147945
|
exports2.getRuntimeConfig = void 0;
|
|
147990
|
-
var
|
|
147946
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
147991
147947
|
var protocols_1 = (init_protocols2(), __toCommonJS(protocols_exports2));
|
|
147992
147948
|
var smithy_client_1 = require_dist_cjs25();
|
|
147993
147949
|
var url_parser_1 = require_dist_cjs18();
|
|
@@ -148009,7 +147965,7 @@ var require_runtimeConfig_shared7 = __commonJS({
|
|
|
148009
147965
|
{
|
|
148010
147966
|
schemeId: "aws.auth#sigv4",
|
|
148011
147967
|
identityProvider: /* @__PURE__ */ __name((ipc) => ipc.getIdentityProvider("aws.auth#sigv4"), "identityProvider"),
|
|
148012
|
-
signer: new
|
|
147968
|
+
signer: new httpAuthSchemes_1.AwsSdkSigV4Signer()
|
|
148013
147969
|
}
|
|
148014
147970
|
],
|
|
148015
147971
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
@@ -148039,7 +147995,8 @@ var require_runtimeConfig7 = __commonJS({
|
|
|
148039
147995
|
exports2.getRuntimeConfig = void 0;
|
|
148040
147996
|
var tslib_1 = (init_tslib_es6(), __toCommonJS(tslib_es6_exports));
|
|
148041
147997
|
var package_json_1 = tslib_1.__importDefault(require_package6());
|
|
148042
|
-
var
|
|
147998
|
+
var client_1 = (init_client(), __toCommonJS(client_exports));
|
|
147999
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
148043
148000
|
var credential_provider_node_1 = require_dist_cjs52();
|
|
148044
148001
|
var util_user_agent_node_1 = require_dist_cjs41();
|
|
148045
148002
|
var config_resolver_1 = require_dist_cjs31();
|
|
@@ -148057,7 +148014,7 @@ var require_runtimeConfig7 = __commonJS({
|
|
|
148057
148014
|
const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config);
|
|
148058
148015
|
const defaultConfigProvider = /* @__PURE__ */ __name(() => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode), "defaultConfigProvider");
|
|
148059
148016
|
const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
|
|
148060
|
-
(0,
|
|
148017
|
+
(0, client_1.emitWarningIfUnsupportedVersion)(process.version);
|
|
148061
148018
|
const loaderConfig = {
|
|
148062
148019
|
profile: config?.profile,
|
|
148063
148020
|
logger: clientSharedValues.logger
|
|
@@ -148067,7 +148024,7 @@ var require_runtimeConfig7 = __commonJS({
|
|
|
148067
148024
|
...config,
|
|
148068
148025
|
runtime: "node",
|
|
148069
148026
|
defaultsMode,
|
|
148070
|
-
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(
|
|
148027
|
+
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(httpAuthSchemes_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
148071
148028
|
bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
|
|
148072
148029
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? credential_provider_node_1.defaultProvider,
|
|
148073
148030
|
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? (0, util_user_agent_node_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
@@ -148090,7 +148047,7 @@ var require_runtimeConfig7 = __commonJS({
|
|
|
148090
148047
|
});
|
|
148091
148048
|
|
|
148092
148049
|
// ../../node_modules/@aws-sdk/client-appsync/dist-cjs/index.js
|
|
148093
|
-
var
|
|
148050
|
+
var require_dist_cjs79 = __commonJS({
|
|
148094
148051
|
"../../node_modules/@aws-sdk/client-appsync/dist-cjs/index.js"(exports2) {
|
|
148095
148052
|
"use strict";
|
|
148096
148053
|
var middlewareHostHeader = require_dist_cjs3();
|
|
@@ -149156,7 +149113,7 @@ var require_httpAuthSchemeProvider7 = __commonJS({
|
|
|
149156
149113
|
"use strict";
|
|
149157
149114
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
149158
149115
|
exports2.resolveHttpAuthSchemeConfig = exports2.defaultBedrockAgentCoreControlHttpAuthSchemeProvider = exports2.defaultBedrockAgentCoreControlHttpAuthSchemeParametersProvider = void 0;
|
|
149159
|
-
var
|
|
149116
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
149160
149117
|
var util_middleware_1 = require_dist_cjs6();
|
|
149161
149118
|
var defaultBedrockAgentCoreControlHttpAuthSchemeParametersProvider = /* @__PURE__ */ __name(async (config, context, input) => {
|
|
149162
149119
|
return {
|
|
@@ -149194,7 +149151,7 @@ var require_httpAuthSchemeProvider7 = __commonJS({
|
|
|
149194
149151
|
}, "defaultBedrockAgentCoreControlHttpAuthSchemeProvider");
|
|
149195
149152
|
exports2.defaultBedrockAgentCoreControlHttpAuthSchemeProvider = defaultBedrockAgentCoreControlHttpAuthSchemeProvider;
|
|
149196
149153
|
var resolveHttpAuthSchemeConfig6 = /* @__PURE__ */ __name((config) => {
|
|
149197
|
-
const config_0 = (0,
|
|
149154
|
+
const config_0 = (0, httpAuthSchemes_1.resolveAwsSdkSigV4Config)(config);
|
|
149198
149155
|
return Object.assign(config_0, {
|
|
149199
149156
|
authSchemePreference: (0, util_middleware_1.normalizeProvider)(config.authSchemePreference ?? [])
|
|
149200
149157
|
});
|
|
@@ -149209,7 +149166,7 @@ var require_package7 = __commonJS({
|
|
|
149209
149166
|
module2.exports = {
|
|
149210
149167
|
name: "@aws-sdk/client-bedrock-agentcore-control",
|
|
149211
149168
|
description: "AWS SDK for JavaScript Bedrock Agentcore Control Client for Node.js, Browser and React Native",
|
|
149212
|
-
version: "3.
|
|
149169
|
+
version: "3.1019.0",
|
|
149213
149170
|
scripts: {
|
|
149214
149171
|
build: "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
149215
149172
|
"build:cjs": "node ../../scripts/compilation/inline client-bedrock-agentcore-control",
|
|
@@ -149229,17 +149186,17 @@ var require_package7 = __commonJS({
|
|
|
149229
149186
|
dependencies: {
|
|
149230
149187
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
149231
149188
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
149232
|
-
"@aws-sdk/core": "^3.973.
|
|
149233
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
149189
|
+
"@aws-sdk/core": "^3.973.25",
|
|
149190
|
+
"@aws-sdk/credential-provider-node": "^3.972.27",
|
|
149234
149191
|
"@aws-sdk/middleware-host-header": "^3.972.8",
|
|
149235
149192
|
"@aws-sdk/middleware-logger": "^3.972.8",
|
|
149236
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
149237
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
149238
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
149193
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.9",
|
|
149194
|
+
"@aws-sdk/middleware-user-agent": "^3.972.26",
|
|
149195
|
+
"@aws-sdk/region-config-resolver": "^3.972.10",
|
|
149239
149196
|
"@aws-sdk/types": "^3.973.6",
|
|
149240
149197
|
"@aws-sdk/util-endpoints": "^3.996.5",
|
|
149241
149198
|
"@aws-sdk/util-user-agent-browser": "^3.972.8",
|
|
149242
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
149199
|
+
"@aws-sdk/util-user-agent-node": "^3.973.12",
|
|
149243
149200
|
"@smithy/config-resolver": "^4.4.13",
|
|
149244
149201
|
"@smithy/core": "^3.23.12",
|
|
149245
149202
|
"@smithy/fetch-http-handler": "^5.3.15",
|
|
@@ -149638,13 +149595,13 @@ var require_schemas_07 = __commonJS({
|
|
|
149638
149595
|
exports2.CreateBrowserProfileRequest$ = exports2.CreateApiKeyCredentialProviderResponse$ = exports2.CreateApiKeyCredentialProviderRequest$ = exports2.CreateAgentRuntimeResponse$ = exports2.CreateAgentRuntimeRequest$ = exports2.CreateAgentRuntimeEndpointResponse$ = exports2.CreateAgentRuntimeEndpointRequest$ = exports2.ContentConfiguration$ = exports2.ContainerConfiguration$ = exports2.CodeInterpreterSummary$ = exports2.CodeInterpreterNetworkConfiguration$ = exports2.CodeConfiguration$ = exports2.CloudWatchOutputConfig$ = exports2.CloudWatchLogsInputConfig$ = exports2.Certificate$ = exports2.CedarPolicy$ = exports2.CategoricalScaleDefinition$ = exports2.BrowserSummary$ = exports2.BrowserSigningConfigOutput$ = exports2.BrowserSigningConfigInput$ = exports2.BrowserProfileSummary$ = exports2.BrowserNetworkConfiguration$ = exports2.BrowserEnterprisePolicy$ = exports2.BedrockEvaluatorModelConfig$ = exports2.AuthorizingClaimMatchValueType$ = exports2.AtlassianOauth2ProviderConfigOutput$ = exports2.AtlassianOauth2ProviderConfigInput$ = exports2.ApiKeyCredentialProviderItem$ = exports2.ApiGatewayToolOverride$ = exports2.ApiGatewayToolFilter$ = exports2.ApiGatewayToolConfiguration$ = exports2.ApiGatewayTargetConfiguration$ = exports2.AgentRuntimeEndpoint$ = exports2.AgentRuntime$ = exports2.errorTypeRegistries = exports2.ValidationException$ = exports2.UnauthorizedException$ = exports2.ThrottlingException$ = exports2.ThrottledException$ = exports2.ServiceQuotaExceededException$ = exports2.ServiceException$ = exports2.ResourceNotFoundException$ = exports2.ResourceLimitExceededException$ = exports2.InternalServerException$ = exports2.EncryptionFailure$ = exports2.DecryptionFailure$ = exports2.ConflictException$ = exports2.ConcurrentModificationException$ = exports2.AccessDeniedException$ = exports2.BedrockAgentCoreControlServiceException$ = void 0;
|
|
149639
149596
|
exports2.DeleteMemoryStrategyInput$ = exports2.DeleteMemoryOutput$ = exports2.DeleteMemoryInput$ = exports2.DeleteGatewayTargetResponse$ = exports2.DeleteGatewayTargetRequest$ = exports2.DeleteGatewayResponse$ = exports2.DeleteGatewayRequest$ = exports2.DeleteEvaluatorResponse$ = exports2.DeleteEvaluatorRequest$ = exports2.DeleteCodeInterpreterResponse$ = exports2.DeleteCodeInterpreterRequest$ = exports2.DeleteBrowserResponse$ = exports2.DeleteBrowserRequest$ = exports2.DeleteBrowserProfileResponse$ = exports2.DeleteBrowserProfileRequest$ = exports2.DeleteApiKeyCredentialProviderResponse$ = exports2.DeleteApiKeyCredentialProviderRequest$ = exports2.DeleteAgentRuntimeResponse$ = exports2.DeleteAgentRuntimeRequest$ = exports2.DeleteAgentRuntimeEndpointResponse$ = exports2.DeleteAgentRuntimeEndpointRequest$ = exports2.CustomOauth2ProviderConfigOutput$ = exports2.CustomOauth2ProviderConfigInput$ = exports2.CustomMemoryStrategyInput$ = exports2.CustomJWTAuthorizerConfiguration$ = exports2.CustomClaimValidationType$ = exports2.CredentialProviderConfiguration$ = exports2.CreateWorkloadIdentityResponse$ = exports2.CreateWorkloadIdentityRequest$ = exports2.CreatePolicyResponse$ = exports2.CreatePolicyRequest$ = exports2.CreatePolicyEngineResponse$ = exports2.CreatePolicyEngineRequest$ = exports2.CreateOnlineEvaluationConfigResponse$ = exports2.CreateOnlineEvaluationConfigRequest$ = exports2.CreateOauth2CredentialProviderResponse$ = exports2.CreateOauth2CredentialProviderRequest$ = exports2.CreateMemoryOutput$ = exports2.CreateMemoryInput$ = exports2.CreateGatewayTargetResponse$ = exports2.CreateGatewayTargetRequest$ = exports2.CreateGatewayResponse$ = exports2.CreateGatewayRequest$ = exports2.CreateEvaluatorResponse$ = exports2.CreateEvaluatorRequest$ = exports2.CreateCodeInterpreterResponse$ = exports2.CreateCodeInterpreterRequest$ = exports2.CreateBrowserResponse$ = exports2.CreateBrowserRequest$ = exports2.CreateBrowserProfileResponse$ = void 0;
|
|
149640
149597
|
exports2.GetMemoryOutput$ = exports2.GetMemoryInput$ = exports2.GetGatewayTargetResponse$ = exports2.GetGatewayTargetRequest$ = exports2.GetGatewayResponse$ = exports2.GetGatewayRequest$ = exports2.GetEvaluatorResponse$ = exports2.GetEvaluatorRequest$ = exports2.GetCodeInterpreterResponse$ = exports2.GetCodeInterpreterRequest$ = exports2.GetBrowserResponse$ = exports2.GetBrowserRequest$ = exports2.GetBrowserProfileResponse$ = exports2.GetBrowserProfileRequest$ = exports2.GetApiKeyCredentialProviderResponse$ = exports2.GetApiKeyCredentialProviderRequest$ = exports2.GetAgentRuntimeResponse$ = exports2.GetAgentRuntimeRequest$ = exports2.GetAgentRuntimeEndpointResponse$ = exports2.GetAgentRuntimeEndpointRequest$ = exports2.GatewayTarget$ = exports2.GatewaySummary$ = exports2.GatewayPolicyEngineConfiguration$ = exports2.GatewayInterceptorConfiguration$ = exports2.GatewayApiKeyCredentialProvider$ = exports2.Finding$ = exports2.Filter$ = exports2.EvaluatorSummary$ = exports2.EpisodicReflectionOverride$ = exports2.EpisodicReflectionConfigurationInput$ = exports2.EpisodicReflectionConfiguration$ = exports2.EpisodicOverrideReflectionConfigurationInput$ = exports2.EpisodicOverrideExtractionConfigurationInput$ = exports2.EpisodicOverrideConsolidationConfigurationInput$ = exports2.EpisodicOverrideConfigurationInput$ = exports2.EpisodicMemoryStrategyInput$ = exports2.EpisodicExtractionOverride$ = exports2.EpisodicConsolidationOverride$ = exports2.DeleteWorkloadIdentityResponse$ = exports2.DeleteWorkloadIdentityRequest$ = exports2.DeleteResourcePolicyResponse$ = exports2.DeleteResourcePolicyRequest$ = exports2.DeletePolicyResponse$ = exports2.DeletePolicyRequest$ = exports2.DeletePolicyEngineResponse$ = exports2.DeletePolicyEngineRequest$ = exports2.DeleteOnlineEvaluationConfigResponse$ = exports2.DeleteOnlineEvaluationConfigRequest$ = exports2.DeleteOauth2CredentialProviderResponse$ = exports2.DeleteOauth2CredentialProviderRequest$ = void 0;
|
|
149641
|
-
exports2.
|
|
149642
|
-
exports2.
|
|
149643
|
-
exports2.
|
|
149644
|
-
exports2.
|
|
149645
|
-
exports2.
|
|
149646
|
-
exports2.
|
|
149647
|
-
exports2.UpdateWorkloadIdentity$ = exports2.UpdatePolicyEngine$ = exports2.UpdatePolicy$ = exports2.UpdateOnlineEvaluationConfig$ = exports2.UpdateOauth2CredentialProvider$ = exports2.UpdateMemory$ = exports2.UpdateGatewayTarget$ = exports2.UpdateGateway$ = exports2.UpdateEvaluator$ = exports2.UpdateApiKeyCredentialProvider$ = exports2.UpdateAgentRuntimeEndpoint$ = exports2.UpdateAgentRuntime$ = void 0;
|
|
149598
|
+
exports2.ListGatewaysRequest$ = exports2.ListEvaluatorsResponse$ = exports2.ListEvaluatorsRequest$ = exports2.ListCodeInterpretersResponse$ = exports2.ListCodeInterpretersRequest$ = exports2.ListBrowsersResponse$ = exports2.ListBrowsersRequest$ = exports2.ListBrowserProfilesResponse$ = exports2.ListBrowserProfilesRequest$ = exports2.ListApiKeyCredentialProvidersResponse$ = exports2.ListApiKeyCredentialProvidersRequest$ = exports2.ListAgentRuntimeVersionsResponse$ = exports2.ListAgentRuntimeVersionsRequest$ = exports2.ListAgentRuntimesResponse$ = exports2.ListAgentRuntimesRequest$ = exports2.ListAgentRuntimeEndpointsResponse$ = exports2.ListAgentRuntimeEndpointsRequest$ = exports2.LinkedinOauth2ProviderConfigOutput$ = exports2.LinkedinOauth2ProviderConfigInput$ = exports2.LifecycleConfiguration$ = exports2.LambdaInterceptorConfiguration$ = exports2.LambdaEvaluatorConfig$ = exports2.KmsConfiguration$ = exports2.KinesisResource$ = exports2.InvocationConfigurationInput$ = exports2.InvocationConfiguration$ = exports2.InterceptorInputConfiguration$ = exports2.InferenceConfiguration$ = exports2.IncludedOauth2ProviderConfigOutput$ = exports2.IncludedOauth2ProviderConfigInput$ = exports2.GoogleOauth2ProviderConfigOutput$ = exports2.GoogleOauth2ProviderConfigInput$ = exports2.GithubOauth2ProviderConfigOutput$ = exports2.GithubOauth2ProviderConfigInput$ = exports2.GetWorkloadIdentityResponse$ = exports2.GetWorkloadIdentityRequest$ = exports2.GetTokenVaultResponse$ = exports2.GetTokenVaultRequest$ = exports2.GetResourcePolicyResponse$ = exports2.GetResourcePolicyRequest$ = exports2.GetPolicyResponse$ = exports2.GetPolicyRequest$ = exports2.GetPolicyGenerationResponse$ = exports2.GetPolicyGenerationRequest$ = exports2.GetPolicyEngineResponse$ = exports2.GetPolicyEngineRequest$ = exports2.GetOnlineEvaluationConfigResponse$ = exports2.GetOnlineEvaluationConfigRequest$ = exports2.GetOauth2CredentialProviderResponse$ = exports2.GetOauth2CredentialProviderRequest$ = void 0;
|
|
149599
|
+
exports2.PolicyGenerationDetails$ = exports2.PolicyGenerationAsset$ = exports2.PolicyGeneration$ = exports2.PolicyEngine$ = exports2.Policy$ = exports2.OutputConfig$ = exports2.OnlineEvaluationConfigSummary$ = exports2.OAuthCredentialProvider$ = exports2.Oauth2CredentialProviderItem$ = exports2.Oauth2AuthorizationServerMetadata$ = exports2.NumericalScaleDefinition$ = exports2.NetworkConfiguration$ = exports2.ModifyStrategyConfiguration$ = exports2.ModifySelfManagedConfiguration$ = exports2.ModifyMemoryStrategyInput$ = exports2.ModifyMemoryStrategies$ = exports2.ModifyInvocationConfigurationInput$ = exports2.MicrosoftOauth2ProviderConfigOutput$ = exports2.MicrosoftOauth2ProviderConfigInput$ = exports2.MetadataConfiguration$ = exports2.MessageBasedTriggerInput$ = exports2.MessageBasedTrigger$ = exports2.MemorySummary$ = exports2.MemoryStrategy$ = exports2.Memory$ = exports2.McpServerTargetConfiguration$ = exports2.McpLambdaTargetConfiguration$ = exports2.MCPGatewayConfiguration$ = exports2.LlmAsAJudgeEvaluatorConfig$ = exports2.ListWorkloadIdentitiesResponse$ = exports2.ListWorkloadIdentitiesRequest$ = exports2.ListTagsForResourceResponse$ = exports2.ListTagsForResourceRequest$ = exports2.ListPolicyGenerationsResponse$ = exports2.ListPolicyGenerationsRequest$ = exports2.ListPolicyGenerationAssetsResponse$ = exports2.ListPolicyGenerationAssetsRequest$ = exports2.ListPolicyEnginesResponse$ = exports2.ListPolicyEnginesRequest$ = exports2.ListPoliciesResponse$ = exports2.ListPoliciesRequest$ = exports2.ListOnlineEvaluationConfigsResponse$ = exports2.ListOnlineEvaluationConfigsRequest$ = exports2.ListOauth2CredentialProvidersResponse$ = exports2.ListOauth2CredentialProvidersRequest$ = exports2.ListMemoriesOutput$ = exports2.ListMemoriesInput$ = exports2.ListGatewayTargetsResponse$ = exports2.ListGatewayTargetsRequest$ = exports2.ListGatewaysResponse$ = void 0;
|
|
149600
|
+
exports2.UpdateAgentRuntimeEndpointResponse$ = exports2.UpdateAgentRuntimeEndpointRequest$ = exports2.UntagResourceResponse$ = exports2.UntagResourceRequest$ = exports2.ToolDefinition$ = exports2.TokenBasedTriggerInput$ = exports2.TokenBasedTrigger$ = exports2.TimeBasedTriggerInput$ = exports2.TimeBasedTrigger$ = exports2.TargetSummary$ = exports2.TagResourceResponse$ = exports2.TagResourceRequest$ = exports2.SynchronizeGatewayTargetsResponse$ = exports2.SynchronizeGatewayTargetsRequest$ = exports2.SummaryOverrideConsolidationConfigurationInput$ = exports2.SummaryOverrideConfigurationInput$ = exports2.SummaryMemoryStrategyInput$ = exports2.SummaryConsolidationOverride$ = exports2.StreamDeliveryResources$ = exports2.StrategyConfiguration$ = exports2.StartPolicyGenerationResponse$ = exports2.StartPolicyGenerationRequest$ = exports2.SlackOauth2ProviderConfigOutput$ = exports2.SlackOauth2ProviderConfigInput$ = exports2.SetTokenVaultCMKResponse$ = exports2.SetTokenVaultCMKRequest$ = exports2.SessionStorageConfiguration$ = exports2.SessionConfig$ = exports2.SemanticOverrideExtractionConfigurationInput$ = exports2.SemanticOverrideConsolidationConfigurationInput$ = exports2.SemanticOverrideConfigurationInput$ = exports2.SemanticMemoryStrategyInput$ = exports2.SemanticExtractionOverride$ = exports2.SemanticConsolidationOverride$ = exports2.SelfManagedConfigurationInput$ = exports2.SelfManagedConfiguration$ = exports2.SecretsManagerLocation$ = exports2.Secret$ = exports2.SchemaDefinition$ = exports2.SamplingConfig$ = exports2.SalesforceOauth2ProviderConfigOutput$ = exports2.SalesforceOauth2ProviderConfigInput$ = exports2.S3Location$ = exports2.S3Configuration$ = exports2.RuntimeMetadataConfiguration$ = exports2.Rule$ = exports2.RecordingConfig$ = exports2.PutResourcePolicyResponse$ = exports2.PutResourcePolicyRequest$ = exports2.ProtocolConfiguration$ = void 0;
|
|
149601
|
+
exports2.CustomReflectionConfigurationInput$ = exports2.CustomReflectionConfiguration$ = exports2.CustomExtractionConfigurationInput$ = exports2.CustomExtractionConfiguration$ = exports2.CustomConsolidationConfigurationInput$ = exports2.CustomConsolidationConfiguration$ = exports2.CustomConfigurationInput$ = exports2.CredentialProvider$ = exports2.Content$ = exports2.ConsolidationConfiguration$ = exports2.CodeBasedEvaluatorConfig$ = exports2.Code$ = exports2.ClaimMatchValueType$ = exports2.CertificateLocation$ = exports2.AuthorizerConfiguration$ = exports2.ApiSchemaConfiguration$ = exports2.AgentRuntimeArtifact$ = exports2.WorkloadIdentityType$ = exports2.WorkloadIdentityDetails$ = exports2.VpcConfig$ = exports2.ValidationExceptionField$ = exports2.UserPreferenceOverrideExtractionConfigurationInput$ = exports2.UserPreferenceOverrideConsolidationConfigurationInput$ = exports2.UserPreferenceOverrideConfigurationInput$ = exports2.UserPreferenceMemoryStrategyInput$ = exports2.UserPreferenceExtractionOverride$ = exports2.UserPreferenceConsolidationOverride$ = exports2.UpdateWorkloadIdentityResponse$ = exports2.UpdateWorkloadIdentityRequest$ = exports2.UpdatePolicyResponse$ = exports2.UpdatePolicyRequest$ = exports2.UpdatePolicyEngineResponse$ = exports2.UpdatePolicyEngineRequest$ = exports2.UpdateOnlineEvaluationConfigResponse$ = exports2.UpdateOnlineEvaluationConfigRequest$ = exports2.UpdateOauth2CredentialProviderResponse$ = exports2.UpdateOauth2CredentialProviderRequest$ = exports2.UpdateMemoryOutput$ = exports2.UpdateMemoryInput$ = exports2.UpdateGatewayTargetResponse$ = exports2.UpdateGatewayTargetRequest$ = exports2.UpdateGatewayResponse$ = exports2.UpdateGatewayRequest$ = exports2.UpdateEvaluatorResponse$ = exports2.UpdateEvaluatorRequest$ = exports2.UpdatedDescription$ = exports2.UpdateApiKeyCredentialProviderResponse$ = exports2.UpdateApiKeyCredentialProviderRequest$ = exports2.UpdateAgentRuntimeResponse$ = exports2.UpdateAgentRuntimeRequest$ = void 0;
|
|
149602
|
+
exports2.DeleteEvaluator$ = exports2.DeleteCodeInterpreter$ = exports2.DeleteBrowserProfile$ = exports2.DeleteBrowser$ = exports2.DeleteApiKeyCredentialProvider$ = exports2.DeleteAgentRuntimeEndpoint$ = exports2.DeleteAgentRuntime$ = exports2.CreateWorkloadIdentity$ = exports2.CreatePolicyEngine$ = exports2.CreatePolicy$ = exports2.CreateOnlineEvaluationConfig$ = exports2.CreateOauth2CredentialProvider$ = exports2.CreateMemory$ = exports2.CreateGatewayTarget$ = exports2.CreateGateway$ = exports2.CreateEvaluator$ = exports2.CreateCodeInterpreter$ = exports2.CreateBrowserProfile$ = exports2.CreateBrowser$ = exports2.CreateApiKeyCredentialProvider$ = exports2.CreateAgentRuntimeEndpoint$ = exports2.CreateAgentRuntime$ = exports2.TriggerConditionInput$ = exports2.TriggerCondition$ = exports2.ToolSchema$ = exports2.TargetConfiguration$ = exports2.StreamDeliveryResource$ = exports2.ResourceLocation$ = exports2.Resource$ = exports2.RequestHeaderConfiguration$ = exports2.ReflectionConfiguration$ = exports2.RatingScale$ = exports2.PolicyDefinition$ = exports2.Oauth2ProviderConfigOutput$ = exports2.Oauth2ProviderConfigInput$ = exports2.Oauth2Discovery$ = exports2.ModifyReflectionConfiguration$ = exports2.ModifyExtractionConfiguration$ = exports2.ModifyConsolidationConfiguration$ = exports2.MemoryStrategyInput$ = exports2.McpTargetConfiguration$ = exports2.InterceptorConfiguration$ = exports2.GatewayProtocolConfiguration$ = exports2.FilterValue$ = exports2.FilesystemConfiguration$ = exports2.ExtractionConfiguration$ = exports2.EvaluatorReference$ = exports2.EvaluatorModelConfig$ = exports2.EvaluatorConfig$ = exports2.DataSourceConfig$ = void 0;
|
|
149603
|
+
exports2.SynchronizeGatewayTargets$ = exports2.StartPolicyGeneration$ = exports2.SetTokenVaultCMK$ = exports2.PutResourcePolicy$ = exports2.ListWorkloadIdentities$ = exports2.ListTagsForResource$ = exports2.ListPolicyGenerations$ = exports2.ListPolicyGenerationAssets$ = exports2.ListPolicyEngines$ = exports2.ListPolicies$ = exports2.ListOnlineEvaluationConfigs$ = exports2.ListOauth2CredentialProviders$ = exports2.ListMemories$ = exports2.ListGatewayTargets$ = exports2.ListGateways$ = exports2.ListEvaluators$ = exports2.ListCodeInterpreters$ = exports2.ListBrowsers$ = exports2.ListBrowserProfiles$ = exports2.ListApiKeyCredentialProviders$ = exports2.ListAgentRuntimeVersions$ = exports2.ListAgentRuntimes$ = exports2.ListAgentRuntimeEndpoints$ = exports2.GetWorkloadIdentity$ = exports2.GetTokenVault$ = exports2.GetResourcePolicy$ = exports2.GetPolicyGeneration$ = exports2.GetPolicyEngine$ = exports2.GetPolicy$ = exports2.GetOnlineEvaluationConfig$ = exports2.GetOauth2CredentialProvider$ = exports2.GetMemory$ = exports2.GetGatewayTarget$ = exports2.GetGateway$ = exports2.GetEvaluator$ = exports2.GetCodeInterpreter$ = exports2.GetBrowserProfile$ = exports2.GetBrowser$ = exports2.GetApiKeyCredentialProvider$ = exports2.GetAgentRuntimeEndpoint$ = exports2.GetAgentRuntime$ = exports2.DeleteWorkloadIdentity$ = exports2.DeleteResourcePolicy$ = exports2.DeletePolicyEngine$ = exports2.DeletePolicy$ = exports2.DeleteOnlineEvaluationConfig$ = exports2.DeleteOauth2CredentialProvider$ = exports2.DeleteMemory$ = exports2.DeleteGatewayTarget$ = exports2.DeleteGateway$ = void 0;
|
|
149604
|
+
exports2.UpdateWorkloadIdentity$ = exports2.UpdatePolicyEngine$ = exports2.UpdatePolicy$ = exports2.UpdateOnlineEvaluationConfig$ = exports2.UpdateOauth2CredentialProvider$ = exports2.UpdateMemory$ = exports2.UpdateGatewayTarget$ = exports2.UpdateGateway$ = exports2.UpdateEvaluator$ = exports2.UpdateApiKeyCredentialProvider$ = exports2.UpdateAgentRuntimeEndpoint$ = exports2.UpdateAgentRuntime$ = exports2.UntagResource$ = exports2.TagResource$ = void 0;
|
|
149648
149605
|
var _AC = "AuthorizerConfiguration";
|
|
149649
149606
|
var _ACMVT = "AuthorizingClaimMatchValueType";
|
|
149650
149607
|
var _ADE3 = "AccessDeniedException";
|
|
@@ -149686,6 +149643,7 @@ var require_schemas_07 = __commonJS({
|
|
|
149686
149643
|
var _CARR = "CreateAgentRuntimeRequest";
|
|
149687
149644
|
var _CARRr = "CreateAgentRuntimeResponse";
|
|
149688
149645
|
var _CB = "CreateBrowser";
|
|
149646
|
+
var _CBEC = "CodeBasedEvaluatorConfig";
|
|
149689
149647
|
var _CBP = "CreateBrowserProfile";
|
|
149690
149648
|
var _CBPR = "CreateBrowserProfileRequest";
|
|
149691
149649
|
var _CBPRr = "CreateBrowserProfileResponse";
|
|
@@ -149945,6 +149903,7 @@ var require_schemas_07 = __commonJS({
|
|
|
149945
149903
|
var _LCIR = "ListCodeInterpretersRequest";
|
|
149946
149904
|
var _LCIRi = "ListCodeInterpretersResponse";
|
|
149947
149905
|
var _LE = "ListEvaluators";
|
|
149906
|
+
var _LEC = "LambdaEvaluatorConfig";
|
|
149948
149907
|
var _LER = "ListEvaluatorsRequest";
|
|
149949
149908
|
var _LERi = "ListEvaluatorsResponse";
|
|
149950
149909
|
var _LG = "ListGateways";
|
|
@@ -150202,6 +150161,7 @@ var require_schemas_07 = __commonJS({
|
|
|
150202
150161
|
var _bV = "booleanValue";
|
|
150203
150162
|
var _c6 = "client";
|
|
150204
150163
|
var _cA = "createdAt";
|
|
150164
|
+
var _cB = "codeBased";
|
|
150205
150165
|
var _cC = "customClaims";
|
|
150206
150166
|
var _cCC = "customConsolidationConfiguration";
|
|
150207
150167
|
var _cCo = "contentConfigurations";
|
|
@@ -150322,6 +150282,7 @@ var require_schemas_07 = __commonJS({
|
|
|
150322
150282
|
var _lA = "lambdaArn";
|
|
150323
150283
|
var _lAAJ = "llmAsAJudge";
|
|
150324
150284
|
var _lC = "lifecycleConfiguration";
|
|
150285
|
+
var _lCa = "lambdaConfig";
|
|
150325
150286
|
var _lFM = "lockedForModification";
|
|
150326
150287
|
var _lGN = "logGroupNames";
|
|
150327
150288
|
var _lGNo = "logGroupName";
|
|
@@ -150331,6 +150292,7 @@ var require_schemas_07 = __commonJS({
|
|
|
150331
150292
|
var _lSAa = "lastSynchronizedAt";
|
|
150332
150293
|
var _lSBI = "lastSavedBrowserId";
|
|
150333
150294
|
var _lSBSI = "lastSavedBrowserSessionId";
|
|
150295
|
+
var _lTIS = "lambdaTimeoutInSeconds";
|
|
150334
150296
|
var _lUA = "lastUpdatedAt";
|
|
150335
150297
|
var _lUT = "lastUpdatedTime";
|
|
150336
150298
|
var _lV = "liveVersion";
|
|
@@ -152106,6 +152068,15 @@ var require_schemas_07 = __commonJS({
|
|
|
152106
152068
|
[0, 0],
|
|
152107
152069
|
1
|
|
152108
152070
|
];
|
|
152071
|
+
exports2.LambdaEvaluatorConfig$ = [
|
|
152072
|
+
3,
|
|
152073
|
+
n06,
|
|
152074
|
+
_LEC,
|
|
152075
|
+
0,
|
|
152076
|
+
[_lA, _lTIS],
|
|
152077
|
+
[0, 1],
|
|
152078
|
+
1
|
|
152079
|
+
];
|
|
152109
152080
|
exports2.LambdaInterceptorConfiguration$ = [
|
|
152110
152081
|
3,
|
|
152111
152082
|
n06,
|
|
@@ -153895,6 +153866,14 @@ var require_schemas_07 = __commonJS({
|
|
|
153895
153866
|
[_s_],
|
|
153896
153867
|
[() => exports2.S3Location$]
|
|
153897
153868
|
];
|
|
153869
|
+
exports2.CodeBasedEvaluatorConfig$ = [
|
|
153870
|
+
4,
|
|
153871
|
+
n06,
|
|
153872
|
+
_CBEC,
|
|
153873
|
+
0,
|
|
153874
|
+
[_lCa],
|
|
153875
|
+
[() => exports2.LambdaEvaluatorConfig$]
|
|
153876
|
+
];
|
|
153898
153877
|
exports2.ConsolidationConfiguration$ = [
|
|
153899
153878
|
4,
|
|
153900
153879
|
n06,
|
|
@@ -153988,8 +153967,8 @@ var require_schemas_07 = __commonJS({
|
|
|
153988
153967
|
n06,
|
|
153989
153968
|
_EC,
|
|
153990
153969
|
0,
|
|
153991
|
-
[_lAAJ],
|
|
153992
|
-
[[() => exports2.LlmAsAJudgeEvaluatorConfig$, 0]]
|
|
153970
|
+
[_lAAJ, _cB],
|
|
153971
|
+
[[() => exports2.LlmAsAJudgeEvaluatorConfig$, 0], () => exports2.CodeBasedEvaluatorConfig$]
|
|
153993
153972
|
];
|
|
153994
153973
|
exports2.EvaluatorModelConfig$ = [
|
|
153995
153974
|
4,
|
|
@@ -154896,7 +154875,7 @@ var require_runtimeConfig_shared8 = __commonJS({
|
|
|
154896
154875
|
"use strict";
|
|
154897
154876
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
154898
154877
|
exports2.getRuntimeConfig = void 0;
|
|
154899
|
-
var
|
|
154878
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
154900
154879
|
var protocols_1 = (init_protocols2(), __toCommonJS(protocols_exports2));
|
|
154901
154880
|
var smithy_client_1 = require_dist_cjs25();
|
|
154902
154881
|
var url_parser_1 = require_dist_cjs18();
|
|
@@ -154918,7 +154897,7 @@ var require_runtimeConfig_shared8 = __commonJS({
|
|
|
154918
154897
|
{
|
|
154919
154898
|
schemeId: "aws.auth#sigv4",
|
|
154920
154899
|
identityProvider: /* @__PURE__ */ __name((ipc) => ipc.getIdentityProvider("aws.auth#sigv4"), "identityProvider"),
|
|
154921
|
-
signer: new
|
|
154900
|
+
signer: new httpAuthSchemes_1.AwsSdkSigV4Signer()
|
|
154922
154901
|
}
|
|
154923
154902
|
],
|
|
154924
154903
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
@@ -154947,7 +154926,8 @@ var require_runtimeConfig8 = __commonJS({
|
|
|
154947
154926
|
exports2.getRuntimeConfig = void 0;
|
|
154948
154927
|
var tslib_1 = (init_tslib_es6(), __toCommonJS(tslib_es6_exports));
|
|
154949
154928
|
var package_json_1 = tslib_1.__importDefault(require_package7());
|
|
154950
|
-
var
|
|
154929
|
+
var client_1 = (init_client(), __toCommonJS(client_exports));
|
|
154930
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
154951
154931
|
var credential_provider_node_1 = require_dist_cjs52();
|
|
154952
154932
|
var util_user_agent_node_1 = require_dist_cjs41();
|
|
154953
154933
|
var config_resolver_1 = require_dist_cjs31();
|
|
@@ -154965,7 +154945,7 @@ var require_runtimeConfig8 = __commonJS({
|
|
|
154965
154945
|
const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config);
|
|
154966
154946
|
const defaultConfigProvider = /* @__PURE__ */ __name(() => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode), "defaultConfigProvider");
|
|
154967
154947
|
const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
|
|
154968
|
-
(0,
|
|
154948
|
+
(0, client_1.emitWarningIfUnsupportedVersion)(process.version);
|
|
154969
154949
|
const loaderConfig = {
|
|
154970
154950
|
profile: config?.profile,
|
|
154971
154951
|
logger: clientSharedValues.logger
|
|
@@ -154975,7 +154955,7 @@ var require_runtimeConfig8 = __commonJS({
|
|
|
154975
154955
|
...config,
|
|
154976
154956
|
runtime: "node",
|
|
154977
154957
|
defaultsMode,
|
|
154978
|
-
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(
|
|
154958
|
+
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(httpAuthSchemes_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
154979
154959
|
bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
|
|
154980
154960
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? credential_provider_node_1.defaultProvider,
|
|
154981
154961
|
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? (0, util_user_agent_node_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
@@ -154998,7 +154978,7 @@ var require_runtimeConfig8 = __commonJS({
|
|
|
154998
154978
|
});
|
|
154999
154979
|
|
|
155000
154980
|
// ../../node_modules/@aws-sdk/client-bedrock-agentcore-control/dist-cjs/index.js
|
|
155001
|
-
var
|
|
154981
|
+
var require_dist_cjs80 = __commonJS({
|
|
155002
154982
|
"../../node_modules/@aws-sdk/client-bedrock-agentcore-control/dist-cjs/index.js"(exports2) {
|
|
155003
154983
|
"use strict";
|
|
155004
154984
|
var middlewareHostHeader = require_dist_cjs3();
|
|
@@ -156248,6 +156228,7 @@ var require_dist_cjs81 = __commonJS({
|
|
|
156248
156228
|
};
|
|
156249
156229
|
var EvaluatorType = {
|
|
156250
156230
|
BUILTIN: "Builtin",
|
|
156231
|
+
CODE: "CustomCode",
|
|
156251
156232
|
CUSTOM: "Custom"
|
|
156252
156233
|
};
|
|
156253
156234
|
var AuthorizerType = {
|
|
@@ -156639,7 +156620,7 @@ var require_httpAuthSchemeProvider8 = __commonJS({
|
|
|
156639
156620
|
"use strict";
|
|
156640
156621
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
156641
156622
|
exports2.resolveHttpAuthSchemeConfig = exports2.defaultCloudControlHttpAuthSchemeProvider = exports2.defaultCloudControlHttpAuthSchemeParametersProvider = void 0;
|
|
156642
|
-
var
|
|
156623
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
156643
156624
|
var util_middleware_1 = require_dist_cjs6();
|
|
156644
156625
|
var defaultCloudControlHttpAuthSchemeParametersProvider = /* @__PURE__ */ __name(async (config, context, input) => {
|
|
156645
156626
|
return {
|
|
@@ -156677,7 +156658,7 @@ var require_httpAuthSchemeProvider8 = __commonJS({
|
|
|
156677
156658
|
}, "defaultCloudControlHttpAuthSchemeProvider");
|
|
156678
156659
|
exports2.defaultCloudControlHttpAuthSchemeProvider = defaultCloudControlHttpAuthSchemeProvider;
|
|
156679
156660
|
var resolveHttpAuthSchemeConfig6 = /* @__PURE__ */ __name((config) => {
|
|
156680
|
-
const config_0 = (0,
|
|
156661
|
+
const config_0 = (0, httpAuthSchemes_1.resolveAwsSdkSigV4Config)(config);
|
|
156681
156662
|
return Object.assign(config_0, {
|
|
156682
156663
|
authSchemePreference: (0, util_middleware_1.normalizeProvider)(config.authSchemePreference ?? [])
|
|
156683
156664
|
});
|
|
@@ -156692,7 +156673,7 @@ var require_package8 = __commonJS({
|
|
|
156692
156673
|
module2.exports = {
|
|
156693
156674
|
name: "@aws-sdk/client-cloudcontrol",
|
|
156694
156675
|
description: "AWS SDK for JavaScript Cloudcontrol Client for Node.js, Browser and React Native",
|
|
156695
|
-
version: "3.
|
|
156676
|
+
version: "3.1019.0",
|
|
156696
156677
|
scripts: {
|
|
156697
156678
|
build: "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
156698
156679
|
"build:cjs": "node ../../scripts/compilation/inline client-cloudcontrol",
|
|
@@ -156712,17 +156693,17 @@ var require_package8 = __commonJS({
|
|
|
156712
156693
|
dependencies: {
|
|
156713
156694
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
156714
156695
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
156715
|
-
"@aws-sdk/core": "^3.973.
|
|
156716
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
156696
|
+
"@aws-sdk/core": "^3.973.25",
|
|
156697
|
+
"@aws-sdk/credential-provider-node": "^3.972.27",
|
|
156717
156698
|
"@aws-sdk/middleware-host-header": "^3.972.8",
|
|
156718
156699
|
"@aws-sdk/middleware-logger": "^3.972.8",
|
|
156719
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
156720
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
156721
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
156700
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.9",
|
|
156701
|
+
"@aws-sdk/middleware-user-agent": "^3.972.26",
|
|
156702
|
+
"@aws-sdk/region-config-resolver": "^3.972.10",
|
|
156722
156703
|
"@aws-sdk/types": "^3.973.6",
|
|
156723
156704
|
"@aws-sdk/util-endpoints": "^3.996.5",
|
|
156724
156705
|
"@aws-sdk/util-user-agent-browser": "^3.972.8",
|
|
156725
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
156706
|
+
"@aws-sdk/util-user-agent-node": "^3.973.12",
|
|
156726
156707
|
"@smithy/config-resolver": "^4.4.13",
|
|
156727
156708
|
"@smithy/core": "^3.23.12",
|
|
156728
156709
|
"@smithy/fetch-http-handler": "^5.3.15",
|
|
@@ -157828,7 +157809,7 @@ var require_runtimeConfig_shared9 = __commonJS({
|
|
|
157828
157809
|
"use strict";
|
|
157829
157810
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
157830
157811
|
exports2.getRuntimeConfig = void 0;
|
|
157831
|
-
var
|
|
157812
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
157832
157813
|
var protocols_1 = (init_protocols2(), __toCommonJS(protocols_exports2));
|
|
157833
157814
|
var smithy_client_1 = require_dist_cjs25();
|
|
157834
157815
|
var url_parser_1 = require_dist_cjs18();
|
|
@@ -157850,7 +157831,7 @@ var require_runtimeConfig_shared9 = __commonJS({
|
|
|
157850
157831
|
{
|
|
157851
157832
|
schemeId: "aws.auth#sigv4",
|
|
157852
157833
|
identityProvider: /* @__PURE__ */ __name((ipc) => ipc.getIdentityProvider("aws.auth#sigv4"), "identityProvider"),
|
|
157853
|
-
signer: new
|
|
157834
|
+
signer: new httpAuthSchemes_1.AwsSdkSigV4Signer()
|
|
157854
157835
|
}
|
|
157855
157836
|
],
|
|
157856
157837
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
@@ -157879,7 +157860,8 @@ var require_runtimeConfig9 = __commonJS({
|
|
|
157879
157860
|
exports2.getRuntimeConfig = void 0;
|
|
157880
157861
|
var tslib_1 = (init_tslib_es6(), __toCommonJS(tslib_es6_exports));
|
|
157881
157862
|
var package_json_1 = tslib_1.__importDefault(require_package8());
|
|
157882
|
-
var
|
|
157863
|
+
var client_1 = (init_client(), __toCommonJS(client_exports));
|
|
157864
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
157883
157865
|
var credential_provider_node_1 = require_dist_cjs52();
|
|
157884
157866
|
var util_user_agent_node_1 = require_dist_cjs41();
|
|
157885
157867
|
var config_resolver_1 = require_dist_cjs31();
|
|
@@ -157897,7 +157879,7 @@ var require_runtimeConfig9 = __commonJS({
|
|
|
157897
157879
|
const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config);
|
|
157898
157880
|
const defaultConfigProvider = /* @__PURE__ */ __name(() => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode), "defaultConfigProvider");
|
|
157899
157881
|
const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
|
|
157900
|
-
(0,
|
|
157882
|
+
(0, client_1.emitWarningIfUnsupportedVersion)(process.version);
|
|
157901
157883
|
const loaderConfig = {
|
|
157902
157884
|
profile: config?.profile,
|
|
157903
157885
|
logger: clientSharedValues.logger
|
|
@@ -157907,7 +157889,7 @@ var require_runtimeConfig9 = __commonJS({
|
|
|
157907
157889
|
...config,
|
|
157908
157890
|
runtime: "node",
|
|
157909
157891
|
defaultsMode,
|
|
157910
|
-
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(
|
|
157892
|
+
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(httpAuthSchemes_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
157911
157893
|
bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
|
|
157912
157894
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? credential_provider_node_1.defaultProvider,
|
|
157913
157895
|
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? (0, util_user_agent_node_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
@@ -157930,7 +157912,7 @@ var require_runtimeConfig9 = __commonJS({
|
|
|
157930
157912
|
});
|
|
157931
157913
|
|
|
157932
157914
|
// ../../node_modules/@aws-sdk/client-cloudcontrol/dist-cjs/index.js
|
|
157933
|
-
var
|
|
157915
|
+
var require_dist_cjs81 = __commonJS({
|
|
157934
157916
|
"../../node_modules/@aws-sdk/client-cloudcontrol/dist-cjs/index.js"(exports2) {
|
|
157935
157917
|
"use strict";
|
|
157936
157918
|
var middlewareHostHeader = require_dist_cjs3();
|
|
@@ -158245,7 +158227,7 @@ var require_httpAuthSchemeProvider9 = __commonJS({
|
|
|
158245
158227
|
"use strict";
|
|
158246
158228
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
158247
158229
|
exports2.resolveHttpAuthSchemeConfig = exports2.defaultCloudWatchLogsHttpAuthSchemeProvider = exports2.defaultCloudWatchLogsHttpAuthSchemeParametersProvider = void 0;
|
|
158248
|
-
var
|
|
158230
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
158249
158231
|
var util_middleware_1 = require_dist_cjs6();
|
|
158250
158232
|
var defaultCloudWatchLogsHttpAuthSchemeParametersProvider = /* @__PURE__ */ __name(async (config, context, input) => {
|
|
158251
158233
|
return {
|
|
@@ -158283,7 +158265,7 @@ var require_httpAuthSchemeProvider9 = __commonJS({
|
|
|
158283
158265
|
}, "defaultCloudWatchLogsHttpAuthSchemeProvider");
|
|
158284
158266
|
exports2.defaultCloudWatchLogsHttpAuthSchemeProvider = defaultCloudWatchLogsHttpAuthSchemeProvider;
|
|
158285
158267
|
var resolveHttpAuthSchemeConfig6 = /* @__PURE__ */ __name((config) => {
|
|
158286
|
-
const config_0 = (0,
|
|
158268
|
+
const config_0 = (0, httpAuthSchemes_1.resolveAwsSdkSigV4Config)(config);
|
|
158287
158269
|
return Object.assign(config_0, {
|
|
158288
158270
|
authSchemePreference: (0, util_middleware_1.normalizeProvider)(config.authSchemePreference ?? [])
|
|
158289
158271
|
});
|
|
@@ -158298,7 +158280,7 @@ var require_package9 = __commonJS({
|
|
|
158298
158280
|
module2.exports = {
|
|
158299
158281
|
name: "@aws-sdk/client-cloudwatch-logs",
|
|
158300
158282
|
description: "AWS SDK for JavaScript Cloudwatch Logs Client for Node.js, Browser and React Native",
|
|
158301
|
-
version: "3.
|
|
158283
|
+
version: "3.1019.0",
|
|
158302
158284
|
scripts: {
|
|
158303
158285
|
build: "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
158304
158286
|
"build:cjs": "node ../../scripts/compilation/inline client-cloudwatch-logs",
|
|
@@ -158324,17 +158306,17 @@ var require_package9 = __commonJS({
|
|
|
158324
158306
|
dependencies: {
|
|
158325
158307
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
158326
158308
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
158327
|
-
"@aws-sdk/core": "^3.973.
|
|
158328
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
158309
|
+
"@aws-sdk/core": "^3.973.25",
|
|
158310
|
+
"@aws-sdk/credential-provider-node": "^3.972.27",
|
|
158329
158311
|
"@aws-sdk/middleware-host-header": "^3.972.8",
|
|
158330
158312
|
"@aws-sdk/middleware-logger": "^3.972.8",
|
|
158331
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
158332
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
158333
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
158313
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.9",
|
|
158314
|
+
"@aws-sdk/middleware-user-agent": "^3.972.26",
|
|
158315
|
+
"@aws-sdk/region-config-resolver": "^3.972.10",
|
|
158334
158316
|
"@aws-sdk/types": "^3.973.6",
|
|
158335
158317
|
"@aws-sdk/util-endpoints": "^3.996.5",
|
|
158336
158318
|
"@aws-sdk/util-user-agent-browser": "^3.972.8",
|
|
158337
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
158319
|
+
"@aws-sdk/util-user-agent-node": "^3.973.12",
|
|
158338
158320
|
"@smithy/config-resolver": "^4.4.13",
|
|
158339
158321
|
"@smithy/core": "^3.23.12",
|
|
158340
158322
|
"@smithy/eventstream-serde-browser": "^4.2.12",
|
|
@@ -158855,10 +158837,10 @@ var require_schemas_09 = __commonJS({
|
|
|
158855
158837
|
exports2.GetLogFieldsRequest$ = exports2.GetLogEventsResponse$ = exports2.GetLogEventsRequest$ = exports2.GetLogAnomalyDetectorResponse$ = exports2.GetLogAnomalyDetectorRequest$ = exports2.GetIntegrationResponse$ = exports2.GetIntegrationRequest$ = exports2.GetDeliverySourceResponse$ = exports2.GetDeliverySourceRequest$ = exports2.GetDeliveryResponse$ = exports2.GetDeliveryRequest$ = exports2.GetDeliveryDestinationResponse$ = exports2.GetDeliveryDestinationRequest$ = exports2.GetDeliveryDestinationPolicyResponse$ = exports2.GetDeliveryDestinationPolicyRequest$ = exports2.GetDataProtectionPolicyResponse$ = exports2.GetDataProtectionPolicyRequest$ = exports2.FilterLogEventsResponse$ = exports2.FilterLogEventsRequest$ = exports2.FilteredLogEvent$ = exports2.FieldsData$ = exports2.FieldIndex$ = exports2.ExportTaskStatus$ = exports2.ExportTaskExecutionInfo$ = exports2.ExportTask$ = exports2.Entity$ = exports2.DisassociateSourceFromS3TableIntegrationResponse$ = exports2.DisassociateSourceFromS3TableIntegrationRequest$ = exports2.DisassociateKmsKeyRequest$ = exports2.DestinationConfiguration$ = exports2.Destination$ = exports2.DescribeSubscriptionFiltersResponse$ = exports2.DescribeSubscriptionFiltersRequest$ = exports2.DescribeResourcePoliciesResponse$ = exports2.DescribeResourcePoliciesRequest$ = exports2.DescribeQueryDefinitionsResponse$ = exports2.DescribeQueryDefinitionsRequest$ = exports2.DescribeQueriesResponse$ = exports2.DescribeQueriesRequest$ = exports2.DescribeMetricFiltersResponse$ = exports2.DescribeMetricFiltersRequest$ = exports2.DescribeLogStreamsResponse$ = exports2.DescribeLogStreamsRequest$ = exports2.DescribeLogGroupsResponse$ = exports2.DescribeLogGroupsRequest$ = exports2.DescribeIndexPoliciesResponse$ = exports2.DescribeIndexPoliciesRequest$ = exports2.DescribeImportTasksResponse$ = exports2.DescribeImportTasksRequest$ = exports2.DescribeImportTaskBatchesResponse$ = void 0;
|
|
158856
158838
|
exports2.LogEvent$ = exports2.LiveTailSessionUpdate$ = exports2.LiveTailSessionStart$ = exports2.LiveTailSessionMetadata$ = exports2.LiveTailSessionLogEvent$ = exports2.ListToMap$ = exports2.ListTagsLogGroupResponse$ = exports2.ListTagsLogGroupRequest$ = exports2.ListTagsForResourceResponse$ = exports2.ListTagsForResourceRequest$ = exports2.ListSourcesForS3TableIntegrationResponse$ = exports2.ListSourcesForS3TableIntegrationRequest$ = exports2.ListScheduledQueriesResponse$ = exports2.ListScheduledQueriesRequest$ = exports2.ListLogGroupsResponse$ = exports2.ListLogGroupsRequest$ = exports2.ListLogGroupsForQueryResponse$ = exports2.ListLogGroupsForQueryRequest$ = exports2.ListLogAnomalyDetectorsResponse$ = exports2.ListLogAnomalyDetectorsRequest$ = exports2.ListIntegrationsResponse$ = exports2.ListIntegrationsRequest$ = exports2.ListAnomaliesResponse$ = exports2.ListAnomaliesRequest$ = exports2.ListAggregateLogGroupSummariesResponse$ = exports2.ListAggregateLogGroupSummariesRequest$ = exports2.IntegrationSummary$ = exports2.InputLogEvent$ = exports2.IndexPolicy$ = exports2.ImportStatistics$ = exports2.ImportFilter$ = exports2.ImportBatch$ = exports2.Import$ = exports2.GroupingIdentifier$ = exports2.Grok$ = exports2.GetTransformerResponse$ = exports2.GetTransformerRequest$ = exports2.GetScheduledQueryResponse$ = exports2.GetScheduledQueryRequest$ = exports2.GetScheduledQueryHistoryResponse$ = exports2.GetScheduledQueryHistoryRequest$ = exports2.GetQueryResultsResponse$ = exports2.GetQueryResultsRequest$ = exports2.GetLogRecordResponse$ = exports2.GetLogRecordRequest$ = exports2.GetLogObjectResponse$ = exports2.GetLogObjectRequest$ = exports2.GetLogGroupFieldsResponse$ = exports2.GetLogGroupFieldsRequest$ = exports2.GetLogFieldsResponse$ = void 0;
|
|
158857
158839
|
exports2.PutIndexPolicyRequest$ = exports2.PutDestinationResponse$ = exports2.PutDestinationRequest$ = exports2.PutDestinationPolicyRequest$ = exports2.PutDeliverySourceResponse$ = exports2.PutDeliverySourceRequest$ = exports2.PutDeliveryDestinationResponse$ = exports2.PutDeliveryDestinationRequest$ = exports2.PutDeliveryDestinationPolicyResponse$ = exports2.PutDeliveryDestinationPolicyRequest$ = exports2.PutDataProtectionPolicyResponse$ = exports2.PutDataProtectionPolicyRequest$ = exports2.PutBearerTokenAuthenticationRequest$ = exports2.PutAccountPolicyResponse$ = exports2.PutAccountPolicyRequest$ = exports2.Processor$ = exports2.Policy$ = exports2.PatternToken$ = exports2.ParseWAF$ = exports2.ParseVPC$ = exports2.ParseToOCSF$ = exports2.ParseRoute53$ = exports2.ParsePostgres$ = exports2.ParseKeyValue$ = exports2.ParseJSON$ = exports2.ParseCloudfront$ = exports2.OutputLogEvent$ = exports2.OpenSearchWorkspace$ = exports2.OpenSearchResourceStatus$ = exports2.OpenSearchResourceConfig$ = exports2.OpenSearchNetworkPolicy$ = exports2.OpenSearchLifecyclePolicy$ = exports2.OpenSearchIntegrationDetails$ = exports2.OpenSearchEncryptionPolicy$ = exports2.OpenSearchDataSource$ = exports2.OpenSearchDataAccessPolicy$ = exports2.OpenSearchCollection$ = exports2.OpenSearchApplication$ = exports2.MoveKeys$ = exports2.MoveKeyEntry$ = exports2.MetricTransformation$ = exports2.MetricFilterMatchRecord$ = exports2.MetricFilter$ = exports2.LowerCaseString$ = exports2.LogStream$ = exports2.LogGroupSummary$ = exports2.LogGroupField$ = exports2.LogGroup$ = exports2.LogFieldType$ = exports2.LogFieldsListItem$ = void 0;
|
|
158858
|
-
exports2.
|
|
158859
|
-
exports2.
|
|
158860
|
-
exports2.
|
|
158861
|
-
exports2.UpdateScheduledQuery$ = exports2.UpdateLogAnomalyDetector$ = exports2.UpdateDeliveryConfiguration$ = exports2.UpdateAnomaly$ = exports2.UntagResource$ = exports2.UntagLogGroup$ = exports2.TestTransformer$ = exports2.TestMetricFilter$ = exports2.TagResource$ = exports2.TagLogGroup$ = exports2.StopQuery$ = exports2.StartQuery$ = exports2.StartLiveTail$ = exports2.PutTransformer$ = exports2.PutSubscriptionFilter$ = exports2.PutRetentionPolicy$ = exports2.PutResourcePolicy$ = exports2.PutQueryDefinition$ = exports2.PutMetricFilter$ = exports2.PutLogGroupDeletionProtection$ = exports2.PutLogEvents$ = exports2.PutIntegration$ = exports2.PutIndexPolicy$ = exports2.PutDestinationPolicy$ = exports2.PutDestination$ = exports2.PutDeliverySource$ = void 0;
|
|
158840
|
+
exports2.TestTransformerRequest$ = exports2.TestMetricFilterResponse$ = exports2.TestMetricFilterRequest$ = exports2.TagResourceRequest$ = exports2.TagLogGroupRequest$ = exports2.SuppressionPeriod$ = exports2.SubstituteStringEntry$ = exports2.SubstituteString$ = exports2.SubscriptionFilter$ = exports2.StopQueryResponse$ = exports2.StopQueryRequest$ = exports2.StartQueryResponse$ = exports2.StartQueryRequest$ = exports2.StartLiveTailResponse$ = exports2.StartLiveTailRequest$ = exports2.SplitStringEntry$ = exports2.SplitString$ = exports2.SearchedLogStream$ = exports2.ScheduledQuerySummary$ = exports2.ScheduledQueryDestination$ = exports2.S3TableIntegrationSource$ = exports2.S3DeliveryConfiguration$ = exports2.S3Configuration$ = exports2.ResultField$ = exports2.ResourcePolicy$ = exports2.RenameKeys$ = exports2.RenameKeyEntry$ = exports2.RejectedLogEventsInfo$ = exports2.RejectedEntityInfo$ = exports2.RecordField$ = exports2.QueryStatistics$ = exports2.QueryParameter$ = exports2.QueryInfo$ = exports2.QueryDefinition$ = exports2.QueryCompileErrorLocation$ = exports2.QueryCompileError$ = exports2.PutTransformerRequest$ = exports2.PutSubscriptionFilterRequest$ = exports2.PutRetentionPolicyRequest$ = exports2.PutResourcePolicyResponse$ = exports2.PutResourcePolicyRequest$ = exports2.PutQueryDefinitionResponse$ = exports2.PutQueryDefinitionRequest$ = exports2.PutMetricFilterRequest$ = exports2.PutLogGroupDeletionProtectionRequest$ = exports2.PutLogEventsResponse$ = exports2.PutLogEventsRequest$ = exports2.PutIntegrationResponse$ = exports2.PutIntegrationRequest$ = exports2.PutIndexPolicyResponse$ = void 0;
|
|
158841
|
+
exports2.DescribeAccountPolicies$ = exports2.DeleteTransformer$ = exports2.DeleteSubscriptionFilter$ = exports2.DeleteScheduledQuery$ = exports2.DeleteRetentionPolicy$ = exports2.DeleteResourcePolicy$ = exports2.DeleteQueryDefinition$ = exports2.DeleteMetricFilter$ = exports2.DeleteLogStream$ = exports2.DeleteLogGroup$ = exports2.DeleteLogAnomalyDetector$ = exports2.DeleteIntegration$ = exports2.DeleteIndexPolicy$ = exports2.DeleteDestination$ = exports2.DeleteDeliverySource$ = exports2.DeleteDeliveryDestinationPolicy$ = exports2.DeleteDeliveryDestination$ = exports2.DeleteDelivery$ = exports2.DeleteDataProtectionPolicy$ = exports2.DeleteAccountPolicy$ = exports2.CreateScheduledQuery$ = exports2.CreateLogStream$ = exports2.CreateLogGroup$ = exports2.CreateLogAnomalyDetector$ = exports2.CreateImportTask$ = exports2.CreateExportTask$ = exports2.CreateDelivery$ = exports2.CancelImportTask$ = exports2.CancelExportTask$ = exports2.AssociateSourceToS3TableIntegration$ = exports2.AssociateKmsKey$ = exports2.StartLiveTailResponseStream$ = exports2.ResourceConfig$ = exports2.IntegrationDetails$ = exports2.GetLogObjectResponseStream$ = exports2.UpperCaseString$ = exports2.UpdateScheduledQueryResponse$ = exports2.UpdateScheduledQueryRequest$ = exports2.UpdateLogAnomalyDetectorRequest$ = exports2.UpdateDeliveryConfigurationResponse$ = exports2.UpdateDeliveryConfigurationRequest$ = exports2.UpdateAnomalyRequest$ = exports2.UntagResourceRequest$ = exports2.UntagLogGroupRequest$ = exports2.TypeConverterEntry$ = exports2.TypeConverter$ = exports2.TrimString$ = exports2.TriggerHistoryRecord$ = exports2.TransformedLogRecord$ = exports2.TestTransformerResponse$ = void 0;
|
|
158842
|
+
exports2.PutDeliveryDestination$ = exports2.PutDataProtectionPolicy$ = exports2.PutBearerTokenAuthentication$ = exports2.PutAccountPolicy$ = exports2.ListTagsLogGroup$ = exports2.ListTagsForResource$ = exports2.ListSourcesForS3TableIntegration$ = exports2.ListScheduledQueries$ = exports2.ListLogGroupsForQuery$ = exports2.ListLogGroups$ = exports2.ListLogAnomalyDetectors$ = exports2.ListIntegrations$ = exports2.ListAnomalies$ = exports2.ListAggregateLogGroupSummaries$ = exports2.GetTransformer$ = exports2.GetScheduledQueryHistory$ = exports2.GetScheduledQuery$ = exports2.GetQueryResults$ = exports2.GetLogRecord$ = exports2.GetLogObject$ = exports2.GetLogGroupFields$ = exports2.GetLogFields$ = exports2.GetLogEvents$ = exports2.GetLogAnomalyDetector$ = exports2.GetIntegration$ = exports2.GetDeliverySource$ = exports2.GetDeliveryDestinationPolicy$ = exports2.GetDeliveryDestination$ = exports2.GetDelivery$ = exports2.GetDataProtectionPolicy$ = exports2.FilterLogEvents$ = exports2.DisassociateSourceFromS3TableIntegration$ = exports2.DisassociateKmsKey$ = exports2.DescribeSubscriptionFilters$ = exports2.DescribeResourcePolicies$ = exports2.DescribeQueryDefinitions$ = exports2.DescribeQueries$ = exports2.DescribeMetricFilters$ = exports2.DescribeLogStreams$ = exports2.DescribeLogGroups$ = exports2.DescribeIndexPolicies$ = exports2.DescribeImportTasks$ = exports2.DescribeImportTaskBatches$ = exports2.DescribeFieldIndexes$ = exports2.DescribeExportTasks$ = exports2.DescribeDestinations$ = exports2.DescribeDeliverySources$ = exports2.DescribeDeliveryDestinations$ = exports2.DescribeDeliveries$ = exports2.DescribeConfigurationTemplates$ = void 0;
|
|
158843
|
+
exports2.UpdateScheduledQuery$ = exports2.UpdateLogAnomalyDetector$ = exports2.UpdateDeliveryConfiguration$ = exports2.UpdateAnomaly$ = exports2.UntagResource$ = exports2.UntagLogGroup$ = exports2.TestTransformer$ = exports2.TestMetricFilter$ = exports2.TagResource$ = exports2.TagLogGroup$ = exports2.StopQuery$ = exports2.StartQuery$ = exports2.StartLiveTail$ = exports2.PutTransformer$ = exports2.PutSubscriptionFilter$ = exports2.PutRetentionPolicy$ = exports2.PutResourcePolicy$ = exports2.PutQueryDefinition$ = exports2.PutMetricFilter$ = exports2.PutLogGroupDeletionProtection$ = exports2.PutLogEvents$ = exports2.PutIntegration$ = exports2.PutIndexPolicy$ = exports2.PutDestinationPolicy$ = exports2.PutDestination$ = exports2.PutDeliverySource$ = exports2.PutDeliveryDestinationPolicy$ = void 0;
|
|
158862
158844
|
var _A2 = "Anomaly";
|
|
158863
158845
|
var _AD = "AnomalyDetector";
|
|
158864
158846
|
var _ADE3 = "AccessDeniedException";
|
|
@@ -159251,6 +159233,8 @@ var require_schemas_09 = __commonJS({
|
|
|
159251
159233
|
var _QDL = "QueryDefinitionList";
|
|
159252
159234
|
var _QI = "QueryInfo";
|
|
159253
159235
|
var _QIL = "QueryInfoList";
|
|
159236
|
+
var _QP = "QueryParameter";
|
|
159237
|
+
var _QPL = "QueryParameterList";
|
|
159254
159238
|
var _QR = "QueryResults";
|
|
159255
159239
|
var _QS = "QueryStatistics";
|
|
159256
159240
|
var _RAEE = "ResourceAlreadyExistsException";
|
|
@@ -159586,6 +159570,7 @@ var require_schemas_09 = __commonJS({
|
|
|
159586
159570
|
var _nP = "networkPolicy";
|
|
159587
159571
|
var _nST = "nextSequenceToken";
|
|
159588
159572
|
var _nT = "nextToken";
|
|
159573
|
+
var _oAI = "ownerAccountId";
|
|
159589
159574
|
var _oB = "orderBy";
|
|
159590
159575
|
var _oF = "outputFormat";
|
|
159591
159576
|
var _oIE = "overwriteIfExists";
|
|
@@ -159610,6 +159595,7 @@ var require_schemas_09 = __commonJS({
|
|
|
159610
159595
|
var _pTa = "patternTokens";
|
|
159611
159596
|
var _pVPC = "parseVPC";
|
|
159612
159597
|
var _pWAF = "parseWAF";
|
|
159598
|
+
var _pa = "parameters";
|
|
159613
159599
|
var _pe = "percent";
|
|
159614
159600
|
var _po = "policy";
|
|
159615
159601
|
var _q = "queries";
|
|
@@ -161892,8 +161878,8 @@ var require_schemas_09 = __commonJS({
|
|
|
161892
161878
|
n06,
|
|
161893
161879
|
_PQDR,
|
|
161894
161880
|
0,
|
|
161895
|
-
[_n, _qS, _qL, _qDI, _lGNo, _cTl],
|
|
161896
|
-
[0, 0, 0, 0, 64 | 0, [0, 4]],
|
|
161881
|
+
[_n, _qS, _qL, _qDI, _lGNo, _cTl, _pa],
|
|
161882
|
+
[0, 0, 0, 0, 64 | 0, [0, 4], () => QueryParameterList],
|
|
161897
161883
|
2
|
|
161898
161884
|
];
|
|
161899
161885
|
exports2.PutQueryDefinitionResponse$ = [
|
|
@@ -161968,8 +161954,8 @@ var require_schemas_09 = __commonJS({
|
|
|
161968
161954
|
n06,
|
|
161969
161955
|
_QD,
|
|
161970
161956
|
0,
|
|
161971
|
-
[_qL, _qDI, _n, _qS, _lM, _lGNo],
|
|
161972
|
-
[0, 0, 0, 0, 1, 64 | 0]
|
|
161957
|
+
[_qL, _qDI, _n, _qS, _lM, _lGNo, _pa],
|
|
161958
|
+
[0, 0, 0, 0, 1, 64 | 0, () => QueryParameterList]
|
|
161973
161959
|
];
|
|
161974
161960
|
exports2.QueryInfo$ = [
|
|
161975
161961
|
3,
|
|
@@ -161979,6 +161965,15 @@ var require_schemas_09 = __commonJS({
|
|
|
161979
161965
|
[_qL, _qI, _qS, _sta, _cTr, _lGN],
|
|
161980
161966
|
[0, 0, 0, 0, 1, 0]
|
|
161981
161967
|
];
|
|
161968
|
+
exports2.QueryParameter$ = [
|
|
161969
|
+
3,
|
|
161970
|
+
n06,
|
|
161971
|
+
_QP,
|
|
161972
|
+
0,
|
|
161973
|
+
[_n, _dV, _d],
|
|
161974
|
+
[0, 0, 0],
|
|
161975
|
+
1
|
|
161976
|
+
];
|
|
161982
161977
|
exports2.QueryStatistics$ = [
|
|
161983
161978
|
3,
|
|
161984
161979
|
n06,
|
|
@@ -162051,8 +162046,8 @@ var require_schemas_09 = __commonJS({
|
|
|
162051
162046
|
n06,
|
|
162052
162047
|
_SC,
|
|
162053
162048
|
0,
|
|
162054
|
-
[_dI, _rAo],
|
|
162055
|
-
[0, 0],
|
|
162049
|
+
[_dI, _rAo, _oAI, _kKI],
|
|
162050
|
+
[0, 0, 0, 0],
|
|
162056
162051
|
2
|
|
162057
162052
|
];
|
|
162058
162053
|
exports2.S3DeliveryConfiguration$ = [
|
|
@@ -162661,6 +162656,13 @@ var require_schemas_09 = __commonJS({
|
|
|
162661
162656
|
0,
|
|
162662
162657
|
() => exports2.QueryInfo$
|
|
162663
162658
|
];
|
|
162659
|
+
var QueryParameterList = [
|
|
162660
|
+
1,
|
|
162661
|
+
n06,
|
|
162662
|
+
_QPL,
|
|
162663
|
+
0,
|
|
162664
|
+
() => exports2.QueryParameter$
|
|
162665
|
+
];
|
|
162664
162666
|
var QueryResults = [
|
|
162665
162667
|
1,
|
|
162666
162668
|
n06,
|
|
@@ -163682,7 +163684,7 @@ var require_runtimeConfig_shared10 = __commonJS({
|
|
|
163682
163684
|
"use strict";
|
|
163683
163685
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
163684
163686
|
exports2.getRuntimeConfig = void 0;
|
|
163685
|
-
var
|
|
163687
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
163686
163688
|
var protocols_1 = (init_protocols2(), __toCommonJS(protocols_exports2));
|
|
163687
163689
|
var smithy_client_1 = require_dist_cjs25();
|
|
163688
163690
|
var url_parser_1 = require_dist_cjs18();
|
|
@@ -163704,7 +163706,7 @@ var require_runtimeConfig_shared10 = __commonJS({
|
|
|
163704
163706
|
{
|
|
163705
163707
|
schemeId: "aws.auth#sigv4",
|
|
163706
163708
|
identityProvider: /* @__PURE__ */ __name((ipc) => ipc.getIdentityProvider("aws.auth#sigv4"), "identityProvider"),
|
|
163707
|
-
signer: new
|
|
163709
|
+
signer: new httpAuthSchemes_1.AwsSdkSigV4Signer()
|
|
163708
163710
|
}
|
|
163709
163711
|
],
|
|
163710
163712
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
@@ -163734,7 +163736,8 @@ var require_runtimeConfig10 = __commonJS({
|
|
|
163734
163736
|
exports2.getRuntimeConfig = void 0;
|
|
163735
163737
|
var tslib_1 = (init_tslib_es6(), __toCommonJS(tslib_es6_exports));
|
|
163736
163738
|
var package_json_1 = tslib_1.__importDefault(require_package9());
|
|
163737
|
-
var
|
|
163739
|
+
var client_1 = (init_client(), __toCommonJS(client_exports));
|
|
163740
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
163738
163741
|
var credential_provider_node_1 = require_dist_cjs52();
|
|
163739
163742
|
var util_user_agent_node_1 = require_dist_cjs41();
|
|
163740
163743
|
var config_resolver_1 = require_dist_cjs31();
|
|
@@ -163753,7 +163756,7 @@ var require_runtimeConfig10 = __commonJS({
|
|
|
163753
163756
|
const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config);
|
|
163754
163757
|
const defaultConfigProvider = /* @__PURE__ */ __name(() => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode), "defaultConfigProvider");
|
|
163755
163758
|
const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
|
|
163756
|
-
(0,
|
|
163759
|
+
(0, client_1.emitWarningIfUnsupportedVersion)(process.version);
|
|
163757
163760
|
const loaderConfig = {
|
|
163758
163761
|
profile: config?.profile,
|
|
163759
163762
|
logger: clientSharedValues.logger
|
|
@@ -163763,7 +163766,7 @@ var require_runtimeConfig10 = __commonJS({
|
|
|
163763
163766
|
...config,
|
|
163764
163767
|
runtime: "node",
|
|
163765
163768
|
defaultsMode,
|
|
163766
|
-
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(
|
|
163769
|
+
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(httpAuthSchemes_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
163767
163770
|
bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
|
|
163768
163771
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? credential_provider_node_1.defaultProvider,
|
|
163769
163772
|
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? (0, util_user_agent_node_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
@@ -163787,7 +163790,7 @@ var require_runtimeConfig10 = __commonJS({
|
|
|
163787
163790
|
});
|
|
163788
163791
|
|
|
163789
163792
|
// ../../node_modules/@aws-sdk/client-cloudwatch-logs/dist-cjs/index.js
|
|
163790
|
-
var
|
|
163793
|
+
var require_dist_cjs82 = __commonJS({
|
|
163791
163794
|
"../../node_modules/@aws-sdk/client-cloudwatch-logs/dist-cjs/index.js"(exports2) {
|
|
163792
163795
|
"use strict";
|
|
163793
163796
|
var middlewareHostHeader = require_dist_cjs3();
|
|
@@ -165232,7 +165235,7 @@ var require_httpAuthSchemeProvider10 = __commonJS({
|
|
|
165232
165235
|
"use strict";
|
|
165233
165236
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
165234
165237
|
exports2.resolveHttpAuthSchemeConfig = exports2.defaultCodeBuildHttpAuthSchemeProvider = exports2.defaultCodeBuildHttpAuthSchemeParametersProvider = void 0;
|
|
165235
|
-
var
|
|
165238
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
165236
165239
|
var util_middleware_1 = require_dist_cjs6();
|
|
165237
165240
|
var defaultCodeBuildHttpAuthSchemeParametersProvider = /* @__PURE__ */ __name(async (config, context, input) => {
|
|
165238
165241
|
return {
|
|
@@ -165270,7 +165273,7 @@ var require_httpAuthSchemeProvider10 = __commonJS({
|
|
|
165270
165273
|
}, "defaultCodeBuildHttpAuthSchemeProvider");
|
|
165271
165274
|
exports2.defaultCodeBuildHttpAuthSchemeProvider = defaultCodeBuildHttpAuthSchemeProvider;
|
|
165272
165275
|
var resolveHttpAuthSchemeConfig6 = /* @__PURE__ */ __name((config) => {
|
|
165273
|
-
const config_0 = (0,
|
|
165276
|
+
const config_0 = (0, httpAuthSchemes_1.resolveAwsSdkSigV4Config)(config);
|
|
165274
165277
|
return Object.assign(config_0, {
|
|
165275
165278
|
authSchemePreference: (0, util_middleware_1.normalizeProvider)(config.authSchemePreference ?? [])
|
|
165276
165279
|
});
|
|
@@ -165285,7 +165288,7 @@ var require_package10 = __commonJS({
|
|
|
165285
165288
|
module2.exports = {
|
|
165286
165289
|
name: "@aws-sdk/client-codebuild",
|
|
165287
165290
|
description: "AWS SDK for JavaScript Codebuild Client for Node.js, Browser and React Native",
|
|
165288
|
-
version: "3.
|
|
165291
|
+
version: "3.1019.0",
|
|
165289
165292
|
scripts: {
|
|
165290
165293
|
build: "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
165291
165294
|
"build:cjs": "node ../../scripts/compilation/inline client-codebuild",
|
|
@@ -165305,17 +165308,17 @@ var require_package10 = __commonJS({
|
|
|
165305
165308
|
dependencies: {
|
|
165306
165309
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
165307
165310
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
165308
|
-
"@aws-sdk/core": "^3.973.
|
|
165309
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
165311
|
+
"@aws-sdk/core": "^3.973.25",
|
|
165312
|
+
"@aws-sdk/credential-provider-node": "^3.972.27",
|
|
165310
165313
|
"@aws-sdk/middleware-host-header": "^3.972.8",
|
|
165311
165314
|
"@aws-sdk/middleware-logger": "^3.972.8",
|
|
165312
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
165313
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
165314
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
165315
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.9",
|
|
165316
|
+
"@aws-sdk/middleware-user-agent": "^3.972.26",
|
|
165317
|
+
"@aws-sdk/region-config-resolver": "^3.972.10",
|
|
165315
165318
|
"@aws-sdk/types": "^3.973.6",
|
|
165316
165319
|
"@aws-sdk/util-endpoints": "^3.996.5",
|
|
165317
165320
|
"@aws-sdk/util-user-agent-browser": "^3.972.8",
|
|
165318
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
165321
|
+
"@aws-sdk/util-user-agent-node": "^3.973.12",
|
|
165319
165322
|
"@smithy/config-resolver": "^4.4.13",
|
|
165320
165323
|
"@smithy/core": "^3.23.12",
|
|
165321
165324
|
"@smithy/fetch-http-handler": "^5.3.15",
|
|
@@ -168588,7 +168591,7 @@ var require_runtimeConfig_shared11 = __commonJS({
|
|
|
168588
168591
|
"use strict";
|
|
168589
168592
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
168590
168593
|
exports2.getRuntimeConfig = void 0;
|
|
168591
|
-
var
|
|
168594
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
168592
168595
|
var protocols_1 = (init_protocols2(), __toCommonJS(protocols_exports2));
|
|
168593
168596
|
var smithy_client_1 = require_dist_cjs25();
|
|
168594
168597
|
var url_parser_1 = require_dist_cjs18();
|
|
@@ -168610,7 +168613,7 @@ var require_runtimeConfig_shared11 = __commonJS({
|
|
|
168610
168613
|
{
|
|
168611
168614
|
schemeId: "aws.auth#sigv4",
|
|
168612
168615
|
identityProvider: /* @__PURE__ */ __name((ipc) => ipc.getIdentityProvider("aws.auth#sigv4"), "identityProvider"),
|
|
168613
|
-
signer: new
|
|
168616
|
+
signer: new httpAuthSchemes_1.AwsSdkSigV4Signer()
|
|
168614
168617
|
}
|
|
168615
168618
|
],
|
|
168616
168619
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
@@ -168639,7 +168642,8 @@ var require_runtimeConfig11 = __commonJS({
|
|
|
168639
168642
|
exports2.getRuntimeConfig = void 0;
|
|
168640
168643
|
var tslib_1 = (init_tslib_es6(), __toCommonJS(tslib_es6_exports));
|
|
168641
168644
|
var package_json_1 = tslib_1.__importDefault(require_package10());
|
|
168642
|
-
var
|
|
168645
|
+
var client_1 = (init_client(), __toCommonJS(client_exports));
|
|
168646
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
168643
168647
|
var credential_provider_node_1 = require_dist_cjs52();
|
|
168644
168648
|
var util_user_agent_node_1 = require_dist_cjs41();
|
|
168645
168649
|
var config_resolver_1 = require_dist_cjs31();
|
|
@@ -168657,7 +168661,7 @@ var require_runtimeConfig11 = __commonJS({
|
|
|
168657
168661
|
const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config);
|
|
168658
168662
|
const defaultConfigProvider = /* @__PURE__ */ __name(() => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode), "defaultConfigProvider");
|
|
168659
168663
|
const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
|
|
168660
|
-
(0,
|
|
168664
|
+
(0, client_1.emitWarningIfUnsupportedVersion)(process.version);
|
|
168661
168665
|
const loaderConfig = {
|
|
168662
168666
|
profile: config?.profile,
|
|
168663
168667
|
logger: clientSharedValues.logger
|
|
@@ -168667,7 +168671,7 @@ var require_runtimeConfig11 = __commonJS({
|
|
|
168667
168671
|
...config,
|
|
168668
168672
|
runtime: "node",
|
|
168669
168673
|
defaultsMode,
|
|
168670
|
-
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(
|
|
168674
|
+
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(httpAuthSchemes_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
168671
168675
|
bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
|
|
168672
168676
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? credential_provider_node_1.defaultProvider,
|
|
168673
168677
|
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? (0, util_user_agent_node_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
@@ -168690,7 +168694,7 @@ var require_runtimeConfig11 = __commonJS({
|
|
|
168690
168694
|
});
|
|
168691
168695
|
|
|
168692
168696
|
// ../../node_modules/@aws-sdk/client-codebuild/dist-cjs/index.js
|
|
168693
|
-
var
|
|
168697
|
+
var require_dist_cjs83 = __commonJS({
|
|
168694
168698
|
"../../node_modules/@aws-sdk/client-codebuild/dist-cjs/index.js"(exports2) {
|
|
168695
168699
|
"use strict";
|
|
168696
168700
|
var middlewareHostHeader = require_dist_cjs3();
|
|
@@ -169795,7 +169799,7 @@ var require_httpAuthSchemeProvider11 = __commonJS({
|
|
|
169795
169799
|
"use strict";
|
|
169796
169800
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
169797
169801
|
exports2.resolveHttpAuthSchemeConfig = exports2.defaultEC2HttpAuthSchemeProvider = exports2.defaultEC2HttpAuthSchemeParametersProvider = void 0;
|
|
169798
|
-
var
|
|
169802
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
169799
169803
|
var util_middleware_1 = require_dist_cjs6();
|
|
169800
169804
|
var defaultEC2HttpAuthSchemeParametersProvider = /* @__PURE__ */ __name(async (config, context, input) => {
|
|
169801
169805
|
return {
|
|
@@ -169833,7 +169837,7 @@ var require_httpAuthSchemeProvider11 = __commonJS({
|
|
|
169833
169837
|
}, "defaultEC2HttpAuthSchemeProvider");
|
|
169834
169838
|
exports2.defaultEC2HttpAuthSchemeProvider = defaultEC2HttpAuthSchemeProvider;
|
|
169835
169839
|
var resolveHttpAuthSchemeConfig6 = /* @__PURE__ */ __name((config) => {
|
|
169836
|
-
const config_0 = (0,
|
|
169840
|
+
const config_0 = (0, httpAuthSchemes_1.resolveAwsSdkSigV4Config)(config);
|
|
169837
169841
|
return Object.assign(config_0, {
|
|
169838
169842
|
authSchemePreference: (0, util_middleware_1.normalizeProvider)(config.authSchemePreference ?? [])
|
|
169839
169843
|
});
|
|
@@ -169848,7 +169852,7 @@ var require_package11 = __commonJS({
|
|
|
169848
169852
|
module2.exports = {
|
|
169849
169853
|
name: "@aws-sdk/client-ec2",
|
|
169850
169854
|
description: "AWS SDK for JavaScript Ec2 Client for Node.js, Browser and React Native",
|
|
169851
|
-
version: "3.
|
|
169855
|
+
version: "3.1019.0",
|
|
169852
169856
|
scripts: {
|
|
169853
169857
|
build: "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
169854
169858
|
"build:cjs": "node ../../scripts/compilation/inline client-ec2",
|
|
@@ -169872,18 +169876,18 @@ var require_package11 = __commonJS({
|
|
|
169872
169876
|
dependencies: {
|
|
169873
169877
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
169874
169878
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
169875
|
-
"@aws-sdk/core": "^3.973.
|
|
169876
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
169879
|
+
"@aws-sdk/core": "^3.973.25",
|
|
169880
|
+
"@aws-sdk/credential-provider-node": "^3.972.27",
|
|
169877
169881
|
"@aws-sdk/middleware-host-header": "^3.972.8",
|
|
169878
169882
|
"@aws-sdk/middleware-logger": "^3.972.8",
|
|
169879
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
169883
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.9",
|
|
169880
169884
|
"@aws-sdk/middleware-sdk-ec2": "^3.972.17",
|
|
169881
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
169882
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
169885
|
+
"@aws-sdk/middleware-user-agent": "^3.972.26",
|
|
169886
|
+
"@aws-sdk/region-config-resolver": "^3.972.10",
|
|
169883
169887
|
"@aws-sdk/types": "^3.973.6",
|
|
169884
169888
|
"@aws-sdk/util-endpoints": "^3.996.5",
|
|
169885
169889
|
"@aws-sdk/util-user-agent-browser": "^3.972.8",
|
|
169886
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
169890
|
+
"@aws-sdk/util-user-agent-node": "^3.973.12",
|
|
169887
169891
|
"@smithy/config-resolver": "^4.4.13",
|
|
169888
169892
|
"@smithy/core": "^3.23.12",
|
|
169889
169893
|
"@smithy/fetch-http-handler": "^5.3.15",
|
|
@@ -227457,7 +227461,7 @@ var require_runtimeConfig_shared12 = __commonJS({
|
|
|
227457
227461
|
"use strict";
|
|
227458
227462
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
227459
227463
|
exports2.getRuntimeConfig = void 0;
|
|
227460
|
-
var
|
|
227464
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
227461
227465
|
var protocols_1 = (init_protocols2(), __toCommonJS(protocols_exports2));
|
|
227462
227466
|
var smithy_client_1 = require_dist_cjs25();
|
|
227463
227467
|
var url_parser_1 = require_dist_cjs18();
|
|
@@ -227479,7 +227483,7 @@ var require_runtimeConfig_shared12 = __commonJS({
|
|
|
227479
227483
|
{
|
|
227480
227484
|
schemeId: "aws.auth#sigv4",
|
|
227481
227485
|
identityProvider: /* @__PURE__ */ __name((ipc) => ipc.getIdentityProvider("aws.auth#sigv4"), "identityProvider"),
|
|
227482
|
-
signer: new
|
|
227486
|
+
signer: new httpAuthSchemes_1.AwsSdkSigV4Signer()
|
|
227483
227487
|
}
|
|
227484
227488
|
],
|
|
227485
227489
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
@@ -227509,7 +227513,8 @@ var require_runtimeConfig12 = __commonJS({
|
|
|
227509
227513
|
exports2.getRuntimeConfig = void 0;
|
|
227510
227514
|
var tslib_1 = (init_tslib_es6(), __toCommonJS(tslib_es6_exports));
|
|
227511
227515
|
var package_json_1 = tslib_1.__importDefault(require_package11());
|
|
227512
|
-
var
|
|
227516
|
+
var client_1 = (init_client(), __toCommonJS(client_exports));
|
|
227517
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
227513
227518
|
var credential_provider_node_1 = require_dist_cjs52();
|
|
227514
227519
|
var util_user_agent_node_1 = require_dist_cjs41();
|
|
227515
227520
|
var config_resolver_1 = require_dist_cjs31();
|
|
@@ -227527,7 +227532,7 @@ var require_runtimeConfig12 = __commonJS({
|
|
|
227527
227532
|
const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config);
|
|
227528
227533
|
const defaultConfigProvider = /* @__PURE__ */ __name(() => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode), "defaultConfigProvider");
|
|
227529
227534
|
const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
|
|
227530
|
-
(0,
|
|
227535
|
+
(0, client_1.emitWarningIfUnsupportedVersion)(process.version);
|
|
227531
227536
|
const loaderConfig = {
|
|
227532
227537
|
profile: config?.profile,
|
|
227533
227538
|
logger: clientSharedValues.logger
|
|
@@ -227537,7 +227542,7 @@ var require_runtimeConfig12 = __commonJS({
|
|
|
227537
227542
|
...config,
|
|
227538
227543
|
runtime: "node",
|
|
227539
227544
|
defaultsMode,
|
|
227540
|
-
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(
|
|
227545
|
+
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(httpAuthSchemes_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
227541
227546
|
bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
|
|
227542
227547
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? credential_provider_node_1.defaultProvider,
|
|
227543
227548
|
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? (0, util_user_agent_node_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
@@ -227560,7 +227565,7 @@ var require_runtimeConfig12 = __commonJS({
|
|
|
227560
227565
|
});
|
|
227561
227566
|
|
|
227562
227567
|
// ../../node_modules/@aws-sdk/util-format-url/dist-cjs/index.js
|
|
227563
|
-
var
|
|
227568
|
+
var require_dist_cjs84 = __commonJS({
|
|
227564
227569
|
"../../node_modules/@aws-sdk/util-format-url/dist-cjs/index.js"(exports2) {
|
|
227565
227570
|
"use strict";
|
|
227566
227571
|
var querystringBuilder = require_dist_cjs12();
|
|
@@ -227598,10 +227603,10 @@ var require_dist_cjs85 = __commonJS({
|
|
|
227598
227603
|
});
|
|
227599
227604
|
|
|
227600
227605
|
// ../../node_modules/@aws-sdk/middleware-sdk-ec2/dist-cjs/index.js
|
|
227601
|
-
var
|
|
227606
|
+
var require_dist_cjs85 = __commonJS({
|
|
227602
227607
|
"../../node_modules/@aws-sdk/middleware-sdk-ec2/dist-cjs/index.js"(exports2) {
|
|
227603
227608
|
"use strict";
|
|
227604
|
-
var utilFormatUrl =
|
|
227609
|
+
var utilFormatUrl = require_dist_cjs84();
|
|
227605
227610
|
var middlewareEndpoint = require_dist_cjs36();
|
|
227606
227611
|
var protocolHttp = require_dist_cjs2();
|
|
227607
227612
|
var signatureV4 = require_dist_cjs23();
|
|
@@ -227694,7 +227699,7 @@ var require_dist_cjs86 = __commonJS({
|
|
|
227694
227699
|
});
|
|
227695
227700
|
|
|
227696
227701
|
// ../../node_modules/@aws-sdk/client-ec2/dist-cjs/index.js
|
|
227697
|
-
var
|
|
227702
|
+
var require_dist_cjs86 = __commonJS({
|
|
227698
227703
|
"../../node_modules/@aws-sdk/client-ec2/dist-cjs/index.js"(exports2) {
|
|
227699
227704
|
"use strict";
|
|
227700
227705
|
var middlewareHostHeader = require_dist_cjs3();
|
|
@@ -227713,7 +227718,7 @@ var require_dist_cjs87 = __commonJS({
|
|
|
227713
227718
|
var regionConfigResolver = require_dist_cjs45();
|
|
227714
227719
|
var protocolHttp = require_dist_cjs2();
|
|
227715
227720
|
var schemas_0 = require_schemas_011();
|
|
227716
|
-
var middlewareSdkEc2 =
|
|
227721
|
+
var middlewareSdkEc2 = require_dist_cjs85();
|
|
227717
227722
|
var utilWaiter = require_dist_cjs53();
|
|
227718
227723
|
var EC2ServiceException = require_EC2ServiceException();
|
|
227719
227724
|
var resolveClientEndpointParameters6 = /* @__PURE__ */ __name((options) => {
|
|
@@ -241761,7 +241766,7 @@ var require_httpAuthSchemeProvider12 = __commonJS({
|
|
|
241761
241766
|
"use strict";
|
|
241762
241767
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
241763
241768
|
exports2.resolveHttpAuthSchemeConfig = exports2.defaultECSHttpAuthSchemeProvider = exports2.defaultECSHttpAuthSchemeParametersProvider = void 0;
|
|
241764
|
-
var
|
|
241769
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
241765
241770
|
var util_middleware_1 = require_dist_cjs6();
|
|
241766
241771
|
var defaultECSHttpAuthSchemeParametersProvider = /* @__PURE__ */ __name(async (config, context, input) => {
|
|
241767
241772
|
return {
|
|
@@ -241799,7 +241804,7 @@ var require_httpAuthSchemeProvider12 = __commonJS({
|
|
|
241799
241804
|
}, "defaultECSHttpAuthSchemeProvider");
|
|
241800
241805
|
exports2.defaultECSHttpAuthSchemeProvider = defaultECSHttpAuthSchemeProvider;
|
|
241801
241806
|
var resolveHttpAuthSchemeConfig6 = /* @__PURE__ */ __name((config) => {
|
|
241802
|
-
const config_0 = (0,
|
|
241807
|
+
const config_0 = (0, httpAuthSchemes_1.resolveAwsSdkSigV4Config)(config);
|
|
241803
241808
|
return Object.assign(config_0, {
|
|
241804
241809
|
authSchemePreference: (0, util_middleware_1.normalizeProvider)(config.authSchemePreference ?? [])
|
|
241805
241810
|
});
|
|
@@ -241814,7 +241819,7 @@ var require_package12 = __commonJS({
|
|
|
241814
241819
|
module2.exports = {
|
|
241815
241820
|
name: "@aws-sdk/client-ecs",
|
|
241816
241821
|
description: "AWS SDK for JavaScript Ecs Client for Node.js, Browser and React Native",
|
|
241817
|
-
version: "3.
|
|
241822
|
+
version: "3.1019.0",
|
|
241818
241823
|
scripts: {
|
|
241819
241824
|
build: "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
241820
241825
|
"build:cjs": "node ../../scripts/compilation/inline client-ecs",
|
|
@@ -241836,17 +241841,17 @@ var require_package12 = __commonJS({
|
|
|
241836
241841
|
dependencies: {
|
|
241837
241842
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
241838
241843
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
241839
|
-
"@aws-sdk/core": "^3.973.
|
|
241840
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
241844
|
+
"@aws-sdk/core": "^3.973.25",
|
|
241845
|
+
"@aws-sdk/credential-provider-node": "^3.972.27",
|
|
241841
241846
|
"@aws-sdk/middleware-host-header": "^3.972.8",
|
|
241842
241847
|
"@aws-sdk/middleware-logger": "^3.972.8",
|
|
241843
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
241844
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
241845
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
241848
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.9",
|
|
241849
|
+
"@aws-sdk/middleware-user-agent": "^3.972.26",
|
|
241850
|
+
"@aws-sdk/region-config-resolver": "^3.972.10",
|
|
241846
241851
|
"@aws-sdk/types": "^3.973.6",
|
|
241847
241852
|
"@aws-sdk/util-endpoints": "^3.996.5",
|
|
241848
241853
|
"@aws-sdk/util-user-agent-browser": "^3.972.8",
|
|
241849
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
241854
|
+
"@aws-sdk/util-user-agent-node": "^3.973.12",
|
|
241850
241855
|
"@smithy/config-resolver": "^4.4.13",
|
|
241851
241856
|
"@smithy/core": "^3.23.12",
|
|
241852
241857
|
"@smithy/fetch-http-handler": "^5.3.15",
|
|
@@ -247345,7 +247350,7 @@ var require_runtimeConfig_shared13 = __commonJS({
|
|
|
247345
247350
|
"use strict";
|
|
247346
247351
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
247347
247352
|
exports2.getRuntimeConfig = void 0;
|
|
247348
|
-
var
|
|
247353
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
247349
247354
|
var protocols_1 = (init_protocols2(), __toCommonJS(protocols_exports2));
|
|
247350
247355
|
var smithy_client_1 = require_dist_cjs25();
|
|
247351
247356
|
var url_parser_1 = require_dist_cjs18();
|
|
@@ -247367,7 +247372,7 @@ var require_runtimeConfig_shared13 = __commonJS({
|
|
|
247367
247372
|
{
|
|
247368
247373
|
schemeId: "aws.auth#sigv4",
|
|
247369
247374
|
identityProvider: /* @__PURE__ */ __name((ipc) => ipc.getIdentityProvider("aws.auth#sigv4"), "identityProvider"),
|
|
247370
|
-
signer: new
|
|
247375
|
+
signer: new httpAuthSchemes_1.AwsSdkSigV4Signer()
|
|
247371
247376
|
}
|
|
247372
247377
|
],
|
|
247373
247378
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
@@ -247397,7 +247402,8 @@ var require_runtimeConfig13 = __commonJS({
|
|
|
247397
247402
|
exports2.getRuntimeConfig = void 0;
|
|
247398
247403
|
var tslib_1 = (init_tslib_es6(), __toCommonJS(tslib_es6_exports));
|
|
247399
247404
|
var package_json_1 = tslib_1.__importDefault(require_package12());
|
|
247400
|
-
var
|
|
247405
|
+
var client_1 = (init_client(), __toCommonJS(client_exports));
|
|
247406
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
247401
247407
|
var credential_provider_node_1 = require_dist_cjs52();
|
|
247402
247408
|
var util_user_agent_node_1 = require_dist_cjs41();
|
|
247403
247409
|
var config_resolver_1 = require_dist_cjs31();
|
|
@@ -247415,7 +247421,7 @@ var require_runtimeConfig13 = __commonJS({
|
|
|
247415
247421
|
const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config);
|
|
247416
247422
|
const defaultConfigProvider = /* @__PURE__ */ __name(() => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode), "defaultConfigProvider");
|
|
247417
247423
|
const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
|
|
247418
|
-
(0,
|
|
247424
|
+
(0, client_1.emitWarningIfUnsupportedVersion)(process.version);
|
|
247419
247425
|
const loaderConfig = {
|
|
247420
247426
|
profile: config?.profile,
|
|
247421
247427
|
logger: clientSharedValues.logger
|
|
@@ -247425,7 +247431,7 @@ var require_runtimeConfig13 = __commonJS({
|
|
|
247425
247431
|
...config,
|
|
247426
247432
|
runtime: "node",
|
|
247427
247433
|
defaultsMode,
|
|
247428
|
-
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(
|
|
247434
|
+
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(httpAuthSchemes_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
247429
247435
|
bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
|
|
247430
247436
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? credential_provider_node_1.defaultProvider,
|
|
247431
247437
|
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? (0, util_user_agent_node_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
@@ -247448,7 +247454,7 @@ var require_runtimeConfig13 = __commonJS({
|
|
|
247448
247454
|
});
|
|
247449
247455
|
|
|
247450
247456
|
// ../../node_modules/@aws-sdk/client-ecs/dist-cjs/index.js
|
|
247451
|
-
var
|
|
247457
|
+
var require_dist_cjs87 = __commonJS({
|
|
247452
247458
|
"../../node_modules/@aws-sdk/client-ecs/dist-cjs/index.js"(exports2) {
|
|
247453
247459
|
"use strict";
|
|
247454
247460
|
var middlewareHostHeader = require_dist_cjs3();
|
|
@@ -249022,7 +249028,7 @@ var require_httpAuthSchemeProvider13 = __commonJS({
|
|
|
249022
249028
|
"use strict";
|
|
249023
249029
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
249024
249030
|
exports2.resolveHttpAuthSchemeConfig = exports2.defaultElasticLoadBalancingV2HttpAuthSchemeProvider = exports2.defaultElasticLoadBalancingV2HttpAuthSchemeParametersProvider = void 0;
|
|
249025
|
-
var
|
|
249031
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
249026
249032
|
var util_middleware_1 = require_dist_cjs6();
|
|
249027
249033
|
var defaultElasticLoadBalancingV2HttpAuthSchemeParametersProvider = /* @__PURE__ */ __name(async (config, context, input) => {
|
|
249028
249034
|
return {
|
|
@@ -249060,7 +249066,7 @@ var require_httpAuthSchemeProvider13 = __commonJS({
|
|
|
249060
249066
|
}, "defaultElasticLoadBalancingV2HttpAuthSchemeProvider");
|
|
249061
249067
|
exports2.defaultElasticLoadBalancingV2HttpAuthSchemeProvider = defaultElasticLoadBalancingV2HttpAuthSchemeProvider;
|
|
249062
249068
|
var resolveHttpAuthSchemeConfig6 = /* @__PURE__ */ __name((config) => {
|
|
249063
|
-
const config_0 = (0,
|
|
249069
|
+
const config_0 = (0, httpAuthSchemes_1.resolveAwsSdkSigV4Config)(config);
|
|
249064
249070
|
return Object.assign(config_0, {
|
|
249065
249071
|
authSchemePreference: (0, util_middleware_1.normalizeProvider)(config.authSchemePreference ?? [])
|
|
249066
249072
|
});
|
|
@@ -249075,7 +249081,7 @@ var require_package13 = __commonJS({
|
|
|
249075
249081
|
module2.exports = {
|
|
249076
249082
|
name: "@aws-sdk/client-elastic-load-balancing-v2",
|
|
249077
249083
|
description: "AWS SDK for JavaScript Elastic Load Balancing V2 Client for Node.js, Browser and React Native",
|
|
249078
|
-
version: "3.
|
|
249084
|
+
version: "3.1019.0",
|
|
249079
249085
|
scripts: {
|
|
249080
249086
|
build: "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
249081
249087
|
"build:cjs": "node ../../scripts/compilation/inline client-elastic-load-balancing-v2",
|
|
@@ -249097,17 +249103,17 @@ var require_package13 = __commonJS({
|
|
|
249097
249103
|
dependencies: {
|
|
249098
249104
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
249099
249105
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
249100
|
-
"@aws-sdk/core": "^3.973.
|
|
249101
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
249106
|
+
"@aws-sdk/core": "^3.973.25",
|
|
249107
|
+
"@aws-sdk/credential-provider-node": "^3.972.27",
|
|
249102
249108
|
"@aws-sdk/middleware-host-header": "^3.972.8",
|
|
249103
249109
|
"@aws-sdk/middleware-logger": "^3.972.8",
|
|
249104
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
249105
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
249106
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
249110
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.9",
|
|
249111
|
+
"@aws-sdk/middleware-user-agent": "^3.972.26",
|
|
249112
|
+
"@aws-sdk/region-config-resolver": "^3.972.10",
|
|
249107
249113
|
"@aws-sdk/types": "^3.973.6",
|
|
249108
249114
|
"@aws-sdk/util-endpoints": "^3.996.5",
|
|
249109
249115
|
"@aws-sdk/util-user-agent-browser": "^3.972.8",
|
|
249110
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
249116
|
+
"@aws-sdk/util-user-agent-node": "^3.973.12",
|
|
249111
249117
|
"@smithy/config-resolver": "^4.4.13",
|
|
249112
249118
|
"@smithy/core": "^3.23.12",
|
|
249113
249119
|
"@smithy/fetch-http-handler": "^5.3.15",
|
|
@@ -253254,7 +253260,7 @@ var require_runtimeConfig_shared14 = __commonJS({
|
|
|
253254
253260
|
"use strict";
|
|
253255
253261
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
253256
253262
|
exports2.getRuntimeConfig = void 0;
|
|
253257
|
-
var
|
|
253263
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
253258
253264
|
var protocols_1 = (init_protocols2(), __toCommonJS(protocols_exports2));
|
|
253259
253265
|
var smithy_client_1 = require_dist_cjs25();
|
|
253260
253266
|
var url_parser_1 = require_dist_cjs18();
|
|
@@ -253276,7 +253282,7 @@ var require_runtimeConfig_shared14 = __commonJS({
|
|
|
253276
253282
|
{
|
|
253277
253283
|
schemeId: "aws.auth#sigv4",
|
|
253278
253284
|
identityProvider: /* @__PURE__ */ __name((ipc) => ipc.getIdentityProvider("aws.auth#sigv4"), "identityProvider"),
|
|
253279
|
-
signer: new
|
|
253285
|
+
signer: new httpAuthSchemes_1.AwsSdkSigV4Signer()
|
|
253280
253286
|
}
|
|
253281
253287
|
],
|
|
253282
253288
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
@@ -253306,7 +253312,8 @@ var require_runtimeConfig14 = __commonJS({
|
|
|
253306
253312
|
exports2.getRuntimeConfig = void 0;
|
|
253307
253313
|
var tslib_1 = (init_tslib_es6(), __toCommonJS(tslib_es6_exports));
|
|
253308
253314
|
var package_json_1 = tslib_1.__importDefault(require_package13());
|
|
253309
|
-
var
|
|
253315
|
+
var client_1 = (init_client(), __toCommonJS(client_exports));
|
|
253316
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
253310
253317
|
var credential_provider_node_1 = require_dist_cjs52();
|
|
253311
253318
|
var util_user_agent_node_1 = require_dist_cjs41();
|
|
253312
253319
|
var config_resolver_1 = require_dist_cjs31();
|
|
@@ -253324,7 +253331,7 @@ var require_runtimeConfig14 = __commonJS({
|
|
|
253324
253331
|
const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config);
|
|
253325
253332
|
const defaultConfigProvider = /* @__PURE__ */ __name(() => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode), "defaultConfigProvider");
|
|
253326
253333
|
const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
|
|
253327
|
-
(0,
|
|
253334
|
+
(0, client_1.emitWarningIfUnsupportedVersion)(process.version);
|
|
253328
253335
|
const loaderConfig = {
|
|
253329
253336
|
profile: config?.profile,
|
|
253330
253337
|
logger: clientSharedValues.logger
|
|
@@ -253334,7 +253341,7 @@ var require_runtimeConfig14 = __commonJS({
|
|
|
253334
253341
|
...config,
|
|
253335
253342
|
runtime: "node",
|
|
253336
253343
|
defaultsMode,
|
|
253337
|
-
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(
|
|
253344
|
+
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(httpAuthSchemes_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
253338
253345
|
bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
|
|
253339
253346
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? credential_provider_node_1.defaultProvider,
|
|
253340
253347
|
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? (0, util_user_agent_node_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
@@ -253357,7 +253364,7 @@ var require_runtimeConfig14 = __commonJS({
|
|
|
253357
253364
|
});
|
|
253358
253365
|
|
|
253359
253366
|
// ../../node_modules/@aws-sdk/client-elastic-load-balancing-v2/dist-cjs/index.js
|
|
253360
|
-
var
|
|
253367
|
+
var require_dist_cjs88 = __commonJS({
|
|
253361
253368
|
"../../node_modules/@aws-sdk/client-elastic-load-balancing-v2/dist-cjs/index.js"(exports2) {
|
|
253362
253369
|
"use strict";
|
|
253363
253370
|
var middlewareHostHeader = require_dist_cjs3();
|
|
@@ -254385,7 +254392,7 @@ var require_httpAuthSchemeProvider14 = __commonJS({
|
|
|
254385
254392
|
"use strict";
|
|
254386
254393
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
254387
254394
|
exports2.resolveHttpAuthSchemeConfig = exports2.defaultIAMHttpAuthSchemeProvider = exports2.defaultIAMHttpAuthSchemeParametersProvider = void 0;
|
|
254388
|
-
var
|
|
254395
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
254389
254396
|
var util_middleware_1 = require_dist_cjs6();
|
|
254390
254397
|
var defaultIAMHttpAuthSchemeParametersProvider = /* @__PURE__ */ __name(async (config, context, input) => {
|
|
254391
254398
|
return {
|
|
@@ -254423,7 +254430,7 @@ var require_httpAuthSchemeProvider14 = __commonJS({
|
|
|
254423
254430
|
}, "defaultIAMHttpAuthSchemeProvider");
|
|
254424
254431
|
exports2.defaultIAMHttpAuthSchemeProvider = defaultIAMHttpAuthSchemeProvider;
|
|
254425
254432
|
var resolveHttpAuthSchemeConfig6 = /* @__PURE__ */ __name((config) => {
|
|
254426
|
-
const config_0 = (0,
|
|
254433
|
+
const config_0 = (0, httpAuthSchemes_1.resolveAwsSdkSigV4Config)(config);
|
|
254427
254434
|
return Object.assign(config_0, {
|
|
254428
254435
|
authSchemePreference: (0, util_middleware_1.normalizeProvider)(config.authSchemePreference ?? [])
|
|
254429
254436
|
});
|
|
@@ -254438,7 +254445,7 @@ var require_package14 = __commonJS({
|
|
|
254438
254445
|
module2.exports = {
|
|
254439
254446
|
name: "@aws-sdk/client-iam",
|
|
254440
254447
|
description: "AWS SDK for JavaScript Iam Client for Node.js, Browser and React Native",
|
|
254441
|
-
version: "3.
|
|
254448
|
+
version: "3.1019.0",
|
|
254442
254449
|
scripts: {
|
|
254443
254450
|
build: "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
254444
254451
|
"build:cjs": "node ../../scripts/compilation/inline client-iam",
|
|
@@ -254464,17 +254471,17 @@ var require_package14 = __commonJS({
|
|
|
254464
254471
|
dependencies: {
|
|
254465
254472
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
254466
254473
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
254467
|
-
"@aws-sdk/core": "^3.973.
|
|
254468
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
254474
|
+
"@aws-sdk/core": "^3.973.25",
|
|
254475
|
+
"@aws-sdk/credential-provider-node": "^3.972.27",
|
|
254469
254476
|
"@aws-sdk/middleware-host-header": "^3.972.8",
|
|
254470
254477
|
"@aws-sdk/middleware-logger": "^3.972.8",
|
|
254471
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
254472
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
254473
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
254478
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.9",
|
|
254479
|
+
"@aws-sdk/middleware-user-agent": "^3.972.26",
|
|
254480
|
+
"@aws-sdk/region-config-resolver": "^3.972.10",
|
|
254474
254481
|
"@aws-sdk/types": "^3.973.6",
|
|
254475
254482
|
"@aws-sdk/util-endpoints": "^3.996.5",
|
|
254476
254483
|
"@aws-sdk/util-user-agent-browser": "^3.972.8",
|
|
254477
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
254484
|
+
"@aws-sdk/util-user-agent-node": "^3.973.12",
|
|
254478
254485
|
"@smithy/config-resolver": "^4.4.13",
|
|
254479
254486
|
"@smithy/core": "^3.23.12",
|
|
254480
254487
|
"@smithy/fetch-http-handler": "^5.3.15",
|
|
@@ -260883,7 +260890,7 @@ var require_runtimeConfig_shared15 = __commonJS({
|
|
|
260883
260890
|
"use strict";
|
|
260884
260891
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
260885
260892
|
exports2.getRuntimeConfig = void 0;
|
|
260886
|
-
var
|
|
260893
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
260887
260894
|
var protocols_1 = (init_protocols2(), __toCommonJS(protocols_exports2));
|
|
260888
260895
|
var smithy_client_1 = require_dist_cjs25();
|
|
260889
260896
|
var url_parser_1 = require_dist_cjs18();
|
|
@@ -260905,7 +260912,7 @@ var require_runtimeConfig_shared15 = __commonJS({
|
|
|
260905
260912
|
{
|
|
260906
260913
|
schemeId: "aws.auth#sigv4",
|
|
260907
260914
|
identityProvider: /* @__PURE__ */ __name((ipc) => ipc.getIdentityProvider("aws.auth#sigv4"), "identityProvider"),
|
|
260908
|
-
signer: new
|
|
260915
|
+
signer: new httpAuthSchemes_1.AwsSdkSigV4Signer()
|
|
260909
260916
|
}
|
|
260910
260917
|
],
|
|
260911
260918
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
@@ -260935,7 +260942,8 @@ var require_runtimeConfig15 = __commonJS({
|
|
|
260935
260942
|
exports2.getRuntimeConfig = void 0;
|
|
260936
260943
|
var tslib_1 = (init_tslib_es6(), __toCommonJS(tslib_es6_exports));
|
|
260937
260944
|
var package_json_1 = tslib_1.__importDefault(require_package14());
|
|
260938
|
-
var
|
|
260945
|
+
var client_1 = (init_client(), __toCommonJS(client_exports));
|
|
260946
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
260939
260947
|
var credential_provider_node_1 = require_dist_cjs52();
|
|
260940
260948
|
var util_user_agent_node_1 = require_dist_cjs41();
|
|
260941
260949
|
var config_resolver_1 = require_dist_cjs31();
|
|
@@ -260953,7 +260961,7 @@ var require_runtimeConfig15 = __commonJS({
|
|
|
260953
260961
|
const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config);
|
|
260954
260962
|
const defaultConfigProvider = /* @__PURE__ */ __name(() => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode), "defaultConfigProvider");
|
|
260955
260963
|
const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
|
|
260956
|
-
(0,
|
|
260964
|
+
(0, client_1.emitWarningIfUnsupportedVersion)(process.version);
|
|
260957
260965
|
const loaderConfig = {
|
|
260958
260966
|
profile: config?.profile,
|
|
260959
260967
|
logger: clientSharedValues.logger
|
|
@@ -260963,7 +260971,7 @@ var require_runtimeConfig15 = __commonJS({
|
|
|
260963
260971
|
...config,
|
|
260964
260972
|
runtime: "node",
|
|
260965
260973
|
defaultsMode,
|
|
260966
|
-
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(
|
|
260974
|
+
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(httpAuthSchemes_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
260967
260975
|
bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
|
|
260968
260976
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? credential_provider_node_1.defaultProvider,
|
|
260969
260977
|
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? (0, util_user_agent_node_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
@@ -260986,7 +260994,7 @@ var require_runtimeConfig15 = __commonJS({
|
|
|
260986
260994
|
});
|
|
260987
260995
|
|
|
260988
260996
|
// ../../node_modules/@aws-sdk/client-iam/dist-cjs/index.js
|
|
260989
|
-
var
|
|
260997
|
+
var require_dist_cjs89 = __commonJS({
|
|
260990
260998
|
"../../node_modules/@aws-sdk/client-iam/dist-cjs/index.js"(exports2) {
|
|
260991
260999
|
"use strict";
|
|
260992
261000
|
var middlewareHostHeader = require_dist_cjs3();
|
|
@@ -263133,7 +263141,7 @@ var require_httpAuthSchemeProvider15 = __commonJS({
|
|
|
263133
263141
|
"use strict";
|
|
263134
263142
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
263135
263143
|
exports2.resolveHttpAuthSchemeConfig = exports2.defaultKMSHttpAuthSchemeProvider = exports2.defaultKMSHttpAuthSchemeParametersProvider = void 0;
|
|
263136
|
-
var
|
|
263144
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
263137
263145
|
var util_middleware_1 = require_dist_cjs6();
|
|
263138
263146
|
var defaultKMSHttpAuthSchemeParametersProvider = /* @__PURE__ */ __name(async (config, context, input) => {
|
|
263139
263147
|
return {
|
|
@@ -263171,7 +263179,7 @@ var require_httpAuthSchemeProvider15 = __commonJS({
|
|
|
263171
263179
|
}, "defaultKMSHttpAuthSchemeProvider");
|
|
263172
263180
|
exports2.defaultKMSHttpAuthSchemeProvider = defaultKMSHttpAuthSchemeProvider;
|
|
263173
263181
|
var resolveHttpAuthSchemeConfig6 = /* @__PURE__ */ __name((config) => {
|
|
263174
|
-
const config_0 = (0,
|
|
263182
|
+
const config_0 = (0, httpAuthSchemes_1.resolveAwsSdkSigV4Config)(config);
|
|
263175
263183
|
return Object.assign(config_0, {
|
|
263176
263184
|
authSchemePreference: (0, util_middleware_1.normalizeProvider)(config.authSchemePreference ?? [])
|
|
263177
263185
|
});
|
|
@@ -263186,7 +263194,7 @@ var require_package15 = __commonJS({
|
|
|
263186
263194
|
module2.exports = {
|
|
263187
263195
|
name: "@aws-sdk/client-kms",
|
|
263188
263196
|
description: "AWS SDK for JavaScript Kms Client for Node.js, Browser and React Native",
|
|
263189
|
-
version: "3.
|
|
263197
|
+
version: "3.1019.0",
|
|
263190
263198
|
scripts: {
|
|
263191
263199
|
build: "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
263192
263200
|
"build:cjs": "node ../../scripts/compilation/inline client-kms",
|
|
@@ -263208,17 +263216,17 @@ var require_package15 = __commonJS({
|
|
|
263208
263216
|
dependencies: {
|
|
263209
263217
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
263210
263218
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
263211
|
-
"@aws-sdk/core": "^3.973.
|
|
263212
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
263219
|
+
"@aws-sdk/core": "^3.973.25",
|
|
263220
|
+
"@aws-sdk/credential-provider-node": "^3.972.27",
|
|
263213
263221
|
"@aws-sdk/middleware-host-header": "^3.972.8",
|
|
263214
263222
|
"@aws-sdk/middleware-logger": "^3.972.8",
|
|
263215
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
263216
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
263217
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
263223
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.9",
|
|
263224
|
+
"@aws-sdk/middleware-user-agent": "^3.972.26",
|
|
263225
|
+
"@aws-sdk/region-config-resolver": "^3.972.10",
|
|
263218
263226
|
"@aws-sdk/types": "^3.973.6",
|
|
263219
263227
|
"@aws-sdk/util-endpoints": "^3.996.5",
|
|
263220
263228
|
"@aws-sdk/util-user-agent-browser": "^3.972.8",
|
|
263221
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
263229
|
+
"@aws-sdk/util-user-agent-node": "^3.973.12",
|
|
263222
263230
|
"@smithy/config-resolver": "^4.4.13",
|
|
263223
263231
|
"@smithy/core": "^3.23.12",
|
|
263224
263232
|
"@smithy/fetch-http-handler": "^5.3.15",
|
|
@@ -266355,7 +266363,7 @@ var require_runtimeConfig_shared16 = __commonJS({
|
|
|
266355
266363
|
"use strict";
|
|
266356
266364
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
266357
266365
|
exports2.getRuntimeConfig = void 0;
|
|
266358
|
-
var
|
|
266366
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
266359
266367
|
var protocols_1 = (init_protocols2(), __toCommonJS(protocols_exports2));
|
|
266360
266368
|
var smithy_client_1 = require_dist_cjs25();
|
|
266361
266369
|
var url_parser_1 = require_dist_cjs18();
|
|
@@ -266377,7 +266385,7 @@ var require_runtimeConfig_shared16 = __commonJS({
|
|
|
266377
266385
|
{
|
|
266378
266386
|
schemeId: "aws.auth#sigv4",
|
|
266379
266387
|
identityProvider: /* @__PURE__ */ __name((ipc) => ipc.getIdentityProvider("aws.auth#sigv4"), "identityProvider"),
|
|
266380
|
-
signer: new
|
|
266388
|
+
signer: new httpAuthSchemes_1.AwsSdkSigV4Signer()
|
|
266381
266389
|
}
|
|
266382
266390
|
],
|
|
266383
266391
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
@@ -266407,7 +266415,8 @@ var require_runtimeConfig16 = __commonJS({
|
|
|
266407
266415
|
exports2.getRuntimeConfig = void 0;
|
|
266408
266416
|
var tslib_1 = (init_tslib_es6(), __toCommonJS(tslib_es6_exports));
|
|
266409
266417
|
var package_json_1 = tslib_1.__importDefault(require_package15());
|
|
266410
|
-
var
|
|
266418
|
+
var client_1 = (init_client(), __toCommonJS(client_exports));
|
|
266419
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
266411
266420
|
var credential_provider_node_1 = require_dist_cjs52();
|
|
266412
266421
|
var util_user_agent_node_1 = require_dist_cjs41();
|
|
266413
266422
|
var config_resolver_1 = require_dist_cjs31();
|
|
@@ -266425,7 +266434,7 @@ var require_runtimeConfig16 = __commonJS({
|
|
|
266425
266434
|
const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config);
|
|
266426
266435
|
const defaultConfigProvider = /* @__PURE__ */ __name(() => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode), "defaultConfigProvider");
|
|
266427
266436
|
const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
|
|
266428
|
-
(0,
|
|
266437
|
+
(0, client_1.emitWarningIfUnsupportedVersion)(process.version);
|
|
266429
266438
|
const loaderConfig = {
|
|
266430
266439
|
profile: config?.profile,
|
|
266431
266440
|
logger: clientSharedValues.logger
|
|
@@ -266435,7 +266444,7 @@ var require_runtimeConfig16 = __commonJS({
|
|
|
266435
266444
|
...config,
|
|
266436
266445
|
runtime: "node",
|
|
266437
266446
|
defaultsMode,
|
|
266438
|
-
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(
|
|
266447
|
+
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(httpAuthSchemes_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
266439
266448
|
bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
|
|
266440
266449
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? credential_provider_node_1.defaultProvider,
|
|
266441
266450
|
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? (0, util_user_agent_node_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
@@ -266458,7 +266467,7 @@ var require_runtimeConfig16 = __commonJS({
|
|
|
266458
266467
|
});
|
|
266459
266468
|
|
|
266460
266469
|
// ../../node_modules/@aws-sdk/client-kms/dist-cjs/index.js
|
|
266461
|
-
var
|
|
266470
|
+
var require_dist_cjs90 = __commonJS({
|
|
266462
266471
|
"../../node_modules/@aws-sdk/client-kms/dist-cjs/index.js"(exports2) {
|
|
266463
266472
|
"use strict";
|
|
266464
266473
|
var middlewareHostHeader = require_dist_cjs3();
|
|
@@ -267353,7 +267362,7 @@ var require_httpAuthSchemeProvider16 = __commonJS({
|
|
|
267353
267362
|
"use strict";
|
|
267354
267363
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
267355
267364
|
exports2.resolveHttpAuthSchemeConfig = exports2.defaultLambdaHttpAuthSchemeProvider = exports2.defaultLambdaHttpAuthSchemeParametersProvider = void 0;
|
|
267356
|
-
var
|
|
267365
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
267357
267366
|
var util_middleware_1 = require_dist_cjs6();
|
|
267358
267367
|
var defaultLambdaHttpAuthSchemeParametersProvider = /* @__PURE__ */ __name(async (config, context, input) => {
|
|
267359
267368
|
return {
|
|
@@ -267391,7 +267400,7 @@ var require_httpAuthSchemeProvider16 = __commonJS({
|
|
|
267391
267400
|
}, "defaultLambdaHttpAuthSchemeProvider");
|
|
267392
267401
|
exports2.defaultLambdaHttpAuthSchemeProvider = defaultLambdaHttpAuthSchemeProvider;
|
|
267393
267402
|
var resolveHttpAuthSchemeConfig6 = /* @__PURE__ */ __name((config) => {
|
|
267394
|
-
const config_0 = (0,
|
|
267403
|
+
const config_0 = (0, httpAuthSchemes_1.resolveAwsSdkSigV4Config)(config);
|
|
267395
267404
|
return Object.assign(config_0, {
|
|
267396
267405
|
authSchemePreference: (0, util_middleware_1.normalizeProvider)(config.authSchemePreference ?? [])
|
|
267397
267406
|
});
|
|
@@ -267406,7 +267415,7 @@ var require_package16 = __commonJS({
|
|
|
267406
267415
|
module2.exports = {
|
|
267407
267416
|
name: "@aws-sdk/client-lambda",
|
|
267408
267417
|
description: "AWS SDK for JavaScript Lambda Client for Node.js, Browser and React Native",
|
|
267409
|
-
version: "3.
|
|
267418
|
+
version: "3.1019.0",
|
|
267410
267419
|
scripts: {
|
|
267411
267420
|
build: "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
267412
267421
|
"build:cjs": "node ../../scripts/compilation/inline client-lambda",
|
|
@@ -267428,17 +267437,17 @@ var require_package16 = __commonJS({
|
|
|
267428
267437
|
dependencies: {
|
|
267429
267438
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
267430
267439
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
267431
|
-
"@aws-sdk/core": "^3.973.
|
|
267432
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
267440
|
+
"@aws-sdk/core": "^3.973.25",
|
|
267441
|
+
"@aws-sdk/credential-provider-node": "^3.972.27",
|
|
267433
267442
|
"@aws-sdk/middleware-host-header": "^3.972.8",
|
|
267434
267443
|
"@aws-sdk/middleware-logger": "^3.972.8",
|
|
267435
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
267436
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
267437
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
267444
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.9",
|
|
267445
|
+
"@aws-sdk/middleware-user-agent": "^3.972.26",
|
|
267446
|
+
"@aws-sdk/region-config-resolver": "^3.972.10",
|
|
267438
267447
|
"@aws-sdk/types": "^3.973.6",
|
|
267439
267448
|
"@aws-sdk/util-endpoints": "^3.996.5",
|
|
267440
267449
|
"@aws-sdk/util-user-agent-browser": "^3.972.8",
|
|
267441
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
267450
|
+
"@aws-sdk/util-user-agent-node": "^3.973.12",
|
|
267442
267451
|
"@smithy/config-resolver": "^4.4.13",
|
|
267443
267452
|
"@smithy/core": "^3.23.12",
|
|
267444
267453
|
"@smithy/eventstream-serde-browser": "^4.2.12",
|
|
@@ -272745,7 +272754,7 @@ var require_runtimeConfig_shared17 = __commonJS({
|
|
|
272745
272754
|
"use strict";
|
|
272746
272755
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
272747
272756
|
exports2.getRuntimeConfig = void 0;
|
|
272748
|
-
var
|
|
272757
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
272749
272758
|
var protocols_1 = (init_protocols2(), __toCommonJS(protocols_exports2));
|
|
272750
272759
|
var smithy_client_1 = require_dist_cjs25();
|
|
272751
272760
|
var url_parser_1 = require_dist_cjs18();
|
|
@@ -272767,7 +272776,7 @@ var require_runtimeConfig_shared17 = __commonJS({
|
|
|
272767
272776
|
{
|
|
272768
272777
|
schemeId: "aws.auth#sigv4",
|
|
272769
272778
|
identityProvider: /* @__PURE__ */ __name((ipc) => ipc.getIdentityProvider("aws.auth#sigv4"), "identityProvider"),
|
|
272770
|
-
signer: new
|
|
272779
|
+
signer: new httpAuthSchemes_1.AwsSdkSigV4Signer()
|
|
272771
272780
|
}
|
|
272772
272781
|
],
|
|
272773
272782
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
@@ -272796,7 +272805,8 @@ var require_runtimeConfig17 = __commonJS({
|
|
|
272796
272805
|
exports2.getRuntimeConfig = void 0;
|
|
272797
272806
|
var tslib_1 = (init_tslib_es6(), __toCommonJS(tslib_es6_exports));
|
|
272798
272807
|
var package_json_1 = tslib_1.__importDefault(require_package16());
|
|
272799
|
-
var
|
|
272808
|
+
var client_1 = (init_client(), __toCommonJS(client_exports));
|
|
272809
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
272800
272810
|
var credential_provider_node_1 = require_dist_cjs52();
|
|
272801
272811
|
var util_user_agent_node_1 = require_dist_cjs41();
|
|
272802
272812
|
var config_resolver_1 = require_dist_cjs31();
|
|
@@ -272815,7 +272825,7 @@ var require_runtimeConfig17 = __commonJS({
|
|
|
272815
272825
|
const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config);
|
|
272816
272826
|
const defaultConfigProvider = /* @__PURE__ */ __name(() => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode), "defaultConfigProvider");
|
|
272817
272827
|
const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
|
|
272818
|
-
(0,
|
|
272828
|
+
(0, client_1.emitWarningIfUnsupportedVersion)(process.version);
|
|
272819
272829
|
const loaderConfig = {
|
|
272820
272830
|
profile: config?.profile,
|
|
272821
272831
|
logger: clientSharedValues.logger
|
|
@@ -272825,7 +272835,7 @@ var require_runtimeConfig17 = __commonJS({
|
|
|
272825
272835
|
...config,
|
|
272826
272836
|
runtime: "node",
|
|
272827
272837
|
defaultsMode,
|
|
272828
|
-
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(
|
|
272838
|
+
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(httpAuthSchemes_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
272829
272839
|
bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
|
|
272830
272840
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? credential_provider_node_1.defaultProvider,
|
|
272831
272841
|
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? (0, util_user_agent_node_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
@@ -272849,7 +272859,7 @@ var require_runtimeConfig17 = __commonJS({
|
|
|
272849
272859
|
});
|
|
272850
272860
|
|
|
272851
272861
|
// ../../node_modules/@aws-sdk/client-lambda/dist-cjs/index.js
|
|
272852
|
-
var
|
|
272862
|
+
var require_dist_cjs91 = __commonJS({
|
|
272853
272863
|
"../../node_modules/@aws-sdk/client-lambda/dist-cjs/index.js"(exports2) {
|
|
272854
272864
|
"use strict";
|
|
272855
272865
|
var middlewareHostHeader = require_dist_cjs3();
|
|
@@ -274487,7 +274497,7 @@ var require_httpAuthSchemeProvider17 = __commonJS({
|
|
|
274487
274497
|
"use strict";
|
|
274488
274498
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
274489
274499
|
exports2.resolveHttpAuthSchemeConfig = exports2.defaultRoute53HttpAuthSchemeProvider = exports2.defaultRoute53HttpAuthSchemeParametersProvider = void 0;
|
|
274490
|
-
var
|
|
274500
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
274491
274501
|
var util_middleware_1 = require_dist_cjs6();
|
|
274492
274502
|
var defaultRoute53HttpAuthSchemeParametersProvider = /* @__PURE__ */ __name(async (config, context, input) => {
|
|
274493
274503
|
return {
|
|
@@ -274525,7 +274535,7 @@ var require_httpAuthSchemeProvider17 = __commonJS({
|
|
|
274525
274535
|
}, "defaultRoute53HttpAuthSchemeProvider");
|
|
274526
274536
|
exports2.defaultRoute53HttpAuthSchemeProvider = defaultRoute53HttpAuthSchemeProvider;
|
|
274527
274537
|
var resolveHttpAuthSchemeConfig6 = /* @__PURE__ */ __name((config) => {
|
|
274528
|
-
const config_0 = (0,
|
|
274538
|
+
const config_0 = (0, httpAuthSchemes_1.resolveAwsSdkSigV4Config)(config);
|
|
274529
274539
|
return Object.assign(config_0, {
|
|
274530
274540
|
authSchemePreference: (0, util_middleware_1.normalizeProvider)(config.authSchemePreference ?? [])
|
|
274531
274541
|
});
|
|
@@ -274540,7 +274550,7 @@ var require_package17 = __commonJS({
|
|
|
274540
274550
|
module2.exports = {
|
|
274541
274551
|
name: "@aws-sdk/client-route-53",
|
|
274542
274552
|
description: "AWS SDK for JavaScript Route 53 Client for Node.js, Browser and React Native",
|
|
274543
|
-
version: "3.
|
|
274553
|
+
version: "3.1019.0",
|
|
274544
274554
|
scripts: {
|
|
274545
274555
|
build: "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
274546
274556
|
"build:cjs": "node ../../scripts/compilation/inline client-route-53",
|
|
@@ -274566,18 +274576,18 @@ var require_package17 = __commonJS({
|
|
|
274566
274576
|
dependencies: {
|
|
274567
274577
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
274568
274578
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
274569
|
-
"@aws-sdk/core": "^3.973.
|
|
274570
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
274579
|
+
"@aws-sdk/core": "^3.973.25",
|
|
274580
|
+
"@aws-sdk/credential-provider-node": "^3.972.27",
|
|
274571
274581
|
"@aws-sdk/middleware-host-header": "^3.972.8",
|
|
274572
274582
|
"@aws-sdk/middleware-logger": "^3.972.8",
|
|
274573
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
274583
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.9",
|
|
274574
274584
|
"@aws-sdk/middleware-sdk-route53": "^3.972.10",
|
|
274575
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
274576
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
274585
|
+
"@aws-sdk/middleware-user-agent": "^3.972.26",
|
|
274586
|
+
"@aws-sdk/region-config-resolver": "^3.972.10",
|
|
274577
274587
|
"@aws-sdk/types": "^3.973.6",
|
|
274578
274588
|
"@aws-sdk/util-endpoints": "^3.996.5",
|
|
274579
274589
|
"@aws-sdk/util-user-agent-browser": "^3.972.8",
|
|
274580
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
274590
|
+
"@aws-sdk/util-user-agent-node": "^3.973.12",
|
|
274581
274591
|
"@smithy/config-resolver": "^4.4.13",
|
|
274582
274592
|
"@smithy/core": "^3.23.12",
|
|
274583
274593
|
"@smithy/fetch-http-handler": "^5.3.15",
|
|
@@ -279578,7 +279588,7 @@ var require_runtimeConfig_shared18 = __commonJS({
|
|
|
279578
279588
|
"use strict";
|
|
279579
279589
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
279580
279590
|
exports2.getRuntimeConfig = void 0;
|
|
279581
|
-
var
|
|
279591
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
279582
279592
|
var protocols_1 = (init_protocols2(), __toCommonJS(protocols_exports2));
|
|
279583
279593
|
var smithy_client_1 = require_dist_cjs25();
|
|
279584
279594
|
var url_parser_1 = require_dist_cjs18();
|
|
@@ -279600,7 +279610,7 @@ var require_runtimeConfig_shared18 = __commonJS({
|
|
|
279600
279610
|
{
|
|
279601
279611
|
schemeId: "aws.auth#sigv4",
|
|
279602
279612
|
identityProvider: /* @__PURE__ */ __name((ipc) => ipc.getIdentityProvider("aws.auth#sigv4"), "identityProvider"),
|
|
279603
|
-
signer: new
|
|
279613
|
+
signer: new httpAuthSchemes_1.AwsSdkSigV4Signer()
|
|
279604
279614
|
}
|
|
279605
279615
|
],
|
|
279606
279616
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
@@ -279630,7 +279640,8 @@ var require_runtimeConfig18 = __commonJS({
|
|
|
279630
279640
|
exports2.getRuntimeConfig = void 0;
|
|
279631
279641
|
var tslib_1 = (init_tslib_es6(), __toCommonJS(tslib_es6_exports));
|
|
279632
279642
|
var package_json_1 = tslib_1.__importDefault(require_package17());
|
|
279633
|
-
var
|
|
279643
|
+
var client_1 = (init_client(), __toCommonJS(client_exports));
|
|
279644
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
279634
279645
|
var credential_provider_node_1 = require_dist_cjs52();
|
|
279635
279646
|
var util_user_agent_node_1 = require_dist_cjs41();
|
|
279636
279647
|
var config_resolver_1 = require_dist_cjs31();
|
|
@@ -279648,7 +279659,7 @@ var require_runtimeConfig18 = __commonJS({
|
|
|
279648
279659
|
const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config);
|
|
279649
279660
|
const defaultConfigProvider = /* @__PURE__ */ __name(() => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode), "defaultConfigProvider");
|
|
279650
279661
|
const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
|
|
279651
|
-
(0,
|
|
279662
|
+
(0, client_1.emitWarningIfUnsupportedVersion)(process.version);
|
|
279652
279663
|
const loaderConfig = {
|
|
279653
279664
|
profile: config?.profile,
|
|
279654
279665
|
logger: clientSharedValues.logger
|
|
@@ -279658,7 +279669,7 @@ var require_runtimeConfig18 = __commonJS({
|
|
|
279658
279669
|
...config,
|
|
279659
279670
|
runtime: "node",
|
|
279660
279671
|
defaultsMode,
|
|
279661
|
-
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(
|
|
279672
|
+
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(httpAuthSchemes_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
279662
279673
|
bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
|
|
279663
279674
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? credential_provider_node_1.defaultProvider,
|
|
279664
279675
|
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? (0, util_user_agent_node_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
@@ -279681,7 +279692,7 @@ var require_runtimeConfig18 = __commonJS({
|
|
|
279681
279692
|
});
|
|
279682
279693
|
|
|
279683
279694
|
// ../../node_modules/@aws-sdk/middleware-sdk-route53/dist-cjs/index.js
|
|
279684
|
-
var
|
|
279695
|
+
var require_dist_cjs92 = __commonJS({
|
|
279685
279696
|
"../../node_modules/@aws-sdk/middleware-sdk-route53/dist-cjs/index.js"(exports2) {
|
|
279686
279697
|
"use strict";
|
|
279687
279698
|
var IDENTIFIER_PREFIX_PATTERN = /^\/(hostedzone|change|delegationset)\//;
|
|
@@ -279768,7 +279779,7 @@ var require_dist_cjs93 = __commonJS({
|
|
|
279768
279779
|
});
|
|
279769
279780
|
|
|
279770
279781
|
// ../../node_modules/@aws-sdk/client-route-53/dist-cjs/index.js
|
|
279771
|
-
var
|
|
279782
|
+
var require_dist_cjs93 = __commonJS({
|
|
279772
279783
|
"../../node_modules/@aws-sdk/client-route-53/dist-cjs/index.js"(exports2) {
|
|
279773
279784
|
"use strict";
|
|
279774
279785
|
var middlewareHostHeader = require_dist_cjs3();
|
|
@@ -279786,7 +279797,7 @@ var require_dist_cjs94 = __commonJS({
|
|
|
279786
279797
|
var runtimeConfig = require_runtimeConfig18();
|
|
279787
279798
|
var regionConfigResolver = require_dist_cjs45();
|
|
279788
279799
|
var protocolHttp = require_dist_cjs2();
|
|
279789
|
-
var middlewareSdkRoute53 =
|
|
279800
|
+
var middlewareSdkRoute53 = require_dist_cjs92();
|
|
279790
279801
|
var schemas_0 = require_schemas_017();
|
|
279791
279802
|
var utilWaiter = require_dist_cjs53();
|
|
279792
279803
|
var errors = require_errors20();
|
|
@@ -281012,7 +281023,7 @@ var require_httpAuthSchemeProvider18 = __commonJS({
|
|
|
281012
281023
|
"use strict";
|
|
281013
281024
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
281014
281025
|
exports2.resolveHttpAuthSchemeConfig = exports2.defaultSFNHttpAuthSchemeProvider = exports2.defaultSFNHttpAuthSchemeParametersProvider = void 0;
|
|
281015
|
-
var
|
|
281026
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
281016
281027
|
var util_middleware_1 = require_dist_cjs6();
|
|
281017
281028
|
var defaultSFNHttpAuthSchemeParametersProvider = /* @__PURE__ */ __name(async (config, context, input) => {
|
|
281018
281029
|
return {
|
|
@@ -281050,7 +281061,7 @@ var require_httpAuthSchemeProvider18 = __commonJS({
|
|
|
281050
281061
|
}, "defaultSFNHttpAuthSchemeProvider");
|
|
281051
281062
|
exports2.defaultSFNHttpAuthSchemeProvider = defaultSFNHttpAuthSchemeProvider;
|
|
281052
281063
|
var resolveHttpAuthSchemeConfig6 = /* @__PURE__ */ __name((config) => {
|
|
281053
|
-
const config_0 = (0,
|
|
281064
|
+
const config_0 = (0, httpAuthSchemes_1.resolveAwsSdkSigV4Config)(config);
|
|
281054
281065
|
return Object.assign(config_0, {
|
|
281055
281066
|
authSchemePreference: (0, util_middleware_1.normalizeProvider)(config.authSchemePreference ?? [])
|
|
281056
281067
|
});
|
|
@@ -281065,7 +281076,7 @@ var require_package18 = __commonJS({
|
|
|
281065
281076
|
module2.exports = {
|
|
281066
281077
|
name: "@aws-sdk/client-sfn",
|
|
281067
281078
|
description: "AWS SDK for JavaScript Sfn Client for Node.js, Browser and React Native",
|
|
281068
|
-
version: "3.
|
|
281079
|
+
version: "3.1019.0",
|
|
281069
281080
|
scripts: {
|
|
281070
281081
|
build: "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
281071
281082
|
"build:cjs": "node ../../scripts/compilation/inline client-sfn",
|
|
@@ -281085,17 +281096,17 @@ var require_package18 = __commonJS({
|
|
|
281085
281096
|
dependencies: {
|
|
281086
281097
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
281087
281098
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
281088
|
-
"@aws-sdk/core": "^3.973.
|
|
281089
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
281099
|
+
"@aws-sdk/core": "^3.973.25",
|
|
281100
|
+
"@aws-sdk/credential-provider-node": "^3.972.27",
|
|
281090
281101
|
"@aws-sdk/middleware-host-header": "^3.972.8",
|
|
281091
281102
|
"@aws-sdk/middleware-logger": "^3.972.8",
|
|
281092
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
281093
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
281094
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
281103
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.9",
|
|
281104
|
+
"@aws-sdk/middleware-user-agent": "^3.972.26",
|
|
281105
|
+
"@aws-sdk/region-config-resolver": "^3.972.10",
|
|
281095
281106
|
"@aws-sdk/types": "^3.973.6",
|
|
281096
281107
|
"@aws-sdk/util-endpoints": "^3.996.5",
|
|
281097
281108
|
"@aws-sdk/util-user-agent-browser": "^3.972.8",
|
|
281098
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
281109
|
+
"@aws-sdk/util-user-agent-node": "^3.973.12",
|
|
281099
281110
|
"@smithy/config-resolver": "^4.4.13",
|
|
281100
281111
|
"@smithy/core": "^3.23.12",
|
|
281101
281112
|
"@smithy/fetch-http-handler": "^5.3.15",
|
|
@@ -284166,7 +284177,7 @@ var require_runtimeConfig_shared19 = __commonJS({
|
|
|
284166
284177
|
"use strict";
|
|
284167
284178
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
284168
284179
|
exports2.getRuntimeConfig = void 0;
|
|
284169
|
-
var
|
|
284180
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
284170
284181
|
var protocols_1 = (init_protocols2(), __toCommonJS(protocols_exports2));
|
|
284171
284182
|
var smithy_client_1 = require_dist_cjs25();
|
|
284172
284183
|
var url_parser_1 = require_dist_cjs18();
|
|
@@ -284188,7 +284199,7 @@ var require_runtimeConfig_shared19 = __commonJS({
|
|
|
284188
284199
|
{
|
|
284189
284200
|
schemeId: "aws.auth#sigv4",
|
|
284190
284201
|
identityProvider: /* @__PURE__ */ __name((ipc) => ipc.getIdentityProvider("aws.auth#sigv4"), "identityProvider"),
|
|
284191
|
-
signer: new
|
|
284202
|
+
signer: new httpAuthSchemes_1.AwsSdkSigV4Signer()
|
|
284192
284203
|
}
|
|
284193
284204
|
],
|
|
284194
284205
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
@@ -284218,7 +284229,8 @@ var require_runtimeConfig19 = __commonJS({
|
|
|
284218
284229
|
exports2.getRuntimeConfig = void 0;
|
|
284219
284230
|
var tslib_1 = (init_tslib_es6(), __toCommonJS(tslib_es6_exports));
|
|
284220
284231
|
var package_json_1 = tslib_1.__importDefault(require_package18());
|
|
284221
|
-
var
|
|
284232
|
+
var client_1 = (init_client(), __toCommonJS(client_exports));
|
|
284233
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
284222
284234
|
var credential_provider_node_1 = require_dist_cjs52();
|
|
284223
284235
|
var util_user_agent_node_1 = require_dist_cjs41();
|
|
284224
284236
|
var config_resolver_1 = require_dist_cjs31();
|
|
@@ -284236,7 +284248,7 @@ var require_runtimeConfig19 = __commonJS({
|
|
|
284236
284248
|
const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config);
|
|
284237
284249
|
const defaultConfigProvider = /* @__PURE__ */ __name(() => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode), "defaultConfigProvider");
|
|
284238
284250
|
const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
|
|
284239
|
-
(0,
|
|
284251
|
+
(0, client_1.emitWarningIfUnsupportedVersion)(process.version);
|
|
284240
284252
|
const loaderConfig = {
|
|
284241
284253
|
profile: config?.profile,
|
|
284242
284254
|
logger: clientSharedValues.logger
|
|
@@ -284246,7 +284258,7 @@ var require_runtimeConfig19 = __commonJS({
|
|
|
284246
284258
|
...config,
|
|
284247
284259
|
runtime: "node",
|
|
284248
284260
|
defaultsMode,
|
|
284249
|
-
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(
|
|
284261
|
+
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(httpAuthSchemes_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
284250
284262
|
bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
|
|
284251
284263
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? credential_provider_node_1.defaultProvider,
|
|
284252
284264
|
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? (0, util_user_agent_node_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
@@ -284269,7 +284281,7 @@ var require_runtimeConfig19 = __commonJS({
|
|
|
284269
284281
|
});
|
|
284270
284282
|
|
|
284271
284283
|
// ../../node_modules/@aws-sdk/client-sfn/dist-cjs/index.js
|
|
284272
|
-
var
|
|
284284
|
+
var require_dist_cjs94 = __commonJS({
|
|
284273
284285
|
"../../node_modules/@aws-sdk/client-sfn/dist-cjs/index.js"(exports2) {
|
|
284274
284286
|
"use strict";
|
|
284275
284287
|
var middlewareHostHeader = require_dist_cjs3();
|
|
@@ -284937,7 +284949,7 @@ var require_httpAuthSchemeProvider19 = __commonJS({
|
|
|
284937
284949
|
"use strict";
|
|
284938
284950
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
284939
284951
|
exports2.resolveHttpAuthSchemeConfig = exports2.defaultSSMHttpAuthSchemeProvider = exports2.defaultSSMHttpAuthSchemeParametersProvider = void 0;
|
|
284940
|
-
var
|
|
284952
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
284941
284953
|
var util_middleware_1 = require_dist_cjs6();
|
|
284942
284954
|
var defaultSSMHttpAuthSchemeParametersProvider = /* @__PURE__ */ __name(async (config, context, input) => {
|
|
284943
284955
|
return {
|
|
@@ -284975,7 +284987,7 @@ var require_httpAuthSchemeProvider19 = __commonJS({
|
|
|
284975
284987
|
}, "defaultSSMHttpAuthSchemeProvider");
|
|
284976
284988
|
exports2.defaultSSMHttpAuthSchemeProvider = defaultSSMHttpAuthSchemeProvider;
|
|
284977
284989
|
var resolveHttpAuthSchemeConfig6 = /* @__PURE__ */ __name((config) => {
|
|
284978
|
-
const config_0 = (0,
|
|
284990
|
+
const config_0 = (0, httpAuthSchemes_1.resolveAwsSdkSigV4Config)(config);
|
|
284979
284991
|
return Object.assign(config_0, {
|
|
284980
284992
|
authSchemePreference: (0, util_middleware_1.normalizeProvider)(config.authSchemePreference ?? [])
|
|
284981
284993
|
});
|
|
@@ -284990,7 +285002,7 @@ var require_package19 = __commonJS({
|
|
|
284990
285002
|
module2.exports = {
|
|
284991
285003
|
name: "@aws-sdk/client-ssm",
|
|
284992
285004
|
description: "AWS SDK for JavaScript Ssm Client for Node.js, Browser and React Native",
|
|
284993
|
-
version: "3.
|
|
285005
|
+
version: "3.1019.0",
|
|
284994
285006
|
scripts: {
|
|
284995
285007
|
build: "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
284996
285008
|
"build:cjs": "node ../../scripts/compilation/inline client-ssm",
|
|
@@ -285012,17 +285024,17 @@ var require_package19 = __commonJS({
|
|
|
285012
285024
|
dependencies: {
|
|
285013
285025
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
285014
285026
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
285015
|
-
"@aws-sdk/core": "^3.973.
|
|
285016
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
285027
|
+
"@aws-sdk/core": "^3.973.25",
|
|
285028
|
+
"@aws-sdk/credential-provider-node": "^3.972.27",
|
|
285017
285029
|
"@aws-sdk/middleware-host-header": "^3.972.8",
|
|
285018
285030
|
"@aws-sdk/middleware-logger": "^3.972.8",
|
|
285019
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
285020
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
285021
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
285031
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.9",
|
|
285032
|
+
"@aws-sdk/middleware-user-agent": "^3.972.26",
|
|
285033
|
+
"@aws-sdk/region-config-resolver": "^3.972.10",
|
|
285022
285034
|
"@aws-sdk/types": "^3.973.6",
|
|
285023
285035
|
"@aws-sdk/util-endpoints": "^3.996.5",
|
|
285024
285036
|
"@aws-sdk/util-user-agent-browser": "^3.972.8",
|
|
285025
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
285037
|
+
"@aws-sdk/util-user-agent-node": "^3.973.12",
|
|
285026
285038
|
"@smithy/config-resolver": "^4.4.13",
|
|
285027
285039
|
"@smithy/core": "^3.23.12",
|
|
285028
285040
|
"@smithy/fetch-http-handler": "^5.3.15",
|
|
@@ -296673,7 +296685,7 @@ var require_runtimeConfig_shared20 = __commonJS({
|
|
|
296673
296685
|
"use strict";
|
|
296674
296686
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
296675
296687
|
exports2.getRuntimeConfig = void 0;
|
|
296676
|
-
var
|
|
296688
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
296677
296689
|
var protocols_1 = (init_protocols2(), __toCommonJS(protocols_exports2));
|
|
296678
296690
|
var smithy_client_1 = require_dist_cjs25();
|
|
296679
296691
|
var url_parser_1 = require_dist_cjs18();
|
|
@@ -296695,7 +296707,7 @@ var require_runtimeConfig_shared20 = __commonJS({
|
|
|
296695
296707
|
{
|
|
296696
296708
|
schemeId: "aws.auth#sigv4",
|
|
296697
296709
|
identityProvider: /* @__PURE__ */ __name((ipc) => ipc.getIdentityProvider("aws.auth#sigv4"), "identityProvider"),
|
|
296698
|
-
signer: new
|
|
296710
|
+
signer: new httpAuthSchemes_1.AwsSdkSigV4Signer()
|
|
296699
296711
|
}
|
|
296700
296712
|
],
|
|
296701
296713
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
@@ -296725,7 +296737,8 @@ var require_runtimeConfig20 = __commonJS({
|
|
|
296725
296737
|
exports2.getRuntimeConfig = void 0;
|
|
296726
296738
|
var tslib_1 = (init_tslib_es6(), __toCommonJS(tslib_es6_exports));
|
|
296727
296739
|
var package_json_1 = tslib_1.__importDefault(require_package19());
|
|
296728
|
-
var
|
|
296740
|
+
var client_1 = (init_client(), __toCommonJS(client_exports));
|
|
296741
|
+
var httpAuthSchemes_1 = (init_httpAuthSchemes2(), __toCommonJS(httpAuthSchemes_exports));
|
|
296729
296742
|
var credential_provider_node_1 = require_dist_cjs52();
|
|
296730
296743
|
var util_user_agent_node_1 = require_dist_cjs41();
|
|
296731
296744
|
var config_resolver_1 = require_dist_cjs31();
|
|
@@ -296743,7 +296756,7 @@ var require_runtimeConfig20 = __commonJS({
|
|
|
296743
296756
|
const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config);
|
|
296744
296757
|
const defaultConfigProvider = /* @__PURE__ */ __name(() => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode), "defaultConfigProvider");
|
|
296745
296758
|
const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
|
|
296746
|
-
(0,
|
|
296759
|
+
(0, client_1.emitWarningIfUnsupportedVersion)(process.version);
|
|
296747
296760
|
const loaderConfig = {
|
|
296748
296761
|
profile: config?.profile,
|
|
296749
296762
|
logger: clientSharedValues.logger
|
|
@@ -296753,7 +296766,7 @@ var require_runtimeConfig20 = __commonJS({
|
|
|
296753
296766
|
...config,
|
|
296754
296767
|
runtime: "node",
|
|
296755
296768
|
defaultsMode,
|
|
296756
|
-
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(
|
|
296769
|
+
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(httpAuthSchemes_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
296757
296770
|
bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
|
|
296758
296771
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? credential_provider_node_1.defaultProvider,
|
|
296759
296772
|
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? (0, util_user_agent_node_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
@@ -296776,7 +296789,7 @@ var require_runtimeConfig20 = __commonJS({
|
|
|
296776
296789
|
});
|
|
296777
296790
|
|
|
296778
296791
|
// ../../node_modules/@aws-sdk/client-ssm/dist-cjs/index.js
|
|
296779
|
-
var
|
|
296792
|
+
var require_dist_cjs95 = __commonJS({
|
|
296780
296793
|
"../../node_modules/@aws-sdk/client-ssm/dist-cjs/index.js"(exports2) {
|
|
296781
296794
|
"use strict";
|
|
296782
296795
|
var middlewareHostHeader = require_dist_cjs3();
|
|
@@ -299480,26 +299493,26 @@ var import_client_appsync, import_client_bedrock_agentcore_control, import_clien
|
|
|
299480
299493
|
var init_sdk2 = __esm({
|
|
299481
299494
|
"../@aws-cdk/toolkit-lib/lib/api/aws-auth/sdk.ts"() {
|
|
299482
299495
|
"use strict";
|
|
299483
|
-
import_client_appsync = __toESM(
|
|
299484
|
-
import_client_bedrock_agentcore_control = __toESM(
|
|
299485
|
-
import_client_cloudcontrol = __toESM(
|
|
299486
|
-
import_client_cloudformation3 = __toESM(
|
|
299487
|
-
import_client_cloudwatch_logs = __toESM(
|
|
299488
|
-
import_client_codebuild = __toESM(
|
|
299489
|
-
import_client_ec2 = __toESM(
|
|
299496
|
+
import_client_appsync = __toESM(require_dist_cjs79());
|
|
299497
|
+
import_client_bedrock_agentcore_control = __toESM(require_dist_cjs80());
|
|
299498
|
+
import_client_cloudcontrol = __toESM(require_dist_cjs81());
|
|
299499
|
+
import_client_cloudformation3 = __toESM(require_dist_cjs78());
|
|
299500
|
+
import_client_cloudwatch_logs = __toESM(require_dist_cjs82());
|
|
299501
|
+
import_client_codebuild = __toESM(require_dist_cjs83());
|
|
299502
|
+
import_client_ec2 = __toESM(require_dist_cjs86());
|
|
299490
299503
|
import_client_ecr2 = __toESM(require_dist_cjs54());
|
|
299491
|
-
import_client_ecs = __toESM(
|
|
299492
|
-
import_client_elastic_load_balancing_v2 = __toESM(
|
|
299493
|
-
import_client_iam = __toESM(
|
|
299494
|
-
import_client_kms = __toESM(
|
|
299495
|
-
import_client_lambda = __toESM(
|
|
299496
|
-
import_client_route_53 = __toESM(
|
|
299504
|
+
import_client_ecs = __toESM(require_dist_cjs87());
|
|
299505
|
+
import_client_elastic_load_balancing_v2 = __toESM(require_dist_cjs88());
|
|
299506
|
+
import_client_iam = __toESM(require_dist_cjs89());
|
|
299507
|
+
import_client_kms = __toESM(require_dist_cjs90());
|
|
299508
|
+
import_client_lambda = __toESM(require_dist_cjs91());
|
|
299509
|
+
import_client_route_53 = __toESM(require_dist_cjs93());
|
|
299497
299510
|
import_client_s33 = __toESM(require_dist_cjs72());
|
|
299498
299511
|
import_client_secrets_manager2 = __toESM(require_dist_cjs73());
|
|
299499
|
-
import_client_sfn = __toESM(
|
|
299500
|
-
import_client_ssm = __toESM(
|
|
299512
|
+
import_client_sfn = __toESM(require_dist_cjs94());
|
|
299513
|
+
import_client_ssm = __toESM(require_dist_cjs95());
|
|
299501
299514
|
import_client_sts2 = __toESM(require_dist_cjs74());
|
|
299502
|
-
import_lib_storage2 = __toESM(
|
|
299515
|
+
import_lib_storage2 = __toESM(require_dist_cjs77());
|
|
299503
299516
|
import_middleware_endpoint14 = __toESM(require_dist_cjs36());
|
|
299504
299517
|
import_util_retry6 = __toESM(require_dist_cjs28());
|
|
299505
299518
|
init_account_cache();
|
|
@@ -299911,7 +299924,7 @@ var init_sdk2 = __esm({
|
|
|
299911
299924
|
});
|
|
299912
299925
|
|
|
299913
299926
|
// ../../node_modules/@aws-sdk/ec2-metadata-service/dist-cjs/index.js
|
|
299914
|
-
var
|
|
299927
|
+
var require_dist_cjs96 = __commonJS({
|
|
299915
299928
|
"../../node_modules/@aws-sdk/ec2-metadata-service/dist-cjs/index.js"(exports2) {
|
|
299916
299929
|
"use strict";
|
|
299917
299930
|
var nodeConfigProvider = require_dist_cjs34();
|
|
@@ -300173,7 +300186,7 @@ var init_awscli_compatible = __esm({
|
|
|
300173
300186
|
"use strict";
|
|
300174
300187
|
import_node_util = require("node:util");
|
|
300175
300188
|
import_credential_providers2 = __toESM(require_dist_cjs76());
|
|
300176
|
-
import_ec2_metadata_service = __toESM(
|
|
300189
|
+
import_ec2_metadata_service = __toESM(require_dist_cjs96());
|
|
300177
300190
|
import_shared_ini_file_loader = __toESM(require_dist_cjs33());
|
|
300178
300191
|
init_provider_caching();
|
|
300179
300192
|
init_toolkit_error();
|
|
@@ -300544,7 +300557,7 @@ var init_sdk_provider = __esm({
|
|
|
300544
300557
|
*
|
|
300545
300558
|
* The `environment` parameter is resolved first (see `resolveEnvironment()`).
|
|
300546
300559
|
*/
|
|
300547
|
-
async forEnvironment(environment, mode, options
|
|
300560
|
+
async forEnvironment(environment, mode, options) {
|
|
300548
300561
|
const env2 = await this.resolveEnvironment(environment);
|
|
300549
300562
|
const baseCreds = await this.obtainBaseCredentials(env2.account, mode);
|
|
300550
300563
|
if (baseCreds.source === "none") {
|
|
@@ -300573,8 +300586,7 @@ var init_sdk_provider = __esm({
|
|
|
300573
300586
|
}
|
|
300574
300587
|
if (baseCreds.source === "correctDefault" || baseCreds.source === "plugin") {
|
|
300575
300588
|
await this.ioHelper.defaults.debug(err.message);
|
|
300576
|
-
|
|
300577
|
-
await this.ioHelper.defaults[level](
|
|
300589
|
+
await this.ioHelper.defaults.warn(
|
|
300578
300590
|
`${fmtObtainedCredentials(baseCreds)} could not be used to assume '${options.assumeRoleArn}', but are for the right account. Proceeding anyway.`
|
|
300579
300591
|
);
|
|
300580
300592
|
return {
|
|
@@ -301014,7 +301026,7 @@ var import_client_cloudcontrol2, CcApiContextProviderPlugin;
|
|
|
301014
301026
|
var init_cc_api_provider = __esm({
|
|
301015
301027
|
"../@aws-cdk/toolkit-lib/lib/context-providers/cc-api-provider.ts"() {
|
|
301016
301028
|
"use strict";
|
|
301017
|
-
import_client_cloudcontrol2 = __toESM(
|
|
301029
|
+
import_client_cloudcontrol2 = __toESM(require_dist_cjs81());
|
|
301018
301030
|
init_private2();
|
|
301019
301031
|
init_toolkit_error();
|
|
301020
301032
|
init_util2();
|
|
@@ -302074,6 +302086,7 @@ var ContextAwareCloudAssemblySource;
|
|
|
302074
302086
|
var init_context_aware_source = __esm({
|
|
302075
302087
|
"../@aws-cdk/toolkit-lib/lib/api/cloud-assembly/private/context-aware-source.ts"() {
|
|
302076
302088
|
"use strict";
|
|
302089
|
+
init_disposable_box();
|
|
302077
302090
|
init_context_providers();
|
|
302078
302091
|
init_toolkit_error();
|
|
302079
302092
|
init_private();
|
|
@@ -302099,40 +302112,48 @@ var init_context_aware_source = __esm({
|
|
|
302099
302112
|
async produce() {
|
|
302100
302113
|
let previouslyMissingKeys;
|
|
302101
302114
|
while (true) {
|
|
302102
|
-
|
|
302103
|
-
|
|
302104
|
-
|
|
302105
|
-
const
|
|
302106
|
-
|
|
302107
|
-
|
|
302108
|
-
|
|
302109
|
-
|
|
302110
|
-
|
|
302111
|
-
|
|
302112
|
-
|
|
302113
|
-
|
|
302114
|
-
|
|
302115
|
-
|
|
302116
|
-
|
|
302117
|
-
|
|
302118
|
-
|
|
302119
|
-
|
|
302120
|
-
|
|
302121
|
-
|
|
302122
|
-
|
|
302123
|
-
|
|
302124
|
-
|
|
302125
|
-
|
|
302126
|
-
|
|
302127
|
-
|
|
302128
|
-
|
|
302129
|
-
|
|
302130
|
-
|
|
302131
|
-
|
|
302132
|
-
|
|
302115
|
+
var _stack = [];
|
|
302116
|
+
try {
|
|
302117
|
+
const readableAsm = __using(_stack, new AsyncDisposableBox(await this.source.produce()), true);
|
|
302118
|
+
const assembly = readableAsm.value.cloudAssembly;
|
|
302119
|
+
if (assembly.manifest.missing && assembly.manifest.missing.length > 0) {
|
|
302120
|
+
const missingKeysSet = missingContextKeys(assembly.manifest.missing);
|
|
302121
|
+
const missingKeys = Array.from(missingKeysSet);
|
|
302122
|
+
if (!this.canLookup) {
|
|
302123
|
+
throw new ToolkitError(
|
|
302124
|
+
"ContextLookupsDisabled",
|
|
302125
|
+
`Context lookups have been disabled. Make sure all necessary context is already in 'cdk.context.json' by running 'cdk synth' on a machine with sufficient AWS credentials and committing the result. Missing context keys: '${missingKeys.join(", ")}'`
|
|
302126
|
+
);
|
|
302127
|
+
}
|
|
302128
|
+
let tryLookup = true;
|
|
302129
|
+
if (previouslyMissingKeys && equalSets(missingKeysSet, previouslyMissingKeys)) {
|
|
302130
|
+
await this.ioHelper.notify(IO.CDK_ASSEMBLY_I0240.msg("Not making progress trying to resolve environmental context. Giving up.", { missingKeys }));
|
|
302131
|
+
tryLookup = false;
|
|
302132
|
+
}
|
|
302133
|
+
previouslyMissingKeys = missingKeysSet;
|
|
302134
|
+
if (tryLookup) {
|
|
302135
|
+
await this.ioHelper.notify(IO.CDK_ASSEMBLY_I0241.msg("Some context information is missing. Fetching...", { missingKeys }));
|
|
302136
|
+
const contextUpdates = await provideContextValues(
|
|
302137
|
+
assembly.manifest.missing,
|
|
302138
|
+
this.props.services.sdkProvider,
|
|
302139
|
+
this.props.services.pluginHost,
|
|
302140
|
+
this.ioHelper
|
|
302141
|
+
);
|
|
302142
|
+
await this.ioHelper.notify(IO.CDK_ASSEMBLY_I0042.msg("Writing context updates...", {
|
|
302143
|
+
context: contextUpdates
|
|
302144
|
+
}));
|
|
302145
|
+
await this.context.update(contextUpdates);
|
|
302146
|
+
await readableAsm.value._unlock();
|
|
302147
|
+
continue;
|
|
302148
|
+
}
|
|
302133
302149
|
}
|
|
302150
|
+
return readableAsm.take();
|
|
302151
|
+
} catch (_2) {
|
|
302152
|
+
var _error = _2, _hasError = true;
|
|
302153
|
+
} finally {
|
|
302154
|
+
var _promise = __callDispose(_stack, _error, _hasError);
|
|
302155
|
+
_promise && await _promise;
|
|
302134
302156
|
}
|
|
302135
|
-
return readableAsm;
|
|
302136
302157
|
}
|
|
302137
302158
|
}
|
|
302138
302159
|
};
|
|
@@ -302252,7 +302273,12 @@ async function execInChildProcess(commandAndArgs, options = {}) {
|
|
|
302252
302273
|
stdio: ["ignore", "pipe", "pipe"],
|
|
302253
302274
|
detached: false,
|
|
302254
302275
|
cwd: options.cwd,
|
|
302255
|
-
env:
|
|
302276
|
+
env: {
|
|
302277
|
+
// On Windwows, Python will default to cp1252 when not connected to a terminal, but we
|
|
302278
|
+
// expect it to be UTF-8 below (to be able to split on lines).
|
|
302279
|
+
PYTHONIOENCODING: "utf-8",
|
|
302280
|
+
...options.env
|
|
302281
|
+
},
|
|
302256
302282
|
// We are using 'shell: true' on purprose. Traditionally we have allowed shell features in
|
|
302257
302283
|
// this string, so we have to continue to do so into the future. On Windows, this is simply
|
|
302258
302284
|
// necessary to run .bat and .cmd files properly.
|
|
@@ -302263,10 +302289,10 @@ async function execInChildProcess(commandAndArgs, options = {}) {
|
|
|
302263
302289
|
const eventPublisher = options.eventPublisher ?? ((type, line) => {
|
|
302264
302290
|
switch (type) {
|
|
302265
302291
|
case "data_stdout":
|
|
302266
|
-
process.stdout.write(line);
|
|
302292
|
+
process.stdout.write(line + "\n");
|
|
302267
302293
|
return;
|
|
302268
302294
|
case "data_stderr":
|
|
302269
|
-
process.stderr.write(line);
|
|
302295
|
+
process.stderr.write(line + "\n");
|
|
302270
302296
|
return;
|
|
302271
302297
|
case "open":
|
|
302272
302298
|
case "close":
|
|
@@ -303358,11 +303384,12 @@ var require_assets = __commonJS({
|
|
|
303358
303384
|
"../../node_modules/@aws-cdk/cx-api/node_modules/@aws-cdk/cloud-assembly-api/lib/assets.js"(exports2) {
|
|
303359
303385
|
"use strict";
|
|
303360
303386
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
303361
|
-
exports2.ASSET_PREFIX_SEPARATOR = exports2.ASSET_RESOURCE_METADATA_DOCKER_CACHE_DISABLED_KEY = exports2.ASSET_RESOURCE_METADATA_DOCKER_CACHE_TO_KEY = exports2.ASSET_RESOURCE_METADATA_DOCKER_CACHE_FROM_KEY = exports2.ASSET_RESOURCE_METADATA_DOCKER_OUTPUTS_KEY = exports2.ASSET_RESOURCE_METADATA_IS_BUNDLED_KEY = exports2.ASSET_RESOURCE_METADATA_PROPERTY_KEY = exports2.ASSET_RESOURCE_METADATA_DOCKER_BUILD_TARGET_KEY = exports2.ASSET_RESOURCE_METADATA_DOCKER_BUILD_SSH_KEY = exports2.ASSET_RESOURCE_METADATA_DOCKER_BUILD_SECRETS_KEY = exports2.ASSET_RESOURCE_METADATA_DOCKER_BUILD_ARGS_KEY = exports2.ASSET_RESOURCE_METADATA_DOCKERFILE_PATH_KEY = exports2.ASSET_RESOURCE_METADATA_PATH_KEY = exports2.ASSET_RESOURCE_METADATA_ENABLED_CONTEXT = void 0;
|
|
303387
|
+
exports2.ASSET_PREFIX_SEPARATOR = exports2.ASSET_RESOURCE_METADATA_DOCKER_CACHE_DISABLED_KEY = exports2.ASSET_RESOURCE_METADATA_DOCKER_CACHE_TO_KEY = exports2.ASSET_RESOURCE_METADATA_DOCKER_CACHE_FROM_KEY = exports2.ASSET_RESOURCE_METADATA_DOCKER_OUTPUTS_KEY = exports2.ASSET_RESOURCE_METADATA_IS_BUNDLED_KEY = exports2.ASSET_RESOURCE_METADATA_PROPERTY_KEY = exports2.ASSET_RESOURCE_METADATA_DOCKER_BUILD_TARGET_KEY = exports2.ASSET_RESOURCE_METADATA_DOCKER_BUILD_SSH_KEY = exports2.ASSET_RESOURCE_METADATA_DOCKER_BUILD_SECRETS_KEY = exports2.ASSET_RESOURCE_METADATA_DOCKER_BUILD_CONTEXTS_KEY = exports2.ASSET_RESOURCE_METADATA_DOCKER_BUILD_ARGS_KEY = exports2.ASSET_RESOURCE_METADATA_DOCKERFILE_PATH_KEY = exports2.ASSET_RESOURCE_METADATA_PATH_KEY = exports2.ASSET_RESOURCE_METADATA_ENABLED_CONTEXT = void 0;
|
|
303362
303388
|
exports2.ASSET_RESOURCE_METADATA_ENABLED_CONTEXT = "aws:cdk:enable-asset-metadata";
|
|
303363
303389
|
exports2.ASSET_RESOURCE_METADATA_PATH_KEY = "aws:asset:path";
|
|
303364
303390
|
exports2.ASSET_RESOURCE_METADATA_DOCKERFILE_PATH_KEY = "aws:asset:dockerfile-path";
|
|
303365
303391
|
exports2.ASSET_RESOURCE_METADATA_DOCKER_BUILD_ARGS_KEY = "aws:asset:docker-build-args";
|
|
303392
|
+
exports2.ASSET_RESOURCE_METADATA_DOCKER_BUILD_CONTEXTS_KEY = "aws:asset:docker-build-contexts";
|
|
303366
303393
|
exports2.ASSET_RESOURCE_METADATA_DOCKER_BUILD_SECRETS_KEY = "aws:asset:docker-build-secrets";
|
|
303367
303394
|
exports2.ASSET_RESOURCE_METADATA_DOCKER_BUILD_SSH_KEY = "aws:asset:docker-build-ssh";
|
|
303368
303395
|
exports2.ASSET_RESOURCE_METADATA_DOCKER_BUILD_TARGET_KEY = "aws:asset:docker-build-target";
|
|
@@ -303517,7 +303544,7 @@ var require_legacy_moved = __commonJS({
|
|
|
303517
303544
|
"../../node_modules/@aws-cdk/cx-api/lib/legacy-moved.js"(exports2) {
|
|
303518
303545
|
"use strict";
|
|
303519
303546
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
303520
|
-
exports2.LoadBalancerIpAddressType = exports2.VpcSubnetGroupType = exports2.SynthesisMessageLevel = exports2.UNKNOWN_REGION = exports2.UNKNOWN_ACCOUNT = exports2.SSMPARAM_NO_INVALIDATE = exports2.PROVIDER_ERROR_KEY = exports2.PATH_METADATA_KEY = exports2.ENDPOINT_SERVICE_AVAILABILITY_ZONE_PROVIDER = exports2.AVAILABILITY_ZONE_FALLBACK_CONTEXT_KEY = exports2.ASSET_RESOURCE_METADATA_PROPERTY_KEY = exports2.ASSET_RESOURCE_METADATA_PATH_KEY = exports2.ASSET_RESOURCE_METADATA_IS_BUNDLED_KEY = exports2.ASSET_RESOURCE_METADATA_ENABLED_CONTEXT = exports2.ASSET_RESOURCE_METADATA_DOCKERFILE_PATH_KEY = exports2.ASSET_RESOURCE_METADATA_DOCKER_OUTPUTS_KEY = exports2.ASSET_RESOURCE_METADATA_DOCKER_CACHE_TO_KEY = exports2.ASSET_RESOURCE_METADATA_DOCKER_CACHE_FROM_KEY = exports2.ASSET_RESOURCE_METADATA_DOCKER_CACHE_DISABLED_KEY = exports2.ASSET_RESOURCE_METADATA_DOCKER_BUILD_TARGET_KEY = exports2.ASSET_RESOURCE_METADATA_DOCKER_BUILD_SSH_KEY = exports2.ASSET_RESOURCE_METADATA_DOCKER_BUILD_SECRETS_KEY = exports2.ASSET_RESOURCE_METADATA_DOCKER_BUILD_ARGS_KEY = exports2.ASSET_PREFIX_SEPARATOR = void 0;
|
|
303547
|
+
exports2.LoadBalancerIpAddressType = exports2.VpcSubnetGroupType = exports2.SynthesisMessageLevel = exports2.UNKNOWN_REGION = exports2.UNKNOWN_ACCOUNT = exports2.SSMPARAM_NO_INVALIDATE = exports2.PROVIDER_ERROR_KEY = exports2.PATH_METADATA_KEY = exports2.ENDPOINT_SERVICE_AVAILABILITY_ZONE_PROVIDER = exports2.AVAILABILITY_ZONE_FALLBACK_CONTEXT_KEY = exports2.ASSET_RESOURCE_METADATA_PROPERTY_KEY = exports2.ASSET_RESOURCE_METADATA_PATH_KEY = exports2.ASSET_RESOURCE_METADATA_IS_BUNDLED_KEY = exports2.ASSET_RESOURCE_METADATA_ENABLED_CONTEXT = exports2.ASSET_RESOURCE_METADATA_DOCKERFILE_PATH_KEY = exports2.ASSET_RESOURCE_METADATA_DOCKER_OUTPUTS_KEY = exports2.ASSET_RESOURCE_METADATA_DOCKER_CACHE_TO_KEY = exports2.ASSET_RESOURCE_METADATA_DOCKER_CACHE_FROM_KEY = exports2.ASSET_RESOURCE_METADATA_DOCKER_CACHE_DISABLED_KEY = exports2.ASSET_RESOURCE_METADATA_DOCKER_BUILD_TARGET_KEY = exports2.ASSET_RESOURCE_METADATA_DOCKER_BUILD_SSH_KEY = exports2.ASSET_RESOURCE_METADATA_DOCKER_BUILD_SECRETS_KEY = exports2.ASSET_RESOURCE_METADATA_DOCKER_BUILD_CONTEXTS_KEY = exports2.ASSET_RESOURCE_METADATA_DOCKER_BUILD_ARGS_KEY = exports2.ASSET_PREFIX_SEPARATOR = void 0;
|
|
303521
303548
|
exports2._convertCloudAssembly = _convertCloudAssembly;
|
|
303522
303549
|
exports2._convertCloudAssemblyBuilder = _convertCloudAssemblyBuilder;
|
|
303523
303550
|
var cloud_assembly_api_1 = require_lib11();
|
|
@@ -303527,6 +303554,9 @@ var require_legacy_moved = __commonJS({
|
|
|
303527
303554
|
Object.defineProperty(exports2, "ASSET_RESOURCE_METADATA_DOCKER_BUILD_ARGS_KEY", { enumerable: true, get: /* @__PURE__ */ __name(function() {
|
|
303528
303555
|
return cloud_assembly_api_1.ASSET_RESOURCE_METADATA_DOCKER_BUILD_ARGS_KEY;
|
|
303529
303556
|
}, "get") });
|
|
303557
|
+
Object.defineProperty(exports2, "ASSET_RESOURCE_METADATA_DOCKER_BUILD_CONTEXTS_KEY", { enumerable: true, get: /* @__PURE__ */ __name(function() {
|
|
303558
|
+
return cloud_assembly_api_1.ASSET_RESOURCE_METADATA_DOCKER_BUILD_CONTEXTS_KEY;
|
|
303559
|
+
}, "get") });
|
|
303530
303560
|
Object.defineProperty(exports2, "ASSET_RESOURCE_METADATA_DOCKER_BUILD_SECRETS_KEY", { enumerable: true, get: /* @__PURE__ */ __name(function() {
|
|
303531
303561
|
return cloud_assembly_api_1.ASSET_RESOURCE_METADATA_DOCKER_BUILD_SECRETS_KEY;
|
|
303532
303562
|
}, "get") });
|
|
@@ -303693,7 +303723,7 @@ var require_features = __commonJS({
|
|
|
303693
303723
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
303694
303724
|
exports2.EFS_MOUNTTARGET_ORDERINSENSITIVE_LOGICAL_ID = exports2.EFS_DENY_ANONYMOUS_ACCESS = exports2.KMS_APPLY_IMPORTED_ALIAS_PERMISSIONS_TO_PRINCIPAL = exports2.KMS_ALIAS_NAME_REF = exports2.INCLUDE_PREFIX_IN_UNIQUE_NAME_GENERATION = exports2.APIGATEWAY_REQUEST_VALIDATOR_UNIQUE_ID = exports2.EC2_RESTRICT_DEFAULT_SECURITY_GROUP = exports2.ENABLE_EMR_SERVICE_POLICY_V2 = exports2.REDSHIFT_COLUMN_ID = exports2.SECRETS_MANAGER_TARGET_ATTACHMENT_RESOURCE_POLICY = exports2.EC2_LAUNCH_TEMPLATE_DEFAULT_USER_DATA = exports2.APIGATEWAY_AUTHORIZER_CHANGE_DEPLOYMENT_LOGICAL_ID = exports2.CODEDEPLOY_REMOVE_ALARMS_FROM_DEPLOYMENT_GROUP = exports2.DATABASE_PROXY_UNIQUE_RESOURCE_NAME = exports2.AWS_CUSTOM_RESOURCE_LATEST_SDK_DEFAULT = exports2.ROUTE53_PATTERNS_USE_DISTRIBUTION = exports2.ROUTE53_PATTERNS_USE_CERTIFICATE = exports2.S3_SERVER_ACCESS_LOGS_USE_BUCKET_POLICY = exports2.ECS_PATTERNS_SEC_GROUPS_DISABLES_IMPLICIT_OPEN_LISTENER = exports2.ECS_DISABLE_EXPLICIT_DEPLOYMENT_CONTROLLER_FOR_CIRCUIT_BREAKER = exports2.EVENTS_TARGET_QUEUE_SAME_ACCOUNT = exports2.ENABLE_PARTITION_LITERALS = exports2.APIGATEWAY_DISABLE_CLOUDWATCH_ROLE = exports2.SNS_SUBSCRIPTIONS_SQS_DECRYPTION_POLICY = exports2.S3_CREATE_DEFAULT_LOGGING_POLICY = exports2.CODEPIPELINE_CROSS_ACCOUNT_KEY_ALIAS_STACK_SAFE_RESOURCE_NAME = exports2.VALIDATE_SNAPSHOT_REMOVAL_POLICY = exports2.IAM_IMPORTED_ROLE_STACK_SAFE_DEFAULT_POLICY_NAME = exports2.IAM_MINIMIZE_POLICIES = exports2.ECS_ARN_FORMAT_INCLUDES_CLUSTER_NAME = exports2.EC2_UNIQUE_IMDSV2_LAUNCH_TEMPLATE_NAME = exports2.ECS_SERVICE_EXTENSIONS_ENABLE_DEFAULT_LOG_DRIVER = exports2.TARGET_PARTITIONS = exports2.CHECK_SECRET_USAGE = exports2.CLOUDFRONT_DEFAULT_SECURITY_POLICY_TLS_V1_2_2021 = exports2.LAMBDA_RECOGNIZE_LAYER_VERSION = exports2.LAMBDA_RECOGNIZE_VERSION_PROPS = exports2.EFS_DEFAULT_ENCRYPTION_AT_REST = exports2.APIGATEWAY_USAGEPLANKEY_ORDERINSENSITIVE_ID = exports2.RDS_LOWERCASE_DB_IDENTIFIER = exports2.ECS_REMOVE_DEFAULT_DESIRED_COUNT = exports2.S3_GRANT_WRITE_WITHOUT_ACL = exports2.KMS_DEFAULT_KEY_POLICIES = exports2.SECRETS_MANAGER_PARSE_OWNED_SECRET_NAME = exports2.DOCKER_IGNORE_SUPPORT = exports2.STACK_RELATIVE_EXPORTS_CONTEXT = exports2.NEW_STYLE_STACK_SYNTHESIS_CONTEXT = exports2.ENABLE_DIFF_NO_FAIL = exports2.ENABLE_DIFF_NO_FAIL_CONTEXT = exports2.ENABLE_STACK_NAME_DUPLICATES_CONTEXT = void 0;
|
|
303695
303725
|
exports2.USE_CDK_MANAGED_LAMBDA_LOGGROUP = exports2.S3_PUBLIC_ACCESS_BLOCKED_BY_DEFAULT = exports2.USE_RESOURCEID_FOR_VPCV2_MIGRATION = exports2.EC2_REQUIRE_PRIVATE_SUBNETS_FOR_EGRESSONLYINTERNETGATEWAY = exports2.S3_TRUST_KEY_POLICY_FOR_SNS_SUBSCRIPTIONS = exports2.PIPELINE_REDUCE_CROSS_ACCOUNT_ACTION_ROLE_TRUST_SCOPE = exports2.LOG_USER_POOL_CLIENT_SECRET_VALUE = exports2.DYNAMODB_TABLE_RETAIN_TABLE_REPLICA = exports2.ASPECT_PRIORITIES_MUTATING = exports2.EVENTBUS_POLICY_SID_REQUIRED = exports2.PIPELINE_REDUCE_STAGE_ROLE_TRUST_SCOPE = exports2.SET_UNIQUE_REPLICATION_ROLE_NAME = exports2.LAMBDA_CREATE_NEW_POLICIES_WITH_ADDTOROLEPOLICY = exports2.ENABLE_ADDITIONAL_METADATA_COLLECTION = exports2.IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS = exports2.ALB_DUALSTACK_WITHOUT_PUBLIC_IPV4_SECURITY_GROUP_RULES_DEFAULT = exports2.USER_POOL_DOMAIN_NAME_METHOD_WITHOUT_CUSTOM_RESOURCE = exports2.SIGNER_PROFILE_NAME_PASSED_TO_CFN = exports2.ASPECT_STABILIZATION = exports2.BASTION_HOST_USE_AMAZON_LINUX_2023_BY_DEFAULT = exports2.STEPFUNCTIONS_USE_DISTRIBUTED_MAP_RESULT_WRITER_V2 = exports2.STEPFUNCTIONS_TASKS_FIX_RUN_ECS_TASK_POLICY = exports2.LAMBDA_NODEJS_SDK_V3_EXCLUDE_SMITHY_PACKAGES = exports2.CFN_INCLUDE_REJECT_COMPLEX_RESOURCE_UPDATE_CREATE_POLICY_INTRINSICS = exports2.USE_CORRECT_VALUE_FOR_INSTANCE_RESOURCE_ID_PROPERTY = exports2.APPSYNC_GRAPHQLAPI_SCOPE_LAMBDA_FUNCTION_PERMISSION = exports2.EC2_SUM_TIMEOUT_ENABLED = exports2.DYNAMODB_TABLEV2_RESOURCE_POLICY_PER_REPLICA = exports2.REDUCE_EC2_FARGATE_CLOUDWATCH_PERMISSIONS = exports2.EXPLICIT_STACK_TAGS = exports2.USE_NEW_S3URI_PARAMETERS_FOR_BEDROCK_INVOKE_MODEL_TASK = exports2.S3_KEEP_NOTIFICATION_IN_IMPORTED_BUCKET = exports2.LOG_API_RESPONSE_DATA_PROPERTY_TRUE_DEFAULT = exports2.ECS_REMOVE_DEFAULT_DEPLOYMENT_ALARM = exports2.EBS_DEFAULT_GP3 = exports2.ECS_PATTERNS_UNIQUE_TARGET_GROUP_ID = exports2.EKS_USE_NATIVE_OIDC_PROVIDER = exports2.EKS_NODEGROUP_NAME = exports2.PIPELINE_REDUCE_ASSET_ROLE_TRUST_SCOPE = exports2.KMS_REDUCE_CROSS_ACCOUNT_REGION_POLICY_SCOPE = exports2.CODEPIPELINE_DEFAULT_PIPELINE_TYPE_TO_V2 = exports2.CODEPIPELINE_CROSS_ACCOUNT_KEYS_DEFAULT_VALUE_TO_FALSE = exports2.LAMBDA_PERMISSION_LOGICAL_ID_FOR_LAMBDA_ACTION = exports2.CODECOMMIT_SOURCE_ACTION_DEFAULT_BRANCH_NAME = exports2.APPSYNC_ENABLE_USE_ARN_IDENTIFIER_SOURCE_API_ASSOCIATION = exports2.AURORA_CLUSTER_CHANGE_SCOPE_OF_INSTANCE_PARAMETER_GROUP_WITH_EACH_PARAMETERS = exports2.RDS_PREVENT_RENDERING_DEPRECATED_CREDENTIALS = exports2.LAMBDA_NODEJS_USE_LATEST_RUNTIME = exports2.ENABLE_OPENSEARCH_MULTIAZ_WITH_STANDBY = exports2.AUTOSCALING_GENERATE_LAUNCH_TEMPLATE = void 0;
|
|
303696
|
-
exports2.NEW_PROJECT_DEFAULT_CONTEXT = exports2.FUTURE_FLAGS = exports2.FUTURE_FLAGS_EXPIRED = exports2.CURRENT_VERSION_FLAG_DEFAULTS = exports2.CURRENTLY_RECOMMENDED_FLAGS = exports2.CURRENT_VERSION_EXPIRED_FLAGS = exports2.CURRENT_MV = exports2.FLAGS = exports2.AUTOMATIC_L1_TRAITS = exports2.STEPFUNCTIONS_TASKS_HTTPINVOKE_DYNAMIC_JSONPATH_ENDPOINT = exports2.NETWORK_LOAD_BALANCER_WITH_SECURITY_GROUP_BY_DEFAULT = void 0;
|
|
303726
|
+
exports2.NEW_PROJECT_DEFAULT_CONTEXT = exports2.FUTURE_FLAGS = exports2.FUTURE_FLAGS_EXPIRED = exports2.CURRENT_VERSION_FLAG_DEFAULTS = exports2.CURRENTLY_RECOMMENDED_FLAGS = exports2.CURRENT_VERSION_EXPIRED_FLAGS = exports2.CURRENT_MV = exports2.FLAGS = exports2.AUTOMATIC_L1_TRAITS = exports2.ELB_USE_POST_QUANTUM_TLS_POLICY = exports2.CLOUDFRONT_FUNCTION_DEFAULT_RUNTIME_V2_0 = exports2.STEPFUNCTIONS_TASKS_HTTPINVOKE_DYNAMIC_JSONPATH_ENDPOINT = exports2.NETWORK_LOAD_BALANCER_WITH_SECURITY_GROUP_BY_DEFAULT = void 0;
|
|
303697
303727
|
exports2.futureFlagDefault = futureFlagDefault2;
|
|
303698
303728
|
var flag_modeling_1 = require_flag_modeling();
|
|
303699
303729
|
exports2.ENABLE_STACK_NAME_DUPLICATES_CONTEXT = "@aws-cdk/core:enableStackNameDuplicates";
|
|
@@ -303798,6 +303828,8 @@ var require_features = __commonJS({
|
|
|
303798
303828
|
exports2.USE_CDK_MANAGED_LAMBDA_LOGGROUP = "@aws-cdk/aws-lambda:useCdkManagedLogGroup";
|
|
303799
303829
|
exports2.NETWORK_LOAD_BALANCER_WITH_SECURITY_GROUP_BY_DEFAULT = "@aws-cdk/aws-elasticloadbalancingv2:networkLoadBalancerWithSecurityGroupByDefault";
|
|
303800
303830
|
exports2.STEPFUNCTIONS_TASKS_HTTPINVOKE_DYNAMIC_JSONPATH_ENDPOINT = "@aws-cdk/aws-stepfunctions-tasks:httpInvokeDynamicJsonPathEndpoint";
|
|
303831
|
+
exports2.CLOUDFRONT_FUNCTION_DEFAULT_RUNTIME_V2_0 = "@aws-cdk/aws-cloudfront:defaultFunctionRuntimeV2_0";
|
|
303832
|
+
exports2.ELB_USE_POST_QUANTUM_TLS_POLICY = "@aws-cdk/aws-elasticloadbalancingv2:usePostQuantumTlsPolicy";
|
|
303801
303833
|
exports2.AUTOMATIC_L1_TRAITS = "@aws-cdk/core:automaticL1Traits";
|
|
303802
303834
|
exports2.FLAGS = {
|
|
303803
303835
|
//////////////////////////////////////////////////////////////////////
|
|
@@ -305301,7 +305333,6 @@ var require_features = __commonJS({
|
|
|
305301
305333
|
introducedIn: { v2: "2.221.0" },
|
|
305302
305334
|
recommendedValue: true
|
|
305303
305335
|
},
|
|
305304
|
-
//////////////////////////////////////////////////////////////////////
|
|
305305
305336
|
[exports2.ROUTE53_PATTERNS_USE_DISTRIBUTION]: {
|
|
305306
305337
|
type: flag_modeling_1.FlagType.ApiDefault,
|
|
305307
305338
|
summary: "Use the `Distribution` resource instead of `CloudFrontWebDistribution`",
|
|
@@ -305313,12 +305344,46 @@ var require_features = __commonJS({
|
|
|
305313
305344
|
recommendedValue: true,
|
|
305314
305345
|
compatibilityWithOldBehaviorMd: "Define a `CloudFrontWebDistribution` explicitly"
|
|
305315
305346
|
},
|
|
305347
|
+
//////////////////////////////////////////////////////////////////////
|
|
305348
|
+
[exports2.CLOUDFRONT_FUNCTION_DEFAULT_RUNTIME_V2_0]: {
|
|
305349
|
+
type: flag_modeling_1.FlagType.ApiDefault,
|
|
305350
|
+
summary: "Use cloudfront-js-2.0 as the default runtime for CloudFront Functions",
|
|
305351
|
+
detailsMd: `
|
|
305352
|
+
When enabled, CloudFront Functions will use cloudfront-js-2.0 runtime by default instead of cloudfront-js-1.0.
|
|
305353
|
+
The runtime can still be configured explicitly using the \`runtime\` property.
|
|
305354
|
+
|
|
305355
|
+
If \`keyValueStore\` is specified, the runtime will always be cloudfront-js-2.0 regardless of this flag.`,
|
|
305356
|
+
introducedIn: { v2: "2.245.0" },
|
|
305357
|
+
recommendedValue: true,
|
|
305358
|
+
compatibilityWithOldBehaviorMd: "Set `runtime: FunctionRuntime.JS_1_0` explicitly to use the v1.0 runtime."
|
|
305359
|
+
},
|
|
305360
|
+
//////////////////////////////////////////////////////////////////////
|
|
305361
|
+
[exports2.ELB_USE_POST_QUANTUM_TLS_POLICY]: {
|
|
305362
|
+
type: flag_modeling_1.FlagType.ApiDefault,
|
|
305363
|
+
summary: "When enabled, HTTPS/TLS listeners use post-quantum TLS policy by default",
|
|
305364
|
+
detailsMd: `
|
|
305365
|
+
When this feature flag is enabled, HTTPS and TLS listeners that do not have an explicit
|
|
305366
|
+
\`sslPolicy\` will use the post-quantum cryptography policy
|
|
305367
|
+
\`ELBSecurityPolicy-TLS13-1-2-PQ-2025-09\` by default.
|
|
305368
|
+
|
|
305369
|
+
This policy uses the non-restricted variant (without -Res-) to maintain AES-CBC cipher support
|
|
305370
|
+
for TLS 1.2 clients, ensuring nearly 100% backward compatibility with the previous CDK default.
|
|
305371
|
+
Post-quantum policies provide protection against "Harvest Now, Decrypt Later" attacks using
|
|
305372
|
+
hybrid ML-KEM key exchange.
|
|
305373
|
+
|
|
305374
|
+
When disabled (default), no explicit SSL policy is set, preserving the existing CDK behavior
|
|
305375
|
+
where \`RECOMMENDED_TLS\` (\`ELBSecurityPolicy-TLS13-1-2-2021-06\`) is used.
|
|
305376
|
+
`,
|
|
305377
|
+
introducedIn: { v2: "2.245.0" },
|
|
305378
|
+
recommendedValue: true,
|
|
305379
|
+
compatibilityWithOldBehaviorMd: "Disable this feature flag to preserve existing behavior where no explicit SSL policy is set."
|
|
305380
|
+
},
|
|
305316
305381
|
[exports2.AUTOMATIC_L1_TRAITS]: {
|
|
305317
305382
|
type: flag_modeling_1.FlagType.ApiDefault,
|
|
305318
305383
|
summary: "Automatically use the default L1 traits for L1 constructs`",
|
|
305319
305384
|
detailsMd: `
|
|
305320
|
-
When enabled, the construct library will apply default L1 traits for types that
|
|
305321
|
-
have no traits defined yet. Traits regulate behaviors such as how to create
|
|
305385
|
+
When enabled, the construct library will apply default L1 traits for types that
|
|
305386
|
+
have no traits defined yet. Traits regulate behaviors such as how to create
|
|
305322
305387
|
resource policies, or how to find an encryption key for a given L1 construct.
|
|
305323
305388
|
`,
|
|
305324
305389
|
introducedIn: { v2: "2.239.0" },
|
|
@@ -312750,41 +312815,17 @@ async function cfnDiff2(ioHelper, stacks, deployments, options, sdkProvider, inc
|
|
|
312750
312815
|
return templateInfos;
|
|
312751
312816
|
}
|
|
312752
312817
|
async function changeSetDiff(ioHelper, deployments, stack, sdkProvider, resourcesToImport, parameters = {}, fallBackToTemplate = true, importExistingResources = false) {
|
|
312753
|
-
|
|
312754
|
-
|
|
312755
|
-
|
|
312756
|
-
|
|
312757
|
-
|
|
312758
|
-
|
|
312759
|
-
|
|
312760
|
-
|
|
312761
|
-
|
|
312762
|
-
|
|
312763
|
-
|
|
312764
|
-
await ioHelper.defaults.debug(`Checking if the stack ${stack.stackName} exists before creating the changeset has failed, will base the diff on template differences.
|
|
312765
|
-
`);
|
|
312766
|
-
await ioHelper.defaults.debug(formatErrorMessage(e6));
|
|
312767
|
-
stackExists = false;
|
|
312768
|
-
}
|
|
312769
|
-
if (stackExists) {
|
|
312770
|
-
return createDiffChangeSet(ioHelper, {
|
|
312771
|
-
stack,
|
|
312772
|
-
uuid: v4_default(),
|
|
312773
|
-
deployments,
|
|
312774
|
-
willExecute: false,
|
|
312775
|
-
sdkProvider,
|
|
312776
|
-
parameters,
|
|
312777
|
-
resourcesToImport,
|
|
312778
|
-
failOnError: !fallBackToTemplate,
|
|
312779
|
-
importExistingResources
|
|
312780
|
-
});
|
|
312781
|
-
} else {
|
|
312782
|
-
if (!fallBackToTemplate) {
|
|
312783
|
-
throw new ToolkitError("StackNotDeployed", `the stack '${stack.stackName}' has not been deployed to CloudFormation, set fallBackToTemplate to true or use DiffMethod.templateOnly to base the diff on template differences.`);
|
|
312784
|
-
}
|
|
312785
|
-
await ioHelper.defaults.debug(`the stack '${stack.stackName}' has not been deployed to CloudFormation, skipping changeset creation.`);
|
|
312786
|
-
return;
|
|
312787
|
-
}
|
|
312818
|
+
return createDiffChangeSet(ioHelper, {
|
|
312819
|
+
stack,
|
|
312820
|
+
uuid: v4_default(),
|
|
312821
|
+
deployments,
|
|
312822
|
+
willExecute: false,
|
|
312823
|
+
sdkProvider,
|
|
312824
|
+
parameters,
|
|
312825
|
+
resourcesToImport,
|
|
312826
|
+
failOnError: !fallBackToTemplate,
|
|
312827
|
+
importExistingResources
|
|
312828
|
+
});
|
|
312788
312829
|
}
|
|
312789
312830
|
function appendObject(obj1, obj2) {
|
|
312790
312831
|
for (const key in obj2) {
|
|
@@ -312874,7 +312915,7 @@ var init_drift_formatter = __esm({
|
|
|
312874
312915
|
import_node_util4 = require("node:util");
|
|
312875
312916
|
cxschema10 = __toESM(require_lib2());
|
|
312876
312917
|
import_cloudformation_diff3 = __toESM(require_lib10());
|
|
312877
|
-
import_client_cloudformation4 = __toESM(
|
|
312918
|
+
import_client_cloudformation4 = __toESM(require_dist_cjs78());
|
|
312878
312919
|
chalk23 = __toESM(require_source());
|
|
312879
312920
|
DriftFormatter = class {
|
|
312880
312921
|
static {
|
|
@@ -313341,6 +313382,7 @@ var init_toolkit = __esm({
|
|
|
313341
313382
|
init_bootstrap2();
|
|
313342
313383
|
init_cloud_assembly3();
|
|
313343
313384
|
init_private3();
|
|
313385
|
+
init_disposable_box();
|
|
313344
313386
|
init_source_builder();
|
|
313345
313387
|
init_deployments2();
|
|
313346
313388
|
init_diff3();
|
|
@@ -313491,36 +313533,44 @@ var init_toolkit = __esm({
|
|
|
313491
313533
|
* it after use.
|
|
313492
313534
|
*/
|
|
313493
313535
|
async synth(cx, options = {}) {
|
|
313494
|
-
|
|
313495
|
-
|
|
313496
|
-
|
|
313497
|
-
|
|
313498
|
-
|
|
313499
|
-
|
|
313500
|
-
|
|
313501
|
-
|
|
313502
|
-
|
|
313503
|
-
|
|
313504
|
-
|
|
313505
|
-
|
|
313506
|
-
|
|
313507
|
-
|
|
313508
|
-
|
|
313509
|
-
|
|
313510
|
-
|
|
313511
|
-
|
|
313512
|
-
|
|
313513
|
-
|
|
313514
|
-
|
|
313515
|
-
|
|
313516
|
-
|
|
313517
|
-
|
|
313518
|
-
|
|
313519
|
-
|
|
313520
|
-
|
|
313521
|
-
|
|
313536
|
+
var _stack = [];
|
|
313537
|
+
try {
|
|
313538
|
+
const ioHelper = asIoHelper(this.ioHost, "synth");
|
|
313539
|
+
const assembly = __using(_stack, new AsyncDisposableBox(await synthAndMeasure(ioHelper, cx, stacksOpt(options))), true);
|
|
313540
|
+
const stacks = await assembly.value.selectStacksV2(stacksOpt(options));
|
|
313541
|
+
const autoValidateStacks = options.validateStacks ? [assembly.value.selectStacksForValidation()] : [];
|
|
313542
|
+
await this.validateStacksMetadata(stacks.concat(...autoValidateStacks), ioHelper);
|
|
313543
|
+
const message2 = `Successfully synthesized to ${chalk25.blue(path32.resolve(stacks.assembly.directory))}`;
|
|
313544
|
+
const assemblyData = {
|
|
313545
|
+
assemblyDirectory: stacks.assembly.directory,
|
|
313546
|
+
stacksCount: stacks.stackCount,
|
|
313547
|
+
stackIds: stacks.hierarchicalIds
|
|
313548
|
+
};
|
|
313549
|
+
if (stacks.stackCount === 1) {
|
|
313550
|
+
const firstStack = stacks.firstStack;
|
|
313551
|
+
const template = firstStack.template;
|
|
313552
|
+
const obscuredTemplate = obscureTemplate(template);
|
|
313553
|
+
await ioHelper.notify(IO.CDK_TOOLKIT_I1901.msg(message2, {
|
|
313554
|
+
...assemblyData,
|
|
313555
|
+
stack: {
|
|
313556
|
+
stackName: firstStack.stackName,
|
|
313557
|
+
hierarchicalId: firstStack.hierarchicalId,
|
|
313558
|
+
template,
|
|
313559
|
+
stringifiedJson: serializeStructure(obscuredTemplate, true),
|
|
313560
|
+
stringifiedYaml: serializeStructure(obscuredTemplate, false)
|
|
313561
|
+
}
|
|
313562
|
+
}));
|
|
313563
|
+
} else {
|
|
313564
|
+
await ioHelper.notify(IO.CDK_TOOLKIT_I1902.msg(chalk25.green(message2), assemblyData));
|
|
313565
|
+
await ioHelper.defaults.info(`Supply a stack id (${stacks.stackArtifacts.map((s6) => chalk25.green(s6.hierarchicalId)).join(", ")}) to display its template.`);
|
|
313566
|
+
}
|
|
313567
|
+
return new CachedCloudAssembly(assembly.take());
|
|
313568
|
+
} catch (_2) {
|
|
313569
|
+
var _error = _2, _hasError = true;
|
|
313570
|
+
} finally {
|
|
313571
|
+
var _promise = __callDispose(_stack, _error, _hasError);
|
|
313572
|
+
_promise && await _promise;
|
|
313522
313573
|
}
|
|
313523
|
-
return new CachedCloudAssembly(assembly);
|
|
313524
313574
|
}
|
|
313525
313575
|
/**
|
|
313526
313576
|
* Diff Action
|
|
@@ -317240,7 +317290,7 @@ var require_cli_type_registry = __commonJS({
|
|
|
317240
317290
|
},
|
|
317241
317291
|
execute: {
|
|
317242
317292
|
type: "boolean",
|
|
317243
|
-
desc: "Whether to execute
|
|
317293
|
+
desc: "Whether to execute the change set (--no-execute will NOT execute the change set)",
|
|
317244
317294
|
default: true
|
|
317245
317295
|
},
|
|
317246
317296
|
trust: {
|
|
@@ -317441,7 +317491,7 @@ var require_cli_type_registry = __commonJS({
|
|
|
317441
317491
|
},
|
|
317442
317492
|
execute: {
|
|
317443
317493
|
type: "boolean",
|
|
317444
|
-
desc: "Whether to execute
|
|
317494
|
+
desc: "Whether to execute the change set (--no-execute will NOT execute the change set) (deprecated)",
|
|
317445
317495
|
deprecated: true
|
|
317446
317496
|
},
|
|
317447
317497
|
"change-set-name": {
|
|
@@ -317612,7 +317662,7 @@ var require_cli_type_registry = __commonJS({
|
|
|
317612
317662
|
options: {
|
|
317613
317663
|
execute: {
|
|
317614
317664
|
type: "boolean",
|
|
317615
|
-
desc: "Whether to execute
|
|
317665
|
+
desc: "Whether to execute the change set (--no-execute will NOT execute the change set)",
|
|
317616
317666
|
default: true
|
|
317617
317667
|
},
|
|
317618
317668
|
"change-set-name": {
|
|
@@ -317775,7 +317825,7 @@ var require_cli_type_registry = __commonJS({
|
|
|
317775
317825
|
},
|
|
317776
317826
|
template: {
|
|
317777
317827
|
type: "string",
|
|
317778
|
-
desc: "The path to the CloudFormation template to compare with",
|
|
317828
|
+
desc: "The path to the CloudFormation template to compare with. Implies --method=template",
|
|
317779
317829
|
requiresArg: true
|
|
317780
317830
|
},
|
|
317781
317831
|
strict: {
|
|
@@ -317806,8 +317856,21 @@ var require_cli_type_registry = __commonJS({
|
|
|
317806
317856
|
"change-set": {
|
|
317807
317857
|
type: "boolean",
|
|
317808
317858
|
alias: "changeset",
|
|
317809
|
-
desc: "Whether to create a
|
|
317810
|
-
default: true
|
|
317859
|
+
desc: "Whether to create a change set to analyze resource replacements. In this mode, diff will use the deploy role instead of the lookup role.",
|
|
317860
|
+
default: true,
|
|
317861
|
+
deprecated: "use --method instead"
|
|
317862
|
+
},
|
|
317863
|
+
method: {
|
|
317864
|
+
alias: "m",
|
|
317865
|
+
type: "string",
|
|
317866
|
+
default: "auto",
|
|
317867
|
+
choices: [
|
|
317868
|
+
"auto",
|
|
317869
|
+
"change-set",
|
|
317870
|
+
"template"
|
|
317871
|
+
],
|
|
317872
|
+
requiresArg: true,
|
|
317873
|
+
desc: 'How to compute the diff. "auto" attempts to create a change set and falls back to template-only on failure. "change-set" creates a change set and fails if it cannot be created. Both use the deploy role instead of the lookup role. "template" compares templates directly and uses the lookup role.'
|
|
317811
317874
|
},
|
|
317812
317875
|
"import-existing-resources": {
|
|
317813
317876
|
type: "boolean",
|
|
@@ -322845,42 +322908,7 @@ var init_cdk_toolkit = __esm({
|
|
|
322845
322908
|
if (resourcesToImport) {
|
|
322846
322909
|
removeNonImportResources(stack);
|
|
322847
322910
|
}
|
|
322848
|
-
|
|
322849
|
-
if (options.changeSet) {
|
|
322850
|
-
let stackExists = false;
|
|
322851
|
-
try {
|
|
322852
|
-
stackExists = await this.props.deployments.stackExists({
|
|
322853
|
-
stack,
|
|
322854
|
-
deployName: stack.stackName,
|
|
322855
|
-
tryLookupRole: true
|
|
322856
|
-
});
|
|
322857
|
-
} catch (e6) {
|
|
322858
|
-
await this.ioHost.asIoHelper().defaults.debug(formatErrorMessage(e6));
|
|
322859
|
-
if (!quiet) {
|
|
322860
|
-
await this.ioHost.asIoHelper().defaults.info(
|
|
322861
|
-
`Checking if the stack ${stack.stackName} exists before creating the changeset has failed, will base the diff on template differences (run again with -v to see the reason)
|
|
322862
|
-
`
|
|
322863
|
-
);
|
|
322864
|
-
}
|
|
322865
|
-
stackExists = false;
|
|
322866
|
-
}
|
|
322867
|
-
if (stackExists) {
|
|
322868
|
-
changeSet = await cfn_api_exports.createDiffChangeSet(asIoHelper(this.ioHost, "diff"), {
|
|
322869
|
-
stack,
|
|
322870
|
-
uuid: v4_default(),
|
|
322871
|
-
deployments: this.props.deployments,
|
|
322872
|
-
willExecute: false,
|
|
322873
|
-
sdkProvider: this.props.sdkProvider,
|
|
322874
|
-
parameters: Object.assign({}, parameterMap["*"], parameterMap[stack.stackName]),
|
|
322875
|
-
resourcesToImport,
|
|
322876
|
-
importExistingResources: options.importExistingResources
|
|
322877
|
-
});
|
|
322878
|
-
} else {
|
|
322879
|
-
await this.ioHost.asIoHelper().defaults.debug(
|
|
322880
|
-
`the stack '${stack.stackName}' has not been deployed to CloudFormation or describeStacks call failed, skipping changeset creation.`
|
|
322881
|
-
);
|
|
322882
|
-
}
|
|
322883
|
-
}
|
|
322911
|
+
const changeSet = options.method !== "template" ? await this.tryCreateDiffChangeSet(stack, options, parameterMap, resourcesToImport, quiet) : void 0;
|
|
322884
322912
|
const mappings = allMappings.find(
|
|
322885
322913
|
(m6) => m6.environment.region === stack.environment.region && m6.environment.account === stack.environment.account
|
|
322886
322914
|
)?.mappings ?? {};
|
|
@@ -322915,6 +322943,42 @@ var init_cdk_toolkit = __esm({
|
|
|
322915
322943
|
await this.ioHost.asIoHelper().defaults.info((0, import_util72.format)("\n\u2728 Number of stacks with differences: %s\n", diffs));
|
|
322916
322944
|
return diffs && options.fail ? 1 : 0;
|
|
322917
322945
|
}
|
|
322946
|
+
/**
|
|
322947
|
+
* Try to create a diff changeset for the given stack.
|
|
322948
|
+
* Returns undefined if the stack cannot be accessed and changeSetOnly is not set.
|
|
322949
|
+
*/
|
|
322950
|
+
async tryCreateDiffChangeSet(stack, options, parameterMap, resourcesToImport, quiet) {
|
|
322951
|
+
try {
|
|
322952
|
+
await this.props.deployments.stackExists({
|
|
322953
|
+
stack,
|
|
322954
|
+
deployName: stack.stackName,
|
|
322955
|
+
tryLookupRole: true
|
|
322956
|
+
});
|
|
322957
|
+
} catch (e6) {
|
|
322958
|
+
if (options.method === "change-set") {
|
|
322959
|
+
throw import_toolkit_lib18.ToolkitError.withCause("DescribeStacksFailed", `Could not access stack '${stack.stackName}'. Please check your permissions or use '--method=auto' to allow falling back to a template diff.`, e6);
|
|
322960
|
+
}
|
|
322961
|
+
await this.ioHost.asIoHelper().defaults.debug(formatErrorMessage(e6));
|
|
322962
|
+
if (!quiet) {
|
|
322963
|
+
await this.ioHost.asIoHelper().defaults.info(
|
|
322964
|
+
`Could not access stack '${stack.stackName}', falling back to template diff. Use '--method=change-set' to fail instead. Run with -v to see the reason.
|
|
322965
|
+
`
|
|
322966
|
+
);
|
|
322967
|
+
}
|
|
322968
|
+
return void 0;
|
|
322969
|
+
}
|
|
322970
|
+
return cfn_api_exports.createDiffChangeSet(asIoHelper(this.ioHost, "diff"), {
|
|
322971
|
+
stack,
|
|
322972
|
+
uuid: v4_default(),
|
|
322973
|
+
deployments: this.props.deployments,
|
|
322974
|
+
willExecute: false,
|
|
322975
|
+
sdkProvider: this.props.sdkProvider,
|
|
322976
|
+
parameters: Object.assign({}, parameterMap["*"], parameterMap[stack.stackName]),
|
|
322977
|
+
resourcesToImport,
|
|
322978
|
+
importExistingResources: options.importExistingResources,
|
|
322979
|
+
failOnError: options.method === "change-set"
|
|
322980
|
+
});
|
|
322981
|
+
}
|
|
322918
322982
|
async deploy(options) {
|
|
322919
322983
|
if (options.watch) {
|
|
322920
322984
|
return this.watch(options);
|
|
@@ -323062,16 +323126,13 @@ var init_cdk_toolkit = __esm({
|
|
|
323062
323126
|
reuseAssets: options.reuseAssets,
|
|
323063
323127
|
notificationArns,
|
|
323064
323128
|
tags,
|
|
323065
|
-
execute: options.execute,
|
|
323066
|
-
changeSetName: options.changeSetName,
|
|
323067
323129
|
deploymentMethod: options.deploymentMethod,
|
|
323068
323130
|
forceDeployment: options.force,
|
|
323069
323131
|
parameters: Object.assign({}, parameterMap["*"], parameterMap[stack.stackName]),
|
|
323070
323132
|
usePreviousParameters: options.usePreviousParameters,
|
|
323071
323133
|
rollback,
|
|
323072
323134
|
extraUserAgent: options.extraUserAgent,
|
|
323073
|
-
assetParallelism: options.assetParallelism
|
|
323074
|
-
ignoreNoStacks: options.ignoreNoStacks
|
|
323135
|
+
assetParallelism: options.assetParallelism
|
|
323075
323136
|
});
|
|
323076
323137
|
switch (r6.type) {
|
|
323077
323138
|
case "did-deploy-stack":
|
|
@@ -328984,7 +329045,7 @@ function parseCommandLineArguments(args) {
|
|
|
328984
329045
|
}).option("execute", {
|
|
328985
329046
|
default: true,
|
|
328986
329047
|
type: "boolean",
|
|
328987
|
-
desc: "Whether to execute
|
|
329048
|
+
desc: "Whether to execute the change set (--no-execute will NOT execute the change set)"
|
|
328988
329049
|
}).option("trust", {
|
|
328989
329050
|
type: "array",
|
|
328990
329051
|
desc: "The AWS account IDs that should be trusted to perform deployments into this environment (may be repeated, modern bootstrapping only)",
|
|
@@ -329162,7 +329223,7 @@ function parseCommandLineArguments(args) {
|
|
|
329162
329223
|
}).option("execute", {
|
|
329163
329224
|
default: void 0,
|
|
329164
329225
|
type: "boolean",
|
|
329165
|
-
desc: "Whether to execute
|
|
329226
|
+
desc: "Whether to execute the change set (--no-execute will NOT execute the change set) (deprecated)",
|
|
329166
329227
|
deprecated: true
|
|
329167
329228
|
}).option("change-set-name", {
|
|
329168
329229
|
default: void 0,
|
|
@@ -329303,7 +329364,7 @@ function parseCommandLineArguments(args) {
|
|
|
329303
329364
|
(yargs2) => yargs2.option("execute", {
|
|
329304
329365
|
default: true,
|
|
329305
329366
|
type: "boolean",
|
|
329306
|
-
desc: "Whether to execute
|
|
329367
|
+
desc: "Whether to execute the change set (--no-execute will NOT execute the change set)"
|
|
329307
329368
|
}).option("change-set-name", {
|
|
329308
329369
|
default: void 0,
|
|
329309
329370
|
type: "string",
|
|
@@ -329441,7 +329502,7 @@ function parseCommandLineArguments(args) {
|
|
|
329441
329502
|
}).option("template", {
|
|
329442
329503
|
default: void 0,
|
|
329443
329504
|
type: "string",
|
|
329444
|
-
desc: "The path to the CloudFormation template to compare with",
|
|
329505
|
+
desc: "The path to the CloudFormation template to compare with. Implies --method=template",
|
|
329445
329506
|
requiresArg: true
|
|
329446
329507
|
}).option("strict", {
|
|
329447
329508
|
default: false,
|
|
@@ -329468,7 +329529,15 @@ function parseCommandLineArguments(args) {
|
|
|
329468
329529
|
default: true,
|
|
329469
329530
|
type: "boolean",
|
|
329470
329531
|
alias: "changeset",
|
|
329471
|
-
desc: "Whether to create a
|
|
329532
|
+
desc: "Whether to create a change set to analyze resource replacements. In this mode, diff will use the deploy role instead of the lookup role.",
|
|
329533
|
+
deprecated: "use --method instead"
|
|
329534
|
+
}).option("method", {
|
|
329535
|
+
default: "auto",
|
|
329536
|
+
alias: "m",
|
|
329537
|
+
type: "string",
|
|
329538
|
+
choices: ["auto", "change-set", "template"],
|
|
329539
|
+
requiresArg: true,
|
|
329540
|
+
desc: 'How to compute the diff. "auto" attempts to create a change set and falls back to template-only on failure. "change-set" creates a change set and fails if it cannot be created. Both use the deploy role instead of the lookup role. "template" compares templates directly and uses the lookup role.'
|
|
329472
329541
|
}).option("import-existing-resources", {
|
|
329473
329542
|
default: false,
|
|
329474
329543
|
type: "boolean",
|
|
@@ -363070,7 +363139,7 @@ async function exec4(args, synthesizer) {
|
|
|
363070
363139
|
fail: args2.fail != null ? args2.fail : !enableDiffNoFail,
|
|
363071
363140
|
compareAgainstProcessedTemplate: args2.processed,
|
|
363072
363141
|
quiet: args2.quiet,
|
|
363073
|
-
|
|
363142
|
+
method: determineDiffMethod(args2),
|
|
363074
363143
|
toolkitStackName,
|
|
363075
363144
|
importExistingResources: args2.importExistingResources,
|
|
363076
363145
|
includeMoves: args2["include-moves"]
|
|
@@ -363345,6 +363414,18 @@ function arrayFromYargs(xs) {
|
|
|
363345
363414
|
}
|
|
363346
363415
|
return xs.filter((x6) => x6 !== "");
|
|
363347
363416
|
}
|
|
363417
|
+
function determineDiffMethod(args) {
|
|
363418
|
+
if (args.method && args.method !== "auto") {
|
|
363419
|
+
return args.method;
|
|
363420
|
+
}
|
|
363421
|
+
if (args["change-set"] === false) {
|
|
363422
|
+
return "template";
|
|
363423
|
+
}
|
|
363424
|
+
if (args.template) {
|
|
363425
|
+
return "template";
|
|
363426
|
+
}
|
|
363427
|
+
return "auto";
|
|
363428
|
+
}
|
|
363348
363429
|
function determineDeploymentMethod(args, configuration, watch2) {
|
|
363349
363430
|
let deploymentMethod;
|
|
363350
363431
|
switch (args.method) {
|
|
@@ -363487,6 +363568,7 @@ var init_cli = __esm({
|
|
|
363487
363568
|
__name(determineBootstrapVersion, "determineBootstrapVersion");
|
|
363488
363569
|
__name(isFeatureEnabled, "isFeatureEnabled");
|
|
363489
363570
|
__name(arrayFromYargs, "arrayFromYargs");
|
|
363571
|
+
__name(determineDiffMethod, "determineDiffMethod");
|
|
363490
363572
|
__name(determineDeploymentMethod, "determineDeploymentMethod");
|
|
363491
363573
|
__name(determineHotswapMode, "determineHotswapMode");
|
|
363492
363574
|
__name(cli, "cli");
|