@aws-sdk/client-m2 3.713.0 → 3.714.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/dist-cjs/index.js +9 -0
- package/dist-cjs/runtimeConfig.js +8 -6
- package/dist-es/models/models_0.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +3 -0
- package/dist-es/runtimeConfig.js +8 -6
- package/dist-types/M2Client.d.ts +18 -0
- package/dist-types/commands/CreateEnvironmentCommand.d.ts +1 -0
- package/dist-types/commands/GetEnvironmentCommand.d.ts +1 -0
- package/dist-types/commands/ListEnvironmentsCommand.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +27 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/ts3.4/M2Client.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +8 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
- package/package.json +14 -14
package/dist-cjs/index.js
CHANGED
|
@@ -72,6 +72,7 @@ __export(src_exports, {
|
|
|
72
72
|
M2: () => M2,
|
|
73
73
|
M2Client: () => M2Client,
|
|
74
74
|
M2ServiceException: () => M2ServiceException,
|
|
75
|
+
NetworkType: () => NetworkType,
|
|
75
76
|
ResourceNotFoundException: () => ResourceNotFoundException,
|
|
76
77
|
ServiceQuotaExceededException: () => ServiceQuotaExceededException,
|
|
77
78
|
ServiceUnavailableException: () => ServiceUnavailableException,
|
|
@@ -591,6 +592,10 @@ var BatchJobDefinition;
|
|
|
591
592
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
592
593
|
}, "visit");
|
|
593
594
|
})(BatchJobDefinition || (BatchJobDefinition = {}));
|
|
595
|
+
var NetworkType = {
|
|
596
|
+
DUAL: "dual",
|
|
597
|
+
IPV4: "ipv4"
|
|
598
|
+
};
|
|
594
599
|
var StorageConfiguration;
|
|
595
600
|
((StorageConfiguration2) => {
|
|
596
601
|
StorageConfiguration2.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
@@ -702,6 +707,7 @@ var se_CreateEnvironmentCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
702
707
|
instanceType: [],
|
|
703
708
|
kmsKeyId: [],
|
|
704
709
|
name: [],
|
|
710
|
+
networkType: [],
|
|
705
711
|
preferredMaintenanceWindow: [],
|
|
706
712
|
publiclyAccessible: [],
|
|
707
713
|
securityGroupIds: (_) => (0, import_smithy_client._json)(_),
|
|
@@ -1332,6 +1338,7 @@ var de_GetEnvironmentCommand = /* @__PURE__ */ __name(async (output, context) =>
|
|
|
1332
1338
|
kmsKeyId: import_smithy_client.expectString,
|
|
1333
1339
|
loadBalancerArn: import_smithy_client.expectString,
|
|
1334
1340
|
name: import_smithy_client.expectString,
|
|
1341
|
+
networkType: import_smithy_client.expectString,
|
|
1335
1342
|
pendingMaintenance: (_) => de_PendingMaintenance(_, context),
|
|
1336
1343
|
preferredMaintenanceWindow: import_smithy_client.expectString,
|
|
1337
1344
|
publiclyAccessible: import_smithy_client.expectBoolean,
|
|
@@ -1911,6 +1918,7 @@ var de_EnvironmentSummary = /* @__PURE__ */ __name((output, context) => {
|
|
|
1911
1918
|
environmentId: import_smithy_client.expectString,
|
|
1912
1919
|
instanceType: import_smithy_client.expectString,
|
|
1913
1920
|
name: import_smithy_client.expectString,
|
|
1921
|
+
networkType: import_smithy_client.expectString,
|
|
1914
1922
|
status: import_smithy_client.expectString
|
|
1915
1923
|
});
|
|
1916
1924
|
}, "de_EnvironmentSummary");
|
|
@@ -2608,6 +2616,7 @@ var paginateListEnvironments = (0, import_core.createPaginator)(M2Client, ListEn
|
|
|
2608
2616
|
DataSetTaskLifecycle,
|
|
2609
2617
|
ApplicationDeploymentLifecycle,
|
|
2610
2618
|
BatchJobDefinition,
|
|
2619
|
+
NetworkType,
|
|
2611
2620
|
StorageConfiguration,
|
|
2612
2621
|
EnvironmentLifecycle
|
|
2613
2622
|
});
|
|
@@ -23,6 +23,7 @@ const getRuntimeConfig = (config) => {
|
|
|
23
23
|
const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode);
|
|
24
24
|
const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
|
|
25
25
|
(0, core_1.emitWarningIfUnsupportedVersion)(process.version);
|
|
26
|
+
const profileConfig = { profile: config?.profile };
|
|
26
27
|
return {
|
|
27
28
|
...clientSharedValues,
|
|
28
29
|
...config,
|
|
@@ -32,19 +33,20 @@ const getRuntimeConfig = (config) => {
|
|
|
32
33
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? credential_provider_node_1.defaultProvider,
|
|
33
34
|
defaultUserAgentProvider: config?.defaultUserAgentProvider ??
|
|
34
35
|
(0, util_user_agent_node_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
35
|
-
maxAttempts: config?.maxAttempts ?? (0, node_config_provider_1.loadConfig)(middleware_retry_1.NODE_MAX_ATTEMPT_CONFIG_OPTIONS),
|
|
36
|
-
region: config?.region ??
|
|
36
|
+
maxAttempts: config?.maxAttempts ?? (0, node_config_provider_1.loadConfig)(middleware_retry_1.NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
37
|
+
region: config?.region ??
|
|
38
|
+
(0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_REGION_CONFIG_OPTIONS, { ...config_resolver_1.NODE_REGION_CONFIG_FILE_OPTIONS, ...profileConfig }),
|
|
37
39
|
requestHandler: node_http_handler_1.NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
38
40
|
retryMode: config?.retryMode ??
|
|
39
41
|
(0, node_config_provider_1.loadConfig)({
|
|
40
42
|
...middleware_retry_1.NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
41
43
|
default: async () => (await defaultConfigProvider()).retryMode || util_retry_1.DEFAULT_RETRY_MODE,
|
|
42
|
-
}),
|
|
44
|
+
}, config),
|
|
43
45
|
sha256: config?.sha256 ?? hash_node_1.Hash.bind(null, "sha256"),
|
|
44
46
|
streamCollector: config?.streamCollector ?? node_http_handler_1.streamCollector,
|
|
45
|
-
useDualstackEndpoint: config?.useDualstackEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS),
|
|
46
|
-
useFipsEndpoint: config?.useFipsEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS),
|
|
47
|
-
userAgentAppId: config?.userAgentAppId ?? (0, node_config_provider_1.loadConfig)(util_user_agent_node_1.NODE_APP_ID_CONFIG_OPTIONS),
|
|
47
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, profileConfig),
|
|
48
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, profileConfig),
|
|
49
|
+
userAgentAppId: config?.userAgentAppId ?? (0, node_config_provider_1.loadConfig)(util_user_agent_node_1.NODE_APP_ID_CONFIG_OPTIONS, profileConfig),
|
|
48
50
|
};
|
|
49
51
|
};
|
|
50
52
|
exports.getRuntimeConfig = getRuntimeConfig;
|
|
@@ -280,6 +280,10 @@ export var BatchJobDefinition;
|
|
|
280
280
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
281
281
|
};
|
|
282
282
|
})(BatchJobDefinition || (BatchJobDefinition = {}));
|
|
283
|
+
export const NetworkType = {
|
|
284
|
+
DUAL: "dual",
|
|
285
|
+
IPV4: "ipv4",
|
|
286
|
+
};
|
|
283
287
|
export var StorageConfiguration;
|
|
284
288
|
(function (StorageConfiguration) {
|
|
285
289
|
StorageConfiguration.visit = (value, visitor) => {
|
|
@@ -86,6 +86,7 @@ export const se_CreateEnvironmentCommand = async (input, context) => {
|
|
|
86
86
|
instanceType: [],
|
|
87
87
|
kmsKeyId: [],
|
|
88
88
|
name: [],
|
|
89
|
+
networkType: [],
|
|
89
90
|
preferredMaintenanceWindow: [],
|
|
90
91
|
publiclyAccessible: [],
|
|
91
92
|
securityGroupIds: (_) => _json(_),
|
|
@@ -705,6 +706,7 @@ export const de_GetEnvironmentCommand = async (output, context) => {
|
|
|
705
706
|
kmsKeyId: __expectString,
|
|
706
707
|
loadBalancerArn: __expectString,
|
|
707
708
|
name: __expectString,
|
|
709
|
+
networkType: __expectString,
|
|
708
710
|
pendingMaintenance: (_) => de_PendingMaintenance(_, context),
|
|
709
711
|
preferredMaintenanceWindow: __expectString,
|
|
710
712
|
publiclyAccessible: __expectBoolean,
|
|
@@ -1296,6 +1298,7 @@ const de_EnvironmentSummary = (output, context) => {
|
|
|
1296
1298
|
environmentId: __expectString,
|
|
1297
1299
|
instanceType: __expectString,
|
|
1298
1300
|
name: __expectString,
|
|
1301
|
+
networkType: __expectString,
|
|
1299
1302
|
status: __expectString,
|
|
1300
1303
|
});
|
|
1301
1304
|
};
|
package/dist-es/runtimeConfig.js
CHANGED
|
@@ -19,6 +19,7 @@ export const getRuntimeConfig = (config) => {
|
|
|
19
19
|
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
20
20
|
const clientSharedValues = getSharedRuntimeConfig(config);
|
|
21
21
|
awsCheckVersion(process.version);
|
|
22
|
+
const profileConfig = { profile: config?.profile };
|
|
22
23
|
return {
|
|
23
24
|
...clientSharedValues,
|
|
24
25
|
...config,
|
|
@@ -28,18 +29,19 @@ export const getRuntimeConfig = (config) => {
|
|
|
28
29
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? credentialDefaultProvider,
|
|
29
30
|
defaultUserAgentProvider: config?.defaultUserAgentProvider ??
|
|
30
31
|
createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
31
|
-
maxAttempts: config?.maxAttempts ?? loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS),
|
|
32
|
-
region: config?.region ??
|
|
32
|
+
maxAttempts: config?.maxAttempts ?? loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
33
|
+
region: config?.region ??
|
|
34
|
+
loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...profileConfig }),
|
|
33
35
|
requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
34
36
|
retryMode: config?.retryMode ??
|
|
35
37
|
loadNodeConfig({
|
|
36
38
|
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
37
39
|
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
38
|
-
}),
|
|
40
|
+
}, config),
|
|
39
41
|
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
40
42
|
streamCollector: config?.streamCollector ?? streamCollector,
|
|
41
|
-
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS),
|
|
42
|
-
useFipsEndpoint: config?.useFipsEndpoint ?? loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS),
|
|
43
|
-
userAgentAppId: config?.userAgentAppId ?? loadNodeConfig(NODE_APP_ID_CONFIG_OPTIONS),
|
|
43
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, profileConfig),
|
|
44
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, profileConfig),
|
|
45
|
+
userAgentAppId: config?.userAgentAppId ?? loadNodeConfig(NODE_APP_ID_CONFIG_OPTIONS, profileConfig),
|
|
44
46
|
};
|
|
45
47
|
};
|
package/dist-types/M2Client.d.ts
CHANGED
|
@@ -128,6 +128,24 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
128
128
|
* The AWS region to which this client will send requests
|
|
129
129
|
*/
|
|
130
130
|
region?: string | __Provider<string>;
|
|
131
|
+
/**
|
|
132
|
+
* Setting a client profile is similar to setting a value for the
|
|
133
|
+
* AWS_PROFILE environment variable. Setting a profile on a client
|
|
134
|
+
* in code only affects the single client instance, unlike AWS_PROFILE.
|
|
135
|
+
*
|
|
136
|
+
* When set, and only for environments where an AWS configuration
|
|
137
|
+
* file exists, fields configurable by this file will be retrieved
|
|
138
|
+
* from the specified profile within that file.
|
|
139
|
+
* Conflicting code configuration and environment variables will
|
|
140
|
+
* still have higher priority.
|
|
141
|
+
*
|
|
142
|
+
* For client credential resolution that involves checking the AWS
|
|
143
|
+
* configuration file, the client's profile (this value) will be
|
|
144
|
+
* used unless a different profile is set in the credential
|
|
145
|
+
* provider options.
|
|
146
|
+
*
|
|
147
|
+
*/
|
|
148
|
+
profile?: string;
|
|
131
149
|
/**
|
|
132
150
|
* The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header
|
|
133
151
|
* @internal
|
|
@@ -55,6 +55,7 @@ declare const ListEnvironmentsCommand_base: {
|
|
|
55
55
|
* // engineType: "STRING_VALUE", // required
|
|
56
56
|
* // engineVersion: "STRING_VALUE", // required
|
|
57
57
|
* // creationTime: new Date("TIMESTAMP"), // required
|
|
58
|
+
* // networkType: "STRING_VALUE",
|
|
58
59
|
* // },
|
|
59
60
|
* // ],
|
|
60
61
|
* // nextToken: "STRING_VALUE",
|
|
@@ -2633,6 +2633,18 @@ export interface HighAvailabilityConfig {
|
|
|
2633
2633
|
*/
|
|
2634
2634
|
desiredCapacity: number | undefined;
|
|
2635
2635
|
}
|
|
2636
|
+
/**
|
|
2637
|
+
* @public
|
|
2638
|
+
* @enum
|
|
2639
|
+
*/
|
|
2640
|
+
export declare const NetworkType: {
|
|
2641
|
+
readonly DUAL: "dual";
|
|
2642
|
+
readonly IPV4: "ipv4";
|
|
2643
|
+
};
|
|
2644
|
+
/**
|
|
2645
|
+
* @public
|
|
2646
|
+
*/
|
|
2647
|
+
export type NetworkType = (typeof NetworkType)[keyof typeof NetworkType];
|
|
2636
2648
|
/**
|
|
2637
2649
|
* <p>Defines the storage configuration for an Amazon EFS file system.</p>
|
|
2638
2650
|
* @public
|
|
@@ -2772,6 +2784,11 @@ export interface CreateEnvironmentRequest {
|
|
|
2772
2784
|
* @public
|
|
2773
2785
|
*/
|
|
2774
2786
|
preferredMaintenanceWindow?: string | undefined;
|
|
2787
|
+
/**
|
|
2788
|
+
* <p>The network type required for the runtime environment.</p>
|
|
2789
|
+
* @public
|
|
2790
|
+
*/
|
|
2791
|
+
networkType?: NetworkType | undefined;
|
|
2775
2792
|
/**
|
|
2776
2793
|
* <p>Unique, case-sensitive identifier you provide to ensure the idempotency of the request
|
|
2777
2794
|
* to create an environment. The service generates the clientToken when the API call is
|
|
@@ -2992,6 +3009,11 @@ export interface GetEnvironmentResponse {
|
|
|
2992
3009
|
* @public
|
|
2993
3010
|
*/
|
|
2994
3011
|
kmsKeyId?: string | undefined;
|
|
3012
|
+
/**
|
|
3013
|
+
* <p>The network type supported by the runtime environment.</p>
|
|
3014
|
+
* @public
|
|
3015
|
+
*/
|
|
3016
|
+
networkType?: NetworkType | undefined;
|
|
2995
3017
|
}
|
|
2996
3018
|
/**
|
|
2997
3019
|
* @public
|
|
@@ -3065,6 +3087,11 @@ export interface EnvironmentSummary {
|
|
|
3065
3087
|
* @public
|
|
3066
3088
|
*/
|
|
3067
3089
|
creationTime: Date | undefined;
|
|
3090
|
+
/**
|
|
3091
|
+
* <p>The network type supported by the runtime environment.</p>
|
|
3092
|
+
* @public
|
|
3093
|
+
*/
|
|
3094
|
+
networkType?: NetworkType | undefined;
|
|
3068
3095
|
}
|
|
3069
3096
|
/**
|
|
3070
3097
|
* @public
|
|
@@ -26,6 +26,7 @@ export declare const getRuntimeConfig: (config: M2ClientConfig) => {
|
|
|
26
26
|
utf8Encoder: (input: string | Uint8Array) => string;
|
|
27
27
|
disableHostPrefix: boolean;
|
|
28
28
|
serviceId: string;
|
|
29
|
+
profile?: string | undefined;
|
|
29
30
|
logger: import("@smithy/types").Logger;
|
|
30
31
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
31
32
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: M2ClientConfig) => {
|
|
|
27
27
|
utf8Encoder: (input: string | Uint8Array) => string;
|
|
28
28
|
disableHostPrefix: boolean;
|
|
29
29
|
serviceId: string;
|
|
30
|
+
profile?: string | undefined;
|
|
30
31
|
logger: import("@smithy/types").Logger;
|
|
31
32
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
32
33
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
@@ -20,6 +20,7 @@ export declare const getRuntimeConfig: (config: M2ClientConfig) => {
|
|
|
20
20
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
21
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
22
22
|
region: string | import("@smithy/types").Provider<any>;
|
|
23
|
+
profile?: string | undefined;
|
|
23
24
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
24
25
|
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
25
26
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
@@ -275,6 +275,7 @@ export interface ClientDefaults
|
|
|
275
275
|
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
276
276
|
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
277
277
|
region?: string | __Provider<string>;
|
|
278
|
+
profile?: string;
|
|
278
279
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
279
280
|
credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
|
|
280
281
|
maxAttempts?: number | __Provider<number>;
|
|
@@ -869,6 +869,11 @@ export interface UpdateApplicationResponse {
|
|
|
869
869
|
export interface HighAvailabilityConfig {
|
|
870
870
|
desiredCapacity: number | undefined;
|
|
871
871
|
}
|
|
872
|
+
export declare const NetworkType: {
|
|
873
|
+
readonly DUAL: "dual";
|
|
874
|
+
readonly IPV4: "ipv4";
|
|
875
|
+
};
|
|
876
|
+
export type NetworkType = (typeof NetworkType)[keyof typeof NetworkType];
|
|
872
877
|
export interface EfsStorageConfiguration {
|
|
873
878
|
fileSystemId: string | undefined;
|
|
874
879
|
mountPoint: string | undefined;
|
|
@@ -917,6 +922,7 @@ export interface CreateEnvironmentRequest {
|
|
|
917
922
|
highAvailabilityConfig?: HighAvailabilityConfig | undefined;
|
|
918
923
|
tags?: Record<string, string> | undefined;
|
|
919
924
|
preferredMaintenanceWindow?: string | undefined;
|
|
925
|
+
networkType?: NetworkType | undefined;
|
|
920
926
|
clientToken?: string | undefined;
|
|
921
927
|
kmsKeyId?: string | undefined;
|
|
922
928
|
}
|
|
@@ -971,6 +977,7 @@ export interface GetEnvironmentResponse {
|
|
|
971
977
|
preferredMaintenanceWindow?: string | undefined;
|
|
972
978
|
pendingMaintenance?: PendingMaintenance | undefined;
|
|
973
979
|
kmsKeyId?: string | undefined;
|
|
980
|
+
networkType?: NetworkType | undefined;
|
|
974
981
|
}
|
|
975
982
|
export interface ListEnvironmentsRequest {
|
|
976
983
|
nextToken?: string | undefined;
|
|
@@ -987,6 +994,7 @@ export interface EnvironmentSummary {
|
|
|
987
994
|
engineType: EngineType | undefined;
|
|
988
995
|
engineVersion: string | undefined;
|
|
989
996
|
creationTime: Date | undefined;
|
|
997
|
+
networkType?: NetworkType | undefined;
|
|
990
998
|
}
|
|
991
999
|
export interface ListEnvironmentsResponse {
|
|
992
1000
|
environments: EnvironmentSummary[] | undefined;
|
|
@@ -33,6 +33,7 @@ export declare const getRuntimeConfig: (config: M2ClientConfig) => {
|
|
|
33
33
|
utf8Encoder: (input: string | Uint8Array) => string;
|
|
34
34
|
disableHostPrefix: boolean;
|
|
35
35
|
serviceId: string;
|
|
36
|
+
profile?: string | undefined;
|
|
36
37
|
logger: import("@smithy/types").Logger;
|
|
37
38
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
38
39
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
@@ -38,6 +38,7 @@ export declare const getRuntimeConfig: (config: M2ClientConfig) => {
|
|
|
38
38
|
utf8Encoder: (input: string | Uint8Array) => string;
|
|
39
39
|
disableHostPrefix: boolean;
|
|
40
40
|
serviceId: string;
|
|
41
|
+
profile?: string | undefined;
|
|
41
42
|
logger: import("@smithy/types").Logger;
|
|
42
43
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
43
44
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
@@ -22,6 +22,7 @@ export declare const getRuntimeConfig: (config: M2ClientConfig) => {
|
|
|
22
22
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
23
23
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
24
24
|
region: string | import("@smithy/types").Provider<any>;
|
|
25
|
+
profile?: string | undefined;
|
|
25
26
|
defaultUserAgentProvider: (
|
|
26
27
|
config?:
|
|
27
28
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-m2",
|
|
3
3
|
"description": "AWS SDK for JavaScript M2 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.714.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-m2",
|
|
@@ -20,19 +20,19 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.714.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.714.0",
|
|
25
|
+
"@aws-sdk/core": "3.714.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.714.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.714.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.714.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.714.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.714.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.714.0",
|
|
32
|
+
"@aws-sdk/types": "3.714.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.714.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.714.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.714.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.13",
|
|
37
37
|
"@smithy/core": "^2.5.5",
|
|
38
38
|
"@smithy/fetch-http-handler": "^4.1.2",
|