@aws-sdk/client-ecs 3.1075.0 → 3.1076.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 +4635 -15
- package/dist-es/models/enums.js +5 -0
- package/dist-es/schemas/schemas_0.js +14 -6
- package/dist-types/commands/CreateServiceCommand.d.ts +10 -0
- package/dist-types/commands/DeleteServiceCommand.d.ts +5 -0
- package/dist-types/commands/DescribeServiceDeploymentsCommand.d.ts +19 -4
- package/dist-types/commands/DescribeServicesCommand.d.ts +5 -0
- package/dist-types/commands/UpdateServiceCommand.d.ts +10 -0
- package/dist-types/models/enums.d.ts +22 -0
- package/dist-types/models/models_0.d.ts +28 -18
- package/dist-types/models/models_1.d.ts +17 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/schemas/schemas_0.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +7 -4
- package/dist-types/ts3.4/models/models_1.d.ts +4 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -0
- package/package.json +8 -8
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -46
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/ECSServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -363
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -39
- package/dist-cjs/schemas/schemas_0.js +0 -3987
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,57 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createWaiter, checkExceptions, WaiterState, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createWaiter, checkExceptions, WaiterState, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsJson1_1Protocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
|
|
17
|
+
const defaultECSHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
18
|
+
return {
|
|
19
|
+
operation: getSmithyContext(context).operation,
|
|
20
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
21
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
22
|
+
})(),
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
26
|
+
return {
|
|
27
|
+
schemeId: "aws.auth#sigv4",
|
|
28
|
+
signingProperties: {
|
|
29
|
+
name: "ecs",
|
|
30
|
+
region: authParameters.region,
|
|
31
|
+
},
|
|
32
|
+
propertiesExtractor: (config, context) => ({
|
|
33
|
+
signingProperties: {
|
|
34
|
+
config,
|
|
35
|
+
context,
|
|
36
|
+
},
|
|
37
|
+
}),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
const defaultECSHttpAuthSchemeProvider = (authParameters) => {
|
|
41
|
+
const options = [];
|
|
42
|
+
switch (authParameters.operation) {
|
|
43
|
+
default: {
|
|
44
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
return options;
|
|
48
|
+
};
|
|
49
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
50
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
51
|
+
return Object.assign(config_0, {
|
|
52
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
53
|
+
});
|
|
54
|
+
};
|
|
19
55
|
|
|
20
56
|
const resolveClientEndpointParameters = (options) => {
|
|
21
57
|
return Object.assign(options, {
|
|
@@ -31,6 +67,4098 @@ const commonParams = {
|
|
|
31
67
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
68
|
};
|
|
33
69
|
|
|
70
|
+
var version = "3.1075.0";
|
|
71
|
+
var packageInfo = {
|
|
72
|
+
version: version};
|
|
73
|
+
|
|
74
|
+
const k = "ref";
|
|
75
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
76
|
+
const _data = {
|
|
77
|
+
conditions: [
|
|
78
|
+
[c, [g]],
|
|
79
|
+
[c, j],
|
|
80
|
+
["aws.partition", j, d],
|
|
81
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
82
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
83
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
|
|
85
|
+
],
|
|
86
|
+
results: [
|
|
87
|
+
[a],
|
|
88
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
89
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
90
|
+
[g, i],
|
|
91
|
+
["https://ecs-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
92
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
93
|
+
["https://ecs-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
94
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
95
|
+
["https://ecs.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
96
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
97
|
+
["https://ecs.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
98
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
99
|
+
]
|
|
100
|
+
};
|
|
101
|
+
const root = 2;
|
|
102
|
+
const r = 100_000_000;
|
|
103
|
+
const nodes = new Int32Array([
|
|
104
|
+
-1, 1, -1,
|
|
105
|
+
0, 12, 3,
|
|
106
|
+
1, 4, r + 11,
|
|
107
|
+
2, 5, r + 11,
|
|
108
|
+
3, 8, 6,
|
|
109
|
+
4, 7, r + 10,
|
|
110
|
+
5, r + 8, r + 9,
|
|
111
|
+
4, 10, 9,
|
|
112
|
+
6, r + 6, r + 7,
|
|
113
|
+
5, 11, r + 5,
|
|
114
|
+
6, r + 4, r + 5,
|
|
115
|
+
3, r + 1, 13,
|
|
116
|
+
4, r + 2, r + 3,
|
|
117
|
+
]);
|
|
118
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
119
|
+
|
|
120
|
+
const cache = new EndpointCache({
|
|
121
|
+
size: 50,
|
|
122
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
123
|
+
});
|
|
124
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
125
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
126
|
+
endpointParams: endpointParams,
|
|
127
|
+
logger: context.logger,
|
|
128
|
+
}));
|
|
129
|
+
};
|
|
130
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
131
|
+
|
|
132
|
+
class ECSServiceException extends ServiceException {
|
|
133
|
+
constructor(options) {
|
|
134
|
+
super(options);
|
|
135
|
+
Object.setPrototypeOf(this, ECSServiceException.prototype);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
class AccessDeniedException extends ECSServiceException {
|
|
140
|
+
name = "AccessDeniedException";
|
|
141
|
+
$fault = "client";
|
|
142
|
+
constructor(opts) {
|
|
143
|
+
super({
|
|
144
|
+
name: "AccessDeniedException",
|
|
145
|
+
$fault: "client",
|
|
146
|
+
...opts,
|
|
147
|
+
});
|
|
148
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
class ClientException extends ECSServiceException {
|
|
152
|
+
name = "ClientException";
|
|
153
|
+
$fault = "client";
|
|
154
|
+
constructor(opts) {
|
|
155
|
+
super({
|
|
156
|
+
name: "ClientException",
|
|
157
|
+
$fault: "client",
|
|
158
|
+
...opts,
|
|
159
|
+
});
|
|
160
|
+
Object.setPrototypeOf(this, ClientException.prototype);
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
class ClusterNotFoundException extends ECSServiceException {
|
|
164
|
+
name = "ClusterNotFoundException";
|
|
165
|
+
$fault = "client";
|
|
166
|
+
constructor(opts) {
|
|
167
|
+
super({
|
|
168
|
+
name: "ClusterNotFoundException",
|
|
169
|
+
$fault: "client",
|
|
170
|
+
...opts,
|
|
171
|
+
});
|
|
172
|
+
Object.setPrototypeOf(this, ClusterNotFoundException.prototype);
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
class InvalidParameterException extends ECSServiceException {
|
|
176
|
+
name = "InvalidParameterException";
|
|
177
|
+
$fault = "client";
|
|
178
|
+
constructor(opts) {
|
|
179
|
+
super({
|
|
180
|
+
name: "InvalidParameterException",
|
|
181
|
+
$fault: "client",
|
|
182
|
+
...opts,
|
|
183
|
+
});
|
|
184
|
+
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
class LimitExceededException extends ECSServiceException {
|
|
188
|
+
name = "LimitExceededException";
|
|
189
|
+
$fault = "client";
|
|
190
|
+
constructor(opts) {
|
|
191
|
+
super({
|
|
192
|
+
name: "LimitExceededException",
|
|
193
|
+
$fault: "client",
|
|
194
|
+
...opts,
|
|
195
|
+
});
|
|
196
|
+
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
class ServerException extends ECSServiceException {
|
|
200
|
+
name = "ServerException";
|
|
201
|
+
$fault = "server";
|
|
202
|
+
constructor(opts) {
|
|
203
|
+
super({
|
|
204
|
+
name: "ServerException",
|
|
205
|
+
$fault: "server",
|
|
206
|
+
...opts,
|
|
207
|
+
});
|
|
208
|
+
Object.setPrototypeOf(this, ServerException.prototype);
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
class UnsupportedFeatureException extends ECSServiceException {
|
|
212
|
+
name = "UnsupportedFeatureException";
|
|
213
|
+
$fault = "client";
|
|
214
|
+
constructor(opts) {
|
|
215
|
+
super({
|
|
216
|
+
name: "UnsupportedFeatureException",
|
|
217
|
+
$fault: "client",
|
|
218
|
+
...opts,
|
|
219
|
+
});
|
|
220
|
+
Object.setPrototypeOf(this, UnsupportedFeatureException.prototype);
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
class UpdateInProgressException extends ECSServiceException {
|
|
224
|
+
name = "UpdateInProgressException";
|
|
225
|
+
$fault = "client";
|
|
226
|
+
constructor(opts) {
|
|
227
|
+
super({
|
|
228
|
+
name: "UpdateInProgressException",
|
|
229
|
+
$fault: "client",
|
|
230
|
+
...opts,
|
|
231
|
+
});
|
|
232
|
+
Object.setPrototypeOf(this, UpdateInProgressException.prototype);
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
class NamespaceNotFoundException extends ECSServiceException {
|
|
236
|
+
name = "NamespaceNotFoundException";
|
|
237
|
+
$fault = "client";
|
|
238
|
+
constructor(opts) {
|
|
239
|
+
super({
|
|
240
|
+
name: "NamespaceNotFoundException",
|
|
241
|
+
$fault: "client",
|
|
242
|
+
...opts,
|
|
243
|
+
});
|
|
244
|
+
Object.setPrototypeOf(this, NamespaceNotFoundException.prototype);
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
class ClusterContainsCapacityProviderException extends ECSServiceException {
|
|
248
|
+
name = "ClusterContainsCapacityProviderException";
|
|
249
|
+
$fault = "client";
|
|
250
|
+
constructor(opts) {
|
|
251
|
+
super({
|
|
252
|
+
name: "ClusterContainsCapacityProviderException",
|
|
253
|
+
$fault: "client",
|
|
254
|
+
...opts,
|
|
255
|
+
});
|
|
256
|
+
Object.setPrototypeOf(this, ClusterContainsCapacityProviderException.prototype);
|
|
257
|
+
}
|
|
258
|
+
}
|
|
259
|
+
class ClusterContainsContainerInstancesException extends ECSServiceException {
|
|
260
|
+
name = "ClusterContainsContainerInstancesException";
|
|
261
|
+
$fault = "client";
|
|
262
|
+
constructor(opts) {
|
|
263
|
+
super({
|
|
264
|
+
name: "ClusterContainsContainerInstancesException",
|
|
265
|
+
$fault: "client",
|
|
266
|
+
...opts,
|
|
267
|
+
});
|
|
268
|
+
Object.setPrototypeOf(this, ClusterContainsContainerInstancesException.prototype);
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
class ClusterContainsServicesException extends ECSServiceException {
|
|
272
|
+
name = "ClusterContainsServicesException";
|
|
273
|
+
$fault = "client";
|
|
274
|
+
constructor(opts) {
|
|
275
|
+
super({
|
|
276
|
+
name: "ClusterContainsServicesException",
|
|
277
|
+
$fault: "client",
|
|
278
|
+
...opts,
|
|
279
|
+
});
|
|
280
|
+
Object.setPrototypeOf(this, ClusterContainsServicesException.prototype);
|
|
281
|
+
}
|
|
282
|
+
}
|
|
283
|
+
class ClusterContainsTasksException extends ECSServiceException {
|
|
284
|
+
name = "ClusterContainsTasksException";
|
|
285
|
+
$fault = "client";
|
|
286
|
+
constructor(opts) {
|
|
287
|
+
super({
|
|
288
|
+
name: "ClusterContainsTasksException",
|
|
289
|
+
$fault: "client",
|
|
290
|
+
...opts,
|
|
291
|
+
});
|
|
292
|
+
Object.setPrototypeOf(this, ClusterContainsTasksException.prototype);
|
|
293
|
+
}
|
|
294
|
+
}
|
|
295
|
+
class TargetNotConnectedException extends ECSServiceException {
|
|
296
|
+
name = "TargetNotConnectedException";
|
|
297
|
+
$fault = "client";
|
|
298
|
+
constructor(opts) {
|
|
299
|
+
super({
|
|
300
|
+
name: "TargetNotConnectedException",
|
|
301
|
+
$fault: "client",
|
|
302
|
+
...opts,
|
|
303
|
+
});
|
|
304
|
+
Object.setPrototypeOf(this, TargetNotConnectedException.prototype);
|
|
305
|
+
}
|
|
306
|
+
}
|
|
307
|
+
class ResourceInUseException extends ECSServiceException {
|
|
308
|
+
name = "ResourceInUseException";
|
|
309
|
+
$fault = "client";
|
|
310
|
+
constructor(opts) {
|
|
311
|
+
super({
|
|
312
|
+
name: "ResourceInUseException",
|
|
313
|
+
$fault: "client",
|
|
314
|
+
...opts,
|
|
315
|
+
});
|
|
316
|
+
Object.setPrototypeOf(this, ResourceInUseException.prototype);
|
|
317
|
+
}
|
|
318
|
+
}
|
|
319
|
+
class TargetNotFoundException extends ECSServiceException {
|
|
320
|
+
name = "TargetNotFoundException";
|
|
321
|
+
$fault = "client";
|
|
322
|
+
constructor(opts) {
|
|
323
|
+
super({
|
|
324
|
+
name: "TargetNotFoundException",
|
|
325
|
+
$fault: "client",
|
|
326
|
+
...opts,
|
|
327
|
+
});
|
|
328
|
+
Object.setPrototypeOf(this, TargetNotFoundException.prototype);
|
|
329
|
+
}
|
|
330
|
+
}
|
|
331
|
+
class ServiceNotFoundException extends ECSServiceException {
|
|
332
|
+
name = "ServiceNotFoundException";
|
|
333
|
+
$fault = "client";
|
|
334
|
+
constructor(opts) {
|
|
335
|
+
super({
|
|
336
|
+
name: "ServiceNotFoundException",
|
|
337
|
+
$fault: "client",
|
|
338
|
+
...opts,
|
|
339
|
+
});
|
|
340
|
+
Object.setPrototypeOf(this, ServiceNotFoundException.prototype);
|
|
341
|
+
}
|
|
342
|
+
}
|
|
343
|
+
class AttributeLimitExceededException extends ECSServiceException {
|
|
344
|
+
name = "AttributeLimitExceededException";
|
|
345
|
+
$fault = "client";
|
|
346
|
+
constructor(opts) {
|
|
347
|
+
super({
|
|
348
|
+
name: "AttributeLimitExceededException",
|
|
349
|
+
$fault: "client",
|
|
350
|
+
...opts,
|
|
351
|
+
});
|
|
352
|
+
Object.setPrototypeOf(this, AttributeLimitExceededException.prototype);
|
|
353
|
+
}
|
|
354
|
+
}
|
|
355
|
+
class MissingVersionException extends ECSServiceException {
|
|
356
|
+
name = "MissingVersionException";
|
|
357
|
+
$fault = "client";
|
|
358
|
+
constructor(opts) {
|
|
359
|
+
super({
|
|
360
|
+
name: "MissingVersionException",
|
|
361
|
+
$fault: "client",
|
|
362
|
+
...opts,
|
|
363
|
+
});
|
|
364
|
+
Object.setPrototypeOf(this, MissingVersionException.prototype);
|
|
365
|
+
}
|
|
366
|
+
}
|
|
367
|
+
class NoUpdateAvailableException extends ECSServiceException {
|
|
368
|
+
name = "NoUpdateAvailableException";
|
|
369
|
+
$fault = "client";
|
|
370
|
+
constructor(opts) {
|
|
371
|
+
super({
|
|
372
|
+
name: "NoUpdateAvailableException",
|
|
373
|
+
$fault: "client",
|
|
374
|
+
...opts,
|
|
375
|
+
});
|
|
376
|
+
Object.setPrototypeOf(this, NoUpdateAvailableException.prototype);
|
|
377
|
+
}
|
|
378
|
+
}
|
|
379
|
+
class ServiceDeploymentNotFoundException extends ECSServiceException {
|
|
380
|
+
name = "ServiceDeploymentNotFoundException";
|
|
381
|
+
$fault = "client";
|
|
382
|
+
constructor(opts) {
|
|
383
|
+
super({
|
|
384
|
+
name: "ServiceDeploymentNotFoundException",
|
|
385
|
+
$fault: "client",
|
|
386
|
+
...opts,
|
|
387
|
+
});
|
|
388
|
+
Object.setPrototypeOf(this, ServiceDeploymentNotFoundException.prototype);
|
|
389
|
+
}
|
|
390
|
+
}
|
|
391
|
+
class PlatformUnknownException extends ECSServiceException {
|
|
392
|
+
name = "PlatformUnknownException";
|
|
393
|
+
$fault = "client";
|
|
394
|
+
constructor(opts) {
|
|
395
|
+
super({
|
|
396
|
+
name: "PlatformUnknownException",
|
|
397
|
+
$fault: "client",
|
|
398
|
+
...opts,
|
|
399
|
+
});
|
|
400
|
+
Object.setPrototypeOf(this, PlatformUnknownException.prototype);
|
|
401
|
+
}
|
|
402
|
+
}
|
|
403
|
+
class DaemonNotActiveException extends ECSServiceException {
|
|
404
|
+
name = "DaemonNotActiveException";
|
|
405
|
+
$fault = "client";
|
|
406
|
+
constructor(opts) {
|
|
407
|
+
super({
|
|
408
|
+
name: "DaemonNotActiveException",
|
|
409
|
+
$fault: "client",
|
|
410
|
+
...opts,
|
|
411
|
+
});
|
|
412
|
+
Object.setPrototypeOf(this, DaemonNotActiveException.prototype);
|
|
413
|
+
}
|
|
414
|
+
}
|
|
415
|
+
class DaemonNotFoundException extends ECSServiceException {
|
|
416
|
+
name = "DaemonNotFoundException";
|
|
417
|
+
$fault = "client";
|
|
418
|
+
constructor(opts) {
|
|
419
|
+
super({
|
|
420
|
+
name: "DaemonNotFoundException",
|
|
421
|
+
$fault: "client",
|
|
422
|
+
...opts,
|
|
423
|
+
});
|
|
424
|
+
Object.setPrototypeOf(this, DaemonNotFoundException.prototype);
|
|
425
|
+
}
|
|
426
|
+
}
|
|
427
|
+
class PlatformTaskDefinitionIncompatibilityException extends ECSServiceException {
|
|
428
|
+
name = "PlatformTaskDefinitionIncompatibilityException";
|
|
429
|
+
$fault = "client";
|
|
430
|
+
constructor(opts) {
|
|
431
|
+
super({
|
|
432
|
+
name: "PlatformTaskDefinitionIncompatibilityException",
|
|
433
|
+
$fault: "client",
|
|
434
|
+
...opts,
|
|
435
|
+
});
|
|
436
|
+
Object.setPrototypeOf(this, PlatformTaskDefinitionIncompatibilityException.prototype);
|
|
437
|
+
}
|
|
438
|
+
}
|
|
439
|
+
class ServiceNotActiveException extends ECSServiceException {
|
|
440
|
+
name = "ServiceNotActiveException";
|
|
441
|
+
$fault = "client";
|
|
442
|
+
constructor(opts) {
|
|
443
|
+
super({
|
|
444
|
+
name: "ServiceNotActiveException",
|
|
445
|
+
$fault: "client",
|
|
446
|
+
...opts,
|
|
447
|
+
});
|
|
448
|
+
Object.setPrototypeOf(this, ServiceNotActiveException.prototype);
|
|
449
|
+
}
|
|
450
|
+
}
|
|
451
|
+
class ResourceNotFoundException extends ECSServiceException {
|
|
452
|
+
name = "ResourceNotFoundException";
|
|
453
|
+
$fault = "client";
|
|
454
|
+
constructor(opts) {
|
|
455
|
+
super({
|
|
456
|
+
name: "ResourceNotFoundException",
|
|
457
|
+
$fault: "client",
|
|
458
|
+
...opts,
|
|
459
|
+
});
|
|
460
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
461
|
+
}
|
|
462
|
+
}
|
|
463
|
+
class ConflictException extends ECSServiceException {
|
|
464
|
+
name = "ConflictException";
|
|
465
|
+
$fault = "client";
|
|
466
|
+
resourceIds;
|
|
467
|
+
constructor(opts) {
|
|
468
|
+
super({
|
|
469
|
+
name: "ConflictException",
|
|
470
|
+
$fault: "client",
|
|
471
|
+
...opts,
|
|
472
|
+
});
|
|
473
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
474
|
+
this.resourceIds = opts.resourceIds;
|
|
475
|
+
}
|
|
476
|
+
}
|
|
477
|
+
class TaskSetNotFoundException extends ECSServiceException {
|
|
478
|
+
name = "TaskSetNotFoundException";
|
|
479
|
+
$fault = "client";
|
|
480
|
+
constructor(opts) {
|
|
481
|
+
super({
|
|
482
|
+
name: "TaskSetNotFoundException",
|
|
483
|
+
$fault: "client",
|
|
484
|
+
...opts,
|
|
485
|
+
});
|
|
486
|
+
Object.setPrototypeOf(this, TaskSetNotFoundException.prototype);
|
|
487
|
+
}
|
|
488
|
+
}
|
|
489
|
+
class BlockedException extends ECSServiceException {
|
|
490
|
+
name = "BlockedException";
|
|
491
|
+
$fault = "client";
|
|
492
|
+
constructor(opts) {
|
|
493
|
+
super({
|
|
494
|
+
name: "BlockedException",
|
|
495
|
+
$fault: "client",
|
|
496
|
+
...opts,
|
|
497
|
+
});
|
|
498
|
+
Object.setPrototypeOf(this, BlockedException.prototype);
|
|
499
|
+
}
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
const _A = "Attachment";
|
|
503
|
+
const _AC = "AdvancedConfiguration";
|
|
504
|
+
const _ACR = "AcceleratorCountRequest";
|
|
505
|
+
const _AD = "AttachmentDetails";
|
|
506
|
+
const _ADE = "AccessDeniedException";
|
|
507
|
+
const _AIT = "AllowedInstanceType";
|
|
508
|
+
const _AITS = "AllowedInstanceTypeSet";
|
|
509
|
+
const _ALEE = "AttributeLimitExceededException";
|
|
510
|
+
const _AM = "AcceleratorManufacturer";
|
|
511
|
+
const _AMS = "AcceleratorManufacturerSet";
|
|
512
|
+
const _AN = "AcceleratorName";
|
|
513
|
+
const _ANS = "AcceleratorNameSet";
|
|
514
|
+
const _ARC = "AutoRepairConfiguration";
|
|
515
|
+
const _ASC = "AttachmentStateChange";
|
|
516
|
+
const _ASCt = "AttachmentStateChanges";
|
|
517
|
+
const _ASGP = "AutoScalingGroupProvider";
|
|
518
|
+
const _ASGPU = "AutoScalingGroupProviderUpdate";
|
|
519
|
+
const _AT = "AcceleratorType";
|
|
520
|
+
const _ATMMBR = "AcceleratorTotalMemoryMiBRequest";
|
|
521
|
+
const _ATS = "AcceleratorTypeSet";
|
|
522
|
+
const _AVC = "AwsVpcConfiguration";
|
|
523
|
+
const _At = "Attribute";
|
|
524
|
+
const _Att = "Attachments";
|
|
525
|
+
const _Attr = "Attributes";
|
|
526
|
+
const _BE = "BlockedException";
|
|
527
|
+
const _BEBMR = "BaselineEbsBandwidthMbpsRequest";
|
|
528
|
+
const _C = "Cluster";
|
|
529
|
+
const _CA = "CreatedAt";
|
|
530
|
+
const _CC = "CanaryConfiguration";
|
|
531
|
+
const _CCCIE = "ClusterContainsContainerInstancesException";
|
|
532
|
+
const _CCCPE = "ClusterContainsCapacityProviderException";
|
|
533
|
+
const _CCP = "CreateCapacityProvider";
|
|
534
|
+
const _CCPR = "CreateCapacityProviderRequest";
|
|
535
|
+
const _CCPRr = "CreateCapacityProviderResponse";
|
|
536
|
+
const _CCR = "CreateClusterRequest";
|
|
537
|
+
const _CCRr = "CreateClusterResponse";
|
|
538
|
+
const _CCSE = "ClusterContainsServicesException";
|
|
539
|
+
const _CCTE = "ClusterContainsTasksException";
|
|
540
|
+
const _CCl = "ClusterConfiguration";
|
|
541
|
+
const _CCr = "CreateCluster";
|
|
542
|
+
const _CD = "ContainerDefinition";
|
|
543
|
+
const _CDR = "CreateDaemonRequest";
|
|
544
|
+
const _CDRr = "CreateDaemonResponse";
|
|
545
|
+
const _CDo = "ContainerDependency";
|
|
546
|
+
const _CDon = "ContainerDefinitions";
|
|
547
|
+
const _CDont = "ContainerDependencies";
|
|
548
|
+
const _CDr = "CreateDaemon";
|
|
549
|
+
const _CE = "ClientException";
|
|
550
|
+
const _CEGS = "CreateExpressGatewayService";
|
|
551
|
+
const _CEGSR = "CreateExpressGatewayServiceRequest";
|
|
552
|
+
const _CEGSRr = "CreateExpressGatewayServiceResponse";
|
|
553
|
+
const _CEo = "ConflictException";
|
|
554
|
+
const _CI = "ContainerImage";
|
|
555
|
+
const _CIHS = "ContainerInstanceHealthStatus";
|
|
556
|
+
const _CIo = "ContainerInstance";
|
|
557
|
+
const _CIon = "ContainerImages";
|
|
558
|
+
const _CIont = "ContainerInstances";
|
|
559
|
+
const _CM = "CpuManufacturer";
|
|
560
|
+
const _CMIPC = "CreateManagedInstancesProviderConfiguration";
|
|
561
|
+
const _CMS = "CpuManufacturerSet";
|
|
562
|
+
const _CNFE = "ClusterNotFoundException";
|
|
563
|
+
const _CO = "ContainerOverride";
|
|
564
|
+
const _COo = "ContainerOverrides";
|
|
565
|
+
const _CP = "CapacityProvider";
|
|
566
|
+
const _CPS = "CapacityProviderStrategy";
|
|
567
|
+
const _CPSI = "CapacityProviderStrategyItem";
|
|
568
|
+
const _CPa = "CapacityProviders";
|
|
569
|
+
const _CRP = "ContainerRestartPolicy";
|
|
570
|
+
const _CRR = "CapacityReservationRequest";
|
|
571
|
+
const _CS = "ClusterSetting";
|
|
572
|
+
const _CSC = "ContainerStateChange";
|
|
573
|
+
const _CSCD = "ClusterServiceConnectDefaults";
|
|
574
|
+
const _CSCDR = "ClusterServiceConnectDefaultsRequest";
|
|
575
|
+
const _CSCo = "ContainerStateChanges";
|
|
576
|
+
const _CSD = "ContinueServiceDeployment";
|
|
577
|
+
const _CSDR = "ContinueServiceDeploymentRequest";
|
|
578
|
+
const _CSDRo = "ContinueServiceDeploymentResponse";
|
|
579
|
+
const _CSR = "CreateServiceRequest";
|
|
580
|
+
const _CSRr = "CreateServiceResponse";
|
|
581
|
+
const _CSl = "ClusterSettings";
|
|
582
|
+
const _CSr = "CreateService";
|
|
583
|
+
const _CTS = "CreateTaskSet";
|
|
584
|
+
const _CTSR = "CreateTaskSetRequest";
|
|
585
|
+
const _CTSRr = "CreateTaskSetResponse";
|
|
586
|
+
const _Cl = "Clusters";
|
|
587
|
+
const _Co = "Container";
|
|
588
|
+
const _Con = "Containers";
|
|
589
|
+
const _D = "Deployment";
|
|
590
|
+
const _DA = "DeploymentAlarms";
|
|
591
|
+
const _DAC = "DaemonAlarmConfiguration";
|
|
592
|
+
const _DAR = "DeleteAttributesRequest";
|
|
593
|
+
const _DARe = "DeleteAttributesResponse";
|
|
594
|
+
const _DAS = "DeleteAccountSetting";
|
|
595
|
+
const _DASR = "DeleteAccountSettingRequest";
|
|
596
|
+
const _DASRe = "DeleteAccountSettingResponse";
|
|
597
|
+
const _DAe = "DeleteAttributes";
|
|
598
|
+
const _DC = "DeploymentConfiguration";
|
|
599
|
+
const _DCB = "DaemonCircuitBreaker";
|
|
600
|
+
const _DCBe = "DeploymentCircuitBreaker";
|
|
601
|
+
const _DCD = "DaemonContainerDefinition";
|
|
602
|
+
const _DCDL = "DaemonContainerDefinitionList";
|
|
603
|
+
const _DCI = "DaemonContainerImage";
|
|
604
|
+
const _DCIR = "DeregisterContainerInstanceRequest";
|
|
605
|
+
const _DCIRe = "DeregisterContainerInstanceResponse";
|
|
606
|
+
const _DCIRes = "DescribeContainerInstancesRequest";
|
|
607
|
+
const _DCIResc = "DescribeContainerInstancesResponse";
|
|
608
|
+
const _DCIa = "DaemonContainerImages";
|
|
609
|
+
const _DCIe = "DeregisterContainerInstance";
|
|
610
|
+
const _DCIes = "DescribeContainerInstances";
|
|
611
|
+
const _DCP = "DaemonCapacityProvider";
|
|
612
|
+
const _DCPL = "DaemonCapacityProviderList";
|
|
613
|
+
const _DCPR = "DeleteCapacityProviderRequest";
|
|
614
|
+
const _DCPRe = "DeleteCapacityProviderResponse";
|
|
615
|
+
const _DCPRes = "DescribeCapacityProvidersRequest";
|
|
616
|
+
const _DCPResc = "DescribeCapacityProvidersResponse";
|
|
617
|
+
const _DCPe = "DeleteCapacityProvider";
|
|
618
|
+
const _DCPes = "DescribeCapacityProviders";
|
|
619
|
+
const _DCR = "DeleteClusterRequest";
|
|
620
|
+
const _DCRe = "DeleteClusterResponse";
|
|
621
|
+
const _DCRes = "DescribeClustersRequest";
|
|
622
|
+
const _DCResc = "DescribeClustersResponse";
|
|
623
|
+
const _DCe = "DeploymentController";
|
|
624
|
+
const _DCel = "DeleteCluster";
|
|
625
|
+
const _DCes = "DescribeClusters";
|
|
626
|
+
const _DD = "DaemonDeployment";
|
|
627
|
+
const _DDA = "DaemonDeploymentAlarms";
|
|
628
|
+
const _DDC = "DaemonDeploymentConfiguration";
|
|
629
|
+
const _DDCP = "DaemonDeploymentCapacityProvider";
|
|
630
|
+
const _DDCPL = "DaemonDeploymentCapacityProviderList";
|
|
631
|
+
const _DDD = "DescribeDaemonDeployments";
|
|
632
|
+
const _DDDR = "DescribeDaemonDeploymentsRequest";
|
|
633
|
+
const _DDDRe = "DescribeDaemonDeploymentsResponse";
|
|
634
|
+
const _DDL = "DaemonDeploymentList";
|
|
635
|
+
const _DDR = "DeleteDaemonRequest";
|
|
636
|
+
const _DDRD = "DaemonDeploymentRevisionDetail";
|
|
637
|
+
const _DDRDL = "DaemonDeploymentRevisionDetailList";
|
|
638
|
+
const _DDRR = "DescribeDaemonRevisionsRequest";
|
|
639
|
+
const _DDRRe = "DescribeDaemonRevisionsResponse";
|
|
640
|
+
const _DDRe = "DeleteDaemonResponse";
|
|
641
|
+
const _DDRes = "DescribeDaemonRequest";
|
|
642
|
+
const _DDResc = "DescribeDaemonResponse";
|
|
643
|
+
const _DDRescr = "DescribeDaemonRevisions";
|
|
644
|
+
const _DDS = "DaemonDeploymentSummary";
|
|
645
|
+
const _DDSL = "DaemonDeploymentSummaryList";
|
|
646
|
+
const _DDTD = "DeleteDaemonTaskDefinition";
|
|
647
|
+
const _DDTDR = "DeleteDaemonTaskDefinitionRequest";
|
|
648
|
+
const _DDTDRe = "DeleteDaemonTaskDefinitionResponse";
|
|
649
|
+
const _DDTDRes = "DescribeDaemonTaskDefinitionRequest";
|
|
650
|
+
const _DDTDResc = "DescribeDaemonTaskDefinitionResponse";
|
|
651
|
+
const _DDTDe = "DescribeDaemonTaskDefinition";
|
|
652
|
+
const _DDa = "DaemonDetail";
|
|
653
|
+
const _DDe = "DeleteDaemon";
|
|
654
|
+
const _DDes = "DescribeDaemon";
|
|
655
|
+
const _DEGS = "DeleteExpressGatewayService";
|
|
656
|
+
const _DEGSR = "DeleteExpressGatewayServiceRequest";
|
|
657
|
+
const _DEGSRe = "DeleteExpressGatewayServiceResponse";
|
|
658
|
+
const _DEGSRes = "DescribeExpressGatewayServiceRequest";
|
|
659
|
+
const _DEGSResc = "DescribeExpressGatewayServiceResponse";
|
|
660
|
+
const _DEGSe = "DescribeExpressGatewayService";
|
|
661
|
+
const _DES = "DeploymentEphemeralStorage";
|
|
662
|
+
const _DL = "DevicesList";
|
|
663
|
+
const _DLH = "DeploymentLifecycleHook";
|
|
664
|
+
const _DLHD = "DeploymentLifecycleHookDetail";
|
|
665
|
+
const _DLHDL = "DeploymentLifecycleHookDetailList";
|
|
666
|
+
const _DLHL = "DeploymentLifecycleHookList";
|
|
667
|
+
const _DLHTC = "DeploymentLifecycleHookTimeoutConfiguration";
|
|
668
|
+
const _DLP = "DaemonLinuxParameters";
|
|
669
|
+
const _DNAE = "DaemonNotActiveException";
|
|
670
|
+
const _DNFE = "DaemonNotFoundException";
|
|
671
|
+
const _DPE = "DiscoverPollEndpoint";
|
|
672
|
+
const _DPER = "DiscoverPollEndpointRequest";
|
|
673
|
+
const _DPERi = "DiscoverPollEndpointResponse";
|
|
674
|
+
const _DR = "DaemonRevision";
|
|
675
|
+
const _DRD = "DaemonRevisionDetail";
|
|
676
|
+
const _DRDL = "DaemonRevisionDetailList";
|
|
677
|
+
const _DRa = "DaemonRollback";
|
|
678
|
+
const _DRae = "DaemonRevisions";
|
|
679
|
+
const _DS = "DaemonSummary";
|
|
680
|
+
const _DSD = "DescribeServiceDeployments";
|
|
681
|
+
const _DSDR = "DescribeServiceDeploymentsRequest";
|
|
682
|
+
const _DSDRe = "DescribeServiceDeploymentsResponse";
|
|
683
|
+
const _DSL = "DaemonSummariesList";
|
|
684
|
+
const _DSR = "DeleteServiceRequest";
|
|
685
|
+
const _DSRR = "DescribeServiceRevisionsRequest";
|
|
686
|
+
const _DSRRe = "DescribeServiceRevisionsResponse";
|
|
687
|
+
const _DSRe = "DeleteServiceResponse";
|
|
688
|
+
const _DSRes = "DescribeServicesRequest";
|
|
689
|
+
const _DSResc = "DescribeServicesResponse";
|
|
690
|
+
const _DSRescr = "DescribeServiceRevisions";
|
|
691
|
+
const _DSe = "DeleteService";
|
|
692
|
+
const _DSes = "DescribeServices";
|
|
693
|
+
const _DT = "DescribeTasks";
|
|
694
|
+
const _DTD = "DaemonTaskDefinition";
|
|
695
|
+
const _DTDR = "DeleteTaskDefinitionsRequest";
|
|
696
|
+
const _DTDRe = "DeleteTaskDefinitionsResponse";
|
|
697
|
+
const _DTDRer = "DeregisterTaskDefinitionRequest";
|
|
698
|
+
const _DTDRere = "DeregisterTaskDefinitionResponse";
|
|
699
|
+
const _DTDRes = "DescribeTaskDefinitionRequest";
|
|
700
|
+
const _DTDResc = "DescribeTaskDefinitionResponse";
|
|
701
|
+
const _DTDS = "DaemonTaskDefinitionSummary";
|
|
702
|
+
const _DTDSa = "DaemonTaskDefinitionSummaries";
|
|
703
|
+
const _DTDe = "DeleteTaskDefinitions";
|
|
704
|
+
const _DTDer = "DeregisterTaskDefinition";
|
|
705
|
+
const _DTDes = "DescribeTaskDefinition";
|
|
706
|
+
const _DTR = "DescribeTasksRequest";
|
|
707
|
+
const _DTRe = "DescribeTasksResponse";
|
|
708
|
+
const _DTS = "DeleteTaskSet";
|
|
709
|
+
const _DTSR = "DeleteTaskSetRequest";
|
|
710
|
+
const _DTSRe = "DeleteTaskSetResponse";
|
|
711
|
+
const _DTSRes = "DescribeTaskSetsRequest";
|
|
712
|
+
const _DTSResc = "DescribeTaskSetsResponse";
|
|
713
|
+
const _DTSe = "DescribeTaskSets";
|
|
714
|
+
const _DV = "DaemonVolume";
|
|
715
|
+
const _DVC = "DockerVolumeConfiguration";
|
|
716
|
+
const _DVL = "DaemonVolumeList";
|
|
717
|
+
const _De = "Device";
|
|
718
|
+
const _Dep = "Deployments";
|
|
719
|
+
const _EBSTS = "EBSTagSpecification";
|
|
720
|
+
const _EBSTSa = "EBSTagSpecifications";
|
|
721
|
+
const _EC = "ExecuteCommand";
|
|
722
|
+
const _ECC = "ExecuteCommandConfiguration";
|
|
723
|
+
const _ECLC = "ExecuteCommandLogConfiguration";
|
|
724
|
+
const _ECR = "ExecuteCommandRequest";
|
|
725
|
+
const _ECRx = "ExecuteCommandResponse";
|
|
726
|
+
const _ECSEGS = "ECSExpressGatewayService";
|
|
727
|
+
const _ECSMR = "ECSManagedResources";
|
|
728
|
+
const _EF = "EnvironmentFile";
|
|
729
|
+
const _EFSAC = "EFSAuthorizationConfig";
|
|
730
|
+
const _EFSVC = "EFSVolumeConfiguration";
|
|
731
|
+
const _EFn = "EnvironmentFiles";
|
|
732
|
+
const _EGC = "ExpressGatewayContainer";
|
|
733
|
+
const _EGRC = "ExpressGatewayRepositoryCredentials";
|
|
734
|
+
const _EGSALC = "ExpressGatewayServiceAwsLogsConfiguration";
|
|
735
|
+
const _EGSC = "ExpressGatewayServiceConfiguration";
|
|
736
|
+
const _EGSCx = "ExpressGatewayServiceConfigurations";
|
|
737
|
+
const _EGSNC = "ExpressGatewayServiceNetworkConfiguration";
|
|
738
|
+
const _EGSS = "ExpressGatewayServiceStatus";
|
|
739
|
+
const _EGST = "ExpressGatewayScalingTarget";
|
|
740
|
+
const _EIT = "ExcludedInstanceType";
|
|
741
|
+
const _EITS = "ExcludedInstanceTypeSet";
|
|
742
|
+
const _ES = "EphemeralStorage";
|
|
743
|
+
const _EV = "EnvironmentVariables";
|
|
744
|
+
const _F = "Failure";
|
|
745
|
+
const _FC = "FirelensConfiguration";
|
|
746
|
+
const _FSWFSAC = "FSxWindowsFileServerAuthorizationConfig";
|
|
747
|
+
const _FSWFSVC = "FSxWindowsFileServerVolumeConfiguration";
|
|
748
|
+
const _Fa = "Failures";
|
|
749
|
+
const _GTP = "GetTaskProtection";
|
|
750
|
+
const _GTPR = "GetTaskProtectionRequest";
|
|
751
|
+
const _GTPRe = "GetTaskProtectionResponse";
|
|
752
|
+
const _HC = "HealthCheck";
|
|
753
|
+
const _HE = "HostEntry";
|
|
754
|
+
const _HEL = "HostEntryList";
|
|
755
|
+
const _HVP = "HostVolumeProperties";
|
|
756
|
+
const _IA = "InferenceAccelerator";
|
|
757
|
+
const _IAO = "InferenceAcceleratorOverride";
|
|
758
|
+
const _IAOn = "InferenceAcceleratorOverrides";
|
|
759
|
+
const _IAn = "InferenceAccelerators";
|
|
760
|
+
const _IG = "InstanceGeneration";
|
|
761
|
+
const _IGS = "InstanceGenerationSet";
|
|
762
|
+
const _IHCR = "InstanceHealthCheckResult";
|
|
763
|
+
const _IHCRL = "InstanceHealthCheckResultList";
|
|
764
|
+
const _ILT = "InstanceLaunchTemplate";
|
|
765
|
+
const _ILTU = "InstanceLaunchTemplateUpdate";
|
|
766
|
+
const _IO = "InfrastructureOptimization";
|
|
767
|
+
const _IPE = "InvalidParameterException";
|
|
768
|
+
const _IPS = "IngressPathSummary";
|
|
769
|
+
const _IPSn = "IngressPathSummaries";
|
|
770
|
+
const _IRR = "InstanceRequirementsRequest";
|
|
771
|
+
const _KC = "KernelCapabilities";
|
|
772
|
+
const _KVP = "KeyValuePair";
|
|
773
|
+
const _LA = "ListAttributes";
|
|
774
|
+
const _LAR = "ListAttributesRequest";
|
|
775
|
+
const _LARi = "ListAttributesResponse";
|
|
776
|
+
const _LAS = "ListAccountSettings";
|
|
777
|
+
const _LASR = "ListAccountSettingsRequest";
|
|
778
|
+
const _LASRi = "ListAccountSettingsResponse";
|
|
779
|
+
const _LB = "LoadBalancer";
|
|
780
|
+
const _LBo = "LoadBalancers";
|
|
781
|
+
const _LC = "LinearConfiguration";
|
|
782
|
+
const _LCI = "ListContainerInstances";
|
|
783
|
+
const _LCIR = "ListContainerInstancesRequest";
|
|
784
|
+
const _LCIRi = "ListContainerInstancesResponse";
|
|
785
|
+
const _LCR = "ListClustersRequest";
|
|
786
|
+
const _LCRi = "ListClustersResponse";
|
|
787
|
+
const _LCi = "ListClusters";
|
|
788
|
+
const _LCo = "LogConfiguration";
|
|
789
|
+
const _LD = "ListDaemons";
|
|
790
|
+
const _LDD = "ListDaemonDeployments";
|
|
791
|
+
const _LDDR = "ListDaemonDeploymentsRequest";
|
|
792
|
+
const _LDDRi = "ListDaemonDeploymentsResponse";
|
|
793
|
+
const _LDR = "ListDaemonsRequest";
|
|
794
|
+
const _LDRi = "ListDaemonsResponse";
|
|
795
|
+
const _LDTD = "ListDaemonTaskDefinitions";
|
|
796
|
+
const _LDTDR = "ListDaemonTaskDefinitionsRequest";
|
|
797
|
+
const _LDTDRi = "ListDaemonTaskDefinitionsResponse";
|
|
798
|
+
const _LEE = "LimitExceededException";
|
|
799
|
+
const _LP = "LinuxParameters";
|
|
800
|
+
const _LS = "ListServices";
|
|
801
|
+
const _LSBN = "ListServicesByNamespace";
|
|
802
|
+
const _LSBNR = "ListServicesByNamespaceRequest";
|
|
803
|
+
const _LSBNRi = "ListServicesByNamespaceResponse";
|
|
804
|
+
const _LSD = "ListServiceDeployments";
|
|
805
|
+
const _LSDR = "ListServiceDeploymentsRequest";
|
|
806
|
+
const _LSDRi = "ListServiceDeploymentsResponse";
|
|
807
|
+
const _LSR = "ListServicesRequest";
|
|
808
|
+
const _LSRi = "ListServicesResponse";
|
|
809
|
+
const _LST = "LocalStorageType";
|
|
810
|
+
const _LSTS = "LocalStorageTypeSet";
|
|
811
|
+
const _LT = "ListTasks";
|
|
812
|
+
const _LTD = "ListTaskDefinitions";
|
|
813
|
+
const _LTDF = "ListTaskDefinitionFamilies";
|
|
814
|
+
const _LTDFR = "ListTaskDefinitionFamiliesRequest";
|
|
815
|
+
const _LTDFRi = "ListTaskDefinitionFamiliesResponse";
|
|
816
|
+
const _LTDR = "ListTaskDefinitionsRequest";
|
|
817
|
+
const _LTDRi = "ListTaskDefinitionsResponse";
|
|
818
|
+
const _LTFR = "ListTagsForResource";
|
|
819
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
820
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
821
|
+
const _LTR = "ListTasksRequest";
|
|
822
|
+
const _LTRi = "ListTasksResponse";
|
|
823
|
+
const _MA = "ManagedAgent";
|
|
824
|
+
const _MAASP = "ManagedApplicationAutoScalingPolicy";
|
|
825
|
+
const _MAASPa = "ManagedApplicationAutoScalingPolicies";
|
|
826
|
+
const _MAS = "ManagedAutoScaling";
|
|
827
|
+
const _MASC = "ManagedAgentStateChange";
|
|
828
|
+
const _MASCa = "ManagedAgentStateChanges";
|
|
829
|
+
const _MAa = "ManagedAgents";
|
|
830
|
+
const _MC = "ManagedCertificate";
|
|
831
|
+
const _MCL = "MetricConfigurationList";
|
|
832
|
+
const _MCe = "MetricConfiguration";
|
|
833
|
+
const _MCo = "MonitoringConfiguration";
|
|
834
|
+
const _MGBPVCR = "MemoryGiBPerVCpuRequest";
|
|
835
|
+
const _MILSC = "ManagedInstancesLocalStorageConfiguration";
|
|
836
|
+
const _MINC = "ManagedInstancesNetworkConfiguration";
|
|
837
|
+
const _MIP = "ManagedIngressPath";
|
|
838
|
+
const _MIPa = "ManagedInstancesProvider";
|
|
839
|
+
const _MIPan = "ManagedIngressPaths";
|
|
840
|
+
const _MISC = "ManagedInstancesStorageConfiguration";
|
|
841
|
+
const _ML = "ManagedListener";
|
|
842
|
+
const _MLB = "ManagedLoadBalancer";
|
|
843
|
+
const _MLG = "ManagedLogGroup";
|
|
844
|
+
const _MLGa = "ManagedLogGroups";
|
|
845
|
+
const _MLR = "ManagedListenerRule";
|
|
846
|
+
const _MMA = "ManagedMetricAlarm";
|
|
847
|
+
const _MMAa = "ManagedMetricAlarms";
|
|
848
|
+
const _MMBR = "MemoryMiBRequest";
|
|
849
|
+
const _MP = "MountPoint";
|
|
850
|
+
const _MPL = "MountPointList";
|
|
851
|
+
const _MS = "ManagedScaling";
|
|
852
|
+
const _MSC = "ManagedStorageConfiguration";
|
|
853
|
+
const _MSG = "ManagedSecurityGroup";
|
|
854
|
+
const _MSGa = "ManagedSecurityGroups";
|
|
855
|
+
const _MST = "ManagedScalableTarget";
|
|
856
|
+
const _MTG = "ManagedTargetGroup";
|
|
857
|
+
const _MTGa = "ManagedTargetGroups";
|
|
858
|
+
const _MVE = "MissingVersionException";
|
|
859
|
+
const _NB = "NetworkBinding";
|
|
860
|
+
const _NBGR = "NetworkBandwidthGbpsRequest";
|
|
861
|
+
const _NBe = "NetworkBindings";
|
|
862
|
+
const _NC = "NetworkConfiguration";
|
|
863
|
+
const _NI = "NetworkInterface";
|
|
864
|
+
const _NICR = "NetworkInterfaceCountRequest";
|
|
865
|
+
const _NIe = "NetworkInterfaces";
|
|
866
|
+
const _NNFE = "NamespaceNotFoundException";
|
|
867
|
+
const _NUAE = "NoUpdateAvailableException";
|
|
868
|
+
const _PA = "PutAttributes";
|
|
869
|
+
const _PAR = "PutAttributesRequest";
|
|
870
|
+
const _PARu = "PutAttributesResponse";
|
|
871
|
+
const _PAS = "PutAccountSetting";
|
|
872
|
+
const _PASD = "PutAccountSettingDefault";
|
|
873
|
+
const _PASDR = "PutAccountSettingDefaultRequest";
|
|
874
|
+
const _PASDRu = "PutAccountSettingDefaultResponse";
|
|
875
|
+
const _PASR = "PutAccountSettingRequest";
|
|
876
|
+
const _PASRu = "PutAccountSettingResponse";
|
|
877
|
+
const _PC = "PlacementConstraint";
|
|
878
|
+
const _PCCP = "PutClusterCapacityProviders";
|
|
879
|
+
const _PCCPR = "PutClusterCapacityProvidersRequest";
|
|
880
|
+
const _PCCPRu = "PutClusterCapacityProvidersResponse";
|
|
881
|
+
const _PCP = "ProxyConfigurationProperties";
|
|
882
|
+
const _PCl = "PlacementConstraints";
|
|
883
|
+
const _PCr = "ProxyConfiguration";
|
|
884
|
+
const _PD = "PlatformDevice";
|
|
885
|
+
const _PDl = "PlatformDevices";
|
|
886
|
+
const _PM = "PortMapping";
|
|
887
|
+
const _PML = "PortMappingList";
|
|
888
|
+
const _PS = "PlacementStrategy";
|
|
889
|
+
const _PSl = "PlacementStrategies";
|
|
890
|
+
const _PT = "ProtectedTask";
|
|
891
|
+
const _PTDIE = "PlatformTaskDefinitionIncompatibilityException";
|
|
892
|
+
const _PTr = "ProtectedTasks";
|
|
893
|
+
const _PUE = "PlatformUnknownException";
|
|
894
|
+
const _R = "Resource";
|
|
895
|
+
const _RA = "RequiresAttributes";
|
|
896
|
+
const _RC = "RepositoryCredentials";
|
|
897
|
+
const _RCI = "RegisterContainerInstance";
|
|
898
|
+
const _RCIR = "RegisterContainerInstanceRequest";
|
|
899
|
+
const _RCIRe = "RegisterContainerInstanceResponse";
|
|
900
|
+
const _RCe = "ResolvedConfiguration";
|
|
901
|
+
const _RDTD = "RegisterDaemonTaskDefinition";
|
|
902
|
+
const _RDTDR = "RegisterDaemonTaskDefinitionRequest";
|
|
903
|
+
const _RDTDRe = "RegisterDaemonTaskDefinitionResponse";
|
|
904
|
+
const _RIUE = "ResourceInUseException";
|
|
905
|
+
const _RNFE = "ResourceNotFoundException";
|
|
906
|
+
const _RP = "RuntimePlatform";
|
|
907
|
+
const _RR = "ResourceRequirement";
|
|
908
|
+
const _RRe = "ResourceRequirements";
|
|
909
|
+
const _RT = "RunTask";
|
|
910
|
+
const _RTD = "RegisterTaskDefinition";
|
|
911
|
+
const _RTDR = "RegisterTaskDefinitionRequest";
|
|
912
|
+
const _RTDRe = "RegisterTaskDefinitionResponse";
|
|
913
|
+
const _RTR = "RunTaskRequest";
|
|
914
|
+
const _RTRu = "RunTaskResponse";
|
|
915
|
+
const _Re = "Resources";
|
|
916
|
+
const _Ro = "Rollback";
|
|
917
|
+
const _S = "Scale";
|
|
918
|
+
const _SASC = "SubmitAttachmentStateChanges";
|
|
919
|
+
const _SASCR = "SubmitAttachmentStateChangesRequest";
|
|
920
|
+
const _SASCRu = "SubmitAttachmentStateChangesResponse";
|
|
921
|
+
const _SC = "SystemControl";
|
|
922
|
+
const _SCALC = "ServiceConnectAccessLogConfiguration";
|
|
923
|
+
const _SCC = "ServiceConnectConfiguration";
|
|
924
|
+
const _SCCA = "ServiceConnectClientAlias";
|
|
925
|
+
const _SCCAL = "ServiceConnectClientAliasList";
|
|
926
|
+
const _SCRS = "ServiceCurrentRevisionSummary";
|
|
927
|
+
const _SCRSL = "ServiceCurrentRevisionSummaryList";
|
|
928
|
+
const _SCS = "ServiceConnectService";
|
|
929
|
+
const _SCSC = "SubmitContainerStateChange";
|
|
930
|
+
const _SCSCR = "SubmitContainerStateChangeRequest";
|
|
931
|
+
const _SCSCRu = "SubmitContainerStateChangeResponse";
|
|
932
|
+
const _SCSL = "ServiceConnectServiceList";
|
|
933
|
+
const _SCSR = "ServiceConnectServiceResource";
|
|
934
|
+
const _SCSRL = "ServiceConnectServiceResourceList";
|
|
935
|
+
const _SCTC = "ServiceConnectTlsConfiguration";
|
|
936
|
+
const _SCTCA = "ServiceConnectTlsCertificateAuthority";
|
|
937
|
+
const _SCTTHMR = "ServiceConnectTestTrafficHeaderMatchRules";
|
|
938
|
+
const _SCTTHR = "ServiceConnectTestTrafficHeaderRules";
|
|
939
|
+
const _SCTTR = "ServiceConnectTestTrafficRules";
|
|
940
|
+
const _SCy = "SystemControls";
|
|
941
|
+
const _SD = "ServiceDeployment";
|
|
942
|
+
const _SDA = "ServiceDeploymentAlarms";
|
|
943
|
+
const _SDB = "ServiceDeploymentBrief";
|
|
944
|
+
const _SDBe = "ServiceDeploymentsBrief";
|
|
945
|
+
const _SDCB = "ServiceDeploymentCircuitBreaker";
|
|
946
|
+
const _SDNFE = "ServiceDeploymentNotFoundException";
|
|
947
|
+
const _SDe = "ServiceDeployments";
|
|
948
|
+
const _SE = "ServerException";
|
|
949
|
+
const _SEe = "ServiceEvent";
|
|
950
|
+
const _SEer = "ServiceEvents";
|
|
951
|
+
const _SFVC = "S3FilesVolumeConfiguration";
|
|
952
|
+
const _SL = "SecretList";
|
|
953
|
+
const _SMEBSVC = "ServiceManagedEBSVolumeConfiguration";
|
|
954
|
+
const _SNAE = "ServiceNotActiveException";
|
|
955
|
+
const _SNFE = "ServiceNotFoundException";
|
|
956
|
+
const _SR = "ServiceRegistry";
|
|
957
|
+
const _SRLB = "ServiceRevisionLoadBalancer";
|
|
958
|
+
const _SRLBe = "ServiceRevisionLoadBalancers";
|
|
959
|
+
const _SRS = "ServiceRevisionSummary";
|
|
960
|
+
const _SRSL = "ServiceRevisionsSummaryList";
|
|
961
|
+
const _SRe = "ServiceRevision";
|
|
962
|
+
const _SRer = "ServiceRegistries";
|
|
963
|
+
const _SRerv = "ServiceRevisions";
|
|
964
|
+
const _SS = "SensitiveString";
|
|
965
|
+
const _SSD = "StopServiceDeployment";
|
|
966
|
+
const _SSDR = "StopServiceDeploymentRequest";
|
|
967
|
+
const _SSDRt = "StopServiceDeploymentResponse";
|
|
968
|
+
const _ST = "StartTask";
|
|
969
|
+
const _STR = "StartTaskRequest";
|
|
970
|
+
const _STRt = "StartTaskResponse";
|
|
971
|
+
const _STRto = "StopTaskRequest";
|
|
972
|
+
const _STRtop = "StopTaskResponse";
|
|
973
|
+
const _STSC = "SubmitTaskStateChange";
|
|
974
|
+
const _STSCR = "SubmitTaskStateChangeRequest";
|
|
975
|
+
const _STSCRu = "SubmitTaskStateChangeResponse";
|
|
976
|
+
const _STt = "StopTask";
|
|
977
|
+
const _SVC = "ServiceVolumeConfiguration";
|
|
978
|
+
const _SVCe = "ServiceVolumeConfigurations";
|
|
979
|
+
const _Se = "Secret";
|
|
980
|
+
const _Ser = "Service";
|
|
981
|
+
const _Serv = "Services";
|
|
982
|
+
const _Ses = "Session";
|
|
983
|
+
const _Set = "Setting";
|
|
984
|
+
const _Sett = "Settings";
|
|
985
|
+
const _St = "Statistics";
|
|
986
|
+
const _T = "Tag";
|
|
987
|
+
const _TC = "ThresholdConfiguration";
|
|
988
|
+
const _TCi = "TimeoutConfiguration";
|
|
989
|
+
const _TD = "TaskDefinition";
|
|
990
|
+
const _TDL = "TaskDefinitionList";
|
|
991
|
+
const _TDPC = "TaskDefinitionPlacementConstraint";
|
|
992
|
+
const _TDPCa = "TaskDefinitionPlacementConstraints";
|
|
993
|
+
const _TES = "TaskEphemeralStorage";
|
|
994
|
+
const _TL = "TmpfsList";
|
|
995
|
+
const _TLSGBR = "TotalLocalStorageGBRequest";
|
|
996
|
+
const _TMEBSVC = "TaskManagedEBSVolumeConfiguration";
|
|
997
|
+
const _TMEBSVTP = "TaskManagedEBSVolumeTerminationPolicy";
|
|
998
|
+
const _TNCE = "TargetNotConnectedException";
|
|
999
|
+
const _TNFE = "TargetNotFoundException";
|
|
1000
|
+
const _TO = "TaskOverride";
|
|
1001
|
+
const _TR = "TagResource";
|
|
1002
|
+
const _TRR = "TagResourceRequest";
|
|
1003
|
+
const _TRRa = "TagResourceResponse";
|
|
1004
|
+
const _TS = "TaskSet";
|
|
1005
|
+
const _TSNFE = "TaskSetNotFoundException";
|
|
1006
|
+
const _TSa = "TaskSets";
|
|
1007
|
+
const _TVC = "TaskVolumeConfiguration";
|
|
1008
|
+
const _TVCa = "TaskVolumeConfigurations";
|
|
1009
|
+
const _Ta = "Task";
|
|
1010
|
+
const _Tag = "Tags";
|
|
1011
|
+
const _Tas = "Tasks";
|
|
1012
|
+
const _Tm = "Tmpfs";
|
|
1013
|
+
const _U = "Ulimit";
|
|
1014
|
+
const _UC = "UpdateCluster";
|
|
1015
|
+
const _UCA = "UpdateContainerAgent";
|
|
1016
|
+
const _UCAR = "UpdateContainerAgentRequest";
|
|
1017
|
+
const _UCARp = "UpdateContainerAgentResponse";
|
|
1018
|
+
const _UCIS = "UpdateContainerInstancesState";
|
|
1019
|
+
const _UCISR = "UpdateContainerInstancesStateRequest";
|
|
1020
|
+
const _UCISRp = "UpdateContainerInstancesStateResponse";
|
|
1021
|
+
const _UCP = "UpdateCapacityProvider";
|
|
1022
|
+
const _UCPR = "UpdateCapacityProviderRequest";
|
|
1023
|
+
const _UCPRp = "UpdateCapacityProviderResponse";
|
|
1024
|
+
const _UCR = "UpdateClusterRequest";
|
|
1025
|
+
const _UCRp = "UpdateClusterResponse";
|
|
1026
|
+
const _UCS = "UpdateClusterSettings";
|
|
1027
|
+
const _UCSR = "UpdateClusterSettingsRequest";
|
|
1028
|
+
const _UCSRp = "UpdateClusterSettingsResponse";
|
|
1029
|
+
const _UD = "UpdateDaemon";
|
|
1030
|
+
const _UDR = "UpdateDaemonRequest";
|
|
1031
|
+
const _UDRp = "UpdateDaemonResponse";
|
|
1032
|
+
const _UEGS = "UpdatedExpressGatewayService";
|
|
1033
|
+
const _UEGSR = "UpdateExpressGatewayServiceRequest";
|
|
1034
|
+
const _UEGSRp = "UpdateExpressGatewayServiceResponse";
|
|
1035
|
+
const _UEGSp = "UpdateExpressGatewayService";
|
|
1036
|
+
const _UFE = "UnsupportedFeatureException";
|
|
1037
|
+
const _UIPE = "UpdateInProgressException";
|
|
1038
|
+
const _UL = "UlimitList";
|
|
1039
|
+
const _UMIPC = "UpdateManagedInstancesProviderConfiguration";
|
|
1040
|
+
const _UR = "UntagResource";
|
|
1041
|
+
const _URR = "UntagResourceRequest";
|
|
1042
|
+
const _URRn = "UntagResourceResponse";
|
|
1043
|
+
const _US = "UpdateService";
|
|
1044
|
+
const _USPTS = "UpdateServicePrimaryTaskSet";
|
|
1045
|
+
const _USPTSR = "UpdateServicePrimaryTaskSetRequest";
|
|
1046
|
+
const _USPTSRp = "UpdateServicePrimaryTaskSetResponse";
|
|
1047
|
+
const _USR = "UpdateServiceRequest";
|
|
1048
|
+
const _USRp = "UpdateServiceResponse";
|
|
1049
|
+
const _UTP = "UpdateTaskProtection";
|
|
1050
|
+
const _UTPR = "UpdateTaskProtectionRequest";
|
|
1051
|
+
const _UTPRp = "UpdateTaskProtectionResponse";
|
|
1052
|
+
const _UTS = "UpdateTaskSet";
|
|
1053
|
+
const _UTSR = "UpdateTaskSetRequest";
|
|
1054
|
+
const _UTSRp = "UpdateTaskSetResponse";
|
|
1055
|
+
const _V = "Volume";
|
|
1056
|
+
const _VCCRR = "VCpuCountRangeRequest";
|
|
1057
|
+
const _VF = "VolumeFrom";
|
|
1058
|
+
const _VFL = "VolumeFromList";
|
|
1059
|
+
const _VI = "VersionInfo";
|
|
1060
|
+
const _VL = "VolumeList";
|
|
1061
|
+
const _VLC = "VpcLatticeConfiguration";
|
|
1062
|
+
const _VLCp = "VpcLatticeConfigurations";
|
|
1063
|
+
const _a = "attachments";
|
|
1064
|
+
const _aA = "attachmentArn";
|
|
1065
|
+
const _aASP = "applicationAutoScalingPolicies";
|
|
1066
|
+
const _aC = "agentConnected";
|
|
1067
|
+
const _aCc = "activeConfigurations";
|
|
1068
|
+
const _aCcc = "acceleratorCount";
|
|
1069
|
+
const _aCd = "advancedConfiguration";
|
|
1070
|
+
const _aCu = "authorizationConfig";
|
|
1071
|
+
const _aCw = "awsvpcConfiguration";
|
|
1072
|
+
const _aH = "agentHash";
|
|
1073
|
+
const _aI = "attachmentId";
|
|
1074
|
+
const _aIT = "allowedInstanceTypes";
|
|
1075
|
+
const _aLC = "awsLogsConfiguration";
|
|
1076
|
+
const _aLCc = "accessLogConfiguration";
|
|
1077
|
+
const _aM = "acceleratorManufacturers";
|
|
1078
|
+
const _aN = "alarmNames";
|
|
1079
|
+
const _aNc = "acceleratorNames";
|
|
1080
|
+
const _aNt = "attributeName";
|
|
1081
|
+
const _aP = "appProtocol";
|
|
1082
|
+
const _aPA = "accessPointArn";
|
|
1083
|
+
const _aPAA = "awsPcaAuthorityArn";
|
|
1084
|
+
const _aPI = "assignPublicIp";
|
|
1085
|
+
const _aPIc = "accessPointId";
|
|
1086
|
+
const _aRC = "autoRepairConfiguration";
|
|
1087
|
+
const _aS = "actionsStatus";
|
|
1088
|
+
const _aSC = "activeServicesCount";
|
|
1089
|
+
const _aSGA = "autoScalingGroupArn";
|
|
1090
|
+
const _aSGP = "autoScalingGroupProvider";
|
|
1091
|
+
const _aSM = "autoScalingMetric";
|
|
1092
|
+
const _aSTV = "autoScalingTargetValue";
|
|
1093
|
+
const _aSt = "attachmentsStatus";
|
|
1094
|
+
const _aSu = "autoScaling";
|
|
1095
|
+
const _aT = "accessType";
|
|
1096
|
+
const _aTGA = "alternateTargetGroupArn";
|
|
1097
|
+
const _aTMMB = "acceleratorTotalMemoryMiB";
|
|
1098
|
+
const _aTc = "acceleratorTypes";
|
|
1099
|
+
const _aUS = "agentUpdateStatus";
|
|
1100
|
+
const _aV = "attributeValue";
|
|
1101
|
+
const _aVg = "agentVersion";
|
|
1102
|
+
const _aZ = "availabilityZone";
|
|
1103
|
+
const _aZR = "availabilityZoneRebalancing";
|
|
1104
|
+
const _ac = "action";
|
|
1105
|
+
const _ack = "acknowledgment";
|
|
1106
|
+
const _ad = "add";
|
|
1107
|
+
const _af = "after";
|
|
1108
|
+
const _al = "alarms";
|
|
1109
|
+
const _ar = "arn";
|
|
1110
|
+
const _at = "attributes";
|
|
1111
|
+
const _au = "autoprovision";
|
|
1112
|
+
const _b = "base";
|
|
1113
|
+
const _bEBM = "baselineEbsBandwidthMbps";
|
|
1114
|
+
const _bIP = "bindIP";
|
|
1115
|
+
const _bM = "bareMetal";
|
|
1116
|
+
const _bP = "burstablePerformance";
|
|
1117
|
+
const _bTIM = "bakeTimeInMinutes";
|
|
1118
|
+
const _be = "before";
|
|
1119
|
+
const _c = "client";
|
|
1120
|
+
const _cA = "clusterArn";
|
|
1121
|
+
const _cAL = "configuredAtLaunch";
|
|
1122
|
+
const _cAl = "clusterArns";
|
|
1123
|
+
const _cAli = "clientAliases";
|
|
1124
|
+
const _cAo = "containerArn";
|
|
1125
|
+
const _cAon = "connectivityAt";
|
|
1126
|
+
const _cAp = "cpuArchitecture";
|
|
1127
|
+
const _cAr = "createdAt";
|
|
1128
|
+
const _cB = "circuitBreaker";
|
|
1129
|
+
const _cBTIM = "canaryBakeTimeInMinutes";
|
|
1130
|
+
const _cBr = "createdBy";
|
|
1131
|
+
const _cC = "canaryConfiguration";
|
|
1132
|
+
const _cD = "containerDefinitions";
|
|
1133
|
+
const _cDC = "computedDesiredCount";
|
|
1134
|
+
const _cDu = "currentDeployment";
|
|
1135
|
+
const _cI = "containerImages";
|
|
1136
|
+
const _cIA = "containerInstanceArn";
|
|
1137
|
+
const _cIAo = "containerInstanceArns";
|
|
1138
|
+
const _cIo = "containerInstance";
|
|
1139
|
+
const _cIon = "containerInstances";
|
|
1140
|
+
const _cM = "cpuManufacturers";
|
|
1141
|
+
const _cN = "clusterName";
|
|
1142
|
+
const _cNo = "containerName";
|
|
1143
|
+
const _cO = "containerOverrides";
|
|
1144
|
+
const _cOT = "capacityOptionType";
|
|
1145
|
+
const _cP = "canaryPercent";
|
|
1146
|
+
const _cPA = "capacityProviderArn";
|
|
1147
|
+
const _cPAa = "capacityProviderArns";
|
|
1148
|
+
const _cPN = "capacityProviderName";
|
|
1149
|
+
const _cPR = "containerPortRange";
|
|
1150
|
+
const _cPS = "capacityProviderStrategy";
|
|
1151
|
+
const _cPa = "capacityProvider";
|
|
1152
|
+
const _cPap = "capacityProviders";
|
|
1153
|
+
const _cPo = "containerPath";
|
|
1154
|
+
const _cPon = "containerPort";
|
|
1155
|
+
const _cPr = "credentialsParameter";
|
|
1156
|
+
const _cR = "currentRevisions";
|
|
1157
|
+
const _cRa = "capacityReservations";
|
|
1158
|
+
const _cS = "credentialSpecs";
|
|
1159
|
+
const _cSD = "currentServiceDeployment";
|
|
1160
|
+
const _cSR = "currentServiceRevisions";
|
|
1161
|
+
const _cT = "clientToken";
|
|
1162
|
+
const _cWEE = "cloudWatchEncryptionEnabled";
|
|
1163
|
+
const _cWLGN = "cloudWatchLogGroupName";
|
|
1164
|
+
const _ca = "capabilities";
|
|
1165
|
+
const _ce = "certificate";
|
|
1166
|
+
const _cl = "cluster";
|
|
1167
|
+
const _clu = "clusters";
|
|
1168
|
+
const _co = "configuration";
|
|
1169
|
+
const _com = "command";
|
|
1170
|
+
const _comp = "compatibilities";
|
|
1171
|
+
const _con = "condition";
|
|
1172
|
+
const _conn = "connectivity";
|
|
1173
|
+
const _cont = "container";
|
|
1174
|
+
const _conta = "containers";
|
|
1175
|
+
const _cou = "count";
|
|
1176
|
+
const _cp = "cpu";
|
|
1177
|
+
const _d = "details";
|
|
1178
|
+
const _dA = "daemonArn";
|
|
1179
|
+
const _dAe = "deploymentArn";
|
|
1180
|
+
const _dAer = "deregisteredAt";
|
|
1181
|
+
const _dAi = "discoveryArn";
|
|
1182
|
+
const _dC = "deploymentConfiguration";
|
|
1183
|
+
const _dCB = "deploymentCircuitBreaker";
|
|
1184
|
+
const _dCPS = "defaultCapacityProviderStrategy";
|
|
1185
|
+
const _dCe = "desiredCount";
|
|
1186
|
+
const _dCep = "deploymentController";
|
|
1187
|
+
const _dD = "daemonDeployments";
|
|
1188
|
+
const _dDA = "daemonDeploymentArn";
|
|
1189
|
+
const _dDAa = "daemonDeploymentArns";
|
|
1190
|
+
const _dIC = "drainingInstanceCount";
|
|
1191
|
+
const _dL = "dockerLabels";
|
|
1192
|
+
const _dN = "disableNetworking";
|
|
1193
|
+
const _dNa = "daemonName";
|
|
1194
|
+
const _dNe = "deviceName";
|
|
1195
|
+
const _dNi = "discoveryName";
|
|
1196
|
+
const _dNn = "dnsName";
|
|
1197
|
+
const _dNo = "domainName";
|
|
1198
|
+
const _dO = "dependsOn";
|
|
1199
|
+
const _dOT = "deleteOnTermination";
|
|
1200
|
+
const _dOr = "driverOpts";
|
|
1201
|
+
const _dP = "drainPercent";
|
|
1202
|
+
const _dR = "daemonRevisions";
|
|
1203
|
+
const _dRA = "daemonRevisionArn";
|
|
1204
|
+
const _dRAa = "daemonRevisionArns";
|
|
1205
|
+
const _dRAe = "deleteRequestedAt";
|
|
1206
|
+
const _dS = "dnsServers";
|
|
1207
|
+
const _dSD = "dnsSearchDomains";
|
|
1208
|
+
const _dSL = "daemonSummariesList";
|
|
1209
|
+
const _dSO = "dockerSecurityOptions";
|
|
1210
|
+
const _dSe = "desiredStatus";
|
|
1211
|
+
const _dT = "deviceType";
|
|
1212
|
+
const _dTD = "daemonTaskDefinition";
|
|
1213
|
+
const _dTDA = "daemonTaskDefinitionArn";
|
|
1214
|
+
const _dTDa = "daemonTaskDefinitions";
|
|
1215
|
+
const _dV = "doubleValue";
|
|
1216
|
+
const _dVC = "dockerVolumeConfiguration";
|
|
1217
|
+
const _dVo = "dockerVersion";
|
|
1218
|
+
const _da = "daemon";
|
|
1219
|
+
const _de = "devices";
|
|
1220
|
+
const _dep = "deployments";
|
|
1221
|
+
const _det = "detail";
|
|
1222
|
+
const _do = "domain";
|
|
1223
|
+
const _dr = "driver";
|
|
1224
|
+
const _dro = "drop";
|
|
1225
|
+
const _e = "error";
|
|
1226
|
+
const _eA = "expiresAt";
|
|
1227
|
+
const _eC = "exitCode";
|
|
1228
|
+
const _eCC = "executeCommandConfiguration";
|
|
1229
|
+
const _eD = "expirationDate";
|
|
1230
|
+
const _eEC = "enableExecuteCommand";
|
|
1231
|
+
const _eECSMT = "enableECSManagedTags";
|
|
1232
|
+
const _eF = "environmentFiles";
|
|
1233
|
+
const _eFI = "enableFaultInjection";
|
|
1234
|
+
const _eH = "extraHosts";
|
|
1235
|
+
const _eI = "externalId";
|
|
1236
|
+
const _eII = "ec2InstanceId";
|
|
1237
|
+
const _eIM = "expiresInMinutes";
|
|
1238
|
+
const _eIPA = "ec2InstanceProfileArn";
|
|
1239
|
+
const _eIT = "excludedInstanceTypes";
|
|
1240
|
+
const _eMR = "ecsManagedResources";
|
|
1241
|
+
const _eP = "entryPoint";
|
|
1242
|
+
const _eRA = "executionRoleArn";
|
|
1243
|
+
const _eS = "effectiveSettings";
|
|
1244
|
+
const _eSA = "executionStoppedAt";
|
|
1245
|
+
const _eSp = "ephemeralStorage";
|
|
1246
|
+
const _eVC = "efsVolumeConfiguration";
|
|
1247
|
+
const _en = "environment";
|
|
1248
|
+
const _ena = "enabled";
|
|
1249
|
+
const _enab = "enable";
|
|
1250
|
+
const _enc = "encrypted";
|
|
1251
|
+
const _end = "endpoint";
|
|
1252
|
+
const _es = "essential";
|
|
1253
|
+
const _ev = "events";
|
|
1254
|
+
const _ex = "expression";
|
|
1255
|
+
const _exa = "exact";
|
|
1256
|
+
const _f = "family";
|
|
1257
|
+
const _fA = "finishedAt";
|
|
1258
|
+
const _fC = "firelensConfiguration";
|
|
1259
|
+
const _fCa = "failureCount";
|
|
1260
|
+
const _fE = "fipsEnabled";
|
|
1261
|
+
const _fES = "fargateEphemeralStorage";
|
|
1262
|
+
const _fESKKI = "fargateEphemeralStorageKmsKeyId";
|
|
1263
|
+
const _fND = "forceNewDeployment";
|
|
1264
|
+
const _fP = "familyPrefix";
|
|
1265
|
+
const _fSA = "fileSystemArn";
|
|
1266
|
+
const _fSI = "fileSystemId";
|
|
1267
|
+
const _fT = "failedTasks";
|
|
1268
|
+
const _fTi = "filesystemType";
|
|
1269
|
+
const _fWFSVC = "fsxWindowsFileServerVolumeConfiguration";
|
|
1270
|
+
const _fa = "failures";
|
|
1271
|
+
const _fam = "families";
|
|
1272
|
+
const _fi = "filter";
|
|
1273
|
+
const _fie = "field";
|
|
1274
|
+
const _fo = "force";
|
|
1275
|
+
const _for = "format";
|
|
1276
|
+
const _g = "group";
|
|
1277
|
+
const _gDE = "guardDutyEnabled";
|
|
1278
|
+
const _gI = "gpuIds";
|
|
1279
|
+
const _h = "hostname";
|
|
1280
|
+
const _hC = "healthCheck";
|
|
1281
|
+
const _hCGPS = "healthCheckGracePeriodSeconds";
|
|
1282
|
+
const _hCP = "healthCheckPath";
|
|
1283
|
+
const _hCPe = "healthCheckPort";
|
|
1284
|
+
const _hD = "hookDetails";
|
|
1285
|
+
const _hE = "httpError";
|
|
1286
|
+
const _hI = "hookId";
|
|
1287
|
+
const _hL = "hardLimit";
|
|
1288
|
+
const _hP = "hostPath";
|
|
1289
|
+
const _hPR = "hostPortRange";
|
|
1290
|
+
const _hPo = "hostPort";
|
|
1291
|
+
const _hS = "healthStatus";
|
|
1292
|
+
const _hTA = "hookTargetArn";
|
|
1293
|
+
const _he = "header";
|
|
1294
|
+
const _ho = "host";
|
|
1295
|
+
const _i = "id";
|
|
1296
|
+
const _iA = "ipAddress";
|
|
1297
|
+
const _iAO = "inferenceAcceleratorOverrides";
|
|
1298
|
+
const _iAn = "inferenceAccelerators";
|
|
1299
|
+
const _iAp = "ipv6Address";
|
|
1300
|
+
const _iCA = "issuerCertificateAuthority";
|
|
1301
|
+
const _iD = "imageDigest";
|
|
1302
|
+
const _iEC = "ignoredExitCodes";
|
|
1303
|
+
const _iG = "instanceGenerations";
|
|
1304
|
+
const _iID = "instanceIdentityDocument";
|
|
1305
|
+
const _iIDS = "instanceIdentityDocumentSignature";
|
|
1306
|
+
const _iLT = "instanceLaunchTemplate";
|
|
1307
|
+
const _iM = "ipcMode";
|
|
1308
|
+
const _iMTP = "instanceMetadataTagsPropagation";
|
|
1309
|
+
const _iO = "infrastructureOptimization";
|
|
1310
|
+
const _iP = "ingressPaths";
|
|
1311
|
+
const _iPE = "initProcessEnabled";
|
|
1312
|
+
const _iPO = "ingressPortOverride";
|
|
1313
|
+
const _iQP = "includeQueryParameters";
|
|
1314
|
+
const _iR = "instanceRequirements";
|
|
1315
|
+
const _iRA = "infrastructureRoleArn";
|
|
1316
|
+
const _iTS = "idleTimeoutSeconds";
|
|
1317
|
+
const _iV = "integerValue";
|
|
1318
|
+
const _iWP = "instanceWarmupPeriod";
|
|
1319
|
+
const _ia = "iam";
|
|
1320
|
+
const _im = "image";
|
|
1321
|
+
const _in = "interactive";
|
|
1322
|
+
const _inc = "include";
|
|
1323
|
+
const _int = "interval";
|
|
1324
|
+
const _io = "iops";
|
|
1325
|
+
const _it = "item";
|
|
1326
|
+
const _k = "key";
|
|
1327
|
+
const _kK = "kmsKey";
|
|
1328
|
+
const _kKI = "kmsKeyId";
|
|
1329
|
+
const _l = "links";
|
|
1330
|
+
const _lB = "loadBalancers";
|
|
1331
|
+
const _lBN = "loadBalancerName";
|
|
1332
|
+
const _lBSG = "loadBalancerSecurityGroups";
|
|
1333
|
+
const _lBo = "loadBalancer";
|
|
1334
|
+
const _lC = "logConfiguration";
|
|
1335
|
+
const _lCi = "linearConfiguration";
|
|
1336
|
+
const _lD = "logDriver";
|
|
1337
|
+
const _lG = "logGroups";
|
|
1338
|
+
const _lGN = "logGroupName";
|
|
1339
|
+
const _lGo = "logGroup";
|
|
1340
|
+
const _lH = "lifecycleHooks";
|
|
1341
|
+
const _lHD = "lifecycleHookDetails";
|
|
1342
|
+
const _lP = "linuxParameters";
|
|
1343
|
+
const _lS = "lastStatus";
|
|
1344
|
+
const _lSA = "lastStartedAt";
|
|
1345
|
+
const _lSC = "lastStatusChange";
|
|
1346
|
+
const _lSCo = "localStorageConfiguration";
|
|
1347
|
+
const _lSP = "logStreamPrefix";
|
|
1348
|
+
const _lST = "localStorageTypes";
|
|
1349
|
+
const _lSi = "lifecycleStages";
|
|
1350
|
+
const _lSif = "lifecycleStage";
|
|
1351
|
+
const _lSo = "localStorage";
|
|
1352
|
+
const _lT = "launchType";
|
|
1353
|
+
const _lU = "lastUpdated";
|
|
1354
|
+
const _lV = "longValue";
|
|
1355
|
+
const _la = "labels";
|
|
1356
|
+
const _li = "listener";
|
|
1357
|
+
const _lo = "logging";
|
|
1358
|
+
const _m = "message";
|
|
1359
|
+
const _mA = "managedAgents";
|
|
1360
|
+
const _mAN = "managedAgentName";
|
|
1361
|
+
const _mAe = "metricAlarms";
|
|
1362
|
+
const _mC = "minCapacity";
|
|
1363
|
+
const _mCa = "maxCapacity";
|
|
1364
|
+
const _mCe = "metricConfigurations";
|
|
1365
|
+
const _mD = "managedDraining";
|
|
1366
|
+
const _mEBSV = "managedEBSVolume";
|
|
1367
|
+
const _mGBPVC = "memoryGiBPerVCpu";
|
|
1368
|
+
const _mHP = "minimumHealthyPercent";
|
|
1369
|
+
const _mIP = "managedInstancesProvider";
|
|
1370
|
+
const _mMB = "memoryMiB";
|
|
1371
|
+
const _mN = "metricNames";
|
|
1372
|
+
const _mO = "mountOptions";
|
|
1373
|
+
const _mP = "mountPoints";
|
|
1374
|
+
const _mPa = "maximumPercent";
|
|
1375
|
+
const _mR = "memoryReservation";
|
|
1376
|
+
const _mRa = "maxResults";
|
|
1377
|
+
const _mS = "managedScaling";
|
|
1378
|
+
const _mSC = "managedStorageConfiguration";
|
|
1379
|
+
const _mSPAPOOODP = "maxSpotPriceAsPercentageOfOptimalOnDemandPrice";
|
|
1380
|
+
const _mSSS = "minimumScalingStepSize";
|
|
1381
|
+
const _mSSSa = "maximumScalingStepSize";
|
|
1382
|
+
const _mSa = "maxSwap";
|
|
1383
|
+
const _mTC = "minTaskCount";
|
|
1384
|
+
const _mTCa = "maxTaskCount";
|
|
1385
|
+
const _mTP = "managedTerminationProtection";
|
|
1386
|
+
const _ma = "max";
|
|
1387
|
+
const _me = "memory";
|
|
1388
|
+
const _met = "metric";
|
|
1389
|
+
const _mi = "min";
|
|
1390
|
+
const _mo = "monitoring";
|
|
1391
|
+
const _n = "name";
|
|
1392
|
+
const _nB = "networkBindings";
|
|
1393
|
+
const _nBG = "networkBandwidthGbps";
|
|
1394
|
+
const _nC = "networkConfiguration";
|
|
1395
|
+
const _nDI = "neuronDeviceIds";
|
|
1396
|
+
const _nI = "networkInterfaces";
|
|
1397
|
+
const _nIC = "networkInterfaceCount";
|
|
1398
|
+
const _nM = "networkMode";
|
|
1399
|
+
const _nT = "nextToken";
|
|
1400
|
+
const _na = "namespace";
|
|
1401
|
+
const _o = "options";
|
|
1402
|
+
const _oDMPPOLP = "onDemandMaxPricePercentageOverLowestPrice";
|
|
1403
|
+
const _oS = "overallStatus";
|
|
1404
|
+
const _oSF = "operatingSystemFamily";
|
|
1405
|
+
const _ov = "overrides";
|
|
1406
|
+
const _p = "privileged";
|
|
1407
|
+
const _pA = "principalArn";
|
|
1408
|
+
const _pC = "primaryContainer";
|
|
1409
|
+
const _pCe = "pendingCount";
|
|
1410
|
+
const _pCl = "placementConstraints";
|
|
1411
|
+
const _pCr = "proxyConfiguration";
|
|
1412
|
+
const _pD = "platformDevices";
|
|
1413
|
+
const _pE = "protectionEnabled";
|
|
1414
|
+
const _pF = "platformFamily";
|
|
1415
|
+
const _pIA = "privateIpv4Address";
|
|
1416
|
+
const _pLR = "productionListenerRule";
|
|
1417
|
+
const _pM = "portMappings";
|
|
1418
|
+
const _pMi = "pidMode";
|
|
1419
|
+
const _pN = "portName";
|
|
1420
|
+
const _pRTS = "perRequestTimeoutSeconds";
|
|
1421
|
+
const _pS = "placementStrategy";
|
|
1422
|
+
const _pSA = "pullStartedAt";
|
|
1423
|
+
const _pSAu = "pullStoppedAt";
|
|
1424
|
+
const _pT = "pseudoTerminal";
|
|
1425
|
+
const _pTC = "pendingTasksCount";
|
|
1426
|
+
const _pTCe = "pendingTaskCount";
|
|
1427
|
+
const _pTS = "primaryTaskSet";
|
|
1428
|
+
const _pTo = "policyType";
|
|
1429
|
+
const _pTr = "propagateTags";
|
|
1430
|
+
const _pTro = "protectedTasks";
|
|
1431
|
+
const _pV = "platformVersion";
|
|
1432
|
+
const _pe = "permissions";
|
|
1433
|
+
const _po = "port";
|
|
1434
|
+
const _pr = "protocol";
|
|
1435
|
+
const _pro = "properties";
|
|
1436
|
+
const _r = "reason";
|
|
1437
|
+
const _rA = "roleArn";
|
|
1438
|
+
const _rAP = "restartAttemptPeriod";
|
|
1439
|
+
const _rAe = "registeredAt";
|
|
1440
|
+
const _rAeg = "registryArn";
|
|
1441
|
+
const _rAeq = "requiresAttributes";
|
|
1442
|
+
const _rAes = "resourceArn";
|
|
1443
|
+
const _rB = "registeredBy";
|
|
1444
|
+
const _rC = "repositoryCredentials";
|
|
1445
|
+
const _rCIC = "registeredContainerInstancesCount";
|
|
1446
|
+
const _rCP = "rollbackCapacityProviders";
|
|
1447
|
+
const _rCe = "requiresCompatibilities";
|
|
1448
|
+
const _rCes = "resolvedConfiguration";
|
|
1449
|
+
const _rCu = "runningCount";
|
|
1450
|
+
const _rD = "rootDirectory";
|
|
1451
|
+
const _rGA = "reservationGroupArn";
|
|
1452
|
+
const _rHS = "requireHibernateSupport";
|
|
1453
|
+
const _rI = "resourceIds";
|
|
1454
|
+
const _rIC = "runningInstanceCount";
|
|
1455
|
+
const _rIe = "referenceId";
|
|
1456
|
+
const _rIu = "runtimeId";
|
|
1457
|
+
const _rMT = "resourceManagementType";
|
|
1458
|
+
const _rO = "readOnly";
|
|
1459
|
+
const _rOHT = "resetOnHealthyTask";
|
|
1460
|
+
const _rP = "reservationPreference";
|
|
1461
|
+
const _rPTW = "requestedProductionTrafficWeight";
|
|
1462
|
+
const _rPe = "restartPolicy";
|
|
1463
|
+
const _rPu = "runtimePlatform";
|
|
1464
|
+
const _rR = "resourceRequirements";
|
|
1465
|
+
const _rRF = "readonlyRootFilesystem";
|
|
1466
|
+
const _rRe = "remainingResources";
|
|
1467
|
+
const _rReg = "registeredResources";
|
|
1468
|
+
const _rS = "rolloutState";
|
|
1469
|
+
const _rSR = "rolloutStateReason";
|
|
1470
|
+
const _rSe = "resolutionSeconds";
|
|
1471
|
+
const _rT = "resourceType";
|
|
1472
|
+
const _rTC = "runningTasksCount";
|
|
1473
|
+
const _rTCe = "requestedTaskCount";
|
|
1474
|
+
const _rTCu = "runningTaskCount";
|
|
1475
|
+
const _rTDRA = "rollbackTargetDaemonRevisionArn";
|
|
1476
|
+
const _rTTW = "requestedTestTrafficWeight";
|
|
1477
|
+
const _re = "revision";
|
|
1478
|
+
const _ret = "retries";
|
|
1479
|
+
const _ro = "role";
|
|
1480
|
+
const _rol = "rollback";
|
|
1481
|
+
const _ru = "rule";
|
|
1482
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.ecs";
|
|
1483
|
+
const _sA = "startedAt";
|
|
1484
|
+
const _sAe = "serviceArn";
|
|
1485
|
+
const _sAer = "serviceArns";
|
|
1486
|
+
const _sAt = "stoppedAt";
|
|
1487
|
+
const _sAto = "stoppingAt";
|
|
1488
|
+
const _sB = "startedBy";
|
|
1489
|
+
const _sBN = "s3BucketName";
|
|
1490
|
+
const _sBTIM = "stepBakeTimeInMinutes";
|
|
1491
|
+
const _sC = "systemControls";
|
|
1492
|
+
const _sCC = "serviceConnectConfiguration";
|
|
1493
|
+
const _sCD = "serviceConnectDefaults";
|
|
1494
|
+
const _sCE = "serviceConnectEndpoint";
|
|
1495
|
+
const _sCR = "serviceConnectResources";
|
|
1496
|
+
const _sCo = "sourceContainer";
|
|
1497
|
+
const _sCt = "statusCode";
|
|
1498
|
+
const _sCto = "storageConfiguration";
|
|
1499
|
+
const _sCtop = "stopCode";
|
|
1500
|
+
const _sD = "serviceDeployments";
|
|
1501
|
+
const _sDA = "serviceDeploymentArn";
|
|
1502
|
+
const _sDAe = "serviceDeploymentArns";
|
|
1503
|
+
const _sDR = "sourceDaemonRevisions";
|
|
1504
|
+
const _sEE = "s3EncryptionEnabled";
|
|
1505
|
+
const _sG = "securityGroups";
|
|
1506
|
+
const _sGI = "securityGroupIds";
|
|
1507
|
+
const _sI = "subnetIds";
|
|
1508
|
+
const _sIA = "scaleInAfter";
|
|
1509
|
+
const _sIGB = "sizeInGiB";
|
|
1510
|
+
const _sIe = "sessionId";
|
|
1511
|
+
const _sIn = "snapshotId";
|
|
1512
|
+
const _sKP = "s3KeyPrefix";
|
|
1513
|
+
const _sL = "softLimit";
|
|
1514
|
+
const _sMPPOLP = "spotMaxPricePercentageOverLowestPrice";
|
|
1515
|
+
const _sMS = "sharedMemorySize";
|
|
1516
|
+
const _sN = "serviceName";
|
|
1517
|
+
const _sO = "secretOptions";
|
|
1518
|
+
const _sP = "startPeriod";
|
|
1519
|
+
const _sPo = "sourcePath";
|
|
1520
|
+
const _sPt = "stepPercent";
|
|
1521
|
+
const _sR = "statusReason";
|
|
1522
|
+
const _sRA = "serviceRevisionArns";
|
|
1523
|
+
const _sRAe = "serviceRevisionArn";
|
|
1524
|
+
const _sRe = "serviceRegistries";
|
|
1525
|
+
const _sRer = "serviceRevisions";
|
|
1526
|
+
const _sRt = "stoppedReason";
|
|
1527
|
+
const _sS = "schedulingStrategy";
|
|
1528
|
+
const _sSA = "stabilityStatusAt";
|
|
1529
|
+
const _sSG = "serviceSecurityGroups";
|
|
1530
|
+
const _sSGB = "storageSizeGiB";
|
|
1531
|
+
const _sSR = "sourceServiceRevisions";
|
|
1532
|
+
const _sSV = "stringSetValue";
|
|
1533
|
+
const _sSt = "stabilityStatus";
|
|
1534
|
+
const _sT = "startTimeout";
|
|
1535
|
+
const _sTc = "scalingTarget";
|
|
1536
|
+
const _sTca = "scalableTarget";
|
|
1537
|
+
const _sTt = "stopTimeout";
|
|
1538
|
+
const _sTto = "stopType";
|
|
1539
|
+
const _sU = "streamUrl";
|
|
1540
|
+
const _sV = "sourceVolume";
|
|
1541
|
+
const _sVC = "s3filesVolumeConfiguration";
|
|
1542
|
+
const _sc = "scale";
|
|
1543
|
+
const _sch = "scheme";
|
|
1544
|
+
const _sco = "scope";
|
|
1545
|
+
const _se = "server";
|
|
1546
|
+
const _sec = "secrets";
|
|
1547
|
+
const _ser = "service";
|
|
1548
|
+
const _serv = "services";
|
|
1549
|
+
const _ses = "session";
|
|
1550
|
+
const _set = "settings";
|
|
1551
|
+
const _sett = "setting";
|
|
1552
|
+
const _si = "size";
|
|
1553
|
+
const _so = "sort";
|
|
1554
|
+
const _st = "status";
|
|
1555
|
+
const _sta = "statistics";
|
|
1556
|
+
const _str = "strategy";
|
|
1557
|
+
const _su = "subnets";
|
|
1558
|
+
const _sw = "swappiness";
|
|
1559
|
+
const _t = "type";
|
|
1560
|
+
const _tA = "taskArn";
|
|
1561
|
+
const _tAN = "triggeredAlarmNames";
|
|
1562
|
+
const _tAa = "targetArn";
|
|
1563
|
+
const _tAas = "taskArns";
|
|
1564
|
+
const _tAi = "timeoutAction";
|
|
1565
|
+
const _tC = "thresholdConfiguration";
|
|
1566
|
+
const _tCa = "targetCapacity";
|
|
1567
|
+
const _tCar = "targetConfiguration";
|
|
1568
|
+
const _tCi = "timeoutConfiguration";
|
|
1569
|
+
const _tD = "taskDefinition";
|
|
1570
|
+
const _tDA = "taskDefinitionArn";
|
|
1571
|
+
const _tDAa = "taskDefinitionArns";
|
|
1572
|
+
const _tDIC = "totalDrainingInstanceCount";
|
|
1573
|
+
const _tDR = "targetDaemonRevision";
|
|
1574
|
+
const _tDRA = "targetDaemonRevisionArn";
|
|
1575
|
+
const _tDa = "taskDefinitions";
|
|
1576
|
+
const _tE = "telemetryEndpoint";
|
|
1577
|
+
const _tEP = "transitEncryptionPort";
|
|
1578
|
+
const _tEr = "transitEncryption";
|
|
1579
|
+
const _tG = "targetGroups";
|
|
1580
|
+
const _tGA = "targetGroupArn";
|
|
1581
|
+
const _tI = "targetId";
|
|
1582
|
+
const _tIM = "timeoutInMinutes";
|
|
1583
|
+
const _tK = "tagKeys";
|
|
1584
|
+
const _tLR = "testListenerRule";
|
|
1585
|
+
const _tLSGB = "totalLocalStorageGB";
|
|
1586
|
+
const _tP = "terminationPolicy";
|
|
1587
|
+
const _tR = "totalResources";
|
|
1588
|
+
const _tRA = "taskRoleArn";
|
|
1589
|
+
const _tRC = "totalRunningCount";
|
|
1590
|
+
const _tRIC = "totalRunningInstanceCount";
|
|
1591
|
+
const _tS = "taskSet";
|
|
1592
|
+
const _tSA = "taskSetArn";
|
|
1593
|
+
const _tSR = "targetServiceRevision";
|
|
1594
|
+
const _tSRA = "targetServiceRevisionArn";
|
|
1595
|
+
const _tSa = "taskSets";
|
|
1596
|
+
const _tSag = "tagSpecifications";
|
|
1597
|
+
const _tT = "targetType";
|
|
1598
|
+
const _tTR = "testTrafficRules";
|
|
1599
|
+
const _tV = "targetValue";
|
|
1600
|
+
const _tVo = "tokenValue";
|
|
1601
|
+
const _ta = "tags";
|
|
1602
|
+
const _tas = "tasks";
|
|
1603
|
+
const _task = "task";
|
|
1604
|
+
const _th = "threshold";
|
|
1605
|
+
const _thr = "throughput";
|
|
1606
|
+
const _ti = "timeout";
|
|
1607
|
+
const _tl = "tls";
|
|
1608
|
+
const _tm = "tmpfs";
|
|
1609
|
+
const _u = "user";
|
|
1610
|
+
const _uA = "updatedAt";
|
|
1611
|
+
const _uLS = "useLocalStorage";
|
|
1612
|
+
const _uS = "updateStatus";
|
|
1613
|
+
const _uSR = "updateStatusReason";
|
|
1614
|
+
const _ul = "ulimits";
|
|
1615
|
+
const _un = "unit";
|
|
1616
|
+
const _v = "value";
|
|
1617
|
+
const _vC = "versionConsistency";
|
|
1618
|
+
const _vCC = "vCpuCount";
|
|
1619
|
+
const _vCo = "volumeConfigurations";
|
|
1620
|
+
const _vF = "volumesFrom";
|
|
1621
|
+
const _vFa = "valueFrom";
|
|
1622
|
+
const _vI = "versionInfo";
|
|
1623
|
+
const _vIR = "volumeInitializationRate";
|
|
1624
|
+
const _vLC = "vpcLatticeConfigurations";
|
|
1625
|
+
const _vT = "volumeType";
|
|
1626
|
+
const _ve = "version";
|
|
1627
|
+
const _vo = "volumes";
|
|
1628
|
+
const _w = "weight";
|
|
1629
|
+
const _wD = "workingDirectory";
|
|
1630
|
+
const _xN = "xmlName";
|
|
1631
|
+
const n0 = "com.amazonaws.ecs";
|
|
1632
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
1633
|
+
var ECSServiceException$ = [-3, _s, "ECSServiceException", 0, [], []];
|
|
1634
|
+
_s_registry.registerError(ECSServiceException$, ECSServiceException);
|
|
1635
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
1636
|
+
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
1637
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
1638
|
+
[_m],
|
|
1639
|
+
[0]
|
|
1640
|
+
];
|
|
1641
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
1642
|
+
var AttributeLimitExceededException$ = [-3, n0, _ALEE,
|
|
1643
|
+
{ [_e]: _c },
|
|
1644
|
+
[_m],
|
|
1645
|
+
[0]
|
|
1646
|
+
];
|
|
1647
|
+
n0_registry.registerError(AttributeLimitExceededException$, AttributeLimitExceededException);
|
|
1648
|
+
var BlockedException$ = [-3, n0, _BE,
|
|
1649
|
+
{ [_e]: _c },
|
|
1650
|
+
[_m],
|
|
1651
|
+
[0]
|
|
1652
|
+
];
|
|
1653
|
+
n0_registry.registerError(BlockedException$, BlockedException);
|
|
1654
|
+
var ClientException$ = [-3, n0, _CE,
|
|
1655
|
+
{ [_e]: _c },
|
|
1656
|
+
[_m],
|
|
1657
|
+
[0]
|
|
1658
|
+
];
|
|
1659
|
+
n0_registry.registerError(ClientException$, ClientException);
|
|
1660
|
+
var ClusterContainsCapacityProviderException$ = [-3, n0, _CCCPE,
|
|
1661
|
+
{ [_e]: _c },
|
|
1662
|
+
[_m],
|
|
1663
|
+
[0]
|
|
1664
|
+
];
|
|
1665
|
+
n0_registry.registerError(ClusterContainsCapacityProviderException$, ClusterContainsCapacityProviderException);
|
|
1666
|
+
var ClusterContainsContainerInstancesException$ = [-3, n0, _CCCIE,
|
|
1667
|
+
{ [_e]: _c },
|
|
1668
|
+
[_m],
|
|
1669
|
+
[0]
|
|
1670
|
+
];
|
|
1671
|
+
n0_registry.registerError(ClusterContainsContainerInstancesException$, ClusterContainsContainerInstancesException);
|
|
1672
|
+
var ClusterContainsServicesException$ = [-3, n0, _CCSE,
|
|
1673
|
+
{ [_e]: _c },
|
|
1674
|
+
[_m],
|
|
1675
|
+
[0]
|
|
1676
|
+
];
|
|
1677
|
+
n0_registry.registerError(ClusterContainsServicesException$, ClusterContainsServicesException);
|
|
1678
|
+
var ClusterContainsTasksException$ = [-3, n0, _CCTE,
|
|
1679
|
+
{ [_e]: _c },
|
|
1680
|
+
[_m],
|
|
1681
|
+
[0]
|
|
1682
|
+
];
|
|
1683
|
+
n0_registry.registerError(ClusterContainsTasksException$, ClusterContainsTasksException);
|
|
1684
|
+
var ClusterNotFoundException$ = [-3, n0, _CNFE,
|
|
1685
|
+
{ [_e]: _c },
|
|
1686
|
+
[_m],
|
|
1687
|
+
[0]
|
|
1688
|
+
];
|
|
1689
|
+
n0_registry.registerError(ClusterNotFoundException$, ClusterNotFoundException);
|
|
1690
|
+
var ConflictException$ = [-3, n0, _CEo,
|
|
1691
|
+
{ [_e]: _c },
|
|
1692
|
+
[_rI, _m],
|
|
1693
|
+
[64 | 0, 0]
|
|
1694
|
+
];
|
|
1695
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
1696
|
+
var DaemonNotActiveException$ = [-3, n0, _DNAE,
|
|
1697
|
+
{ [_e]: _c },
|
|
1698
|
+
[_m],
|
|
1699
|
+
[0]
|
|
1700
|
+
];
|
|
1701
|
+
n0_registry.registerError(DaemonNotActiveException$, DaemonNotActiveException);
|
|
1702
|
+
var DaemonNotFoundException$ = [-3, n0, _DNFE,
|
|
1703
|
+
{ [_e]: _c },
|
|
1704
|
+
[_m],
|
|
1705
|
+
[0]
|
|
1706
|
+
];
|
|
1707
|
+
n0_registry.registerError(DaemonNotFoundException$, DaemonNotFoundException);
|
|
1708
|
+
var InvalidParameterException$ = [-3, n0, _IPE,
|
|
1709
|
+
{ [_e]: _c },
|
|
1710
|
+
[_m],
|
|
1711
|
+
[0]
|
|
1712
|
+
];
|
|
1713
|
+
n0_registry.registerError(InvalidParameterException$, InvalidParameterException);
|
|
1714
|
+
var LimitExceededException$ = [-3, n0, _LEE,
|
|
1715
|
+
{ [_e]: _c },
|
|
1716
|
+
[_m],
|
|
1717
|
+
[0]
|
|
1718
|
+
];
|
|
1719
|
+
n0_registry.registerError(LimitExceededException$, LimitExceededException);
|
|
1720
|
+
var MissingVersionException$ = [-3, n0, _MVE,
|
|
1721
|
+
{ [_e]: _c },
|
|
1722
|
+
[_m],
|
|
1723
|
+
[0]
|
|
1724
|
+
];
|
|
1725
|
+
n0_registry.registerError(MissingVersionException$, MissingVersionException);
|
|
1726
|
+
var NamespaceNotFoundException$ = [-3, n0, _NNFE,
|
|
1727
|
+
{ [_e]: _c },
|
|
1728
|
+
[_m],
|
|
1729
|
+
[0]
|
|
1730
|
+
];
|
|
1731
|
+
n0_registry.registerError(NamespaceNotFoundException$, NamespaceNotFoundException);
|
|
1732
|
+
var NoUpdateAvailableException$ = [-3, n0, _NUAE,
|
|
1733
|
+
{ [_e]: _c },
|
|
1734
|
+
[_m],
|
|
1735
|
+
[0]
|
|
1736
|
+
];
|
|
1737
|
+
n0_registry.registerError(NoUpdateAvailableException$, NoUpdateAvailableException);
|
|
1738
|
+
var PlatformTaskDefinitionIncompatibilityException$ = [-3, n0, _PTDIE,
|
|
1739
|
+
{ [_e]: _c },
|
|
1740
|
+
[_m],
|
|
1741
|
+
[0]
|
|
1742
|
+
];
|
|
1743
|
+
n0_registry.registerError(PlatformTaskDefinitionIncompatibilityException$, PlatformTaskDefinitionIncompatibilityException);
|
|
1744
|
+
var PlatformUnknownException$ = [-3, n0, _PUE,
|
|
1745
|
+
{ [_e]: _c },
|
|
1746
|
+
[_m],
|
|
1747
|
+
[0]
|
|
1748
|
+
];
|
|
1749
|
+
n0_registry.registerError(PlatformUnknownException$, PlatformUnknownException);
|
|
1750
|
+
var ResourceInUseException$ = [-3, n0, _RIUE,
|
|
1751
|
+
{ [_e]: _c },
|
|
1752
|
+
[_m],
|
|
1753
|
+
[0]
|
|
1754
|
+
];
|
|
1755
|
+
n0_registry.registerError(ResourceInUseException$, ResourceInUseException);
|
|
1756
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
1757
|
+
{ [_e]: _c },
|
|
1758
|
+
[_m],
|
|
1759
|
+
[0]
|
|
1760
|
+
];
|
|
1761
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
1762
|
+
var ServerException$ = [-3, n0, _SE,
|
|
1763
|
+
{ [_e]: _se },
|
|
1764
|
+
[_m],
|
|
1765
|
+
[0]
|
|
1766
|
+
];
|
|
1767
|
+
n0_registry.registerError(ServerException$, ServerException);
|
|
1768
|
+
var ServiceDeploymentNotFoundException$ = [-3, n0, _SDNFE,
|
|
1769
|
+
{ [_e]: _c },
|
|
1770
|
+
[_m],
|
|
1771
|
+
[0]
|
|
1772
|
+
];
|
|
1773
|
+
n0_registry.registerError(ServiceDeploymentNotFoundException$, ServiceDeploymentNotFoundException);
|
|
1774
|
+
var ServiceNotActiveException$ = [-3, n0, _SNAE,
|
|
1775
|
+
{ [_e]: _c },
|
|
1776
|
+
[_m],
|
|
1777
|
+
[0]
|
|
1778
|
+
];
|
|
1779
|
+
n0_registry.registerError(ServiceNotActiveException$, ServiceNotActiveException);
|
|
1780
|
+
var ServiceNotFoundException$ = [-3, n0, _SNFE,
|
|
1781
|
+
{ [_e]: _c },
|
|
1782
|
+
[_m],
|
|
1783
|
+
[0]
|
|
1784
|
+
];
|
|
1785
|
+
n0_registry.registerError(ServiceNotFoundException$, ServiceNotFoundException);
|
|
1786
|
+
var TargetNotConnectedException$ = [-3, n0, _TNCE,
|
|
1787
|
+
{ [_e]: _c },
|
|
1788
|
+
[_m],
|
|
1789
|
+
[0]
|
|
1790
|
+
];
|
|
1791
|
+
n0_registry.registerError(TargetNotConnectedException$, TargetNotConnectedException);
|
|
1792
|
+
var TargetNotFoundException$ = [-3, n0, _TNFE,
|
|
1793
|
+
{ [_e]: _c },
|
|
1794
|
+
[_m],
|
|
1795
|
+
[0]
|
|
1796
|
+
];
|
|
1797
|
+
n0_registry.registerError(TargetNotFoundException$, TargetNotFoundException);
|
|
1798
|
+
var TaskSetNotFoundException$ = [-3, n0, _TSNFE,
|
|
1799
|
+
{ [_e]: _c },
|
|
1800
|
+
[_m],
|
|
1801
|
+
[0]
|
|
1802
|
+
];
|
|
1803
|
+
n0_registry.registerError(TaskSetNotFoundException$, TaskSetNotFoundException);
|
|
1804
|
+
var UnsupportedFeatureException$ = [-3, n0, _UFE,
|
|
1805
|
+
{ [_e]: _c },
|
|
1806
|
+
[_m],
|
|
1807
|
+
[0]
|
|
1808
|
+
];
|
|
1809
|
+
n0_registry.registerError(UnsupportedFeatureException$, UnsupportedFeatureException);
|
|
1810
|
+
var UpdateInProgressException$ = [-3, n0, _UIPE,
|
|
1811
|
+
{ [_e]: _c },
|
|
1812
|
+
[_m],
|
|
1813
|
+
[0]
|
|
1814
|
+
];
|
|
1815
|
+
n0_registry.registerError(UpdateInProgressException$, UpdateInProgressException);
|
|
1816
|
+
const errorTypeRegistries = [
|
|
1817
|
+
_s_registry,
|
|
1818
|
+
n0_registry,
|
|
1819
|
+
];
|
|
1820
|
+
var SensitiveString = [0, n0, _SS, 8, 0];
|
|
1821
|
+
var AcceleratorCountRequest$ = [3, n0, _ACR,
|
|
1822
|
+
0,
|
|
1823
|
+
[_mi, _ma],
|
|
1824
|
+
[1, 1]
|
|
1825
|
+
];
|
|
1826
|
+
var AcceleratorTotalMemoryMiBRequest$ = [3, n0, _ATMMBR,
|
|
1827
|
+
0,
|
|
1828
|
+
[_mi, _ma],
|
|
1829
|
+
[1, 1]
|
|
1830
|
+
];
|
|
1831
|
+
var AdvancedConfiguration$ = [3, n0, _AC,
|
|
1832
|
+
0,
|
|
1833
|
+
[_aTGA, _pLR, _tLR, _rA],
|
|
1834
|
+
[0, 0, 0, 0]
|
|
1835
|
+
];
|
|
1836
|
+
var Attachment$ = [3, n0, _A,
|
|
1837
|
+
0,
|
|
1838
|
+
[_i, _t, _st, _d],
|
|
1839
|
+
[0, 0, 0, () => AttachmentDetails]
|
|
1840
|
+
];
|
|
1841
|
+
var AttachmentStateChange$ = [3, n0, _ASC,
|
|
1842
|
+
0,
|
|
1843
|
+
[_aA, _st],
|
|
1844
|
+
[0, 0], 2
|
|
1845
|
+
];
|
|
1846
|
+
var Attribute$ = [3, n0, _At,
|
|
1847
|
+
0,
|
|
1848
|
+
[_n, _v, _tT, _tI],
|
|
1849
|
+
[0, 0, 0, 0], 1
|
|
1850
|
+
];
|
|
1851
|
+
var AutoRepairConfiguration$ = [3, n0, _ARC,
|
|
1852
|
+
0,
|
|
1853
|
+
[_aS],
|
|
1854
|
+
[0]
|
|
1855
|
+
];
|
|
1856
|
+
var AutoScalingGroupProvider$ = [3, n0, _ASGP,
|
|
1857
|
+
0,
|
|
1858
|
+
[_aSGA, _mS, _mTP, _mD],
|
|
1859
|
+
[0, () => ManagedScaling$, 0, 0], 1
|
|
1860
|
+
];
|
|
1861
|
+
var AutoScalingGroupProviderUpdate$ = [3, n0, _ASGPU,
|
|
1862
|
+
0,
|
|
1863
|
+
[_mS, _mTP, _mD],
|
|
1864
|
+
[() => ManagedScaling$, 0, 0]
|
|
1865
|
+
];
|
|
1866
|
+
var AwsVpcConfiguration$ = [3, n0, _AVC,
|
|
1867
|
+
0,
|
|
1868
|
+
[_su, _sG, _aPI],
|
|
1869
|
+
[64 | 0, 64 | 0, 0], 1
|
|
1870
|
+
];
|
|
1871
|
+
var BaselineEbsBandwidthMbpsRequest$ = [3, n0, _BEBMR,
|
|
1872
|
+
0,
|
|
1873
|
+
[_mi, _ma],
|
|
1874
|
+
[1, 1]
|
|
1875
|
+
];
|
|
1876
|
+
var CanaryConfiguration$ = [3, n0, _CC,
|
|
1877
|
+
0,
|
|
1878
|
+
[_cP, _cBTIM],
|
|
1879
|
+
[1, 1]
|
|
1880
|
+
];
|
|
1881
|
+
var CapacityProvider$ = [3, n0, _CP,
|
|
1882
|
+
0,
|
|
1883
|
+
[_cPA, _n, _cl, _st, _aSGP, _mIP, _uS, _uSR, _ta, _t],
|
|
1884
|
+
[0, 0, 0, 0, () => AutoScalingGroupProvider$, [() => ManagedInstancesProvider$, 0], 0, 0, () => Tags, 0]
|
|
1885
|
+
];
|
|
1886
|
+
var CapacityProviderStrategyItem$ = [3, n0, _CPSI,
|
|
1887
|
+
0,
|
|
1888
|
+
[_cPa, _w, _b],
|
|
1889
|
+
[0, 1, 1], 1
|
|
1890
|
+
];
|
|
1891
|
+
var CapacityReservationRequest$ = [3, n0, _CRR,
|
|
1892
|
+
0,
|
|
1893
|
+
[_rGA, _rP],
|
|
1894
|
+
[0, 0]
|
|
1895
|
+
];
|
|
1896
|
+
var Cluster$ = [3, n0, _C,
|
|
1897
|
+
0,
|
|
1898
|
+
[_cA, _cN, _co, _st, _rCIC, _rTC, _pTC, _aSC, _sta, _ta, _set, _cPap, _dCPS, _a, _aSt, _sCD],
|
|
1899
|
+
[0, 0, () => ClusterConfiguration$, 0, 1, 1, 1, 1, () => Statistics, () => Tags, () => ClusterSettings, 64 | 0, () => CapacityProviderStrategy, () => Attachments, 0, () => ClusterServiceConnectDefaults$]
|
|
1900
|
+
];
|
|
1901
|
+
var ClusterConfiguration$ = [3, n0, _CCl,
|
|
1902
|
+
0,
|
|
1903
|
+
[_eCC, _mSC],
|
|
1904
|
+
[() => ExecuteCommandConfiguration$, () => ManagedStorageConfiguration$]
|
|
1905
|
+
];
|
|
1906
|
+
var ClusterServiceConnectDefaults$ = [3, n0, _CSCD,
|
|
1907
|
+
0,
|
|
1908
|
+
[_na],
|
|
1909
|
+
[0]
|
|
1910
|
+
];
|
|
1911
|
+
var ClusterServiceConnectDefaultsRequest$ = [3, n0, _CSCDR,
|
|
1912
|
+
0,
|
|
1913
|
+
[_na],
|
|
1914
|
+
[0], 1
|
|
1915
|
+
];
|
|
1916
|
+
var ClusterSetting$ = [3, n0, _CS,
|
|
1917
|
+
0,
|
|
1918
|
+
[_n, _v],
|
|
1919
|
+
[0, 0]
|
|
1920
|
+
];
|
|
1921
|
+
var Container$ = [3, n0, _Co,
|
|
1922
|
+
0,
|
|
1923
|
+
[_cAo, _tA, _n, _im, _iD, _rIu, _lS, _eC, _r, _nB, _nI, _hS, _mA, _cp, _me, _mR, _gI, _nDI],
|
|
1924
|
+
[0, 0, 0, 0, 0, 0, 0, 1, 0, () => NetworkBindings, () => NetworkInterfaces, 0, () => ManagedAgents, 0, 0, 0, 64 | 0, 64 | 0]
|
|
1925
|
+
];
|
|
1926
|
+
var ContainerDefinition$ = [3, n0, _CD,
|
|
1927
|
+
0,
|
|
1928
|
+
[_n, _im, _rC, _cp, _me, _mR, _l, _pM, _es, _rPe, _eP, _com, _en, _eF, _mP, _vF, _lP, _sec, _dO, _sT, _sTt, _vC, _h, _u, _wD, _dN, _p, _rRF, _dS, _dSD, _eH, _dSO, _in, _pT, _dL, _ul, _lC, _hC, _sC, _rR, _fC, _cS],
|
|
1929
|
+
[0, 0, [() => RepositoryCredentials$, 0], 1, 1, 1, 64 | 0, () => PortMappingList, 2, () => ContainerRestartPolicy$, 64 | 0, 64 | 0, [() => EnvironmentVariables, 0], () => EnvironmentFiles, () => MountPointList, () => VolumeFromList, () => LinuxParameters$, () => SecretList, () => ContainerDependencies, 1, 1, 0, 0, 0, 0, 2, 2, 2, 64 | 0, 64 | 0, () => HostEntryList, 64 | 0, 2, 2, 128 | 0, () => UlimitList, () => LogConfiguration$, () => HealthCheck$, () => SystemControls, () => ResourceRequirements, () => FirelensConfiguration$, 64 | 0]
|
|
1930
|
+
];
|
|
1931
|
+
var ContainerDependency$ = [3, n0, _CDo,
|
|
1932
|
+
0,
|
|
1933
|
+
[_cNo, _con],
|
|
1934
|
+
[0, 0], 2
|
|
1935
|
+
];
|
|
1936
|
+
var ContainerImage$ = [3, n0, _CI,
|
|
1937
|
+
0,
|
|
1938
|
+
[_cNo, _iD, _im],
|
|
1939
|
+
[0, 0, 0]
|
|
1940
|
+
];
|
|
1941
|
+
var ContainerInstance$ = [3, n0, _CIo,
|
|
1942
|
+
0,
|
|
1943
|
+
[_cIA, _eII, _cPN, _ve, _vI, _rRe, _rReg, _st, _sR, _aC, _rTC, _pTC, _aUS, _at, _rAe, _a, _ta, _hS],
|
|
1944
|
+
[0, 0, 0, 1, () => VersionInfo$, () => Resources, () => Resources, 0, 0, 2, 1, 1, 0, () => Attributes, 4, () => Attachments, () => Tags, () => ContainerInstanceHealthStatus$]
|
|
1945
|
+
];
|
|
1946
|
+
var ContainerInstanceHealthStatus$ = [3, n0, _CIHS,
|
|
1947
|
+
0,
|
|
1948
|
+
[_oS, _d],
|
|
1949
|
+
[0, () => InstanceHealthCheckResultList]
|
|
1950
|
+
];
|
|
1951
|
+
var ContainerOverride$ = [3, n0, _CO,
|
|
1952
|
+
0,
|
|
1953
|
+
[_n, _com, _en, _eF, _cp, _me, _mR, _rR],
|
|
1954
|
+
[0, 64 | 0, [() => EnvironmentVariables, 0], () => EnvironmentFiles, 1, 1, 1, () => ResourceRequirements]
|
|
1955
|
+
];
|
|
1956
|
+
var ContainerRestartPolicy$ = [3, n0, _CRP,
|
|
1957
|
+
0,
|
|
1958
|
+
[_ena, _iEC, _rAP],
|
|
1959
|
+
[2, 64 | 1, 1], 1
|
|
1960
|
+
];
|
|
1961
|
+
var ContainerStateChange$ = [3, n0, _CSC,
|
|
1962
|
+
0,
|
|
1963
|
+
[_cNo, _iD, _rIu, _eC, _nB, _r, _st],
|
|
1964
|
+
[0, 0, 0, 1, () => NetworkBindings, 0, 0]
|
|
1965
|
+
];
|
|
1966
|
+
var ContinueServiceDeploymentRequest$ = [3, n0, _CSDR,
|
|
1967
|
+
0,
|
|
1968
|
+
[_sDA, _hI, _ac],
|
|
1969
|
+
[0, 0, 0], 2
|
|
1970
|
+
];
|
|
1971
|
+
var ContinueServiceDeploymentResponse$ = [3, n0, _CSDRo,
|
|
1972
|
+
0,
|
|
1973
|
+
[_sDA],
|
|
1974
|
+
[0]
|
|
1975
|
+
];
|
|
1976
|
+
var CreateCapacityProviderRequest$ = [3, n0, _CCPR,
|
|
1977
|
+
0,
|
|
1978
|
+
[_n, _cl, _aSGP, _mIP, _ta],
|
|
1979
|
+
[0, 0, () => AutoScalingGroupProvider$, [() => CreateManagedInstancesProviderConfiguration$, 0], () => Tags], 1
|
|
1980
|
+
];
|
|
1981
|
+
var CreateCapacityProviderResponse$ = [3, n0, _CCPRr,
|
|
1982
|
+
0,
|
|
1983
|
+
[_cPa],
|
|
1984
|
+
[[() => CapacityProvider$, 0]]
|
|
1985
|
+
];
|
|
1986
|
+
var CreateClusterRequest$ = [3, n0, _CCR,
|
|
1987
|
+
0,
|
|
1988
|
+
[_cN, _ta, _set, _co, _cPap, _dCPS, _sCD],
|
|
1989
|
+
[0, () => Tags, () => ClusterSettings, () => ClusterConfiguration$, 64 | 0, () => CapacityProviderStrategy, () => ClusterServiceConnectDefaultsRequest$]
|
|
1990
|
+
];
|
|
1991
|
+
var CreateClusterResponse$ = [3, n0, _CCRr,
|
|
1992
|
+
0,
|
|
1993
|
+
[_cl],
|
|
1994
|
+
[() => Cluster$]
|
|
1995
|
+
];
|
|
1996
|
+
var CreateDaemonRequest$ = [3, n0, _CDR,
|
|
1997
|
+
0,
|
|
1998
|
+
[_dNa, _dTDA, _cPAa, _cA, _dC, _ta, _pTr, _eECSMT, _eEC, _cT],
|
|
1999
|
+
[0, 0, 64 | 0, 0, () => DaemonDeploymentConfiguration$, () => Tags, 0, 2, 2, 0], 3
|
|
2000
|
+
];
|
|
2001
|
+
var CreateDaemonResponse$ = [3, n0, _CDRr,
|
|
2002
|
+
0,
|
|
2003
|
+
[_dA, _st, _cAr, _dAe],
|
|
2004
|
+
[0, 0, 4, 0]
|
|
2005
|
+
];
|
|
2006
|
+
var CreatedAt$ = [3, n0, _CA,
|
|
2007
|
+
0,
|
|
2008
|
+
[_be, _af],
|
|
2009
|
+
[4, 4]
|
|
2010
|
+
];
|
|
2011
|
+
var CreateExpressGatewayServiceRequest$ = [3, n0, _CEGSR,
|
|
2012
|
+
0,
|
|
2013
|
+
[_iRA, _eRA, _sN, _cl, _hCP, _pC, _tRA, _nC, _cp, _me, _sTc, _ta, _tDA],
|
|
2014
|
+
[0, 0, 0, 0, 0, [() => ExpressGatewayContainer$, 0], 0, () => ExpressGatewayServiceNetworkConfiguration$, 0, 0, () => ExpressGatewayScalingTarget$, () => Tags, 0], 1
|
|
2015
|
+
];
|
|
2016
|
+
var CreateExpressGatewayServiceResponse$ = [3, n0, _CEGSRr,
|
|
2017
|
+
0,
|
|
2018
|
+
[_ser],
|
|
2019
|
+
[[() => ECSExpressGatewayService$, 0]]
|
|
2020
|
+
];
|
|
2021
|
+
var CreateManagedInstancesProviderConfiguration$ = [3, n0, _CMIPC,
|
|
2022
|
+
0,
|
|
2023
|
+
[_iRA, _iLT, _pTr, _iO, _aRC],
|
|
2024
|
+
[0, [() => InstanceLaunchTemplate$, 0], 0, () => InfrastructureOptimization$, () => AutoRepairConfiguration$], 2
|
|
2025
|
+
];
|
|
2026
|
+
var CreateServiceRequest$ = [3, n0, _CSR,
|
|
2027
|
+
0,
|
|
2028
|
+
[_sN, _cl, _tD, _aZR, _lB, _sRe, _dCe, _cT, _lT, _cPS, _pV, _ro, _dC, _pCl, _pS, _nC, _hCGPS, _sS, _dCep, _ta, _eECSMT, _pTr, _eEC, _sCC, _vCo, _vLC, _mo],
|
|
2029
|
+
[0, 0, 0, 0, () => LoadBalancers, () => ServiceRegistries, 1, 0, 0, () => CapacityProviderStrategy, 0, 0, () => DeploymentConfiguration$, () => PlacementConstraints, () => PlacementStrategies, () => NetworkConfiguration$, 1, 0, () => DeploymentController$, () => Tags, 2, 0, 2, () => ServiceConnectConfiguration$, () => ServiceVolumeConfigurations, () => VpcLatticeConfigurations, () => MonitoringConfiguration$], 1
|
|
2030
|
+
];
|
|
2031
|
+
var CreateServiceResponse$ = [3, n0, _CSRr,
|
|
2032
|
+
0,
|
|
2033
|
+
[_ser],
|
|
2034
|
+
[() => Service$]
|
|
2035
|
+
];
|
|
2036
|
+
var CreateTaskSetRequest$ = [3, n0, _CTSR,
|
|
2037
|
+
0,
|
|
2038
|
+
[_ser, _cl, _tD, _eI, _nC, _lB, _sRe, _lT, _cPS, _pV, _sc, _cT, _ta],
|
|
2039
|
+
[0, 0, 0, 0, () => NetworkConfiguration$, () => LoadBalancers, () => ServiceRegistries, 0, () => CapacityProviderStrategy, 0, () => Scale$, 0, () => Tags], 3
|
|
2040
|
+
];
|
|
2041
|
+
var CreateTaskSetResponse$ = [3, n0, _CTSRr,
|
|
2042
|
+
0,
|
|
2043
|
+
[_tS],
|
|
2044
|
+
[() => TaskSet$]
|
|
2045
|
+
];
|
|
2046
|
+
var DaemonAlarmConfiguration$ = [3, n0, _DAC,
|
|
2047
|
+
0,
|
|
2048
|
+
[_aN, _enab],
|
|
2049
|
+
[64 | 0, 2]
|
|
2050
|
+
];
|
|
2051
|
+
var DaemonCapacityProvider$ = [3, n0, _DCP,
|
|
2052
|
+
0,
|
|
2053
|
+
[_ar, _rCu],
|
|
2054
|
+
[0, 1]
|
|
2055
|
+
];
|
|
2056
|
+
var DaemonCircuitBreaker$ = [3, n0, _DCB,
|
|
2057
|
+
0,
|
|
2058
|
+
[_fCa, _st, _th],
|
|
2059
|
+
[1, 0, 1]
|
|
2060
|
+
];
|
|
2061
|
+
var DaemonContainerDefinition$ = [3, n0, _DCD,
|
|
2062
|
+
0,
|
|
2063
|
+
[_im, _n, _me, _mR, _rC, _hC, _cp, _es, _eP, _com, _wD, _eF, _en, _sec, _rRF, _mP, _lC, _fC, _p, _u, _ul, _lP, _dO, _sT, _sTt, _sC, _in, _pT, _rPe],
|
|
2064
|
+
[0, 0, 1, 1, [() => RepositoryCredentials$, 0], () => HealthCheck$, 1, 2, 64 | 0, 64 | 0, 0, () => EnvironmentFiles, [() => EnvironmentVariables, 0], () => SecretList, 2, () => MountPointList, () => LogConfiguration$, () => FirelensConfiguration$, 2, 0, () => UlimitList, () => DaemonLinuxParameters$, () => ContainerDependencies, 1, 1, () => SystemControls, 2, 2, () => ContainerRestartPolicy$], 1
|
|
2065
|
+
];
|
|
2066
|
+
var DaemonContainerImage$ = [3, n0, _DCI,
|
|
2067
|
+
0,
|
|
2068
|
+
[_cNo, _iD, _im],
|
|
2069
|
+
[0, 0, 0]
|
|
2070
|
+
];
|
|
2071
|
+
var DaemonDeployment$ = [3, n0, _DD,
|
|
2072
|
+
0,
|
|
2073
|
+
[_dDA, _cA, _st, _sR, _tDR, _sDR, _cB, _al, _rol, _dC, _cAr, _sA, _sAt, _fA],
|
|
2074
|
+
[0, 0, 0, 0, () => DaemonDeploymentRevisionDetail$, () => DaemonDeploymentRevisionDetailList, () => DaemonCircuitBreaker$, () => DaemonDeploymentAlarms$, () => DaemonRollback$, () => DaemonDeploymentConfiguration$, 4, 4, 4, 4]
|
|
2075
|
+
];
|
|
2076
|
+
var DaemonDeploymentAlarms$ = [3, n0, _DDA,
|
|
2077
|
+
0,
|
|
2078
|
+
[_st, _aN, _tAN],
|
|
2079
|
+
[0, 64 | 0, 64 | 0]
|
|
2080
|
+
];
|
|
2081
|
+
var DaemonDeploymentCapacityProvider$ = [3, n0, _DDCP,
|
|
2082
|
+
0,
|
|
2083
|
+
[_ar, _rIC, _dIC],
|
|
2084
|
+
[0, 1, 1]
|
|
2085
|
+
];
|
|
2086
|
+
var DaemonDeploymentConfiguration$ = [3, n0, _DDC,
|
|
2087
|
+
0,
|
|
2088
|
+
[_dP, _al, _bTIM],
|
|
2089
|
+
[1, () => DaemonAlarmConfiguration$, 1]
|
|
2090
|
+
];
|
|
2091
|
+
var DaemonDeploymentRevisionDetail$ = [3, n0, _DDRD,
|
|
2092
|
+
0,
|
|
2093
|
+
[_ar, _cPap, _tRIC, _tDIC],
|
|
2094
|
+
[0, () => DaemonDeploymentCapacityProviderList, 1, 1]
|
|
2095
|
+
];
|
|
2096
|
+
var DaemonDeploymentSummary$ = [3, n0, _DDS,
|
|
2097
|
+
0,
|
|
2098
|
+
[_dDA, _dA, _cA, _st, _sR, _tDRA, _cAr, _sA, _sAt, _fA],
|
|
2099
|
+
[0, 0, 0, 0, 0, 0, 4, 4, 4, 4]
|
|
2100
|
+
];
|
|
2101
|
+
var DaemonDetail$ = [3, n0, _DDa,
|
|
2102
|
+
0,
|
|
2103
|
+
[_dA, _cA, _st, _cR, _dAe, _cAr, _uA],
|
|
2104
|
+
[0, 0, 0, () => DaemonRevisionDetailList, 0, 4, 4]
|
|
2105
|
+
];
|
|
2106
|
+
var DaemonLinuxParameters$ = [3, n0, _DLP,
|
|
2107
|
+
0,
|
|
2108
|
+
[_ca, _de, _iPE, _tm],
|
|
2109
|
+
[() => KernelCapabilities$, () => DevicesList, 2, () => TmpfsList]
|
|
2110
|
+
];
|
|
2111
|
+
var DaemonRevision$ = [3, n0, _DR,
|
|
2112
|
+
0,
|
|
2113
|
+
[_dRA, _cA, _dA, _dTDA, _cAr, _cI, _pTr, _eECSMT, _eEC],
|
|
2114
|
+
[0, 0, 0, 0, 4, () => DaemonContainerImages, 0, 2, 2]
|
|
2115
|
+
];
|
|
2116
|
+
var DaemonRevisionDetail$ = [3, n0, _DRD,
|
|
2117
|
+
0,
|
|
2118
|
+
[_ar, _cPap, _tRC],
|
|
2119
|
+
[0, () => DaemonCapacityProviderList, 1]
|
|
2120
|
+
];
|
|
2121
|
+
var DaemonRollback$ = [3, n0, _DRa,
|
|
2122
|
+
0,
|
|
2123
|
+
[_r, _sA, _rTDRA, _rCP],
|
|
2124
|
+
[0, 4, 0, 64 | 0]
|
|
2125
|
+
];
|
|
2126
|
+
var DaemonSummary$ = [3, n0, _DS,
|
|
2127
|
+
0,
|
|
2128
|
+
[_dA, _st, _cAr, _uA],
|
|
2129
|
+
[0, 0, 4, 4]
|
|
2130
|
+
];
|
|
2131
|
+
var DaemonTaskDefinition$ = [3, n0, _DTD,
|
|
2132
|
+
0,
|
|
2133
|
+
[_dTDA, _f, _re, _tRA, _eRA, _cD, _vo, _cp, _me, _st, _rAe, _dRAe, _rB, _pMi, _iM],
|
|
2134
|
+
[0, 0, 1, 0, 0, [() => DaemonContainerDefinitionList, 0], () => DaemonVolumeList, 0, 0, 0, 4, 4, 0, 0, 0]
|
|
2135
|
+
];
|
|
2136
|
+
var DaemonTaskDefinitionSummary$ = [3, n0, _DTDS,
|
|
2137
|
+
0,
|
|
2138
|
+
[_ar, _rAe, _rB, _dRAe, _st],
|
|
2139
|
+
[0, 4, 0, 4, 0]
|
|
2140
|
+
];
|
|
2141
|
+
var DaemonVolume$ = [3, n0, _DV,
|
|
2142
|
+
0,
|
|
2143
|
+
[_n, _ho],
|
|
2144
|
+
[0, () => HostVolumeProperties$]
|
|
2145
|
+
];
|
|
2146
|
+
var DeleteAccountSettingRequest$ = [3, n0, _DASR,
|
|
2147
|
+
0,
|
|
2148
|
+
[_n, _pA],
|
|
2149
|
+
[0, 0], 1
|
|
2150
|
+
];
|
|
2151
|
+
var DeleteAccountSettingResponse$ = [3, n0, _DASRe,
|
|
2152
|
+
0,
|
|
2153
|
+
[_sett],
|
|
2154
|
+
[() => Setting$]
|
|
2155
|
+
];
|
|
2156
|
+
var DeleteAttributesRequest$ = [3, n0, _DAR,
|
|
2157
|
+
0,
|
|
2158
|
+
[_at, _cl],
|
|
2159
|
+
[() => Attributes, 0], 1
|
|
2160
|
+
];
|
|
2161
|
+
var DeleteAttributesResponse$ = [3, n0, _DARe,
|
|
2162
|
+
0,
|
|
2163
|
+
[_at],
|
|
2164
|
+
[() => Attributes]
|
|
2165
|
+
];
|
|
2166
|
+
var DeleteCapacityProviderRequest$ = [3, n0, _DCPR,
|
|
2167
|
+
0,
|
|
2168
|
+
[_cPa, _cl],
|
|
2169
|
+
[0, 0], 1
|
|
2170
|
+
];
|
|
2171
|
+
var DeleteCapacityProviderResponse$ = [3, n0, _DCPRe,
|
|
2172
|
+
0,
|
|
2173
|
+
[_cPa],
|
|
2174
|
+
[[() => CapacityProvider$, 0]]
|
|
2175
|
+
];
|
|
2176
|
+
var DeleteClusterRequest$ = [3, n0, _DCR,
|
|
2177
|
+
0,
|
|
2178
|
+
[_cl],
|
|
2179
|
+
[0], 1
|
|
2180
|
+
];
|
|
2181
|
+
var DeleteClusterResponse$ = [3, n0, _DCRe,
|
|
2182
|
+
0,
|
|
2183
|
+
[_cl],
|
|
2184
|
+
[() => Cluster$]
|
|
2185
|
+
];
|
|
2186
|
+
var DeleteDaemonRequest$ = [3, n0, _DDR,
|
|
2187
|
+
0,
|
|
2188
|
+
[_dA],
|
|
2189
|
+
[0], 1
|
|
2190
|
+
];
|
|
2191
|
+
var DeleteDaemonResponse$ = [3, n0, _DDRe,
|
|
2192
|
+
0,
|
|
2193
|
+
[_dA, _st, _cAr, _uA, _dAe],
|
|
2194
|
+
[0, 0, 4, 4, 0]
|
|
2195
|
+
];
|
|
2196
|
+
var DeleteDaemonTaskDefinitionRequest$ = [3, n0, _DDTDR,
|
|
2197
|
+
0,
|
|
2198
|
+
[_dTD],
|
|
2199
|
+
[0], 1
|
|
2200
|
+
];
|
|
2201
|
+
var DeleteDaemonTaskDefinitionResponse$ = [3, n0, _DDTDRe,
|
|
2202
|
+
0,
|
|
2203
|
+
[_dTDA],
|
|
2204
|
+
[0]
|
|
2205
|
+
];
|
|
2206
|
+
var DeleteExpressGatewayServiceRequest$ = [3, n0, _DEGSR,
|
|
2207
|
+
0,
|
|
2208
|
+
[_sAe],
|
|
2209
|
+
[0], 1
|
|
2210
|
+
];
|
|
2211
|
+
var DeleteExpressGatewayServiceResponse$ = [3, n0, _DEGSRe,
|
|
2212
|
+
0,
|
|
2213
|
+
[_ser],
|
|
2214
|
+
[[() => ECSExpressGatewayService$, 0]]
|
|
2215
|
+
];
|
|
2216
|
+
var DeleteServiceRequest$ = [3, n0, _DSR,
|
|
2217
|
+
0,
|
|
2218
|
+
[_ser, _cl, _fo],
|
|
2219
|
+
[0, 0, 2], 1
|
|
2220
|
+
];
|
|
2221
|
+
var DeleteServiceResponse$ = [3, n0, _DSRe,
|
|
2222
|
+
0,
|
|
2223
|
+
[_ser],
|
|
2224
|
+
[() => Service$]
|
|
2225
|
+
];
|
|
2226
|
+
var DeleteTaskDefinitionsRequest$ = [3, n0, _DTDR,
|
|
2227
|
+
0,
|
|
2228
|
+
[_tDa],
|
|
2229
|
+
[64 | 0], 1
|
|
2230
|
+
];
|
|
2231
|
+
var DeleteTaskDefinitionsResponse$ = [3, n0, _DTDRe,
|
|
2232
|
+
0,
|
|
2233
|
+
[_tDa, _fa],
|
|
2234
|
+
[[() => TaskDefinitionList, 0], () => Failures]
|
|
2235
|
+
];
|
|
2236
|
+
var DeleteTaskSetRequest$ = [3, n0, _DTSR,
|
|
2237
|
+
0,
|
|
2238
|
+
[_cl, _ser, _tS, _fo],
|
|
2239
|
+
[0, 0, 0, 2], 3
|
|
2240
|
+
];
|
|
2241
|
+
var DeleteTaskSetResponse$ = [3, n0, _DTSRe,
|
|
2242
|
+
0,
|
|
2243
|
+
[_tS],
|
|
2244
|
+
[() => TaskSet$]
|
|
2245
|
+
];
|
|
2246
|
+
var Deployment$ = [3, n0, _D,
|
|
2247
|
+
0,
|
|
2248
|
+
[_i, _st, _tD, _dCe, _pCe, _rCu, _fT, _cAr, _uA, _cPS, _lT, _pV, _pF, _nC, _rS, _rSR, _sCC, _sCR, _vCo, _fES, _vLC],
|
|
2249
|
+
[0, 0, 0, 1, 1, 1, 1, 4, 4, () => CapacityProviderStrategy, 0, 0, 0, () => NetworkConfiguration$, 0, 0, () => ServiceConnectConfiguration$, () => ServiceConnectServiceResourceList, () => ServiceVolumeConfigurations, () => DeploymentEphemeralStorage$, () => VpcLatticeConfigurations]
|
|
2250
|
+
];
|
|
2251
|
+
var DeploymentAlarms$ = [3, n0, _DA,
|
|
2252
|
+
0,
|
|
2253
|
+
[_aN, _rol, _enab],
|
|
2254
|
+
[64 | 0, 2, 2], 3
|
|
2255
|
+
];
|
|
2256
|
+
var DeploymentCircuitBreaker$ = [3, n0, _DCBe,
|
|
2257
|
+
0,
|
|
2258
|
+
[_enab, _rol, _rOHT, _tC],
|
|
2259
|
+
[2, 2, 2, () => ThresholdConfiguration$], 2
|
|
2260
|
+
];
|
|
2261
|
+
var DeploymentConfiguration$ = [3, n0, _DC,
|
|
2262
|
+
0,
|
|
2263
|
+
[_dCB, _mPa, _mHP, _al, _str, _bTIM, _lH, _lCi, _cC],
|
|
2264
|
+
[() => DeploymentCircuitBreaker$, 1, 1, () => DeploymentAlarms$, 0, 1, () => DeploymentLifecycleHookList, () => LinearConfiguration$, () => CanaryConfiguration$]
|
|
2265
|
+
];
|
|
2266
|
+
var DeploymentController$ = [3, n0, _DCe,
|
|
2267
|
+
0,
|
|
2268
|
+
[_t],
|
|
2269
|
+
[0], 1
|
|
2270
|
+
];
|
|
2271
|
+
var DeploymentEphemeralStorage$ = [3, n0, _DES,
|
|
2272
|
+
0,
|
|
2273
|
+
[_kKI],
|
|
2274
|
+
[0]
|
|
2275
|
+
];
|
|
2276
|
+
var DeploymentLifecycleHook$ = [3, n0, _DLH,
|
|
2277
|
+
0,
|
|
2278
|
+
[_tT, _hTA, _rA, _lSi, _hD, _tCi],
|
|
2279
|
+
[0, 0, 0, 64 | 0, 15, () => DeploymentLifecycleHookTimeoutConfiguration$]
|
|
2280
|
+
];
|
|
2281
|
+
var DeploymentLifecycleHookDetail$ = [3, n0, _DLHD,
|
|
2282
|
+
0,
|
|
2283
|
+
[_hI, _tT, _tAa, _st, _eA, _tAi],
|
|
2284
|
+
[0, 0, 0, 0, 4, 0]
|
|
2285
|
+
];
|
|
2286
|
+
var DeploymentLifecycleHookTimeoutConfiguration$ = [3, n0, _DLHTC,
|
|
2287
|
+
0,
|
|
2288
|
+
[_tIM, _ac],
|
|
2289
|
+
[1, 0]
|
|
2290
|
+
];
|
|
2291
|
+
var DeregisterContainerInstanceRequest$ = [3, n0, _DCIR,
|
|
2292
|
+
0,
|
|
2293
|
+
[_cIo, _cl, _fo],
|
|
2294
|
+
[0, 0, 2], 1
|
|
2295
|
+
];
|
|
2296
|
+
var DeregisterContainerInstanceResponse$ = [3, n0, _DCIRe,
|
|
2297
|
+
0,
|
|
2298
|
+
[_cIo],
|
|
2299
|
+
[() => ContainerInstance$]
|
|
2300
|
+
];
|
|
2301
|
+
var DeregisterTaskDefinitionRequest$ = [3, n0, _DTDRer,
|
|
2302
|
+
0,
|
|
2303
|
+
[_tD],
|
|
2304
|
+
[0], 1
|
|
2305
|
+
];
|
|
2306
|
+
var DeregisterTaskDefinitionResponse$ = [3, n0, _DTDRere,
|
|
2307
|
+
0,
|
|
2308
|
+
[_tD],
|
|
2309
|
+
[[() => TaskDefinition$, 0]]
|
|
2310
|
+
];
|
|
2311
|
+
var DescribeCapacityProvidersRequest$ = [3, n0, _DCPRes,
|
|
2312
|
+
0,
|
|
2313
|
+
[_cPap, _cl, _inc, _mRa, _nT],
|
|
2314
|
+
[64 | 0, 0, 64 | 0, 1, 0]
|
|
2315
|
+
];
|
|
2316
|
+
var DescribeCapacityProvidersResponse$ = [3, n0, _DCPResc,
|
|
2317
|
+
0,
|
|
2318
|
+
[_cPap, _fa, _nT],
|
|
2319
|
+
[[() => CapacityProviders, 0], () => Failures, 0]
|
|
2320
|
+
];
|
|
2321
|
+
var DescribeClustersRequest$ = [3, n0, _DCRes,
|
|
2322
|
+
0,
|
|
2323
|
+
[_clu, _inc],
|
|
2324
|
+
[64 | 0, 64 | 0]
|
|
2325
|
+
];
|
|
2326
|
+
var DescribeClustersResponse$ = [3, n0, _DCResc,
|
|
2327
|
+
0,
|
|
2328
|
+
[_clu, _fa],
|
|
2329
|
+
[() => Clusters, () => Failures]
|
|
2330
|
+
];
|
|
2331
|
+
var DescribeContainerInstancesRequest$ = [3, n0, _DCIRes,
|
|
2332
|
+
0,
|
|
2333
|
+
[_cIon, _cl, _inc],
|
|
2334
|
+
[64 | 0, 0, 64 | 0], 1
|
|
2335
|
+
];
|
|
2336
|
+
var DescribeContainerInstancesResponse$ = [3, n0, _DCIResc,
|
|
2337
|
+
0,
|
|
2338
|
+
[_cIon, _fa],
|
|
2339
|
+
[() => ContainerInstances, () => Failures]
|
|
2340
|
+
];
|
|
2341
|
+
var DescribeDaemonDeploymentsRequest$ = [3, n0, _DDDR,
|
|
2342
|
+
0,
|
|
2343
|
+
[_dDAa],
|
|
2344
|
+
[64 | 0], 1
|
|
2345
|
+
];
|
|
2346
|
+
var DescribeDaemonDeploymentsResponse$ = [3, n0, _DDDRe,
|
|
2347
|
+
0,
|
|
2348
|
+
[_fa, _dD],
|
|
2349
|
+
[() => Failures, () => DaemonDeploymentList]
|
|
2350
|
+
];
|
|
2351
|
+
var DescribeDaemonRequest$ = [3, n0, _DDRes,
|
|
2352
|
+
0,
|
|
2353
|
+
[_dA],
|
|
2354
|
+
[0], 1
|
|
2355
|
+
];
|
|
2356
|
+
var DescribeDaemonResponse$ = [3, n0, _DDResc,
|
|
2357
|
+
0,
|
|
2358
|
+
[_da],
|
|
2359
|
+
[() => DaemonDetail$]
|
|
2360
|
+
];
|
|
2361
|
+
var DescribeDaemonRevisionsRequest$ = [3, n0, _DDRR,
|
|
2362
|
+
0,
|
|
2363
|
+
[_dRAa],
|
|
2364
|
+
[64 | 0], 1
|
|
2365
|
+
];
|
|
2366
|
+
var DescribeDaemonRevisionsResponse$ = [3, n0, _DDRRe,
|
|
2367
|
+
0,
|
|
2368
|
+
[_dR, _fa],
|
|
2369
|
+
[() => DaemonRevisions, () => Failures]
|
|
2370
|
+
];
|
|
2371
|
+
var DescribeDaemonTaskDefinitionRequest$ = [3, n0, _DDTDRes,
|
|
2372
|
+
0,
|
|
2373
|
+
[_dTD],
|
|
2374
|
+
[0], 1
|
|
2375
|
+
];
|
|
2376
|
+
var DescribeDaemonTaskDefinitionResponse$ = [3, n0, _DDTDResc,
|
|
2377
|
+
0,
|
|
2378
|
+
[_dTD],
|
|
2379
|
+
[[() => DaemonTaskDefinition$, 0]]
|
|
2380
|
+
];
|
|
2381
|
+
var DescribeExpressGatewayServiceRequest$ = [3, n0, _DEGSRes,
|
|
2382
|
+
0,
|
|
2383
|
+
[_sAe, _inc],
|
|
2384
|
+
[0, 64 | 0], 1
|
|
2385
|
+
];
|
|
2386
|
+
var DescribeExpressGatewayServiceResponse$ = [3, n0, _DEGSResc,
|
|
2387
|
+
0,
|
|
2388
|
+
[_ser],
|
|
2389
|
+
[[() => ECSExpressGatewayService$, 0]]
|
|
2390
|
+
];
|
|
2391
|
+
var DescribeServiceDeploymentsRequest$ = [3, n0, _DSDR,
|
|
2392
|
+
0,
|
|
2393
|
+
[_sDAe],
|
|
2394
|
+
[64 | 0], 1
|
|
2395
|
+
];
|
|
2396
|
+
var DescribeServiceDeploymentsResponse$ = [3, n0, _DSDRe,
|
|
2397
|
+
0,
|
|
2398
|
+
[_sD, _fa],
|
|
2399
|
+
[() => ServiceDeployments, () => Failures]
|
|
2400
|
+
];
|
|
2401
|
+
var DescribeServiceRevisionsRequest$ = [3, n0, _DSRR,
|
|
2402
|
+
0,
|
|
2403
|
+
[_sRA],
|
|
2404
|
+
[64 | 0], 1
|
|
2405
|
+
];
|
|
2406
|
+
var DescribeServiceRevisionsResponse$ = [3, n0, _DSRRe,
|
|
2407
|
+
0,
|
|
2408
|
+
[_sRer, _fa],
|
|
2409
|
+
[() => ServiceRevisions, () => Failures]
|
|
2410
|
+
];
|
|
2411
|
+
var DescribeServicesRequest$ = [3, n0, _DSRes,
|
|
2412
|
+
0,
|
|
2413
|
+
[_serv, _cl, _inc],
|
|
2414
|
+
[64 | 0, 0, 64 | 0], 1
|
|
2415
|
+
];
|
|
2416
|
+
var DescribeServicesResponse$ = [3, n0, _DSResc,
|
|
2417
|
+
0,
|
|
2418
|
+
[_serv, _fa],
|
|
2419
|
+
[() => Services, () => Failures]
|
|
2420
|
+
];
|
|
2421
|
+
var DescribeTaskDefinitionRequest$ = [3, n0, _DTDRes,
|
|
2422
|
+
0,
|
|
2423
|
+
[_tD, _inc],
|
|
2424
|
+
[0, 64 | 0], 1
|
|
2425
|
+
];
|
|
2426
|
+
var DescribeTaskDefinitionResponse$ = [3, n0, _DTDResc,
|
|
2427
|
+
0,
|
|
2428
|
+
[_tD, _ta],
|
|
2429
|
+
[[() => TaskDefinition$, 0], () => Tags]
|
|
2430
|
+
];
|
|
2431
|
+
var DescribeTaskSetsRequest$ = [3, n0, _DTSRes,
|
|
2432
|
+
0,
|
|
2433
|
+
[_cl, _ser, _tSa, _inc],
|
|
2434
|
+
[0, 0, 64 | 0, 64 | 0], 2
|
|
2435
|
+
];
|
|
2436
|
+
var DescribeTaskSetsResponse$ = [3, n0, _DTSResc,
|
|
2437
|
+
0,
|
|
2438
|
+
[_tSa, _fa],
|
|
2439
|
+
[() => TaskSets, () => Failures]
|
|
2440
|
+
];
|
|
2441
|
+
var DescribeTasksRequest$ = [3, n0, _DTR,
|
|
2442
|
+
0,
|
|
2443
|
+
[_tas, _cl, _inc],
|
|
2444
|
+
[64 | 0, 0, 64 | 0], 1
|
|
2445
|
+
];
|
|
2446
|
+
var DescribeTasksResponse$ = [3, n0, _DTRe,
|
|
2447
|
+
0,
|
|
2448
|
+
[_tas, _fa],
|
|
2449
|
+
[[() => Tasks, 0], () => Failures]
|
|
2450
|
+
];
|
|
2451
|
+
var Device$ = [3, n0, _De,
|
|
2452
|
+
0,
|
|
2453
|
+
[_hP, _cPo, _pe],
|
|
2454
|
+
[0, 0, 64 | 0], 1
|
|
2455
|
+
];
|
|
2456
|
+
var DiscoverPollEndpointRequest$ = [3, n0, _DPER,
|
|
2457
|
+
0,
|
|
2458
|
+
[_cIo, _cl],
|
|
2459
|
+
[0, 0]
|
|
2460
|
+
];
|
|
2461
|
+
var DiscoverPollEndpointResponse$ = [3, n0, _DPERi,
|
|
2462
|
+
0,
|
|
2463
|
+
[_end, _tE, _sCE],
|
|
2464
|
+
[0, 0, 0]
|
|
2465
|
+
];
|
|
2466
|
+
var DockerVolumeConfiguration$ = [3, n0, _DVC,
|
|
2467
|
+
0,
|
|
2468
|
+
[_sco, _au, _dr, _dOr, _la],
|
|
2469
|
+
[0, 2, 0, 128 | 0, 128 | 0]
|
|
2470
|
+
];
|
|
2471
|
+
var EBSTagSpecification$ = [3, n0, _EBSTS,
|
|
2472
|
+
0,
|
|
2473
|
+
[_rT, _ta, _pTr],
|
|
2474
|
+
[0, () => Tags, 0], 1
|
|
2475
|
+
];
|
|
2476
|
+
var ECSExpressGatewayService$ = [3, n0, _ECSEGS,
|
|
2477
|
+
0,
|
|
2478
|
+
[_cl, _sN, _sAe, _iRA, _st, _cDu, _aCc, _ta, _cAr, _uA],
|
|
2479
|
+
[0, 0, 0, 0, () => ExpressGatewayServiceStatus$, 0, [() => ExpressGatewayServiceConfigurations, 0], () => Tags, 4, 4]
|
|
2480
|
+
];
|
|
2481
|
+
var ECSManagedResources$ = [3, n0, _ECSMR,
|
|
2482
|
+
0,
|
|
2483
|
+
[_iP, _aSu, _mAe, _sSG, _lG],
|
|
2484
|
+
[() => ManagedIngressPaths, () => ManagedAutoScaling$, () => ManagedMetricAlarms, () => ManagedSecurityGroups, () => ManagedLogGroups]
|
|
2485
|
+
];
|
|
2486
|
+
var EFSAuthorizationConfig$ = [3, n0, _EFSAC,
|
|
2487
|
+
0,
|
|
2488
|
+
[_aPIc, _ia],
|
|
2489
|
+
[0, 0]
|
|
2490
|
+
];
|
|
2491
|
+
var EFSVolumeConfiguration$ = [3, n0, _EFSVC,
|
|
2492
|
+
0,
|
|
2493
|
+
[_fSI, _rD, _tEr, _tEP, _aCu],
|
|
2494
|
+
[0, 0, 0, 1, () => EFSAuthorizationConfig$], 1
|
|
2495
|
+
];
|
|
2496
|
+
var EnvironmentFile$ = [3, n0, _EF,
|
|
2497
|
+
0,
|
|
2498
|
+
[_v, _t],
|
|
2499
|
+
[0, 0], 2
|
|
2500
|
+
];
|
|
2501
|
+
var EphemeralStorage$ = [3, n0, _ES,
|
|
2502
|
+
0,
|
|
2503
|
+
[_sIGB],
|
|
2504
|
+
[1], 1
|
|
2505
|
+
];
|
|
2506
|
+
var ExecuteCommandConfiguration$ = [3, n0, _ECC,
|
|
2507
|
+
0,
|
|
2508
|
+
[_kKI, _lo, _lC],
|
|
2509
|
+
[0, 0, () => ExecuteCommandLogConfiguration$]
|
|
2510
|
+
];
|
|
2511
|
+
var ExecuteCommandLogConfiguration$ = [3, n0, _ECLC,
|
|
2512
|
+
0,
|
|
2513
|
+
[_cWLGN, _cWEE, _sBN, _sEE, _sKP],
|
|
2514
|
+
[0, 2, 0, 2, 0]
|
|
2515
|
+
];
|
|
2516
|
+
var ExecuteCommandRequest$ = [3, n0, _ECR,
|
|
2517
|
+
0,
|
|
2518
|
+
[_com, _in, _task, _cl, _cont],
|
|
2519
|
+
[0, 2, 0, 0, 0], 3
|
|
2520
|
+
];
|
|
2521
|
+
var ExecuteCommandResponse$ = [3, n0, _ECRx,
|
|
2522
|
+
0,
|
|
2523
|
+
[_cA, _cAo, _cNo, _in, _ses, _tA],
|
|
2524
|
+
[0, 0, 0, 2, [() => Session$, 0], 0]
|
|
2525
|
+
];
|
|
2526
|
+
var ExpressGatewayContainer$ = [3, n0, _EGC,
|
|
2527
|
+
0,
|
|
2528
|
+
[_im, _cPon, _aLC, _rC, _com, _en, _sec],
|
|
2529
|
+
[0, 1, () => ExpressGatewayServiceAwsLogsConfiguration$, () => ExpressGatewayRepositoryCredentials$, 64 | 0, [() => EnvironmentVariables, 0], () => SecretList], 1
|
|
2530
|
+
];
|
|
2531
|
+
var ExpressGatewayRepositoryCredentials$ = [3, n0, _EGRC,
|
|
2532
|
+
0,
|
|
2533
|
+
[_cPr],
|
|
2534
|
+
[0]
|
|
2535
|
+
];
|
|
2536
|
+
var ExpressGatewayScalingTarget$ = [3, n0, _EGST,
|
|
2537
|
+
0,
|
|
2538
|
+
[_mTC, _mTCa, _aSM, _aSTV],
|
|
2539
|
+
[1, 1, 0, 1]
|
|
2540
|
+
];
|
|
2541
|
+
var ExpressGatewayServiceAwsLogsConfiguration$ = [3, n0, _EGSALC,
|
|
2542
|
+
0,
|
|
2543
|
+
[_lGo, _lSP],
|
|
2544
|
+
[0, 0], 2
|
|
2545
|
+
];
|
|
2546
|
+
var ExpressGatewayServiceConfiguration$ = [3, n0, _EGSC,
|
|
2547
|
+
0,
|
|
2548
|
+
[_sRAe, _eRA, _tRA, _tDA, _cp, _me, _nC, _hCP, _pC, _sTc, _iP, _cAr],
|
|
2549
|
+
[0, 0, 0, 0, 0, 0, () => ExpressGatewayServiceNetworkConfiguration$, 0, [() => ExpressGatewayContainer$, 0], () => ExpressGatewayScalingTarget$, () => IngressPathSummaries, 4]
|
|
2550
|
+
];
|
|
2551
|
+
var ExpressGatewayServiceNetworkConfiguration$ = [3, n0, _EGSNC,
|
|
2552
|
+
0,
|
|
2553
|
+
[_sG, _su],
|
|
2554
|
+
[64 | 0, 64 | 0]
|
|
2555
|
+
];
|
|
2556
|
+
var ExpressGatewayServiceStatus$ = [3, n0, _EGSS,
|
|
2557
|
+
0,
|
|
2558
|
+
[_sCt, _sR],
|
|
2559
|
+
[0, 0]
|
|
2560
|
+
];
|
|
2561
|
+
var Failure$ = [3, n0, _F,
|
|
2562
|
+
0,
|
|
2563
|
+
[_ar, _r, _det],
|
|
2564
|
+
[0, 0, 0]
|
|
2565
|
+
];
|
|
2566
|
+
var FirelensConfiguration$ = [3, n0, _FC,
|
|
2567
|
+
0,
|
|
2568
|
+
[_t, _o],
|
|
2569
|
+
[0, 128 | 0], 1
|
|
2570
|
+
];
|
|
2571
|
+
var FSxWindowsFileServerAuthorizationConfig$ = [3, n0, _FSWFSAC,
|
|
2572
|
+
0,
|
|
2573
|
+
[_cPr, _do],
|
|
2574
|
+
[0, 0], 2
|
|
2575
|
+
];
|
|
2576
|
+
var FSxWindowsFileServerVolumeConfiguration$ = [3, n0, _FSWFSVC,
|
|
2577
|
+
0,
|
|
2578
|
+
[_fSI, _rD, _aCu],
|
|
2579
|
+
[0, 0, () => FSxWindowsFileServerAuthorizationConfig$], 3
|
|
2580
|
+
];
|
|
2581
|
+
var GetTaskProtectionRequest$ = [3, n0, _GTPR,
|
|
2582
|
+
0,
|
|
2583
|
+
[_cl, _tas],
|
|
2584
|
+
[0, 64 | 0], 1
|
|
2585
|
+
];
|
|
2586
|
+
var GetTaskProtectionResponse$ = [3, n0, _GTPRe,
|
|
2587
|
+
0,
|
|
2588
|
+
[_pTro, _fa],
|
|
2589
|
+
[() => ProtectedTasks, () => Failures]
|
|
2590
|
+
];
|
|
2591
|
+
var HealthCheck$ = [3, n0, _HC,
|
|
2592
|
+
0,
|
|
2593
|
+
[_com, _int, _ti, _ret, _sP],
|
|
2594
|
+
[64 | 0, 1, 1, 1, 1], 1
|
|
2595
|
+
];
|
|
2596
|
+
var HostEntry$ = [3, n0, _HE,
|
|
2597
|
+
0,
|
|
2598
|
+
[_h, _iA],
|
|
2599
|
+
[0, 0], 2
|
|
2600
|
+
];
|
|
2601
|
+
var HostVolumeProperties$ = [3, n0, _HVP,
|
|
2602
|
+
0,
|
|
2603
|
+
[_sPo],
|
|
2604
|
+
[0]
|
|
2605
|
+
];
|
|
2606
|
+
var InferenceAccelerator$ = [3, n0, _IA,
|
|
2607
|
+
0,
|
|
2608
|
+
[_dNe, _dT],
|
|
2609
|
+
[0, 0], 2
|
|
2610
|
+
];
|
|
2611
|
+
var InferenceAcceleratorOverride$ = [3, n0, _IAO,
|
|
2612
|
+
0,
|
|
2613
|
+
[_dNe, _dT],
|
|
2614
|
+
[0, 0]
|
|
2615
|
+
];
|
|
2616
|
+
var InfrastructureOptimization$ = [3, n0, _IO,
|
|
2617
|
+
0,
|
|
2618
|
+
[_sIA],
|
|
2619
|
+
[1]
|
|
2620
|
+
];
|
|
2621
|
+
var IngressPathSummary$ = [3, n0, _IPS,
|
|
2622
|
+
0,
|
|
2623
|
+
[_aT, _end],
|
|
2624
|
+
[0, 0], 2
|
|
2625
|
+
];
|
|
2626
|
+
var InstanceHealthCheckResult$ = [3, n0, _IHCR,
|
|
2627
|
+
0,
|
|
2628
|
+
[_t, _st, _sR, _lU, _lSC],
|
|
2629
|
+
[0, 0, 0, 4, 4]
|
|
2630
|
+
];
|
|
2631
|
+
var InstanceLaunchTemplate$ = [3, n0, _ILT,
|
|
2632
|
+
0,
|
|
2633
|
+
[_eIPA, _nC, _sCto, _lSCo, _mo, _cOT, _iMTP, _iR, _fE, _cRa],
|
|
2634
|
+
[0, () => ManagedInstancesNetworkConfiguration$, () => ManagedInstancesStorageConfiguration$, () => ManagedInstancesLocalStorageConfiguration$, 0, 0, 2, [() => InstanceRequirementsRequest$, 0], 2, () => CapacityReservationRequest$], 2
|
|
2635
|
+
];
|
|
2636
|
+
var InstanceLaunchTemplateUpdate$ = [3, n0, _ILTU,
|
|
2637
|
+
0,
|
|
2638
|
+
[_eIPA, _nC, _sCto, _iMTP, _lSCo, _mo, _iR, _cRa],
|
|
2639
|
+
[0, () => ManagedInstancesNetworkConfiguration$, () => ManagedInstancesStorageConfiguration$, 2, () => ManagedInstancesLocalStorageConfiguration$, 0, [() => InstanceRequirementsRequest$, 0], () => CapacityReservationRequest$]
|
|
2640
|
+
];
|
|
2641
|
+
var InstanceRequirementsRequest$ = [3, n0, _IRR,
|
|
2642
|
+
0,
|
|
2643
|
+
[_vCC, _mMB, _cM, _mGBPVC, _eIT, _iG, _sMPPOLP, _oDMPPOLP, _bM, _bP, _rHS, _nIC, _lSo, _lST, _tLSGB, _bEBM, _aTc, _aCcc, _aM, _aNc, _aTMMB, _nBG, _aIT, _mSPAPOOODP],
|
|
2644
|
+
[() => VCpuCountRangeRequest$, () => MemoryMiBRequest$, [() => CpuManufacturerSet, { [_xN]: _CM }], () => MemoryGiBPerVCpuRequest$, [() => ExcludedInstanceTypeSet, { [_xN]: _EIT }], [() => InstanceGenerationSet, { [_xN]: _IG }], 1, 1, 0, 0, 2, () => NetworkInterfaceCountRequest$, 0, [() => LocalStorageTypeSet, { [_xN]: _LST }], () => TotalLocalStorageGBRequest$, () => BaselineEbsBandwidthMbpsRequest$, [() => AcceleratorTypeSet, { [_xN]: _AT }], () => AcceleratorCountRequest$, [() => AcceleratorManufacturerSet, { [_xN]: _AM }], [() => AcceleratorNameSet, { [_xN]: _AN }], () => AcceleratorTotalMemoryMiBRequest$, () => NetworkBandwidthGbpsRequest$, [() => AllowedInstanceTypeSet, { [_xN]: _AIT }], 1], 2
|
|
2645
|
+
];
|
|
2646
|
+
var KernelCapabilities$ = [3, n0, _KC,
|
|
2647
|
+
0,
|
|
2648
|
+
[_ad, _dro],
|
|
2649
|
+
[64 | 0, 64 | 0]
|
|
2650
|
+
];
|
|
2651
|
+
var KeyValuePair$ = [3, n0, _KVP,
|
|
2652
|
+
0,
|
|
2653
|
+
[_n, _v],
|
|
2654
|
+
[0, 0]
|
|
2655
|
+
];
|
|
2656
|
+
var LinearConfiguration$ = [3, n0, _LC,
|
|
2657
|
+
0,
|
|
2658
|
+
[_sPt, _sBTIM],
|
|
2659
|
+
[1, 1]
|
|
2660
|
+
];
|
|
2661
|
+
var LinuxParameters$ = [3, n0, _LP,
|
|
2662
|
+
0,
|
|
2663
|
+
[_ca, _de, _iPE, _sMS, _tm, _mSa, _sw],
|
|
2664
|
+
[() => KernelCapabilities$, () => DevicesList, 2, 1, () => TmpfsList, 1, 1]
|
|
2665
|
+
];
|
|
2666
|
+
var ListAccountSettingsRequest$ = [3, n0, _LASR,
|
|
2667
|
+
0,
|
|
2668
|
+
[_n, _v, _pA, _eS, _nT, _mRa],
|
|
2669
|
+
[0, 0, 0, 2, 0, 1]
|
|
2670
|
+
];
|
|
2671
|
+
var ListAccountSettingsResponse$ = [3, n0, _LASRi,
|
|
2672
|
+
0,
|
|
2673
|
+
[_set, _nT],
|
|
2674
|
+
[() => Settings, 0]
|
|
2675
|
+
];
|
|
2676
|
+
var ListAttributesRequest$ = [3, n0, _LAR,
|
|
2677
|
+
0,
|
|
2678
|
+
[_tT, _cl, _aNt, _aV, _nT, _mRa],
|
|
2679
|
+
[0, 0, 0, 0, 0, 1], 1
|
|
2680
|
+
];
|
|
2681
|
+
var ListAttributesResponse$ = [3, n0, _LARi,
|
|
2682
|
+
0,
|
|
2683
|
+
[_at, _nT],
|
|
2684
|
+
[() => Attributes, 0]
|
|
2685
|
+
];
|
|
2686
|
+
var ListClustersRequest$ = [3, n0, _LCR,
|
|
2687
|
+
0,
|
|
2688
|
+
[_nT, _mRa],
|
|
2689
|
+
[0, 1]
|
|
2690
|
+
];
|
|
2691
|
+
var ListClustersResponse$ = [3, n0, _LCRi,
|
|
2692
|
+
0,
|
|
2693
|
+
[_cAl, _nT],
|
|
2694
|
+
[64 | 0, 0]
|
|
2695
|
+
];
|
|
2696
|
+
var ListContainerInstancesRequest$ = [3, n0, _LCIR,
|
|
2697
|
+
0,
|
|
2698
|
+
[_cl, _fi, _nT, _mRa, _st],
|
|
2699
|
+
[0, 0, 0, 1, 0]
|
|
2700
|
+
];
|
|
2701
|
+
var ListContainerInstancesResponse$ = [3, n0, _LCIRi,
|
|
2702
|
+
0,
|
|
2703
|
+
[_cIAo, _nT],
|
|
2704
|
+
[64 | 0, 0]
|
|
2705
|
+
];
|
|
2706
|
+
var ListDaemonDeploymentsRequest$ = [3, n0, _LDDR,
|
|
2707
|
+
0,
|
|
2708
|
+
[_dA, _st, _cAr, _mRa, _nT],
|
|
2709
|
+
[0, 64 | 0, () => CreatedAt$, 1, 0], 1
|
|
2710
|
+
];
|
|
2711
|
+
var ListDaemonDeploymentsResponse$ = [3, n0, _LDDRi,
|
|
2712
|
+
0,
|
|
2713
|
+
[_nT, _dD],
|
|
2714
|
+
[0, () => DaemonDeploymentSummaryList]
|
|
2715
|
+
];
|
|
2716
|
+
var ListDaemonsRequest$ = [3, n0, _LDR,
|
|
2717
|
+
0,
|
|
2718
|
+
[_cA, _cPAa, _mRa, _nT],
|
|
2719
|
+
[0, 64 | 0, 1, 0]
|
|
2720
|
+
];
|
|
2721
|
+
var ListDaemonsResponse$ = [3, n0, _LDRi,
|
|
2722
|
+
0,
|
|
2723
|
+
[_dSL, _nT],
|
|
2724
|
+
[() => DaemonSummariesList, 0]
|
|
2725
|
+
];
|
|
2726
|
+
var ListDaemonTaskDefinitionsRequest$ = [3, n0, _LDTDR,
|
|
2727
|
+
0,
|
|
2728
|
+
[_fP, _f, _re, _st, _so, _nT, _mRa],
|
|
2729
|
+
[0, 0, 0, 0, 0, 0, 1]
|
|
2730
|
+
];
|
|
2731
|
+
var ListDaemonTaskDefinitionsResponse$ = [3, n0, _LDTDRi,
|
|
2732
|
+
0,
|
|
2733
|
+
[_dTDa, _nT],
|
|
2734
|
+
[() => DaemonTaskDefinitionSummaries, 0]
|
|
2735
|
+
];
|
|
2736
|
+
var ListServiceDeploymentsRequest$ = [3, n0, _LSDR,
|
|
2737
|
+
0,
|
|
2738
|
+
[_ser, _cl, _st, _cAr, _nT, _mRa],
|
|
2739
|
+
[0, 0, 64 | 0, () => CreatedAt$, 0, 1], 1
|
|
2740
|
+
];
|
|
2741
|
+
var ListServiceDeploymentsResponse$ = [3, n0, _LSDRi,
|
|
2742
|
+
0,
|
|
2743
|
+
[_sD, _nT],
|
|
2744
|
+
[() => ServiceDeploymentsBrief, 0]
|
|
2745
|
+
];
|
|
2746
|
+
var ListServicesByNamespaceRequest$ = [3, n0, _LSBNR,
|
|
2747
|
+
0,
|
|
2748
|
+
[_na, _nT, _mRa],
|
|
2749
|
+
[0, 0, 1], 1
|
|
2750
|
+
];
|
|
2751
|
+
var ListServicesByNamespaceResponse$ = [3, n0, _LSBNRi,
|
|
2752
|
+
0,
|
|
2753
|
+
[_sAer, _nT],
|
|
2754
|
+
[64 | 0, 0]
|
|
2755
|
+
];
|
|
2756
|
+
var ListServicesRequest$ = [3, n0, _LSR,
|
|
2757
|
+
0,
|
|
2758
|
+
[_cl, _nT, _mRa, _lT, _sS, _rMT],
|
|
2759
|
+
[0, 0, 1, 0, 0, 0]
|
|
2760
|
+
];
|
|
2761
|
+
var ListServicesResponse$ = [3, n0, _LSRi,
|
|
2762
|
+
0,
|
|
2763
|
+
[_sAer, _nT],
|
|
2764
|
+
[64 | 0, 0]
|
|
2765
|
+
];
|
|
2766
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
2767
|
+
0,
|
|
2768
|
+
[_rAes],
|
|
2769
|
+
[0], 1
|
|
2770
|
+
];
|
|
2771
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
2772
|
+
0,
|
|
2773
|
+
[_ta],
|
|
2774
|
+
[() => Tags]
|
|
2775
|
+
];
|
|
2776
|
+
var ListTaskDefinitionFamiliesRequest$ = [3, n0, _LTDFR,
|
|
2777
|
+
0,
|
|
2778
|
+
[_fP, _st, _nT, _mRa],
|
|
2779
|
+
[0, 0, 0, 1]
|
|
2780
|
+
];
|
|
2781
|
+
var ListTaskDefinitionFamiliesResponse$ = [3, n0, _LTDFRi,
|
|
2782
|
+
0,
|
|
2783
|
+
[_fam, _nT],
|
|
2784
|
+
[64 | 0, 0]
|
|
2785
|
+
];
|
|
2786
|
+
var ListTaskDefinitionsRequest$ = [3, n0, _LTDR,
|
|
2787
|
+
0,
|
|
2788
|
+
[_fP, _st, _so, _nT, _mRa],
|
|
2789
|
+
[0, 0, 0, 0, 1]
|
|
2790
|
+
];
|
|
2791
|
+
var ListTaskDefinitionsResponse$ = [3, n0, _LTDRi,
|
|
2792
|
+
0,
|
|
2793
|
+
[_tDAa, _nT],
|
|
2794
|
+
[64 | 0, 0]
|
|
2795
|
+
];
|
|
2796
|
+
var ListTasksRequest$ = [3, n0, _LTR,
|
|
2797
|
+
0,
|
|
2798
|
+
[_cl, _cIo, _f, _nT, _mRa, _sB, _sN, _dSe, _lT, _dNa],
|
|
2799
|
+
[0, 0, 0, 0, 1, 0, 0, 0, 0, 0]
|
|
2800
|
+
];
|
|
2801
|
+
var ListTasksResponse$ = [3, n0, _LTRi,
|
|
2802
|
+
0,
|
|
2803
|
+
[_tAas, _nT],
|
|
2804
|
+
[64 | 0, 0]
|
|
2805
|
+
];
|
|
2806
|
+
var LoadBalancer$ = [3, n0, _LB,
|
|
2807
|
+
0,
|
|
2808
|
+
[_tGA, _lBN, _cNo, _cPon, _aCd],
|
|
2809
|
+
[0, 0, 0, 1, () => AdvancedConfiguration$]
|
|
2810
|
+
];
|
|
2811
|
+
var LogConfiguration$ = [3, n0, _LCo,
|
|
2812
|
+
0,
|
|
2813
|
+
[_lD, _o, _sO],
|
|
2814
|
+
[0, 128 | 0, () => SecretList], 1
|
|
2815
|
+
];
|
|
2816
|
+
var ManagedAgent$ = [3, n0, _MA,
|
|
2817
|
+
0,
|
|
2818
|
+
[_lSA, _n, _r, _lS],
|
|
2819
|
+
[4, 0, 0, 0]
|
|
2820
|
+
];
|
|
2821
|
+
var ManagedAgentStateChange$ = [3, n0, _MASC,
|
|
2822
|
+
0,
|
|
2823
|
+
[_cNo, _mAN, _st, _r],
|
|
2824
|
+
[0, 0, 0, 0], 3
|
|
2825
|
+
];
|
|
2826
|
+
var ManagedApplicationAutoScalingPolicy$ = [3, n0, _MAASP,
|
|
2827
|
+
0,
|
|
2828
|
+
[_st, _uA, _pTo, _tV, _met, _ar, _sR],
|
|
2829
|
+
[0, 4, 0, 1, 0, 0, 0], 5
|
|
2830
|
+
];
|
|
2831
|
+
var ManagedAutoScaling$ = [3, n0, _MAS,
|
|
2832
|
+
0,
|
|
2833
|
+
[_sTca, _aASP],
|
|
2834
|
+
[() => ManagedScalableTarget$, () => ManagedApplicationAutoScalingPolicies]
|
|
2835
|
+
];
|
|
2836
|
+
var ManagedCertificate$ = [3, n0, _MC,
|
|
2837
|
+
0,
|
|
2838
|
+
[_st, _uA, _dNo, _ar, _sR],
|
|
2839
|
+
[0, 4, 0, 0, 0], 3
|
|
2840
|
+
];
|
|
2841
|
+
var ManagedIngressPath$ = [3, n0, _MIP,
|
|
2842
|
+
0,
|
|
2843
|
+
[_aT, _end, _lBo, _lBSG, _ce, _li, _ru, _tG],
|
|
2844
|
+
[0, 0, () => ManagedLoadBalancer$, () => ManagedSecurityGroups, () => ManagedCertificate$, () => ManagedListener$, () => ManagedListenerRule$, () => ManagedTargetGroups], 2
|
|
2845
|
+
];
|
|
2846
|
+
var ManagedInstancesLocalStorageConfiguration$ = [3, n0, _MILSC,
|
|
2847
|
+
0,
|
|
2848
|
+
[_uLS],
|
|
2849
|
+
[2]
|
|
2850
|
+
];
|
|
2851
|
+
var ManagedInstancesNetworkConfiguration$ = [3, n0, _MINC,
|
|
2852
|
+
0,
|
|
2853
|
+
[_su, _sG],
|
|
2854
|
+
[64 | 0, 64 | 0]
|
|
2855
|
+
];
|
|
2856
|
+
var ManagedInstancesProvider$ = [3, n0, _MIPa,
|
|
2857
|
+
0,
|
|
2858
|
+
[_iRA, _iLT, _pTr, _iO, _aRC],
|
|
2859
|
+
[0, [() => InstanceLaunchTemplate$, 0], 0, () => InfrastructureOptimization$, () => AutoRepairConfiguration$]
|
|
2860
|
+
];
|
|
2861
|
+
var ManagedInstancesStorageConfiguration$ = [3, n0, _MISC,
|
|
2862
|
+
0,
|
|
2863
|
+
[_sSGB],
|
|
2864
|
+
[1]
|
|
2865
|
+
];
|
|
2866
|
+
var ManagedListener$ = [3, n0, _ML,
|
|
2867
|
+
0,
|
|
2868
|
+
[_st, _uA, _ar, _sR],
|
|
2869
|
+
[0, 4, 0, 0], 2
|
|
2870
|
+
];
|
|
2871
|
+
var ManagedListenerRule$ = [3, n0, _MLR,
|
|
2872
|
+
0,
|
|
2873
|
+
[_st, _uA, _ar, _sR],
|
|
2874
|
+
[0, 4, 0, 0], 2
|
|
2875
|
+
];
|
|
2876
|
+
var ManagedLoadBalancer$ = [3, n0, _MLB,
|
|
2877
|
+
0,
|
|
2878
|
+
[_st, _uA, _sch, _ar, _sR, _sI, _sGI],
|
|
2879
|
+
[0, 4, 0, 0, 0, 64 | 0, 64 | 0], 3
|
|
2880
|
+
];
|
|
2881
|
+
var ManagedLogGroup$ = [3, n0, _MLG,
|
|
2882
|
+
0,
|
|
2883
|
+
[_st, _uA, _lGN, _ar, _sR],
|
|
2884
|
+
[0, 4, 0, 0, 0], 3
|
|
2885
|
+
];
|
|
2886
|
+
var ManagedMetricAlarm$ = [3, n0, _MMA,
|
|
2887
|
+
0,
|
|
2888
|
+
[_st, _uA, _ar, _sR],
|
|
2889
|
+
[0, 4, 0, 0], 2
|
|
2890
|
+
];
|
|
2891
|
+
var ManagedScalableTarget$ = [3, n0, _MST,
|
|
2892
|
+
0,
|
|
2893
|
+
[_st, _uA, _mC, _mCa, _ar, _sR],
|
|
2894
|
+
[0, 4, 1, 1, 0, 0], 4
|
|
2895
|
+
];
|
|
2896
|
+
var ManagedScaling$ = [3, n0, _MS,
|
|
2897
|
+
0,
|
|
2898
|
+
[_st, _tCa, _mSSS, _mSSSa, _iWP],
|
|
2899
|
+
[0, 1, 1, 1, 1]
|
|
2900
|
+
];
|
|
2901
|
+
var ManagedSecurityGroup$ = [3, n0, _MSG,
|
|
2902
|
+
0,
|
|
2903
|
+
[_st, _uA, _ar, _sR],
|
|
2904
|
+
[0, 4, 0, 0], 2
|
|
2905
|
+
];
|
|
2906
|
+
var ManagedStorageConfiguration$ = [3, n0, _MSC,
|
|
2907
|
+
0,
|
|
2908
|
+
[_kKI, _fESKKI],
|
|
2909
|
+
[0, 0]
|
|
2910
|
+
];
|
|
2911
|
+
var ManagedTargetGroup$ = [3, n0, _MTG,
|
|
2912
|
+
0,
|
|
2913
|
+
[_st, _uA, _hCP, _hCPe, _po, _ar, _sR],
|
|
2914
|
+
[0, 4, 0, 1, 1, 0, 0], 5
|
|
2915
|
+
];
|
|
2916
|
+
var MemoryGiBPerVCpuRequest$ = [3, n0, _MGBPVCR,
|
|
2917
|
+
0,
|
|
2918
|
+
[_mi, _ma],
|
|
2919
|
+
[1, 1]
|
|
2920
|
+
];
|
|
2921
|
+
var MemoryMiBRequest$ = [3, n0, _MMBR,
|
|
2922
|
+
0,
|
|
2923
|
+
[_mi, _ma],
|
|
2924
|
+
[1, 1], 1
|
|
2925
|
+
];
|
|
2926
|
+
var MetricConfiguration$ = [3, n0, _MCe,
|
|
2927
|
+
0,
|
|
2928
|
+
[_mN, _rSe],
|
|
2929
|
+
[64 | 0, 1], 2
|
|
2930
|
+
];
|
|
2931
|
+
var MonitoringConfiguration$ = [3, n0, _MCo,
|
|
2932
|
+
0,
|
|
2933
|
+
[_mCe],
|
|
2934
|
+
[() => MetricConfigurationList]
|
|
2935
|
+
];
|
|
2936
|
+
var MountPoint$ = [3, n0, _MP,
|
|
2937
|
+
0,
|
|
2938
|
+
[_sV, _cPo, _rO],
|
|
2939
|
+
[0, 0, 2]
|
|
2940
|
+
];
|
|
2941
|
+
var NetworkBandwidthGbpsRequest$ = [3, n0, _NBGR,
|
|
2942
|
+
0,
|
|
2943
|
+
[_mi, _ma],
|
|
2944
|
+
[1, 1]
|
|
2945
|
+
];
|
|
2946
|
+
var NetworkBinding$ = [3, n0, _NB,
|
|
2947
|
+
0,
|
|
2948
|
+
[_bIP, _cPon, _hPo, _pr, _cPR, _hPR],
|
|
2949
|
+
[0, 1, 1, 0, 0, 0]
|
|
2950
|
+
];
|
|
2951
|
+
var NetworkConfiguration$ = [3, n0, _NC,
|
|
2952
|
+
0,
|
|
2953
|
+
[_aCw],
|
|
2954
|
+
[() => AwsVpcConfiguration$]
|
|
2955
|
+
];
|
|
2956
|
+
var NetworkInterface$ = [3, n0, _NI,
|
|
2957
|
+
0,
|
|
2958
|
+
[_aI, _pIA, _iAp],
|
|
2959
|
+
[0, 0, 0]
|
|
2960
|
+
];
|
|
2961
|
+
var NetworkInterfaceCountRequest$ = [3, n0, _NICR,
|
|
2962
|
+
0,
|
|
2963
|
+
[_mi, _ma],
|
|
2964
|
+
[1, 1]
|
|
2965
|
+
];
|
|
2966
|
+
var PlacementConstraint$ = [3, n0, _PC,
|
|
2967
|
+
0,
|
|
2968
|
+
[_t, _ex],
|
|
2969
|
+
[0, 0]
|
|
2970
|
+
];
|
|
2971
|
+
var PlacementStrategy$ = [3, n0, _PS,
|
|
2972
|
+
0,
|
|
2973
|
+
[_t, _fie],
|
|
2974
|
+
[0, 0]
|
|
2975
|
+
];
|
|
2976
|
+
var PlatformDevice$ = [3, n0, _PD,
|
|
2977
|
+
0,
|
|
2978
|
+
[_i, _t],
|
|
2979
|
+
[0, 0], 2
|
|
2980
|
+
];
|
|
2981
|
+
var PortMapping$ = [3, n0, _PM,
|
|
2982
|
+
0,
|
|
2983
|
+
[_cPon, _hPo, _pr, _n, _aP, _cPR],
|
|
2984
|
+
[1, 1, 0, 0, 0, 0]
|
|
2985
|
+
];
|
|
2986
|
+
var ProtectedTask$ = [3, n0, _PT,
|
|
2987
|
+
0,
|
|
2988
|
+
[_tA, _pE, _eD],
|
|
2989
|
+
[0, 2, 4]
|
|
2990
|
+
];
|
|
2991
|
+
var ProxyConfiguration$ = [3, n0, _PCr,
|
|
2992
|
+
0,
|
|
2993
|
+
[_cNo, _t, _pro],
|
|
2994
|
+
[0, 0, () => ProxyConfigurationProperties], 1
|
|
2995
|
+
];
|
|
2996
|
+
var PutAccountSettingDefaultRequest$ = [3, n0, _PASDR,
|
|
2997
|
+
0,
|
|
2998
|
+
[_n, _v],
|
|
2999
|
+
[0, 0], 2
|
|
3000
|
+
];
|
|
3001
|
+
var PutAccountSettingDefaultResponse$ = [3, n0, _PASDRu,
|
|
3002
|
+
0,
|
|
3003
|
+
[_sett],
|
|
3004
|
+
[() => Setting$]
|
|
3005
|
+
];
|
|
3006
|
+
var PutAccountSettingRequest$ = [3, n0, _PASR,
|
|
3007
|
+
0,
|
|
3008
|
+
[_n, _v, _pA],
|
|
3009
|
+
[0, 0, 0], 2
|
|
3010
|
+
];
|
|
3011
|
+
var PutAccountSettingResponse$ = [3, n0, _PASRu,
|
|
3012
|
+
0,
|
|
3013
|
+
[_sett],
|
|
3014
|
+
[() => Setting$]
|
|
3015
|
+
];
|
|
3016
|
+
var PutAttributesRequest$ = [3, n0, _PAR,
|
|
3017
|
+
0,
|
|
3018
|
+
[_at, _cl],
|
|
3019
|
+
[() => Attributes, 0], 1
|
|
3020
|
+
];
|
|
3021
|
+
var PutAttributesResponse$ = [3, n0, _PARu,
|
|
3022
|
+
0,
|
|
3023
|
+
[_at],
|
|
3024
|
+
[() => Attributes]
|
|
3025
|
+
];
|
|
3026
|
+
var PutClusterCapacityProvidersRequest$ = [3, n0, _PCCPR,
|
|
3027
|
+
0,
|
|
3028
|
+
[_cl, _cPap, _dCPS],
|
|
3029
|
+
[0, 64 | 0, () => CapacityProviderStrategy], 3
|
|
3030
|
+
];
|
|
3031
|
+
var PutClusterCapacityProvidersResponse$ = [3, n0, _PCCPRu,
|
|
3032
|
+
0,
|
|
3033
|
+
[_cl],
|
|
3034
|
+
[() => Cluster$]
|
|
3035
|
+
];
|
|
3036
|
+
var RegisterContainerInstanceRequest$ = [3, n0, _RCIR,
|
|
3037
|
+
0,
|
|
3038
|
+
[_cl, _iID, _iIDS, _tR, _vI, _cIA, _at, _pD, _ta],
|
|
3039
|
+
[0, 0, 0, () => Resources, () => VersionInfo$, 0, () => Attributes, () => PlatformDevices, () => Tags]
|
|
3040
|
+
];
|
|
3041
|
+
var RegisterContainerInstanceResponse$ = [3, n0, _RCIRe,
|
|
3042
|
+
0,
|
|
3043
|
+
[_cIo],
|
|
3044
|
+
[() => ContainerInstance$]
|
|
3045
|
+
];
|
|
3046
|
+
var RegisterDaemonTaskDefinitionRequest$ = [3, n0, _RDTDR,
|
|
3047
|
+
0,
|
|
3048
|
+
[_f, _cD, _tRA, _eRA, _cp, _me, _vo, _ta, _pMi, _iM],
|
|
3049
|
+
[0, [() => DaemonContainerDefinitionList, 0], 0, 0, 0, 0, () => DaemonVolumeList, () => Tags, 0, 0], 2
|
|
3050
|
+
];
|
|
3051
|
+
var RegisterDaemonTaskDefinitionResponse$ = [3, n0, _RDTDRe,
|
|
3052
|
+
0,
|
|
3053
|
+
[_dTDA],
|
|
3054
|
+
[0]
|
|
3055
|
+
];
|
|
3056
|
+
var RegisterTaskDefinitionRequest$ = [3, n0, _RTDR,
|
|
3057
|
+
0,
|
|
3058
|
+
[_f, _cD, _tRA, _eRA, _nM, _vo, _pCl, _rCe, _cp, _me, _ta, _pMi, _iM, _pCr, _iAn, _eSp, _rPu, _eFI],
|
|
3059
|
+
[0, [() => ContainerDefinitions, 0], 0, 0, 0, () => VolumeList, () => TaskDefinitionPlacementConstraints, 64 | 0, 0, 0, () => Tags, 0, 0, () => ProxyConfiguration$, () => InferenceAccelerators, () => EphemeralStorage$, () => RuntimePlatform$, 2], 2
|
|
3060
|
+
];
|
|
3061
|
+
var RegisterTaskDefinitionResponse$ = [3, n0, _RTDRe,
|
|
3062
|
+
0,
|
|
3063
|
+
[_tD, _ta],
|
|
3064
|
+
[[() => TaskDefinition$, 0], () => Tags]
|
|
3065
|
+
];
|
|
3066
|
+
var RepositoryCredentials$ = [3, n0, _RC,
|
|
3067
|
+
8,
|
|
3068
|
+
[_cPr],
|
|
3069
|
+
[0], 1
|
|
3070
|
+
];
|
|
3071
|
+
var ResolvedConfiguration$ = [3, n0, _RCe,
|
|
3072
|
+
0,
|
|
3073
|
+
[_lB],
|
|
3074
|
+
[() => ServiceRevisionLoadBalancers]
|
|
3075
|
+
];
|
|
3076
|
+
var Resource$ = [3, n0, _R,
|
|
3077
|
+
0,
|
|
3078
|
+
[_n, _t, _dV, _lV, _iV, _sSV],
|
|
3079
|
+
[0, 0, 1, 1, 1, 64 | 0]
|
|
3080
|
+
];
|
|
3081
|
+
var ResourceRequirement$ = [3, n0, _RR,
|
|
3082
|
+
0,
|
|
3083
|
+
[_v, _t],
|
|
3084
|
+
[0, 0], 2
|
|
3085
|
+
];
|
|
3086
|
+
var Rollback$ = [3, n0, _Ro,
|
|
3087
|
+
0,
|
|
3088
|
+
[_r, _sA, _sRAe],
|
|
3089
|
+
[0, 4, 0]
|
|
3090
|
+
];
|
|
3091
|
+
var RunTaskRequest$ = [3, n0, _RTR,
|
|
3092
|
+
0,
|
|
3093
|
+
[_tD, _cPS, _cl, _cou, _eECSMT, _eEC, _g, _lT, _nC, _ov, _pCl, _pS, _pV, _pTr, _rIe, _sB, _ta, _cT, _vCo],
|
|
3094
|
+
[0, () => CapacityProviderStrategy, 0, 1, 2, 2, 0, 0, () => NetworkConfiguration$, [() => TaskOverride$, 0], () => PlacementConstraints, () => PlacementStrategies, 0, 0, 0, 0, () => Tags, [0, 4], () => TaskVolumeConfigurations], 1
|
|
3095
|
+
];
|
|
3096
|
+
var RunTaskResponse$ = [3, n0, _RTRu,
|
|
3097
|
+
0,
|
|
3098
|
+
[_tas, _fa],
|
|
3099
|
+
[[() => Tasks, 0], () => Failures]
|
|
3100
|
+
];
|
|
3101
|
+
var RuntimePlatform$ = [3, n0, _RP,
|
|
3102
|
+
0,
|
|
3103
|
+
[_cAp, _oSF],
|
|
3104
|
+
[0, 0]
|
|
3105
|
+
];
|
|
3106
|
+
var S3FilesVolumeConfiguration$ = [3, n0, _SFVC,
|
|
3107
|
+
0,
|
|
3108
|
+
[_fSA, _rD, _tEP, _aPA],
|
|
3109
|
+
[0, 0, 1, 0], 1
|
|
3110
|
+
];
|
|
3111
|
+
var Scale$ = [3, n0, _S,
|
|
3112
|
+
0,
|
|
3113
|
+
[_v, _un],
|
|
3114
|
+
[1, 0]
|
|
3115
|
+
];
|
|
3116
|
+
var Secret$ = [3, n0, _Se,
|
|
3117
|
+
0,
|
|
3118
|
+
[_n, _vFa],
|
|
3119
|
+
[0, 0], 2
|
|
3120
|
+
];
|
|
3121
|
+
var Service$ = [3, n0, _Ser,
|
|
3122
|
+
0,
|
|
3123
|
+
[_sAe, _sN, _cA, _lB, _sRe, _st, _dCe, _rCu, _pCe, _lT, _cPS, _pV, _pF, _tD, _dC, _tSa, _dep, _rA, _ev, _cAr, _cSD, _cSR, _pCl, _pS, _nC, _hCGPS, _sS, _dCep, _ta, _cBr, _eECSMT, _pTr, _eEC, _aZR, _rMT],
|
|
3124
|
+
[0, 0, 0, () => LoadBalancers, () => ServiceRegistries, 0, 1, 1, 1, 0, () => CapacityProviderStrategy, 0, 0, 0, () => DeploymentConfiguration$, () => TaskSets, () => Deployments, 0, () => ServiceEvents, 4, 0, () => ServiceCurrentRevisionSummaryList, () => PlacementConstraints, () => PlacementStrategies, () => NetworkConfiguration$, 1, 0, () => DeploymentController$, () => Tags, 0, 2, 0, 2, 0, 0]
|
|
3125
|
+
];
|
|
3126
|
+
var ServiceConnectAccessLogConfiguration$ = [3, n0, _SCALC,
|
|
3127
|
+
0,
|
|
3128
|
+
[_for, _iQP],
|
|
3129
|
+
[0, 0], 1
|
|
3130
|
+
];
|
|
3131
|
+
var ServiceConnectClientAlias$ = [3, n0, _SCCA,
|
|
3132
|
+
0,
|
|
3133
|
+
[_po, _dNn, _tTR],
|
|
3134
|
+
[1, 0, () => ServiceConnectTestTrafficRules$], 1
|
|
3135
|
+
];
|
|
3136
|
+
var ServiceConnectConfiguration$ = [3, n0, _SCC,
|
|
3137
|
+
0,
|
|
3138
|
+
[_ena, _na, _serv, _lC, _aLCc],
|
|
3139
|
+
[2, 0, () => ServiceConnectServiceList, () => LogConfiguration$, () => ServiceConnectAccessLogConfiguration$], 1
|
|
3140
|
+
];
|
|
3141
|
+
var ServiceConnectService$ = [3, n0, _SCS,
|
|
3142
|
+
0,
|
|
3143
|
+
[_pN, _dNi, _cAli, _iPO, _ti, _tl],
|
|
3144
|
+
[0, 0, () => ServiceConnectClientAliasList, 1, () => TimeoutConfiguration$, () => ServiceConnectTlsConfiguration$], 1
|
|
3145
|
+
];
|
|
3146
|
+
var ServiceConnectServiceResource$ = [3, n0, _SCSR,
|
|
3147
|
+
0,
|
|
3148
|
+
[_dNi, _dAi],
|
|
3149
|
+
[0, 0]
|
|
3150
|
+
];
|
|
3151
|
+
var ServiceConnectTestTrafficHeaderMatchRules$ = [3, n0, _SCTTHMR,
|
|
3152
|
+
0,
|
|
3153
|
+
[_exa],
|
|
3154
|
+
[0], 1
|
|
3155
|
+
];
|
|
3156
|
+
var ServiceConnectTestTrafficHeaderRules$ = [3, n0, _SCTTHR,
|
|
3157
|
+
0,
|
|
3158
|
+
[_n, _v],
|
|
3159
|
+
[0, () => ServiceConnectTestTrafficHeaderMatchRules$], 1
|
|
3160
|
+
];
|
|
3161
|
+
var ServiceConnectTestTrafficRules$ = [3, n0, _SCTTR,
|
|
3162
|
+
0,
|
|
3163
|
+
[_he],
|
|
3164
|
+
[() => ServiceConnectTestTrafficHeaderRules$], 1
|
|
3165
|
+
];
|
|
3166
|
+
var ServiceConnectTlsCertificateAuthority$ = [3, n0, _SCTCA,
|
|
3167
|
+
0,
|
|
3168
|
+
[_aPAA],
|
|
3169
|
+
[0]
|
|
3170
|
+
];
|
|
3171
|
+
var ServiceConnectTlsConfiguration$ = [3, n0, _SCTC,
|
|
3172
|
+
0,
|
|
3173
|
+
[_iCA, _kK, _rA],
|
|
3174
|
+
[() => ServiceConnectTlsCertificateAuthority$, 0, 0], 1
|
|
3175
|
+
];
|
|
3176
|
+
var ServiceCurrentRevisionSummary$ = [3, n0, _SCRS,
|
|
3177
|
+
0,
|
|
3178
|
+
[_ar, _rTCe, _rTCu, _pTCe],
|
|
3179
|
+
[0, 1, 1, 1]
|
|
3180
|
+
];
|
|
3181
|
+
var ServiceDeployment$ = [3, n0, _SD,
|
|
3182
|
+
0,
|
|
3183
|
+
[_sDA, _sAe, _cA, _cAr, _sA, _fA, _sAt, _uA, _sSR, _tSR, _st, _sR, _lSif, _lHD, _dC, _rol, _dCB, _al],
|
|
3184
|
+
[0, 0, 0, 4, 4, 4, 4, 4, () => ServiceRevisionsSummaryList, () => ServiceRevisionSummary$, 0, 0, 0, () => DeploymentLifecycleHookDetailList, () => DeploymentConfiguration$, () => Rollback$, () => ServiceDeploymentCircuitBreaker$, () => ServiceDeploymentAlarms$]
|
|
3185
|
+
];
|
|
3186
|
+
var ServiceDeploymentAlarms$ = [3, n0, _SDA,
|
|
3187
|
+
0,
|
|
3188
|
+
[_st, _aN, _tAN],
|
|
3189
|
+
[0, 64 | 0, 64 | 0]
|
|
3190
|
+
];
|
|
3191
|
+
var ServiceDeploymentBrief$ = [3, n0, _SDB,
|
|
3192
|
+
0,
|
|
3193
|
+
[_sDA, _sAe, _cA, _sA, _cAr, _fA, _tSRA, _st, _sR],
|
|
3194
|
+
[0, 0, 0, 4, 4, 4, 0, 0, 0]
|
|
3195
|
+
];
|
|
3196
|
+
var ServiceDeploymentCircuitBreaker$ = [3, n0, _SDCB,
|
|
3197
|
+
0,
|
|
3198
|
+
[_st, _fCa, _th],
|
|
3199
|
+
[0, 1, 1]
|
|
3200
|
+
];
|
|
3201
|
+
var ServiceEvent$ = [3, n0, _SEe,
|
|
3202
|
+
0,
|
|
3203
|
+
[_i, _cAr, _m],
|
|
3204
|
+
[0, 4, 0]
|
|
3205
|
+
];
|
|
3206
|
+
var ServiceManagedEBSVolumeConfiguration$ = [3, n0, _SMEBSVC,
|
|
3207
|
+
0,
|
|
3208
|
+
[_rA, _enc, _kKI, _vT, _sIGB, _sIn, _vIR, _io, _thr, _tSag, _fTi],
|
|
3209
|
+
[0, 2, 0, 0, 1, 0, 1, 1, 1, () => EBSTagSpecifications, 0], 1
|
|
3210
|
+
];
|
|
3211
|
+
var ServiceRegistry$ = [3, n0, _SR,
|
|
3212
|
+
0,
|
|
3213
|
+
[_rAeg, _po, _cNo, _cPon],
|
|
3214
|
+
[0, 1, 0, 1]
|
|
3215
|
+
];
|
|
3216
|
+
var ServiceRevision$ = [3, n0, _SRe,
|
|
3217
|
+
0,
|
|
3218
|
+
[_sRAe, _sAe, _cA, _tD, _cPS, _lT, _pV, _pF, _lB, _sRe, _nC, _cI, _gDE, _sCC, _vCo, _fES, _cAr, _vLC, _rCes, _eMR, _mo],
|
|
3219
|
+
[0, 0, 0, 0, () => CapacityProviderStrategy, 0, 0, 0, () => LoadBalancers, () => ServiceRegistries, () => NetworkConfiguration$, () => ContainerImages, 2, () => ServiceConnectConfiguration$, () => ServiceVolumeConfigurations, () => DeploymentEphemeralStorage$, 4, () => VpcLatticeConfigurations, () => ResolvedConfiguration$, () => ECSManagedResources$, () => MonitoringConfiguration$]
|
|
3220
|
+
];
|
|
3221
|
+
var ServiceRevisionLoadBalancer$ = [3, n0, _SRLB,
|
|
3222
|
+
0,
|
|
3223
|
+
[_tGA, _pLR],
|
|
3224
|
+
[0, 0]
|
|
3225
|
+
];
|
|
3226
|
+
var ServiceRevisionSummary$ = [3, n0, _SRS,
|
|
3227
|
+
0,
|
|
3228
|
+
[_ar, _rTCe, _rTCu, _pTCe, _rTTW, _rPTW],
|
|
3229
|
+
[0, 1, 1, 1, 1, 1]
|
|
3230
|
+
];
|
|
3231
|
+
var ServiceVolumeConfiguration$ = [3, n0, _SVC,
|
|
3232
|
+
0,
|
|
3233
|
+
[_n, _mEBSV],
|
|
3234
|
+
[0, () => ServiceManagedEBSVolumeConfiguration$], 1
|
|
3235
|
+
];
|
|
3236
|
+
var Session$ = [3, n0, _Ses,
|
|
3237
|
+
0,
|
|
3238
|
+
[_sIe, _sU, _tVo],
|
|
3239
|
+
[0, 0, [() => SensitiveString, 0]]
|
|
3240
|
+
];
|
|
3241
|
+
var Setting$ = [3, n0, _Set,
|
|
3242
|
+
0,
|
|
3243
|
+
[_n, _v, _pA, _t],
|
|
3244
|
+
[0, 0, 0, 0]
|
|
3245
|
+
];
|
|
3246
|
+
var StartTaskRequest$ = [3, n0, _STR,
|
|
3247
|
+
0,
|
|
3248
|
+
[_cIon, _tD, _cl, _eECSMT, _eEC, _g, _nC, _ov, _pTr, _rIe, _sB, _ta, _vCo],
|
|
3249
|
+
[64 | 0, 0, 0, 2, 2, 0, () => NetworkConfiguration$, [() => TaskOverride$, 0], 0, 0, 0, () => Tags, () => TaskVolumeConfigurations], 2
|
|
3250
|
+
];
|
|
3251
|
+
var StartTaskResponse$ = [3, n0, _STRt,
|
|
3252
|
+
0,
|
|
3253
|
+
[_tas, _fa],
|
|
3254
|
+
[[() => Tasks, 0], () => Failures]
|
|
3255
|
+
];
|
|
3256
|
+
var StopServiceDeploymentRequest$ = [3, n0, _SSDR,
|
|
3257
|
+
0,
|
|
3258
|
+
[_sDA, _sTto],
|
|
3259
|
+
[0, 0], 1
|
|
3260
|
+
];
|
|
3261
|
+
var StopServiceDeploymentResponse$ = [3, n0, _SSDRt,
|
|
3262
|
+
0,
|
|
3263
|
+
[_sDA],
|
|
3264
|
+
[0]
|
|
3265
|
+
];
|
|
3266
|
+
var StopTaskRequest$ = [3, n0, _STRto,
|
|
3267
|
+
0,
|
|
3268
|
+
[_task, _cl, _r],
|
|
3269
|
+
[0, 0, 0], 1
|
|
3270
|
+
];
|
|
3271
|
+
var StopTaskResponse$ = [3, n0, _STRtop,
|
|
3272
|
+
0,
|
|
3273
|
+
[_task],
|
|
3274
|
+
[[() => Task$, 0]]
|
|
3275
|
+
];
|
|
3276
|
+
var SubmitAttachmentStateChangesRequest$ = [3, n0, _SASCR,
|
|
3277
|
+
0,
|
|
3278
|
+
[_a, _cl],
|
|
3279
|
+
[() => AttachmentStateChanges, 0], 1
|
|
3280
|
+
];
|
|
3281
|
+
var SubmitAttachmentStateChangesResponse$ = [3, n0, _SASCRu,
|
|
3282
|
+
0,
|
|
3283
|
+
[_ack],
|
|
3284
|
+
[0]
|
|
3285
|
+
];
|
|
3286
|
+
var SubmitContainerStateChangeRequest$ = [3, n0, _SCSCR,
|
|
3287
|
+
0,
|
|
3288
|
+
[_cl, _task, _cNo, _rIu, _st, _eC, _r, _nB],
|
|
3289
|
+
[0, 0, 0, 0, 0, 1, 0, () => NetworkBindings]
|
|
3290
|
+
];
|
|
3291
|
+
var SubmitContainerStateChangeResponse$ = [3, n0, _SCSCRu,
|
|
3292
|
+
0,
|
|
3293
|
+
[_ack],
|
|
3294
|
+
[0]
|
|
3295
|
+
];
|
|
3296
|
+
var SubmitTaskStateChangeRequest$ = [3, n0, _STSCR,
|
|
3297
|
+
0,
|
|
3298
|
+
[_cl, _task, _st, _r, _conta, _a, _mA, _pSA, _pSAu, _eSA],
|
|
3299
|
+
[0, 0, 0, 0, () => ContainerStateChanges, () => AttachmentStateChanges, () => ManagedAgentStateChanges, 4, 4, 4]
|
|
3300
|
+
];
|
|
3301
|
+
var SubmitTaskStateChangeResponse$ = [3, n0, _STSCRu,
|
|
3302
|
+
0,
|
|
3303
|
+
[_ack],
|
|
3304
|
+
[0]
|
|
3305
|
+
];
|
|
3306
|
+
var SystemControl$ = [3, n0, _SC,
|
|
3307
|
+
0,
|
|
3308
|
+
[_na, _v],
|
|
3309
|
+
[0, 0]
|
|
3310
|
+
];
|
|
3311
|
+
var Tag$ = [3, n0, _T,
|
|
3312
|
+
0,
|
|
3313
|
+
[_k, _v],
|
|
3314
|
+
[0, 0]
|
|
3315
|
+
];
|
|
3316
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
3317
|
+
0,
|
|
3318
|
+
[_rAes, _ta],
|
|
3319
|
+
[0, () => Tags], 2
|
|
3320
|
+
];
|
|
3321
|
+
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
3322
|
+
0,
|
|
3323
|
+
[],
|
|
3324
|
+
[]
|
|
3325
|
+
];
|
|
3326
|
+
var Task$ = [3, n0, _Ta,
|
|
3327
|
+
0,
|
|
3328
|
+
[_a, _at, _aZ, _cPN, _cA, _conn, _cAon, _cIA, _conta, _cp, _cAr, _dSe, _eEC, _eSA, _g, _hS, _iAn, _lS, _lT, _me, _ov, _pV, _pF, _pSA, _pSAu, _sA, _sB, _sCtop, _sAt, _sRt, _sAto, _ta, _tA, _tDA, _ve, _eSp, _fES],
|
|
3329
|
+
[() => Attachments, () => Attributes, 0, 0, 0, 0, 4, 0, () => Containers, 0, 4, 0, 2, 4, 0, 0, () => InferenceAccelerators, 0, 0, 0, [() => TaskOverride$, 0], 0, 0, 4, 4, 4, 0, 0, 4, 0, 4, () => Tags, 0, 0, 1, () => EphemeralStorage$, () => TaskEphemeralStorage$]
|
|
3330
|
+
];
|
|
3331
|
+
var TaskDefinition$ = [3, n0, _TD,
|
|
3332
|
+
0,
|
|
3333
|
+
[_tDA, _cD, _f, _tRA, _eRA, _nM, _re, _vo, _st, _rAeq, _pCl, _comp, _rPu, _rCe, _cp, _me, _iAn, _pMi, _iM, _pCr, _rAe, _dAer, _dRAe, _rB, _eSp, _eFI],
|
|
3334
|
+
[0, [() => ContainerDefinitions, 0], 0, 0, 0, 0, 1, () => VolumeList, 0, () => RequiresAttributes, () => TaskDefinitionPlacementConstraints, 64 | 0, () => RuntimePlatform$, 64 | 0, 0, 0, () => InferenceAccelerators, 0, 0, () => ProxyConfiguration$, 4, 4, 4, 0, () => EphemeralStorage$, 2]
|
|
3335
|
+
];
|
|
3336
|
+
var TaskDefinitionPlacementConstraint$ = [3, n0, _TDPC,
|
|
3337
|
+
0,
|
|
3338
|
+
[_t, _ex],
|
|
3339
|
+
[0, 0]
|
|
3340
|
+
];
|
|
3341
|
+
var TaskEphemeralStorage$ = [3, n0, _TES,
|
|
3342
|
+
0,
|
|
3343
|
+
[_sIGB, _kKI],
|
|
3344
|
+
[1, 0]
|
|
3345
|
+
];
|
|
3346
|
+
var TaskManagedEBSVolumeConfiguration$ = [3, n0, _TMEBSVC,
|
|
3347
|
+
0,
|
|
3348
|
+
[_rA, _enc, _kKI, _vT, _sIGB, _sIn, _vIR, _io, _thr, _tSag, _tP, _fTi],
|
|
3349
|
+
[0, 2, 0, 0, 1, 0, 1, 1, 1, () => EBSTagSpecifications, () => TaskManagedEBSVolumeTerminationPolicy$, 0], 1
|
|
3350
|
+
];
|
|
3351
|
+
var TaskManagedEBSVolumeTerminationPolicy$ = [3, n0, _TMEBSVTP,
|
|
3352
|
+
0,
|
|
3353
|
+
[_dOT],
|
|
3354
|
+
[2], 1
|
|
3355
|
+
];
|
|
3356
|
+
var TaskOverride$ = [3, n0, _TO,
|
|
3357
|
+
0,
|
|
3358
|
+
[_cO, _cp, _iAO, _eRA, _me, _tRA, _eSp],
|
|
3359
|
+
[[() => ContainerOverrides, 0], 0, () => InferenceAcceleratorOverrides, 0, 0, 0, () => EphemeralStorage$]
|
|
3360
|
+
];
|
|
3361
|
+
var TaskSet$ = [3, n0, _TS,
|
|
3362
|
+
0,
|
|
3363
|
+
[_i, _tSA, _sAe, _cA, _sB, _eI, _st, _tD, _cDC, _pCe, _rCu, _cAr, _uA, _lT, _cPS, _pV, _pF, _nC, _lB, _sRe, _sc, _sSt, _sSA, _ta, _fES],
|
|
3364
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 4, 4, 0, () => CapacityProviderStrategy, 0, 0, () => NetworkConfiguration$, () => LoadBalancers, () => ServiceRegistries, () => Scale$, 0, 4, () => Tags, () => DeploymentEphemeralStorage$]
|
|
3365
|
+
];
|
|
3366
|
+
var TaskVolumeConfiguration$ = [3, n0, _TVC,
|
|
3367
|
+
0,
|
|
3368
|
+
[_n, _mEBSV],
|
|
3369
|
+
[0, () => TaskManagedEBSVolumeConfiguration$], 1
|
|
3370
|
+
];
|
|
3371
|
+
var ThresholdConfiguration$ = [3, n0, _TC,
|
|
3372
|
+
0,
|
|
3373
|
+
[_t, _v],
|
|
3374
|
+
[0, 1], 2
|
|
3375
|
+
];
|
|
3376
|
+
var TimeoutConfiguration$ = [3, n0, _TCi,
|
|
3377
|
+
0,
|
|
3378
|
+
[_iTS, _pRTS],
|
|
3379
|
+
[1, 1]
|
|
3380
|
+
];
|
|
3381
|
+
var Tmpfs$ = [3, n0, _Tm,
|
|
3382
|
+
0,
|
|
3383
|
+
[_cPo, _si, _mO],
|
|
3384
|
+
[0, 1, 64 | 0], 2
|
|
3385
|
+
];
|
|
3386
|
+
var TotalLocalStorageGBRequest$ = [3, n0, _TLSGBR,
|
|
3387
|
+
0,
|
|
3388
|
+
[_mi, _ma],
|
|
3389
|
+
[1, 1]
|
|
3390
|
+
];
|
|
3391
|
+
var Ulimit$ = [3, n0, _U,
|
|
3392
|
+
0,
|
|
3393
|
+
[_n, _sL, _hL],
|
|
3394
|
+
[0, 1, 1], 3
|
|
3395
|
+
];
|
|
3396
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
3397
|
+
0,
|
|
3398
|
+
[_rAes, _tK],
|
|
3399
|
+
[0, 64 | 0], 2
|
|
3400
|
+
];
|
|
3401
|
+
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
3402
|
+
0,
|
|
3403
|
+
[],
|
|
3404
|
+
[]
|
|
3405
|
+
];
|
|
3406
|
+
var UpdateCapacityProviderRequest$ = [3, n0, _UCPR,
|
|
3407
|
+
0,
|
|
3408
|
+
[_n, _cl, _aSGP, _mIP],
|
|
3409
|
+
[0, 0, () => AutoScalingGroupProviderUpdate$, [() => UpdateManagedInstancesProviderConfiguration$, 0]], 1
|
|
3410
|
+
];
|
|
3411
|
+
var UpdateCapacityProviderResponse$ = [3, n0, _UCPRp,
|
|
3412
|
+
0,
|
|
3413
|
+
[_cPa],
|
|
3414
|
+
[[() => CapacityProvider$, 0]]
|
|
3415
|
+
];
|
|
3416
|
+
var UpdateClusterRequest$ = [3, n0, _UCR,
|
|
3417
|
+
0,
|
|
3418
|
+
[_cl, _set, _co, _sCD],
|
|
3419
|
+
[0, () => ClusterSettings, () => ClusterConfiguration$, () => ClusterServiceConnectDefaultsRequest$], 1
|
|
3420
|
+
];
|
|
3421
|
+
var UpdateClusterResponse$ = [3, n0, _UCRp,
|
|
3422
|
+
0,
|
|
3423
|
+
[_cl],
|
|
3424
|
+
[() => Cluster$]
|
|
3425
|
+
];
|
|
3426
|
+
var UpdateClusterSettingsRequest$ = [3, n0, _UCSR,
|
|
3427
|
+
0,
|
|
3428
|
+
[_cl, _set],
|
|
3429
|
+
[0, () => ClusterSettings], 2
|
|
3430
|
+
];
|
|
3431
|
+
var UpdateClusterSettingsResponse$ = [3, n0, _UCSRp,
|
|
3432
|
+
0,
|
|
3433
|
+
[_cl],
|
|
3434
|
+
[() => Cluster$]
|
|
3435
|
+
];
|
|
3436
|
+
var UpdateContainerAgentRequest$ = [3, n0, _UCAR,
|
|
3437
|
+
0,
|
|
3438
|
+
[_cIo, _cl],
|
|
3439
|
+
[0, 0], 1
|
|
3440
|
+
];
|
|
3441
|
+
var UpdateContainerAgentResponse$ = [3, n0, _UCARp,
|
|
3442
|
+
0,
|
|
3443
|
+
[_cIo],
|
|
3444
|
+
[() => ContainerInstance$]
|
|
3445
|
+
];
|
|
3446
|
+
var UpdateContainerInstancesStateRequest$ = [3, n0, _UCISR,
|
|
3447
|
+
0,
|
|
3448
|
+
[_cIon, _st, _cl],
|
|
3449
|
+
[64 | 0, 0, 0], 2
|
|
3450
|
+
];
|
|
3451
|
+
var UpdateContainerInstancesStateResponse$ = [3, n0, _UCISRp,
|
|
3452
|
+
0,
|
|
3453
|
+
[_cIon, _fa],
|
|
3454
|
+
[() => ContainerInstances, () => Failures]
|
|
3455
|
+
];
|
|
3456
|
+
var UpdateDaemonRequest$ = [3, n0, _UDR,
|
|
3457
|
+
0,
|
|
3458
|
+
[_dA, _dTDA, _cPAa, _dC, _pTr, _eECSMT, _eEC],
|
|
3459
|
+
[0, 0, 64 | 0, () => DaemonDeploymentConfiguration$, 0, 2, 2], 3
|
|
3460
|
+
];
|
|
3461
|
+
var UpdateDaemonResponse$ = [3, n0, _UDRp,
|
|
3462
|
+
0,
|
|
3463
|
+
[_dA, _st, _cAr, _uA, _dAe],
|
|
3464
|
+
[0, 0, 4, 4, 0]
|
|
3465
|
+
];
|
|
3466
|
+
var UpdatedExpressGatewayService$ = [3, n0, _UEGS,
|
|
3467
|
+
0,
|
|
3468
|
+
[_sAe, _cl, _sN, _st, _tCar, _cAr, _uA],
|
|
3469
|
+
[0, 0, 0, () => ExpressGatewayServiceStatus$, [() => ExpressGatewayServiceConfiguration$, 0], 4, 4]
|
|
3470
|
+
];
|
|
3471
|
+
var UpdateExpressGatewayServiceRequest$ = [3, n0, _UEGSR,
|
|
3472
|
+
0,
|
|
3473
|
+
[_sAe, _eRA, _hCP, _pC, _tRA, _nC, _cp, _me, _sTc, _tDA],
|
|
3474
|
+
[0, 0, 0, [() => ExpressGatewayContainer$, 0], 0, () => ExpressGatewayServiceNetworkConfiguration$, 0, 0, () => ExpressGatewayScalingTarget$, 0], 1
|
|
3475
|
+
];
|
|
3476
|
+
var UpdateExpressGatewayServiceResponse$ = [3, n0, _UEGSRp,
|
|
3477
|
+
0,
|
|
3478
|
+
[_ser],
|
|
3479
|
+
[[() => UpdatedExpressGatewayService$, 0]]
|
|
3480
|
+
];
|
|
3481
|
+
var UpdateManagedInstancesProviderConfiguration$ = [3, n0, _UMIPC,
|
|
3482
|
+
0,
|
|
3483
|
+
[_iRA, _iLT, _pTr, _iO, _aRC],
|
|
3484
|
+
[0, [() => InstanceLaunchTemplateUpdate$, 0], 0, () => InfrastructureOptimization$, () => AutoRepairConfiguration$], 2
|
|
3485
|
+
];
|
|
3486
|
+
var UpdateServicePrimaryTaskSetRequest$ = [3, n0, _USPTSR,
|
|
3487
|
+
0,
|
|
3488
|
+
[_cl, _ser, _pTS],
|
|
3489
|
+
[0, 0, 0], 3
|
|
3490
|
+
];
|
|
3491
|
+
var UpdateServicePrimaryTaskSetResponse$ = [3, n0, _USPTSRp,
|
|
3492
|
+
0,
|
|
3493
|
+
[_tS],
|
|
3494
|
+
[() => TaskSet$]
|
|
3495
|
+
];
|
|
3496
|
+
var UpdateServiceRequest$ = [3, n0, _USR,
|
|
3497
|
+
0,
|
|
3498
|
+
[_ser, _cl, _dCe, _tD, _cPS, _dC, _aZR, _nC, _pCl, _pS, _pV, _fND, _hCGPS, _dCep, _eEC, _eECSMT, _lB, _pTr, _sRe, _sCC, _vCo, _vLC, _mo],
|
|
3499
|
+
[0, 0, 1, 0, () => CapacityProviderStrategy, () => DeploymentConfiguration$, 0, () => NetworkConfiguration$, () => PlacementConstraints, () => PlacementStrategies, 0, 2, 1, () => DeploymentController$, 2, 2, () => LoadBalancers, 0, () => ServiceRegistries, () => ServiceConnectConfiguration$, () => ServiceVolumeConfigurations, () => VpcLatticeConfigurations, () => MonitoringConfiguration$], 1
|
|
3500
|
+
];
|
|
3501
|
+
var UpdateServiceResponse$ = [3, n0, _USRp,
|
|
3502
|
+
0,
|
|
3503
|
+
[_ser],
|
|
3504
|
+
[() => Service$]
|
|
3505
|
+
];
|
|
3506
|
+
var UpdateTaskProtectionRequest$ = [3, n0, _UTPR,
|
|
3507
|
+
0,
|
|
3508
|
+
[_cl, _tas, _pE, _eIM],
|
|
3509
|
+
[0, 64 | 0, 2, 1], 3
|
|
3510
|
+
];
|
|
3511
|
+
var UpdateTaskProtectionResponse$ = [3, n0, _UTPRp,
|
|
3512
|
+
0,
|
|
3513
|
+
[_pTro, _fa],
|
|
3514
|
+
[() => ProtectedTasks, () => Failures]
|
|
3515
|
+
];
|
|
3516
|
+
var UpdateTaskSetRequest$ = [3, n0, _UTSR,
|
|
3517
|
+
0,
|
|
3518
|
+
[_cl, _ser, _tS, _sc],
|
|
3519
|
+
[0, 0, 0, () => Scale$], 4
|
|
3520
|
+
];
|
|
3521
|
+
var UpdateTaskSetResponse$ = [3, n0, _UTSRp,
|
|
3522
|
+
0,
|
|
3523
|
+
[_tS],
|
|
3524
|
+
[() => TaskSet$]
|
|
3525
|
+
];
|
|
3526
|
+
var VCpuCountRangeRequest$ = [3, n0, _VCCRR,
|
|
3527
|
+
0,
|
|
3528
|
+
[_mi, _ma],
|
|
3529
|
+
[1, 1], 1
|
|
3530
|
+
];
|
|
3531
|
+
var VersionInfo$ = [3, n0, _VI,
|
|
3532
|
+
0,
|
|
3533
|
+
[_aVg, _aH, _dVo],
|
|
3534
|
+
[0, 0, 0]
|
|
3535
|
+
];
|
|
3536
|
+
var Volume$ = [3, n0, _V,
|
|
3537
|
+
0,
|
|
3538
|
+
[_n, _ho, _dVC, _eVC, _sVC, _fWFSVC, _cAL],
|
|
3539
|
+
[0, () => HostVolumeProperties$, () => DockerVolumeConfiguration$, () => EFSVolumeConfiguration$, () => S3FilesVolumeConfiguration$, () => FSxWindowsFileServerVolumeConfiguration$, 2]
|
|
3540
|
+
];
|
|
3541
|
+
var VolumeFrom$ = [3, n0, _VF,
|
|
3542
|
+
0,
|
|
3543
|
+
[_sCo, _rO],
|
|
3544
|
+
[0, 2]
|
|
3545
|
+
];
|
|
3546
|
+
var VpcLatticeConfiguration$ = [3, n0, _VLC,
|
|
3547
|
+
0,
|
|
3548
|
+
[_rA, _tGA, _pN],
|
|
3549
|
+
[0, 0, 0], 3
|
|
3550
|
+
];
|
|
3551
|
+
var AcceleratorManufacturerSet = [1, n0, _AMS,
|
|
3552
|
+
0, [0,
|
|
3553
|
+
{ [_xN]: _it }]
|
|
3554
|
+
];
|
|
3555
|
+
var AcceleratorNameSet = [1, n0, _ANS,
|
|
3556
|
+
0, [0,
|
|
3557
|
+
{ [_xN]: _it }]
|
|
3558
|
+
];
|
|
3559
|
+
var AcceleratorTypeSet = [1, n0, _ATS,
|
|
3560
|
+
0, [0,
|
|
3561
|
+
{ [_xN]: _it }]
|
|
3562
|
+
];
|
|
3563
|
+
var AllowedInstanceTypeSet = [1, n0, _AITS,
|
|
3564
|
+
0, [0,
|
|
3565
|
+
{ [_xN]: _it }]
|
|
3566
|
+
];
|
|
3567
|
+
var AttachmentDetails = [1, n0, _AD,
|
|
3568
|
+
0, () => KeyValuePair$
|
|
3569
|
+
];
|
|
3570
|
+
var Attachments = [1, n0, _Att,
|
|
3571
|
+
0, () => Attachment$
|
|
3572
|
+
];
|
|
3573
|
+
var AttachmentStateChanges = [1, n0, _ASCt,
|
|
3574
|
+
0, () => AttachmentStateChange$
|
|
3575
|
+
];
|
|
3576
|
+
var Attributes = [1, n0, _Attr,
|
|
3577
|
+
0, () => Attribute$
|
|
3578
|
+
];
|
|
3579
|
+
var CapacityProviders = [1, n0, _CPa,
|
|
3580
|
+
0, [() => CapacityProvider$,
|
|
3581
|
+
0]
|
|
3582
|
+
];
|
|
3583
|
+
var CapacityProviderStrategy = [1, n0, _CPS,
|
|
3584
|
+
0, () => CapacityProviderStrategyItem$
|
|
3585
|
+
];
|
|
3586
|
+
var Clusters = [1, n0, _Cl,
|
|
3587
|
+
0, () => Cluster$
|
|
3588
|
+
];
|
|
3589
|
+
var ClusterSettings = [1, n0, _CSl,
|
|
3590
|
+
0, () => ClusterSetting$
|
|
3591
|
+
];
|
|
3592
|
+
var ContainerDefinitions = [1, n0, _CDon,
|
|
3593
|
+
0, [() => ContainerDefinition$,
|
|
3594
|
+
0]
|
|
3595
|
+
];
|
|
3596
|
+
var ContainerDependencies = [1, n0, _CDont,
|
|
3597
|
+
0, () => ContainerDependency$
|
|
3598
|
+
];
|
|
3599
|
+
var ContainerImages = [1, n0, _CIon,
|
|
3600
|
+
0, () => ContainerImage$
|
|
3601
|
+
];
|
|
3602
|
+
var ContainerInstances = [1, n0, _CIont,
|
|
3603
|
+
0, () => ContainerInstance$
|
|
3604
|
+
];
|
|
3605
|
+
var ContainerOverrides = [1, n0, _COo,
|
|
3606
|
+
0, [() => ContainerOverride$,
|
|
3607
|
+
0]
|
|
3608
|
+
];
|
|
3609
|
+
var Containers = [1, n0, _Con,
|
|
3610
|
+
0, () => Container$
|
|
3611
|
+
];
|
|
3612
|
+
var ContainerStateChanges = [1, n0, _CSCo,
|
|
3613
|
+
0, () => ContainerStateChange$
|
|
3614
|
+
];
|
|
3615
|
+
var CpuManufacturerSet = [1, n0, _CMS,
|
|
3616
|
+
0, [0,
|
|
3617
|
+
{ [_xN]: _it }]
|
|
3618
|
+
];
|
|
3619
|
+
var DaemonCapacityProviderList = [1, n0, _DCPL,
|
|
3620
|
+
0, () => DaemonCapacityProvider$
|
|
3621
|
+
];
|
|
3622
|
+
var DaemonContainerDefinitionList = [1, n0, _DCDL,
|
|
3623
|
+
0, [() => DaemonContainerDefinition$,
|
|
3624
|
+
0]
|
|
3625
|
+
];
|
|
3626
|
+
var DaemonContainerImages = [1, n0, _DCIa,
|
|
3627
|
+
0, () => DaemonContainerImage$
|
|
3628
|
+
];
|
|
3629
|
+
var DaemonDeploymentCapacityProviderList = [1, n0, _DDCPL,
|
|
3630
|
+
0, () => DaemonDeploymentCapacityProvider$
|
|
3631
|
+
];
|
|
3632
|
+
var DaemonDeploymentList = [1, n0, _DDL,
|
|
3633
|
+
0, () => DaemonDeployment$
|
|
3634
|
+
];
|
|
3635
|
+
var DaemonDeploymentRevisionDetailList = [1, n0, _DDRDL,
|
|
3636
|
+
0, () => DaemonDeploymentRevisionDetail$
|
|
3637
|
+
];
|
|
3638
|
+
var DaemonDeploymentSummaryList = [1, n0, _DDSL,
|
|
3639
|
+
0, () => DaemonDeploymentSummary$
|
|
3640
|
+
];
|
|
3641
|
+
var DaemonRevisionDetailList = [1, n0, _DRDL,
|
|
3642
|
+
0, () => DaemonRevisionDetail$
|
|
3643
|
+
];
|
|
3644
|
+
var DaemonRevisions = [1, n0, _DRae,
|
|
3645
|
+
0, () => DaemonRevision$
|
|
3646
|
+
];
|
|
3647
|
+
var DaemonSummariesList = [1, n0, _DSL,
|
|
3648
|
+
0, () => DaemonSummary$
|
|
3649
|
+
];
|
|
3650
|
+
var DaemonTaskDefinitionSummaries = [1, n0, _DTDSa,
|
|
3651
|
+
0, () => DaemonTaskDefinitionSummary$
|
|
3652
|
+
];
|
|
3653
|
+
var DaemonVolumeList = [1, n0, _DVL,
|
|
3654
|
+
0, () => DaemonVolume$
|
|
3655
|
+
];
|
|
3656
|
+
var DeploymentLifecycleHookDetailList = [1, n0, _DLHDL,
|
|
3657
|
+
0, () => DeploymentLifecycleHookDetail$
|
|
3658
|
+
];
|
|
3659
|
+
var DeploymentLifecycleHookList = [1, n0, _DLHL,
|
|
3660
|
+
0, () => DeploymentLifecycleHook$
|
|
3661
|
+
];
|
|
3662
|
+
var Deployments = [1, n0, _Dep,
|
|
3663
|
+
0, () => Deployment$
|
|
3664
|
+
];
|
|
3665
|
+
var DevicesList = [1, n0, _DL,
|
|
3666
|
+
0, () => Device$
|
|
3667
|
+
];
|
|
3668
|
+
var EBSTagSpecifications = [1, n0, _EBSTSa,
|
|
3669
|
+
0, () => EBSTagSpecification$
|
|
3670
|
+
];
|
|
3671
|
+
var EnvironmentFiles = [1, n0, _EFn,
|
|
3672
|
+
0, () => EnvironmentFile$
|
|
3673
|
+
];
|
|
3674
|
+
var EnvironmentVariables = [1, n0, _EV,
|
|
3675
|
+
8, () => KeyValuePair$
|
|
3676
|
+
];
|
|
3677
|
+
var ExcludedInstanceTypeSet = [1, n0, _EITS,
|
|
3678
|
+
0, [0,
|
|
3679
|
+
{ [_xN]: _it }]
|
|
3680
|
+
];
|
|
3681
|
+
var ExpressGatewayServiceConfigurations = [1, n0, _EGSCx,
|
|
3682
|
+
0, [() => ExpressGatewayServiceConfiguration$,
|
|
3683
|
+
0]
|
|
3684
|
+
];
|
|
3685
|
+
var Failures = [1, n0, _Fa,
|
|
3686
|
+
0, () => Failure$
|
|
3687
|
+
];
|
|
3688
|
+
var HostEntryList = [1, n0, _HEL,
|
|
3689
|
+
0, () => HostEntry$
|
|
3690
|
+
];
|
|
3691
|
+
var InferenceAcceleratorOverrides = [1, n0, _IAOn,
|
|
3692
|
+
0, () => InferenceAcceleratorOverride$
|
|
3693
|
+
];
|
|
3694
|
+
var InferenceAccelerators = [1, n0, _IAn,
|
|
3695
|
+
0, () => InferenceAccelerator$
|
|
3696
|
+
];
|
|
3697
|
+
var IngressPathSummaries = [1, n0, _IPSn,
|
|
3698
|
+
0, () => IngressPathSummary$
|
|
3699
|
+
];
|
|
3700
|
+
var InstanceGenerationSet = [1, n0, _IGS,
|
|
3701
|
+
0, [0,
|
|
3702
|
+
{ [_xN]: _it }]
|
|
3703
|
+
];
|
|
3704
|
+
var InstanceHealthCheckResultList = [1, n0, _IHCRL,
|
|
3705
|
+
0, () => InstanceHealthCheckResult$
|
|
3706
|
+
];
|
|
3707
|
+
var LoadBalancers = [1, n0, _LBo,
|
|
3708
|
+
0, () => LoadBalancer$
|
|
3709
|
+
];
|
|
3710
|
+
var LocalStorageTypeSet = [1, n0, _LSTS,
|
|
3711
|
+
0, [0,
|
|
3712
|
+
{ [_xN]: _it }]
|
|
3713
|
+
];
|
|
3714
|
+
var ManagedAgents = [1, n0, _MAa,
|
|
3715
|
+
0, () => ManagedAgent$
|
|
3716
|
+
];
|
|
3717
|
+
var ManagedAgentStateChanges = [1, n0, _MASCa,
|
|
3718
|
+
0, () => ManagedAgentStateChange$
|
|
3719
|
+
];
|
|
3720
|
+
var ManagedApplicationAutoScalingPolicies = [1, n0, _MAASPa,
|
|
3721
|
+
0, () => ManagedApplicationAutoScalingPolicy$
|
|
3722
|
+
];
|
|
3723
|
+
var ManagedIngressPaths = [1, n0, _MIPan,
|
|
3724
|
+
0, () => ManagedIngressPath$
|
|
3725
|
+
];
|
|
3726
|
+
var ManagedLogGroups = [1, n0, _MLGa,
|
|
3727
|
+
0, () => ManagedLogGroup$
|
|
3728
|
+
];
|
|
3729
|
+
var ManagedMetricAlarms = [1, n0, _MMAa,
|
|
3730
|
+
0, () => ManagedMetricAlarm$
|
|
3731
|
+
];
|
|
3732
|
+
var ManagedSecurityGroups = [1, n0, _MSGa,
|
|
3733
|
+
0, () => ManagedSecurityGroup$
|
|
3734
|
+
];
|
|
3735
|
+
var ManagedTargetGroups = [1, n0, _MTGa,
|
|
3736
|
+
0, () => ManagedTargetGroup$
|
|
3737
|
+
];
|
|
3738
|
+
var MetricConfigurationList = [1, n0, _MCL,
|
|
3739
|
+
0, () => MetricConfiguration$
|
|
3740
|
+
];
|
|
3741
|
+
var MountPointList = [1, n0, _MPL,
|
|
3742
|
+
0, () => MountPoint$
|
|
3743
|
+
];
|
|
3744
|
+
var NetworkBindings = [1, n0, _NBe,
|
|
3745
|
+
0, () => NetworkBinding$
|
|
3746
|
+
];
|
|
3747
|
+
var NetworkInterfaces = [1, n0, _NIe,
|
|
3748
|
+
0, () => NetworkInterface$
|
|
3749
|
+
];
|
|
3750
|
+
var PlacementConstraints = [1, n0, _PCl,
|
|
3751
|
+
0, () => PlacementConstraint$
|
|
3752
|
+
];
|
|
3753
|
+
var PlacementStrategies = [1, n0, _PSl,
|
|
3754
|
+
0, () => PlacementStrategy$
|
|
3755
|
+
];
|
|
3756
|
+
var PlatformDevices = [1, n0, _PDl,
|
|
3757
|
+
0, () => PlatformDevice$
|
|
3758
|
+
];
|
|
3759
|
+
var PortMappingList = [1, n0, _PML,
|
|
3760
|
+
0, () => PortMapping$
|
|
3761
|
+
];
|
|
3762
|
+
var ProtectedTasks = [1, n0, _PTr,
|
|
3763
|
+
0, () => ProtectedTask$
|
|
3764
|
+
];
|
|
3765
|
+
var ProxyConfigurationProperties = [1, n0, _PCP,
|
|
3766
|
+
0, () => KeyValuePair$
|
|
3767
|
+
];
|
|
3768
|
+
var RequiresAttributes = [1, n0, _RA,
|
|
3769
|
+
0, () => Attribute$
|
|
3770
|
+
];
|
|
3771
|
+
var ResourceRequirements = [1, n0, _RRe,
|
|
3772
|
+
0, () => ResourceRequirement$
|
|
3773
|
+
];
|
|
3774
|
+
var Resources = [1, n0, _Re,
|
|
3775
|
+
0, () => Resource$
|
|
3776
|
+
];
|
|
3777
|
+
var SecretList = [1, n0, _SL,
|
|
3778
|
+
0, () => Secret$
|
|
3779
|
+
];
|
|
3780
|
+
var ServiceConnectClientAliasList = [1, n0, _SCCAL,
|
|
3781
|
+
0, () => ServiceConnectClientAlias$
|
|
3782
|
+
];
|
|
3783
|
+
var ServiceConnectServiceList = [1, n0, _SCSL,
|
|
3784
|
+
0, () => ServiceConnectService$
|
|
3785
|
+
];
|
|
3786
|
+
var ServiceConnectServiceResourceList = [1, n0, _SCSRL,
|
|
3787
|
+
0, () => ServiceConnectServiceResource$
|
|
3788
|
+
];
|
|
3789
|
+
var ServiceCurrentRevisionSummaryList = [1, n0, _SCRSL,
|
|
3790
|
+
0, () => ServiceCurrentRevisionSummary$
|
|
3791
|
+
];
|
|
3792
|
+
var ServiceDeployments = [1, n0, _SDe,
|
|
3793
|
+
0, () => ServiceDeployment$
|
|
3794
|
+
];
|
|
3795
|
+
var ServiceDeploymentsBrief = [1, n0, _SDBe,
|
|
3796
|
+
0, () => ServiceDeploymentBrief$
|
|
3797
|
+
];
|
|
3798
|
+
var ServiceEvents = [1, n0, _SEer,
|
|
3799
|
+
0, () => ServiceEvent$
|
|
3800
|
+
];
|
|
3801
|
+
var ServiceRegistries = [1, n0, _SRer,
|
|
3802
|
+
0, () => ServiceRegistry$
|
|
3803
|
+
];
|
|
3804
|
+
var ServiceRevisionLoadBalancers = [1, n0, _SRLBe,
|
|
3805
|
+
0, () => ServiceRevisionLoadBalancer$
|
|
3806
|
+
];
|
|
3807
|
+
var ServiceRevisions = [1, n0, _SRerv,
|
|
3808
|
+
0, () => ServiceRevision$
|
|
3809
|
+
];
|
|
3810
|
+
var ServiceRevisionsSummaryList = [1, n0, _SRSL,
|
|
3811
|
+
0, () => ServiceRevisionSummary$
|
|
3812
|
+
];
|
|
3813
|
+
var Services = [1, n0, _Serv,
|
|
3814
|
+
0, () => Service$
|
|
3815
|
+
];
|
|
3816
|
+
var ServiceVolumeConfigurations = [1, n0, _SVCe,
|
|
3817
|
+
0, () => ServiceVolumeConfiguration$
|
|
3818
|
+
];
|
|
3819
|
+
var Settings = [1, n0, _Sett,
|
|
3820
|
+
0, () => Setting$
|
|
3821
|
+
];
|
|
3822
|
+
var Statistics = [1, n0, _St,
|
|
3823
|
+
0, () => KeyValuePair$
|
|
3824
|
+
];
|
|
3825
|
+
var SystemControls = [1, n0, _SCy,
|
|
3826
|
+
0, () => SystemControl$
|
|
3827
|
+
];
|
|
3828
|
+
var Tags = [1, n0, _Tag,
|
|
3829
|
+
0, () => Tag$
|
|
3830
|
+
];
|
|
3831
|
+
var TaskDefinitionList = [1, n0, _TDL,
|
|
3832
|
+
0, [() => TaskDefinition$,
|
|
3833
|
+
0]
|
|
3834
|
+
];
|
|
3835
|
+
var TaskDefinitionPlacementConstraints = [1, n0, _TDPCa,
|
|
3836
|
+
0, () => TaskDefinitionPlacementConstraint$
|
|
3837
|
+
];
|
|
3838
|
+
var Tasks = [1, n0, _Tas,
|
|
3839
|
+
0, [() => Task$,
|
|
3840
|
+
0]
|
|
3841
|
+
];
|
|
3842
|
+
var TaskSets = [1, n0, _TSa,
|
|
3843
|
+
0, () => TaskSet$
|
|
3844
|
+
];
|
|
3845
|
+
var TaskVolumeConfigurations = [1, n0, _TVCa,
|
|
3846
|
+
0, () => TaskVolumeConfiguration$
|
|
3847
|
+
];
|
|
3848
|
+
var TmpfsList = [1, n0, _TL,
|
|
3849
|
+
0, () => Tmpfs$
|
|
3850
|
+
];
|
|
3851
|
+
var UlimitList = [1, n0, _UL,
|
|
3852
|
+
0, () => Ulimit$
|
|
3853
|
+
];
|
|
3854
|
+
var VolumeFromList = [1, n0, _VFL,
|
|
3855
|
+
0, () => VolumeFrom$
|
|
3856
|
+
];
|
|
3857
|
+
var VolumeList = [1, n0, _VL,
|
|
3858
|
+
0, () => Volume$
|
|
3859
|
+
];
|
|
3860
|
+
var VpcLatticeConfigurations = [1, n0, _VLCp,
|
|
3861
|
+
0, () => VpcLatticeConfiguration$
|
|
3862
|
+
];
|
|
3863
|
+
var ContinueServiceDeployment$ = [9, n0, _CSD,
|
|
3864
|
+
0, () => ContinueServiceDeploymentRequest$, () => ContinueServiceDeploymentResponse$
|
|
3865
|
+
];
|
|
3866
|
+
var CreateCapacityProvider$ = [9, n0, _CCP,
|
|
3867
|
+
2, () => CreateCapacityProviderRequest$, () => CreateCapacityProviderResponse$
|
|
3868
|
+
];
|
|
3869
|
+
var CreateCluster$ = [9, n0, _CCr,
|
|
3870
|
+
0, () => CreateClusterRequest$, () => CreateClusterResponse$
|
|
3871
|
+
];
|
|
3872
|
+
var CreateDaemon$ = [9, n0, _CDr,
|
|
3873
|
+
0, () => CreateDaemonRequest$, () => CreateDaemonResponse$
|
|
3874
|
+
];
|
|
3875
|
+
var CreateExpressGatewayService$ = [9, n0, _CEGS,
|
|
3876
|
+
0, () => CreateExpressGatewayServiceRequest$, () => CreateExpressGatewayServiceResponse$
|
|
3877
|
+
];
|
|
3878
|
+
var CreateService$ = [9, n0, _CSr,
|
|
3879
|
+
0, () => CreateServiceRequest$, () => CreateServiceResponse$
|
|
3880
|
+
];
|
|
3881
|
+
var CreateTaskSet$ = [9, n0, _CTS,
|
|
3882
|
+
0, () => CreateTaskSetRequest$, () => CreateTaskSetResponse$
|
|
3883
|
+
];
|
|
3884
|
+
var DeleteAccountSetting$ = [9, n0, _DAS,
|
|
3885
|
+
0, () => DeleteAccountSettingRequest$, () => DeleteAccountSettingResponse$
|
|
3886
|
+
];
|
|
3887
|
+
var DeleteAttributes$ = [9, n0, _DAe,
|
|
3888
|
+
0, () => DeleteAttributesRequest$, () => DeleteAttributesResponse$
|
|
3889
|
+
];
|
|
3890
|
+
var DeleteCapacityProvider$ = [9, n0, _DCPe,
|
|
3891
|
+
2, () => DeleteCapacityProviderRequest$, () => DeleteCapacityProviderResponse$
|
|
3892
|
+
];
|
|
3893
|
+
var DeleteCluster$ = [9, n0, _DCel,
|
|
3894
|
+
2, () => DeleteClusterRequest$, () => DeleteClusterResponse$
|
|
3895
|
+
];
|
|
3896
|
+
var DeleteDaemon$ = [9, n0, _DDe,
|
|
3897
|
+
2, () => DeleteDaemonRequest$, () => DeleteDaemonResponse$
|
|
3898
|
+
];
|
|
3899
|
+
var DeleteDaemonTaskDefinition$ = [9, n0, _DDTD,
|
|
3900
|
+
0, () => DeleteDaemonTaskDefinitionRequest$, () => DeleteDaemonTaskDefinitionResponse$
|
|
3901
|
+
];
|
|
3902
|
+
var DeleteExpressGatewayService$ = [9, n0, _DEGS,
|
|
3903
|
+
0, () => DeleteExpressGatewayServiceRequest$, () => DeleteExpressGatewayServiceResponse$
|
|
3904
|
+
];
|
|
3905
|
+
var DeleteService$ = [9, n0, _DSe,
|
|
3906
|
+
2, () => DeleteServiceRequest$, () => DeleteServiceResponse$
|
|
3907
|
+
];
|
|
3908
|
+
var DeleteTaskDefinitions$ = [9, n0, _DTDe,
|
|
3909
|
+
0, () => DeleteTaskDefinitionsRequest$, () => DeleteTaskDefinitionsResponse$
|
|
3910
|
+
];
|
|
3911
|
+
var DeleteTaskSet$ = [9, n0, _DTS,
|
|
3912
|
+
2, () => DeleteTaskSetRequest$, () => DeleteTaskSetResponse$
|
|
3913
|
+
];
|
|
3914
|
+
var DeregisterContainerInstance$ = [9, n0, _DCIe,
|
|
3915
|
+
0, () => DeregisterContainerInstanceRequest$, () => DeregisterContainerInstanceResponse$
|
|
3916
|
+
];
|
|
3917
|
+
var DeregisterTaskDefinition$ = [9, n0, _DTDer,
|
|
3918
|
+
0, () => DeregisterTaskDefinitionRequest$, () => DeregisterTaskDefinitionResponse$
|
|
3919
|
+
];
|
|
3920
|
+
var DescribeCapacityProviders$ = [9, n0, _DCPes,
|
|
3921
|
+
0, () => DescribeCapacityProvidersRequest$, () => DescribeCapacityProvidersResponse$
|
|
3922
|
+
];
|
|
3923
|
+
var DescribeClusters$ = [9, n0, _DCes,
|
|
3924
|
+
0, () => DescribeClustersRequest$, () => DescribeClustersResponse$
|
|
3925
|
+
];
|
|
3926
|
+
var DescribeContainerInstances$ = [9, n0, _DCIes,
|
|
3927
|
+
0, () => DescribeContainerInstancesRequest$, () => DescribeContainerInstancesResponse$
|
|
3928
|
+
];
|
|
3929
|
+
var DescribeDaemon$ = [9, n0, _DDes,
|
|
3930
|
+
0, () => DescribeDaemonRequest$, () => DescribeDaemonResponse$
|
|
3931
|
+
];
|
|
3932
|
+
var DescribeDaemonDeployments$ = [9, n0, _DDD,
|
|
3933
|
+
0, () => DescribeDaemonDeploymentsRequest$, () => DescribeDaemonDeploymentsResponse$
|
|
3934
|
+
];
|
|
3935
|
+
var DescribeDaemonRevisions$ = [9, n0, _DDRescr,
|
|
3936
|
+
0, () => DescribeDaemonRevisionsRequest$, () => DescribeDaemonRevisionsResponse$
|
|
3937
|
+
];
|
|
3938
|
+
var DescribeDaemonTaskDefinition$ = [9, n0, _DDTDe,
|
|
3939
|
+
0, () => DescribeDaemonTaskDefinitionRequest$, () => DescribeDaemonTaskDefinitionResponse$
|
|
3940
|
+
];
|
|
3941
|
+
var DescribeExpressGatewayService$ = [9, n0, _DEGSe,
|
|
3942
|
+
0, () => DescribeExpressGatewayServiceRequest$, () => DescribeExpressGatewayServiceResponse$
|
|
3943
|
+
];
|
|
3944
|
+
var DescribeServiceDeployments$ = [9, n0, _DSD,
|
|
3945
|
+
0, () => DescribeServiceDeploymentsRequest$, () => DescribeServiceDeploymentsResponse$
|
|
3946
|
+
];
|
|
3947
|
+
var DescribeServiceRevisions$ = [9, n0, _DSRescr,
|
|
3948
|
+
0, () => DescribeServiceRevisionsRequest$, () => DescribeServiceRevisionsResponse$
|
|
3949
|
+
];
|
|
3950
|
+
var DescribeServices$ = [9, n0, _DSes,
|
|
3951
|
+
0, () => DescribeServicesRequest$, () => DescribeServicesResponse$
|
|
3952
|
+
];
|
|
3953
|
+
var DescribeTaskDefinition$ = [9, n0, _DTDes,
|
|
3954
|
+
0, () => DescribeTaskDefinitionRequest$, () => DescribeTaskDefinitionResponse$
|
|
3955
|
+
];
|
|
3956
|
+
var DescribeTasks$ = [9, n0, _DT,
|
|
3957
|
+
0, () => DescribeTasksRequest$, () => DescribeTasksResponse$
|
|
3958
|
+
];
|
|
3959
|
+
var DescribeTaskSets$ = [9, n0, _DTSe,
|
|
3960
|
+
0, () => DescribeTaskSetsRequest$, () => DescribeTaskSetsResponse$
|
|
3961
|
+
];
|
|
3962
|
+
var DiscoverPollEndpoint$ = [9, n0, _DPE,
|
|
3963
|
+
0, () => DiscoverPollEndpointRequest$, () => DiscoverPollEndpointResponse$
|
|
3964
|
+
];
|
|
3965
|
+
var ExecuteCommand$ = [9, n0, _EC,
|
|
3966
|
+
0, () => ExecuteCommandRequest$, () => ExecuteCommandResponse$
|
|
3967
|
+
];
|
|
3968
|
+
var GetTaskProtection$ = [9, n0, _GTP,
|
|
3969
|
+
0, () => GetTaskProtectionRequest$, () => GetTaskProtectionResponse$
|
|
3970
|
+
];
|
|
3971
|
+
var ListAccountSettings$ = [9, n0, _LAS,
|
|
3972
|
+
0, () => ListAccountSettingsRequest$, () => ListAccountSettingsResponse$
|
|
3973
|
+
];
|
|
3974
|
+
var ListAttributes$ = [9, n0, _LA,
|
|
3975
|
+
0, () => ListAttributesRequest$, () => ListAttributesResponse$
|
|
3976
|
+
];
|
|
3977
|
+
var ListClusters$ = [9, n0, _LCi,
|
|
3978
|
+
0, () => ListClustersRequest$, () => ListClustersResponse$
|
|
3979
|
+
];
|
|
3980
|
+
var ListContainerInstances$ = [9, n0, _LCI,
|
|
3981
|
+
0, () => ListContainerInstancesRequest$, () => ListContainerInstancesResponse$
|
|
3982
|
+
];
|
|
3983
|
+
var ListDaemonDeployments$ = [9, n0, _LDD,
|
|
3984
|
+
0, () => ListDaemonDeploymentsRequest$, () => ListDaemonDeploymentsResponse$
|
|
3985
|
+
];
|
|
3986
|
+
var ListDaemons$ = [9, n0, _LD,
|
|
3987
|
+
0, () => ListDaemonsRequest$, () => ListDaemonsResponse$
|
|
3988
|
+
];
|
|
3989
|
+
var ListDaemonTaskDefinitions$ = [9, n0, _LDTD,
|
|
3990
|
+
0, () => ListDaemonTaskDefinitionsRequest$, () => ListDaemonTaskDefinitionsResponse$
|
|
3991
|
+
];
|
|
3992
|
+
var ListServiceDeployments$ = [9, n0, _LSD,
|
|
3993
|
+
0, () => ListServiceDeploymentsRequest$, () => ListServiceDeploymentsResponse$
|
|
3994
|
+
];
|
|
3995
|
+
var ListServices$ = [9, n0, _LS,
|
|
3996
|
+
0, () => ListServicesRequest$, () => ListServicesResponse$
|
|
3997
|
+
];
|
|
3998
|
+
var ListServicesByNamespace$ = [9, n0, _LSBN,
|
|
3999
|
+
0, () => ListServicesByNamespaceRequest$, () => ListServicesByNamespaceResponse$
|
|
4000
|
+
];
|
|
4001
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
4002
|
+
0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
4003
|
+
];
|
|
4004
|
+
var ListTaskDefinitionFamilies$ = [9, n0, _LTDF,
|
|
4005
|
+
0, () => ListTaskDefinitionFamiliesRequest$, () => ListTaskDefinitionFamiliesResponse$
|
|
4006
|
+
];
|
|
4007
|
+
var ListTaskDefinitions$ = [9, n0, _LTD,
|
|
4008
|
+
0, () => ListTaskDefinitionsRequest$, () => ListTaskDefinitionsResponse$
|
|
4009
|
+
];
|
|
4010
|
+
var ListTasks$ = [9, n0, _LT,
|
|
4011
|
+
0, () => ListTasksRequest$, () => ListTasksResponse$
|
|
4012
|
+
];
|
|
4013
|
+
var PutAccountSetting$ = [9, n0, _PAS,
|
|
4014
|
+
0, () => PutAccountSettingRequest$, () => PutAccountSettingResponse$
|
|
4015
|
+
];
|
|
4016
|
+
var PutAccountSettingDefault$ = [9, n0, _PASD,
|
|
4017
|
+
0, () => PutAccountSettingDefaultRequest$, () => PutAccountSettingDefaultResponse$
|
|
4018
|
+
];
|
|
4019
|
+
var PutAttributes$ = [9, n0, _PA,
|
|
4020
|
+
0, () => PutAttributesRequest$, () => PutAttributesResponse$
|
|
4021
|
+
];
|
|
4022
|
+
var PutClusterCapacityProviders$ = [9, n0, _PCCP,
|
|
4023
|
+
0, () => PutClusterCapacityProvidersRequest$, () => PutClusterCapacityProvidersResponse$
|
|
4024
|
+
];
|
|
4025
|
+
var RegisterContainerInstance$ = [9, n0, _RCI,
|
|
4026
|
+
0, () => RegisterContainerInstanceRequest$, () => RegisterContainerInstanceResponse$
|
|
4027
|
+
];
|
|
4028
|
+
var RegisterDaemonTaskDefinition$ = [9, n0, _RDTD,
|
|
4029
|
+
0, () => RegisterDaemonTaskDefinitionRequest$, () => RegisterDaemonTaskDefinitionResponse$
|
|
4030
|
+
];
|
|
4031
|
+
var RegisterTaskDefinition$ = [9, n0, _RTD,
|
|
4032
|
+
0, () => RegisterTaskDefinitionRequest$, () => RegisterTaskDefinitionResponse$
|
|
4033
|
+
];
|
|
4034
|
+
var RunTask$ = [9, n0, _RT,
|
|
4035
|
+
0, () => RunTaskRequest$, () => RunTaskResponse$
|
|
4036
|
+
];
|
|
4037
|
+
var StartTask$ = [9, n0, _ST,
|
|
4038
|
+
0, () => StartTaskRequest$, () => StartTaskResponse$
|
|
4039
|
+
];
|
|
4040
|
+
var StopServiceDeployment$ = [9, n0, _SSD,
|
|
4041
|
+
0, () => StopServiceDeploymentRequest$, () => StopServiceDeploymentResponse$
|
|
4042
|
+
];
|
|
4043
|
+
var StopTask$ = [9, n0, _STt,
|
|
4044
|
+
0, () => StopTaskRequest$, () => StopTaskResponse$
|
|
4045
|
+
];
|
|
4046
|
+
var SubmitAttachmentStateChanges$ = [9, n0, _SASC,
|
|
4047
|
+
0, () => SubmitAttachmentStateChangesRequest$, () => SubmitAttachmentStateChangesResponse$
|
|
4048
|
+
];
|
|
4049
|
+
var SubmitContainerStateChange$ = [9, n0, _SCSC,
|
|
4050
|
+
0, () => SubmitContainerStateChangeRequest$, () => SubmitContainerStateChangeResponse$
|
|
4051
|
+
];
|
|
4052
|
+
var SubmitTaskStateChange$ = [9, n0, _STSC,
|
|
4053
|
+
0, () => SubmitTaskStateChangeRequest$, () => SubmitTaskStateChangeResponse$
|
|
4054
|
+
];
|
|
4055
|
+
var TagResource$ = [9, n0, _TR,
|
|
4056
|
+
0, () => TagResourceRequest$, () => TagResourceResponse$
|
|
4057
|
+
];
|
|
4058
|
+
var UntagResource$ = [9, n0, _UR,
|
|
4059
|
+
0, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
4060
|
+
];
|
|
4061
|
+
var UpdateCapacityProvider$ = [9, n0, _UCP,
|
|
4062
|
+
0, () => UpdateCapacityProviderRequest$, () => UpdateCapacityProviderResponse$
|
|
4063
|
+
];
|
|
4064
|
+
var UpdateCluster$ = [9, n0, _UC,
|
|
4065
|
+
0, () => UpdateClusterRequest$, () => UpdateClusterResponse$
|
|
4066
|
+
];
|
|
4067
|
+
var UpdateClusterSettings$ = [9, n0, _UCS,
|
|
4068
|
+
0, () => UpdateClusterSettingsRequest$, () => UpdateClusterSettingsResponse$
|
|
4069
|
+
];
|
|
4070
|
+
var UpdateContainerAgent$ = [9, n0, _UCA,
|
|
4071
|
+
0, () => UpdateContainerAgentRequest$, () => UpdateContainerAgentResponse$
|
|
4072
|
+
];
|
|
4073
|
+
var UpdateContainerInstancesState$ = [9, n0, _UCIS,
|
|
4074
|
+
0, () => UpdateContainerInstancesStateRequest$, () => UpdateContainerInstancesStateResponse$
|
|
4075
|
+
];
|
|
4076
|
+
var UpdateDaemon$ = [9, n0, _UD,
|
|
4077
|
+
0, () => UpdateDaemonRequest$, () => UpdateDaemonResponse$
|
|
4078
|
+
];
|
|
4079
|
+
var UpdateExpressGatewayService$ = [9, n0, _UEGSp,
|
|
4080
|
+
0, () => UpdateExpressGatewayServiceRequest$, () => UpdateExpressGatewayServiceResponse$
|
|
4081
|
+
];
|
|
4082
|
+
var UpdateService$ = [9, n0, _US,
|
|
4083
|
+
0, () => UpdateServiceRequest$, () => UpdateServiceResponse$
|
|
4084
|
+
];
|
|
4085
|
+
var UpdateServicePrimaryTaskSet$ = [9, n0, _USPTS,
|
|
4086
|
+
0, () => UpdateServicePrimaryTaskSetRequest$, () => UpdateServicePrimaryTaskSetResponse$
|
|
4087
|
+
];
|
|
4088
|
+
var UpdateTaskProtection$ = [9, n0, _UTP,
|
|
4089
|
+
0, () => UpdateTaskProtectionRequest$, () => UpdateTaskProtectionResponse$
|
|
4090
|
+
];
|
|
4091
|
+
var UpdateTaskSet$ = [9, n0, _UTS,
|
|
4092
|
+
0, () => UpdateTaskSetRequest$, () => UpdateTaskSetResponse$
|
|
4093
|
+
];
|
|
4094
|
+
|
|
4095
|
+
const getRuntimeConfig$1 = (config) => {
|
|
4096
|
+
return {
|
|
4097
|
+
apiVersion: "2014-11-13",
|
|
4098
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
4099
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
4100
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
4101
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
4102
|
+
extensions: config?.extensions ?? [],
|
|
4103
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultECSHttpAuthSchemeProvider,
|
|
4104
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
4105
|
+
{
|
|
4106
|
+
schemeId: "aws.auth#sigv4",
|
|
4107
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
4108
|
+
signer: new AwsSdkSigV4Signer(),
|
|
4109
|
+
},
|
|
4110
|
+
],
|
|
4111
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
4112
|
+
protocol: config?.protocol ?? AwsJson1_1Protocol,
|
|
4113
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
4114
|
+
defaultNamespace: "com.amazonaws.ecs",
|
|
4115
|
+
errorTypeRegistries,
|
|
4116
|
+
xmlNamespace: "http://ecs.amazonaws.com/doc/2014-11-13/",
|
|
4117
|
+
version: "2014-11-13",
|
|
4118
|
+
serviceTarget: "AmazonEC2ContainerServiceV20141113",
|
|
4119
|
+
},
|
|
4120
|
+
serviceId: config?.serviceId ?? "ECS",
|
|
4121
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
4122
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
4123
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
4124
|
+
};
|
|
4125
|
+
};
|
|
4126
|
+
|
|
4127
|
+
const getRuntimeConfig = (config) => {
|
|
4128
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
4129
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
4130
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
4131
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
4132
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
4133
|
+
const loaderConfig = {
|
|
4134
|
+
profile: config?.profile,
|
|
4135
|
+
logger: clientSharedValues.logger,
|
|
4136
|
+
};
|
|
4137
|
+
return {
|
|
4138
|
+
...clientSharedValues,
|
|
4139
|
+
...config,
|
|
4140
|
+
runtime: "node",
|
|
4141
|
+
defaultsMode,
|
|
4142
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
4143
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
4144
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
4145
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
4146
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
4147
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
4148
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
4149
|
+
retryMode: config?.retryMode ??
|
|
4150
|
+
loadConfig({
|
|
4151
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
4152
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
4153
|
+
}, config),
|
|
4154
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
4155
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
4156
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
4157
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
4158
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
4159
|
+
};
|
|
4160
|
+
};
|
|
4161
|
+
|
|
34
4162
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
4163
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
4164
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -2052,6 +6180,11 @@ const ServiceDeploymentRollbackMonitorsStatus = {
|
|
|
2052
6180
|
MONITORING_COMPLETE: "MONITORING_COMPLETE",
|
|
2053
6181
|
TRIGGERED: "TRIGGERED",
|
|
2054
6182
|
};
|
|
6183
|
+
const ThresholdType = {
|
|
6184
|
+
BOUNDED_PERCENT: "BOUNDED_PERCENT",
|
|
6185
|
+
COUNT: "COUNT",
|
|
6186
|
+
UNBOUNDED_PERCENT: "UNBOUNDED_PERCENT",
|
|
6187
|
+
};
|
|
2055
6188
|
const DeploymentLifecycleHookStage = {
|
|
2056
6189
|
POST_PRODUCTION_TRAFFIC_SHIFT: "POST_PRODUCTION_TRAFFIC_SHIFT",
|
|
2057
6190
|
POST_SCALE_UP: "POST_SCALE_UP",
|
|
@@ -2217,190 +6350,677 @@ const TaskSetField = {
|
|
|
2217
6350
|
TAGS: "TAGS",
|
|
2218
6351
|
};
|
|
2219
6352
|
|
|
6353
|
+
exports.AcceleratorCountRequest$ = AcceleratorCountRequest$;
|
|
2220
6354
|
exports.AcceleratorManufacturer = AcceleratorManufacturer;
|
|
2221
6355
|
exports.AcceleratorName = AcceleratorName;
|
|
6356
|
+
exports.AcceleratorTotalMemoryMiBRequest$ = AcceleratorTotalMemoryMiBRequest$;
|
|
2222
6357
|
exports.AcceleratorType = AcceleratorType;
|
|
6358
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
6359
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
2223
6360
|
exports.AccessType = AccessType;
|
|
6361
|
+
exports.AdvancedConfiguration$ = AdvancedConfiguration$;
|
|
2224
6362
|
exports.AgentUpdateStatus = AgentUpdateStatus;
|
|
2225
6363
|
exports.ApplicationProtocol = ApplicationProtocol;
|
|
2226
6364
|
exports.AssignPublicIp = AssignPublicIp;
|
|
6365
|
+
exports.Attachment$ = Attachment$;
|
|
6366
|
+
exports.AttachmentStateChange$ = AttachmentStateChange$;
|
|
6367
|
+
exports.Attribute$ = Attribute$;
|
|
6368
|
+
exports.AttributeLimitExceededException = AttributeLimitExceededException;
|
|
6369
|
+
exports.AttributeLimitExceededException$ = AttributeLimitExceededException$;
|
|
2227
6370
|
exports.AutoRepairActionsStatus = AutoRepairActionsStatus;
|
|
6371
|
+
exports.AutoRepairConfiguration$ = AutoRepairConfiguration$;
|
|
6372
|
+
exports.AutoScalingGroupProvider$ = AutoScalingGroupProvider$;
|
|
6373
|
+
exports.AutoScalingGroupProviderUpdate$ = AutoScalingGroupProviderUpdate$;
|
|
2228
6374
|
exports.AvailabilityZoneRebalancing = AvailabilityZoneRebalancing;
|
|
6375
|
+
exports.AwsVpcConfiguration$ = AwsVpcConfiguration$;
|
|
2229
6376
|
exports.BareMetal = BareMetal;
|
|
6377
|
+
exports.BaselineEbsBandwidthMbpsRequest$ = BaselineEbsBandwidthMbpsRequest$;
|
|
6378
|
+
exports.BlockedException = BlockedException;
|
|
6379
|
+
exports.BlockedException$ = BlockedException$;
|
|
2230
6380
|
exports.BurstablePerformance = BurstablePerformance;
|
|
2231
6381
|
exports.CPUArchitecture = CPUArchitecture;
|
|
6382
|
+
exports.CanaryConfiguration$ = CanaryConfiguration$;
|
|
2232
6383
|
exports.CapacityOptionType = CapacityOptionType;
|
|
6384
|
+
exports.CapacityProvider$ = CapacityProvider$;
|
|
2233
6385
|
exports.CapacityProviderField = CapacityProviderField;
|
|
2234
6386
|
exports.CapacityProviderStatus = CapacityProviderStatus;
|
|
6387
|
+
exports.CapacityProviderStrategyItem$ = CapacityProviderStrategyItem$;
|
|
2235
6388
|
exports.CapacityProviderType = CapacityProviderType;
|
|
2236
6389
|
exports.CapacityProviderUpdateStatus = CapacityProviderUpdateStatus;
|
|
2237
6390
|
exports.CapacityReservationPreference = CapacityReservationPreference;
|
|
6391
|
+
exports.CapacityReservationRequest$ = CapacityReservationRequest$;
|
|
6392
|
+
exports.ClientException = ClientException;
|
|
6393
|
+
exports.ClientException$ = ClientException$;
|
|
6394
|
+
exports.Cluster$ = Cluster$;
|
|
6395
|
+
exports.ClusterConfiguration$ = ClusterConfiguration$;
|
|
6396
|
+
exports.ClusterContainsCapacityProviderException = ClusterContainsCapacityProviderException;
|
|
6397
|
+
exports.ClusterContainsCapacityProviderException$ = ClusterContainsCapacityProviderException$;
|
|
6398
|
+
exports.ClusterContainsContainerInstancesException = ClusterContainsContainerInstancesException;
|
|
6399
|
+
exports.ClusterContainsContainerInstancesException$ = ClusterContainsContainerInstancesException$;
|
|
6400
|
+
exports.ClusterContainsServicesException = ClusterContainsServicesException;
|
|
6401
|
+
exports.ClusterContainsServicesException$ = ClusterContainsServicesException$;
|
|
6402
|
+
exports.ClusterContainsTasksException = ClusterContainsTasksException;
|
|
6403
|
+
exports.ClusterContainsTasksException$ = ClusterContainsTasksException$;
|
|
2238
6404
|
exports.ClusterField = ClusterField;
|
|
6405
|
+
exports.ClusterNotFoundException = ClusterNotFoundException;
|
|
6406
|
+
exports.ClusterNotFoundException$ = ClusterNotFoundException$;
|
|
6407
|
+
exports.ClusterServiceConnectDefaults$ = ClusterServiceConnectDefaults$;
|
|
6408
|
+
exports.ClusterServiceConnectDefaultsRequest$ = ClusterServiceConnectDefaultsRequest$;
|
|
6409
|
+
exports.ClusterSetting$ = ClusterSetting$;
|
|
2239
6410
|
exports.ClusterSettingName = ClusterSettingName;
|
|
2240
6411
|
exports.Compatibility = Compatibility;
|
|
6412
|
+
exports.ConflictException = ConflictException;
|
|
6413
|
+
exports.ConflictException$ = ConflictException$;
|
|
2241
6414
|
exports.Connectivity = Connectivity;
|
|
6415
|
+
exports.Container$ = Container$;
|
|
2242
6416
|
exports.ContainerCondition = ContainerCondition;
|
|
6417
|
+
exports.ContainerDefinition$ = ContainerDefinition$;
|
|
6418
|
+
exports.ContainerDependency$ = ContainerDependency$;
|
|
6419
|
+
exports.ContainerImage$ = ContainerImage$;
|
|
6420
|
+
exports.ContainerInstance$ = ContainerInstance$;
|
|
2243
6421
|
exports.ContainerInstanceField = ContainerInstanceField;
|
|
6422
|
+
exports.ContainerInstanceHealthStatus$ = ContainerInstanceHealthStatus$;
|
|
2244
6423
|
exports.ContainerInstanceStatus = ContainerInstanceStatus;
|
|
6424
|
+
exports.ContainerOverride$ = ContainerOverride$;
|
|
6425
|
+
exports.ContainerRestartPolicy$ = ContainerRestartPolicy$;
|
|
6426
|
+
exports.ContainerStateChange$ = ContainerStateChange$;
|
|
6427
|
+
exports.ContinueServiceDeployment$ = ContinueServiceDeployment$;
|
|
2245
6428
|
exports.ContinueServiceDeploymentCommand = ContinueServiceDeploymentCommand;
|
|
6429
|
+
exports.ContinueServiceDeploymentRequest$ = ContinueServiceDeploymentRequest$;
|
|
6430
|
+
exports.ContinueServiceDeploymentResponse$ = ContinueServiceDeploymentResponse$;
|
|
2246
6431
|
exports.CpuManufacturer = CpuManufacturer;
|
|
6432
|
+
exports.CreateCapacityProvider$ = CreateCapacityProvider$;
|
|
2247
6433
|
exports.CreateCapacityProviderCommand = CreateCapacityProviderCommand;
|
|
6434
|
+
exports.CreateCapacityProviderRequest$ = CreateCapacityProviderRequest$;
|
|
6435
|
+
exports.CreateCapacityProviderResponse$ = CreateCapacityProviderResponse$;
|
|
6436
|
+
exports.CreateCluster$ = CreateCluster$;
|
|
2248
6437
|
exports.CreateClusterCommand = CreateClusterCommand;
|
|
6438
|
+
exports.CreateClusterRequest$ = CreateClusterRequest$;
|
|
6439
|
+
exports.CreateClusterResponse$ = CreateClusterResponse$;
|
|
6440
|
+
exports.CreateDaemon$ = CreateDaemon$;
|
|
2249
6441
|
exports.CreateDaemonCommand = CreateDaemonCommand;
|
|
6442
|
+
exports.CreateDaemonRequest$ = CreateDaemonRequest$;
|
|
6443
|
+
exports.CreateDaemonResponse$ = CreateDaemonResponse$;
|
|
6444
|
+
exports.CreateExpressGatewayService$ = CreateExpressGatewayService$;
|
|
2250
6445
|
exports.CreateExpressGatewayServiceCommand = CreateExpressGatewayServiceCommand;
|
|
6446
|
+
exports.CreateExpressGatewayServiceRequest$ = CreateExpressGatewayServiceRequest$;
|
|
6447
|
+
exports.CreateExpressGatewayServiceResponse$ = CreateExpressGatewayServiceResponse$;
|
|
6448
|
+
exports.CreateManagedInstancesProviderConfiguration$ = CreateManagedInstancesProviderConfiguration$;
|
|
6449
|
+
exports.CreateService$ = CreateService$;
|
|
2251
6450
|
exports.CreateServiceCommand = CreateServiceCommand;
|
|
6451
|
+
exports.CreateServiceRequest$ = CreateServiceRequest$;
|
|
6452
|
+
exports.CreateServiceResponse$ = CreateServiceResponse$;
|
|
6453
|
+
exports.CreateTaskSet$ = CreateTaskSet$;
|
|
2252
6454
|
exports.CreateTaskSetCommand = CreateTaskSetCommand;
|
|
6455
|
+
exports.CreateTaskSetRequest$ = CreateTaskSetRequest$;
|
|
6456
|
+
exports.CreateTaskSetResponse$ = CreateTaskSetResponse$;
|
|
6457
|
+
exports.CreatedAt$ = CreatedAt$;
|
|
6458
|
+
exports.DaemonAlarmConfiguration$ = DaemonAlarmConfiguration$;
|
|
6459
|
+
exports.DaemonCapacityProvider$ = DaemonCapacityProvider$;
|
|
6460
|
+
exports.DaemonCircuitBreaker$ = DaemonCircuitBreaker$;
|
|
6461
|
+
exports.DaemonContainerDefinition$ = DaemonContainerDefinition$;
|
|
6462
|
+
exports.DaemonContainerImage$ = DaemonContainerImage$;
|
|
6463
|
+
exports.DaemonDeployment$ = DaemonDeployment$;
|
|
6464
|
+
exports.DaemonDeploymentAlarms$ = DaemonDeploymentAlarms$;
|
|
6465
|
+
exports.DaemonDeploymentCapacityProvider$ = DaemonDeploymentCapacityProvider$;
|
|
6466
|
+
exports.DaemonDeploymentConfiguration$ = DaemonDeploymentConfiguration$;
|
|
6467
|
+
exports.DaemonDeploymentRevisionDetail$ = DaemonDeploymentRevisionDetail$;
|
|
2253
6468
|
exports.DaemonDeploymentRollbackMonitorsStatus = DaemonDeploymentRollbackMonitorsStatus;
|
|
2254
6469
|
exports.DaemonDeploymentStatus = DaemonDeploymentStatus;
|
|
6470
|
+
exports.DaemonDeploymentSummary$ = DaemonDeploymentSummary$;
|
|
6471
|
+
exports.DaemonDetail$ = DaemonDetail$;
|
|
2255
6472
|
exports.DaemonIpcMode = DaemonIpcMode;
|
|
6473
|
+
exports.DaemonLinuxParameters$ = DaemonLinuxParameters$;
|
|
6474
|
+
exports.DaemonNotActiveException = DaemonNotActiveException;
|
|
6475
|
+
exports.DaemonNotActiveException$ = DaemonNotActiveException$;
|
|
6476
|
+
exports.DaemonNotFoundException = DaemonNotFoundException;
|
|
6477
|
+
exports.DaemonNotFoundException$ = DaemonNotFoundException$;
|
|
2256
6478
|
exports.DaemonPidMode = DaemonPidMode;
|
|
2257
6479
|
exports.DaemonPropagateTags = DaemonPropagateTags;
|
|
6480
|
+
exports.DaemonRevision$ = DaemonRevision$;
|
|
6481
|
+
exports.DaemonRevisionDetail$ = DaemonRevisionDetail$;
|
|
6482
|
+
exports.DaemonRollback$ = DaemonRollback$;
|
|
2258
6483
|
exports.DaemonStatus = DaemonStatus;
|
|
6484
|
+
exports.DaemonSummary$ = DaemonSummary$;
|
|
6485
|
+
exports.DaemonTaskDefinition$ = DaemonTaskDefinition$;
|
|
2259
6486
|
exports.DaemonTaskDefinitionRevisionFilter = DaemonTaskDefinitionRevisionFilter;
|
|
2260
6487
|
exports.DaemonTaskDefinitionStatus = DaemonTaskDefinitionStatus;
|
|
2261
6488
|
exports.DaemonTaskDefinitionStatusFilter = DaemonTaskDefinitionStatusFilter;
|
|
6489
|
+
exports.DaemonTaskDefinitionSummary$ = DaemonTaskDefinitionSummary$;
|
|
6490
|
+
exports.DaemonVolume$ = DaemonVolume$;
|
|
6491
|
+
exports.DeleteAccountSetting$ = DeleteAccountSetting$;
|
|
2262
6492
|
exports.DeleteAccountSettingCommand = DeleteAccountSettingCommand;
|
|
6493
|
+
exports.DeleteAccountSettingRequest$ = DeleteAccountSettingRequest$;
|
|
6494
|
+
exports.DeleteAccountSettingResponse$ = DeleteAccountSettingResponse$;
|
|
6495
|
+
exports.DeleteAttributes$ = DeleteAttributes$;
|
|
2263
6496
|
exports.DeleteAttributesCommand = DeleteAttributesCommand;
|
|
6497
|
+
exports.DeleteAttributesRequest$ = DeleteAttributesRequest$;
|
|
6498
|
+
exports.DeleteAttributesResponse$ = DeleteAttributesResponse$;
|
|
6499
|
+
exports.DeleteCapacityProvider$ = DeleteCapacityProvider$;
|
|
2264
6500
|
exports.DeleteCapacityProviderCommand = DeleteCapacityProviderCommand;
|
|
6501
|
+
exports.DeleteCapacityProviderRequest$ = DeleteCapacityProviderRequest$;
|
|
6502
|
+
exports.DeleteCapacityProviderResponse$ = DeleteCapacityProviderResponse$;
|
|
6503
|
+
exports.DeleteCluster$ = DeleteCluster$;
|
|
2265
6504
|
exports.DeleteClusterCommand = DeleteClusterCommand;
|
|
6505
|
+
exports.DeleteClusterRequest$ = DeleteClusterRequest$;
|
|
6506
|
+
exports.DeleteClusterResponse$ = DeleteClusterResponse$;
|
|
6507
|
+
exports.DeleteDaemon$ = DeleteDaemon$;
|
|
2266
6508
|
exports.DeleteDaemonCommand = DeleteDaemonCommand;
|
|
6509
|
+
exports.DeleteDaemonRequest$ = DeleteDaemonRequest$;
|
|
6510
|
+
exports.DeleteDaemonResponse$ = DeleteDaemonResponse$;
|
|
6511
|
+
exports.DeleteDaemonTaskDefinition$ = DeleteDaemonTaskDefinition$;
|
|
2267
6512
|
exports.DeleteDaemonTaskDefinitionCommand = DeleteDaemonTaskDefinitionCommand;
|
|
6513
|
+
exports.DeleteDaemonTaskDefinitionRequest$ = DeleteDaemonTaskDefinitionRequest$;
|
|
6514
|
+
exports.DeleteDaemonTaskDefinitionResponse$ = DeleteDaemonTaskDefinitionResponse$;
|
|
6515
|
+
exports.DeleteExpressGatewayService$ = DeleteExpressGatewayService$;
|
|
2268
6516
|
exports.DeleteExpressGatewayServiceCommand = DeleteExpressGatewayServiceCommand;
|
|
6517
|
+
exports.DeleteExpressGatewayServiceRequest$ = DeleteExpressGatewayServiceRequest$;
|
|
6518
|
+
exports.DeleteExpressGatewayServiceResponse$ = DeleteExpressGatewayServiceResponse$;
|
|
6519
|
+
exports.DeleteService$ = DeleteService$;
|
|
2269
6520
|
exports.DeleteServiceCommand = DeleteServiceCommand;
|
|
6521
|
+
exports.DeleteServiceRequest$ = DeleteServiceRequest$;
|
|
6522
|
+
exports.DeleteServiceResponse$ = DeleteServiceResponse$;
|
|
6523
|
+
exports.DeleteTaskDefinitions$ = DeleteTaskDefinitions$;
|
|
2270
6524
|
exports.DeleteTaskDefinitionsCommand = DeleteTaskDefinitionsCommand;
|
|
6525
|
+
exports.DeleteTaskDefinitionsRequest$ = DeleteTaskDefinitionsRequest$;
|
|
6526
|
+
exports.DeleteTaskDefinitionsResponse$ = DeleteTaskDefinitionsResponse$;
|
|
6527
|
+
exports.DeleteTaskSet$ = DeleteTaskSet$;
|
|
2271
6528
|
exports.DeleteTaskSetCommand = DeleteTaskSetCommand;
|
|
6529
|
+
exports.DeleteTaskSetRequest$ = DeleteTaskSetRequest$;
|
|
6530
|
+
exports.DeleteTaskSetResponse$ = DeleteTaskSetResponse$;
|
|
6531
|
+
exports.Deployment$ = Deployment$;
|
|
6532
|
+
exports.DeploymentAlarms$ = DeploymentAlarms$;
|
|
6533
|
+
exports.DeploymentCircuitBreaker$ = DeploymentCircuitBreaker$;
|
|
6534
|
+
exports.DeploymentConfiguration$ = DeploymentConfiguration$;
|
|
6535
|
+
exports.DeploymentController$ = DeploymentController$;
|
|
2272
6536
|
exports.DeploymentControllerType = DeploymentControllerType;
|
|
6537
|
+
exports.DeploymentEphemeralStorage$ = DeploymentEphemeralStorage$;
|
|
6538
|
+
exports.DeploymentLifecycleHook$ = DeploymentLifecycleHook$;
|
|
2273
6539
|
exports.DeploymentLifecycleHookAction = DeploymentLifecycleHookAction;
|
|
6540
|
+
exports.DeploymentLifecycleHookDetail$ = DeploymentLifecycleHookDetail$;
|
|
2274
6541
|
exports.DeploymentLifecycleHookStage = DeploymentLifecycleHookStage;
|
|
2275
6542
|
exports.DeploymentLifecycleHookStatus = DeploymentLifecycleHookStatus;
|
|
2276
6543
|
exports.DeploymentLifecycleHookTargetType = DeploymentLifecycleHookTargetType;
|
|
6544
|
+
exports.DeploymentLifecycleHookTimeoutConfiguration$ = DeploymentLifecycleHookTimeoutConfiguration$;
|
|
2277
6545
|
exports.DeploymentRolloutState = DeploymentRolloutState;
|
|
2278
6546
|
exports.DeploymentStrategy = DeploymentStrategy;
|
|
6547
|
+
exports.DeregisterContainerInstance$ = DeregisterContainerInstance$;
|
|
2279
6548
|
exports.DeregisterContainerInstanceCommand = DeregisterContainerInstanceCommand;
|
|
6549
|
+
exports.DeregisterContainerInstanceRequest$ = DeregisterContainerInstanceRequest$;
|
|
6550
|
+
exports.DeregisterContainerInstanceResponse$ = DeregisterContainerInstanceResponse$;
|
|
6551
|
+
exports.DeregisterTaskDefinition$ = DeregisterTaskDefinition$;
|
|
2280
6552
|
exports.DeregisterTaskDefinitionCommand = DeregisterTaskDefinitionCommand;
|
|
6553
|
+
exports.DeregisterTaskDefinitionRequest$ = DeregisterTaskDefinitionRequest$;
|
|
6554
|
+
exports.DeregisterTaskDefinitionResponse$ = DeregisterTaskDefinitionResponse$;
|
|
6555
|
+
exports.DescribeCapacityProviders$ = DescribeCapacityProviders$;
|
|
2281
6556
|
exports.DescribeCapacityProvidersCommand = DescribeCapacityProvidersCommand;
|
|
6557
|
+
exports.DescribeCapacityProvidersRequest$ = DescribeCapacityProvidersRequest$;
|
|
6558
|
+
exports.DescribeCapacityProvidersResponse$ = DescribeCapacityProvidersResponse$;
|
|
6559
|
+
exports.DescribeClusters$ = DescribeClusters$;
|
|
2282
6560
|
exports.DescribeClustersCommand = DescribeClustersCommand;
|
|
6561
|
+
exports.DescribeClustersRequest$ = DescribeClustersRequest$;
|
|
6562
|
+
exports.DescribeClustersResponse$ = DescribeClustersResponse$;
|
|
6563
|
+
exports.DescribeContainerInstances$ = DescribeContainerInstances$;
|
|
2283
6564
|
exports.DescribeContainerInstancesCommand = DescribeContainerInstancesCommand;
|
|
6565
|
+
exports.DescribeContainerInstancesRequest$ = DescribeContainerInstancesRequest$;
|
|
6566
|
+
exports.DescribeContainerInstancesResponse$ = DescribeContainerInstancesResponse$;
|
|
6567
|
+
exports.DescribeDaemon$ = DescribeDaemon$;
|
|
2284
6568
|
exports.DescribeDaemonCommand = DescribeDaemonCommand;
|
|
6569
|
+
exports.DescribeDaemonDeployments$ = DescribeDaemonDeployments$;
|
|
2285
6570
|
exports.DescribeDaemonDeploymentsCommand = DescribeDaemonDeploymentsCommand;
|
|
6571
|
+
exports.DescribeDaemonDeploymentsRequest$ = DescribeDaemonDeploymentsRequest$;
|
|
6572
|
+
exports.DescribeDaemonDeploymentsResponse$ = DescribeDaemonDeploymentsResponse$;
|
|
6573
|
+
exports.DescribeDaemonRequest$ = DescribeDaemonRequest$;
|
|
6574
|
+
exports.DescribeDaemonResponse$ = DescribeDaemonResponse$;
|
|
6575
|
+
exports.DescribeDaemonRevisions$ = DescribeDaemonRevisions$;
|
|
2286
6576
|
exports.DescribeDaemonRevisionsCommand = DescribeDaemonRevisionsCommand;
|
|
6577
|
+
exports.DescribeDaemonRevisionsRequest$ = DescribeDaemonRevisionsRequest$;
|
|
6578
|
+
exports.DescribeDaemonRevisionsResponse$ = DescribeDaemonRevisionsResponse$;
|
|
6579
|
+
exports.DescribeDaemonTaskDefinition$ = DescribeDaemonTaskDefinition$;
|
|
2287
6580
|
exports.DescribeDaemonTaskDefinitionCommand = DescribeDaemonTaskDefinitionCommand;
|
|
6581
|
+
exports.DescribeDaemonTaskDefinitionRequest$ = DescribeDaemonTaskDefinitionRequest$;
|
|
6582
|
+
exports.DescribeDaemonTaskDefinitionResponse$ = DescribeDaemonTaskDefinitionResponse$;
|
|
6583
|
+
exports.DescribeExpressGatewayService$ = DescribeExpressGatewayService$;
|
|
2288
6584
|
exports.DescribeExpressGatewayServiceCommand = DescribeExpressGatewayServiceCommand;
|
|
6585
|
+
exports.DescribeExpressGatewayServiceRequest$ = DescribeExpressGatewayServiceRequest$;
|
|
6586
|
+
exports.DescribeExpressGatewayServiceResponse$ = DescribeExpressGatewayServiceResponse$;
|
|
6587
|
+
exports.DescribeServiceDeployments$ = DescribeServiceDeployments$;
|
|
2289
6588
|
exports.DescribeServiceDeploymentsCommand = DescribeServiceDeploymentsCommand;
|
|
6589
|
+
exports.DescribeServiceDeploymentsRequest$ = DescribeServiceDeploymentsRequest$;
|
|
6590
|
+
exports.DescribeServiceDeploymentsResponse$ = DescribeServiceDeploymentsResponse$;
|
|
6591
|
+
exports.DescribeServiceRevisions$ = DescribeServiceRevisions$;
|
|
2290
6592
|
exports.DescribeServiceRevisionsCommand = DescribeServiceRevisionsCommand;
|
|
6593
|
+
exports.DescribeServiceRevisionsRequest$ = DescribeServiceRevisionsRequest$;
|
|
6594
|
+
exports.DescribeServiceRevisionsResponse$ = DescribeServiceRevisionsResponse$;
|
|
6595
|
+
exports.DescribeServices$ = DescribeServices$;
|
|
2291
6596
|
exports.DescribeServicesCommand = DescribeServicesCommand;
|
|
6597
|
+
exports.DescribeServicesRequest$ = DescribeServicesRequest$;
|
|
6598
|
+
exports.DescribeServicesResponse$ = DescribeServicesResponse$;
|
|
6599
|
+
exports.DescribeTaskDefinition$ = DescribeTaskDefinition$;
|
|
2292
6600
|
exports.DescribeTaskDefinitionCommand = DescribeTaskDefinitionCommand;
|
|
6601
|
+
exports.DescribeTaskDefinitionRequest$ = DescribeTaskDefinitionRequest$;
|
|
6602
|
+
exports.DescribeTaskDefinitionResponse$ = DescribeTaskDefinitionResponse$;
|
|
6603
|
+
exports.DescribeTaskSets$ = DescribeTaskSets$;
|
|
2293
6604
|
exports.DescribeTaskSetsCommand = DescribeTaskSetsCommand;
|
|
6605
|
+
exports.DescribeTaskSetsRequest$ = DescribeTaskSetsRequest$;
|
|
6606
|
+
exports.DescribeTaskSetsResponse$ = DescribeTaskSetsResponse$;
|
|
6607
|
+
exports.DescribeTasks$ = DescribeTasks$;
|
|
2294
6608
|
exports.DescribeTasksCommand = DescribeTasksCommand;
|
|
6609
|
+
exports.DescribeTasksRequest$ = DescribeTasksRequest$;
|
|
6610
|
+
exports.DescribeTasksResponse$ = DescribeTasksResponse$;
|
|
2295
6611
|
exports.DesiredStatus = DesiredStatus;
|
|
6612
|
+
exports.Device$ = Device$;
|
|
2296
6613
|
exports.DeviceCgroupPermission = DeviceCgroupPermission;
|
|
6614
|
+
exports.DiscoverPollEndpoint$ = DiscoverPollEndpoint$;
|
|
2297
6615
|
exports.DiscoverPollEndpointCommand = DiscoverPollEndpointCommand;
|
|
6616
|
+
exports.DiscoverPollEndpointRequest$ = DiscoverPollEndpointRequest$;
|
|
6617
|
+
exports.DiscoverPollEndpointResponse$ = DiscoverPollEndpointResponse$;
|
|
6618
|
+
exports.DockerVolumeConfiguration$ = DockerVolumeConfiguration$;
|
|
2298
6619
|
exports.EBSResourceType = EBSResourceType;
|
|
6620
|
+
exports.EBSTagSpecification$ = EBSTagSpecification$;
|
|
2299
6621
|
exports.ECS = ECS;
|
|
2300
6622
|
exports.ECSClient = ECSClient;
|
|
6623
|
+
exports.ECSExpressGatewayService$ = ECSExpressGatewayService$;
|
|
6624
|
+
exports.ECSManagedResources$ = ECSManagedResources$;
|
|
6625
|
+
exports.ECSServiceException = ECSServiceException;
|
|
6626
|
+
exports.ECSServiceException$ = ECSServiceException$;
|
|
6627
|
+
exports.EFSAuthorizationConfig$ = EFSAuthorizationConfig$;
|
|
2301
6628
|
exports.EFSAuthorizationConfigIAM = EFSAuthorizationConfigIAM;
|
|
2302
6629
|
exports.EFSTransitEncryption = EFSTransitEncryption;
|
|
6630
|
+
exports.EFSVolumeConfiguration$ = EFSVolumeConfiguration$;
|
|
6631
|
+
exports.EnvironmentFile$ = EnvironmentFile$;
|
|
2303
6632
|
exports.EnvironmentFileType = EnvironmentFileType;
|
|
6633
|
+
exports.EphemeralStorage$ = EphemeralStorage$;
|
|
6634
|
+
exports.ExecuteCommand$ = ExecuteCommand$;
|
|
2304
6635
|
exports.ExecuteCommandCommand = ExecuteCommandCommand;
|
|
6636
|
+
exports.ExecuteCommandConfiguration$ = ExecuteCommandConfiguration$;
|
|
6637
|
+
exports.ExecuteCommandLogConfiguration$ = ExecuteCommandLogConfiguration$;
|
|
2305
6638
|
exports.ExecuteCommandLogging = ExecuteCommandLogging;
|
|
6639
|
+
exports.ExecuteCommandRequest$ = ExecuteCommandRequest$;
|
|
6640
|
+
exports.ExecuteCommandResponse$ = ExecuteCommandResponse$;
|
|
6641
|
+
exports.ExpressGatewayContainer$ = ExpressGatewayContainer$;
|
|
6642
|
+
exports.ExpressGatewayRepositoryCredentials$ = ExpressGatewayRepositoryCredentials$;
|
|
6643
|
+
exports.ExpressGatewayScalingTarget$ = ExpressGatewayScalingTarget$;
|
|
6644
|
+
exports.ExpressGatewayServiceAwsLogsConfiguration$ = ExpressGatewayServiceAwsLogsConfiguration$;
|
|
6645
|
+
exports.ExpressGatewayServiceConfiguration$ = ExpressGatewayServiceConfiguration$;
|
|
2306
6646
|
exports.ExpressGatewayServiceInclude = ExpressGatewayServiceInclude;
|
|
6647
|
+
exports.ExpressGatewayServiceNetworkConfiguration$ = ExpressGatewayServiceNetworkConfiguration$;
|
|
2307
6648
|
exports.ExpressGatewayServiceScalingMetric = ExpressGatewayServiceScalingMetric;
|
|
6649
|
+
exports.ExpressGatewayServiceStatus$ = ExpressGatewayServiceStatus$;
|
|
2308
6650
|
exports.ExpressGatewayServiceStatusCode = ExpressGatewayServiceStatusCode;
|
|
6651
|
+
exports.FSxWindowsFileServerAuthorizationConfig$ = FSxWindowsFileServerAuthorizationConfig$;
|
|
6652
|
+
exports.FSxWindowsFileServerVolumeConfiguration$ = FSxWindowsFileServerVolumeConfiguration$;
|
|
6653
|
+
exports.Failure$ = Failure$;
|
|
6654
|
+
exports.FirelensConfiguration$ = FirelensConfiguration$;
|
|
2309
6655
|
exports.FirelensConfigurationType = FirelensConfigurationType;
|
|
6656
|
+
exports.GetTaskProtection$ = GetTaskProtection$;
|
|
2310
6657
|
exports.GetTaskProtectionCommand = GetTaskProtectionCommand;
|
|
6658
|
+
exports.GetTaskProtectionRequest$ = GetTaskProtectionRequest$;
|
|
6659
|
+
exports.GetTaskProtectionResponse$ = GetTaskProtectionResponse$;
|
|
6660
|
+
exports.HealthCheck$ = HealthCheck$;
|
|
2311
6661
|
exports.HealthStatus = HealthStatus;
|
|
6662
|
+
exports.HostEntry$ = HostEntry$;
|
|
6663
|
+
exports.HostVolumeProperties$ = HostVolumeProperties$;
|
|
6664
|
+
exports.InferenceAccelerator$ = InferenceAccelerator$;
|
|
6665
|
+
exports.InferenceAcceleratorOverride$ = InferenceAcceleratorOverride$;
|
|
6666
|
+
exports.InfrastructureOptimization$ = InfrastructureOptimization$;
|
|
6667
|
+
exports.IngressPathSummary$ = IngressPathSummary$;
|
|
2312
6668
|
exports.InstanceGeneration = InstanceGeneration;
|
|
6669
|
+
exports.InstanceHealthCheckResult$ = InstanceHealthCheckResult$;
|
|
2313
6670
|
exports.InstanceHealthCheckState = InstanceHealthCheckState;
|
|
2314
6671
|
exports.InstanceHealthCheckType = InstanceHealthCheckType;
|
|
6672
|
+
exports.InstanceLaunchTemplate$ = InstanceLaunchTemplate$;
|
|
6673
|
+
exports.InstanceLaunchTemplateUpdate$ = InstanceLaunchTemplateUpdate$;
|
|
6674
|
+
exports.InstanceRequirementsRequest$ = InstanceRequirementsRequest$;
|
|
6675
|
+
exports.InvalidParameterException = InvalidParameterException;
|
|
6676
|
+
exports.InvalidParameterException$ = InvalidParameterException$;
|
|
2315
6677
|
exports.IpcMode = IpcMode;
|
|
6678
|
+
exports.KernelCapabilities$ = KernelCapabilities$;
|
|
6679
|
+
exports.KeyValuePair$ = KeyValuePair$;
|
|
2316
6680
|
exports.LaunchType = LaunchType;
|
|
6681
|
+
exports.LimitExceededException = LimitExceededException;
|
|
6682
|
+
exports.LimitExceededException$ = LimitExceededException$;
|
|
6683
|
+
exports.LinearConfiguration$ = LinearConfiguration$;
|
|
6684
|
+
exports.LinuxParameters$ = LinuxParameters$;
|
|
6685
|
+
exports.ListAccountSettings$ = ListAccountSettings$;
|
|
2317
6686
|
exports.ListAccountSettingsCommand = ListAccountSettingsCommand;
|
|
6687
|
+
exports.ListAccountSettingsRequest$ = ListAccountSettingsRequest$;
|
|
6688
|
+
exports.ListAccountSettingsResponse$ = ListAccountSettingsResponse$;
|
|
6689
|
+
exports.ListAttributes$ = ListAttributes$;
|
|
2318
6690
|
exports.ListAttributesCommand = ListAttributesCommand;
|
|
6691
|
+
exports.ListAttributesRequest$ = ListAttributesRequest$;
|
|
6692
|
+
exports.ListAttributesResponse$ = ListAttributesResponse$;
|
|
6693
|
+
exports.ListClusters$ = ListClusters$;
|
|
2319
6694
|
exports.ListClustersCommand = ListClustersCommand;
|
|
6695
|
+
exports.ListClustersRequest$ = ListClustersRequest$;
|
|
6696
|
+
exports.ListClustersResponse$ = ListClustersResponse$;
|
|
6697
|
+
exports.ListContainerInstances$ = ListContainerInstances$;
|
|
2320
6698
|
exports.ListContainerInstancesCommand = ListContainerInstancesCommand;
|
|
6699
|
+
exports.ListContainerInstancesRequest$ = ListContainerInstancesRequest$;
|
|
6700
|
+
exports.ListContainerInstancesResponse$ = ListContainerInstancesResponse$;
|
|
6701
|
+
exports.ListDaemonDeployments$ = ListDaemonDeployments$;
|
|
2321
6702
|
exports.ListDaemonDeploymentsCommand = ListDaemonDeploymentsCommand;
|
|
6703
|
+
exports.ListDaemonDeploymentsRequest$ = ListDaemonDeploymentsRequest$;
|
|
6704
|
+
exports.ListDaemonDeploymentsResponse$ = ListDaemonDeploymentsResponse$;
|
|
6705
|
+
exports.ListDaemonTaskDefinitions$ = ListDaemonTaskDefinitions$;
|
|
2322
6706
|
exports.ListDaemonTaskDefinitionsCommand = ListDaemonTaskDefinitionsCommand;
|
|
6707
|
+
exports.ListDaemonTaskDefinitionsRequest$ = ListDaemonTaskDefinitionsRequest$;
|
|
6708
|
+
exports.ListDaemonTaskDefinitionsResponse$ = ListDaemonTaskDefinitionsResponse$;
|
|
6709
|
+
exports.ListDaemons$ = ListDaemons$;
|
|
2323
6710
|
exports.ListDaemonsCommand = ListDaemonsCommand;
|
|
6711
|
+
exports.ListDaemonsRequest$ = ListDaemonsRequest$;
|
|
6712
|
+
exports.ListDaemonsResponse$ = ListDaemonsResponse$;
|
|
6713
|
+
exports.ListServiceDeployments$ = ListServiceDeployments$;
|
|
2324
6714
|
exports.ListServiceDeploymentsCommand = ListServiceDeploymentsCommand;
|
|
6715
|
+
exports.ListServiceDeploymentsRequest$ = ListServiceDeploymentsRequest$;
|
|
6716
|
+
exports.ListServiceDeploymentsResponse$ = ListServiceDeploymentsResponse$;
|
|
6717
|
+
exports.ListServices$ = ListServices$;
|
|
6718
|
+
exports.ListServicesByNamespace$ = ListServicesByNamespace$;
|
|
2325
6719
|
exports.ListServicesByNamespaceCommand = ListServicesByNamespaceCommand;
|
|
6720
|
+
exports.ListServicesByNamespaceRequest$ = ListServicesByNamespaceRequest$;
|
|
6721
|
+
exports.ListServicesByNamespaceResponse$ = ListServicesByNamespaceResponse$;
|
|
2326
6722
|
exports.ListServicesCommand = ListServicesCommand;
|
|
6723
|
+
exports.ListServicesRequest$ = ListServicesRequest$;
|
|
6724
|
+
exports.ListServicesResponse$ = ListServicesResponse$;
|
|
6725
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
2327
6726
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
6727
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
6728
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
6729
|
+
exports.ListTaskDefinitionFamilies$ = ListTaskDefinitionFamilies$;
|
|
2328
6730
|
exports.ListTaskDefinitionFamiliesCommand = ListTaskDefinitionFamiliesCommand;
|
|
6731
|
+
exports.ListTaskDefinitionFamiliesRequest$ = ListTaskDefinitionFamiliesRequest$;
|
|
6732
|
+
exports.ListTaskDefinitionFamiliesResponse$ = ListTaskDefinitionFamiliesResponse$;
|
|
6733
|
+
exports.ListTaskDefinitions$ = ListTaskDefinitions$;
|
|
2329
6734
|
exports.ListTaskDefinitionsCommand = ListTaskDefinitionsCommand;
|
|
6735
|
+
exports.ListTaskDefinitionsRequest$ = ListTaskDefinitionsRequest$;
|
|
6736
|
+
exports.ListTaskDefinitionsResponse$ = ListTaskDefinitionsResponse$;
|
|
6737
|
+
exports.ListTasks$ = ListTasks$;
|
|
2330
6738
|
exports.ListTasksCommand = ListTasksCommand;
|
|
6739
|
+
exports.ListTasksRequest$ = ListTasksRequest$;
|
|
6740
|
+
exports.ListTasksResponse$ = ListTasksResponse$;
|
|
6741
|
+
exports.LoadBalancer$ = LoadBalancer$;
|
|
2331
6742
|
exports.LocalStorage = LocalStorage;
|
|
2332
6743
|
exports.LocalStorageType = LocalStorageType;
|
|
6744
|
+
exports.LogConfiguration$ = LogConfiguration$;
|
|
2333
6745
|
exports.LogDriver = LogDriver;
|
|
6746
|
+
exports.ManagedAgent$ = ManagedAgent$;
|
|
2334
6747
|
exports.ManagedAgentName = ManagedAgentName;
|
|
6748
|
+
exports.ManagedAgentStateChange$ = ManagedAgentStateChange$;
|
|
6749
|
+
exports.ManagedApplicationAutoScalingPolicy$ = ManagedApplicationAutoScalingPolicy$;
|
|
6750
|
+
exports.ManagedAutoScaling$ = ManagedAutoScaling$;
|
|
6751
|
+
exports.ManagedCertificate$ = ManagedCertificate$;
|
|
2335
6752
|
exports.ManagedDraining = ManagedDraining;
|
|
6753
|
+
exports.ManagedIngressPath$ = ManagedIngressPath$;
|
|
6754
|
+
exports.ManagedInstancesLocalStorageConfiguration$ = ManagedInstancesLocalStorageConfiguration$;
|
|
2336
6755
|
exports.ManagedInstancesMonitoringOptions = ManagedInstancesMonitoringOptions;
|
|
6756
|
+
exports.ManagedInstancesNetworkConfiguration$ = ManagedInstancesNetworkConfiguration$;
|
|
6757
|
+
exports.ManagedInstancesProvider$ = ManagedInstancesProvider$;
|
|
6758
|
+
exports.ManagedInstancesStorageConfiguration$ = ManagedInstancesStorageConfiguration$;
|
|
6759
|
+
exports.ManagedListener$ = ManagedListener$;
|
|
6760
|
+
exports.ManagedListenerRule$ = ManagedListenerRule$;
|
|
6761
|
+
exports.ManagedLoadBalancer$ = ManagedLoadBalancer$;
|
|
6762
|
+
exports.ManagedLogGroup$ = ManagedLogGroup$;
|
|
6763
|
+
exports.ManagedMetricAlarm$ = ManagedMetricAlarm$;
|
|
2337
6764
|
exports.ManagedResourceStatus = ManagedResourceStatus;
|
|
6765
|
+
exports.ManagedScalableTarget$ = ManagedScalableTarget$;
|
|
6766
|
+
exports.ManagedScaling$ = ManagedScaling$;
|
|
2338
6767
|
exports.ManagedScalingStatus = ManagedScalingStatus;
|
|
6768
|
+
exports.ManagedSecurityGroup$ = ManagedSecurityGroup$;
|
|
6769
|
+
exports.ManagedStorageConfiguration$ = ManagedStorageConfiguration$;
|
|
6770
|
+
exports.ManagedTargetGroup$ = ManagedTargetGroup$;
|
|
2339
6771
|
exports.ManagedTerminationProtection = ManagedTerminationProtection;
|
|
6772
|
+
exports.MemoryGiBPerVCpuRequest$ = MemoryGiBPerVCpuRequest$;
|
|
6773
|
+
exports.MemoryMiBRequest$ = MemoryMiBRequest$;
|
|
6774
|
+
exports.MetricConfiguration$ = MetricConfiguration$;
|
|
6775
|
+
exports.MissingVersionException = MissingVersionException;
|
|
6776
|
+
exports.MissingVersionException$ = MissingVersionException$;
|
|
6777
|
+
exports.MonitoringConfiguration$ = MonitoringConfiguration$;
|
|
6778
|
+
exports.MountPoint$ = MountPoint$;
|
|
6779
|
+
exports.NamespaceNotFoundException = NamespaceNotFoundException;
|
|
6780
|
+
exports.NamespaceNotFoundException$ = NamespaceNotFoundException$;
|
|
6781
|
+
exports.NetworkBandwidthGbpsRequest$ = NetworkBandwidthGbpsRequest$;
|
|
6782
|
+
exports.NetworkBinding$ = NetworkBinding$;
|
|
6783
|
+
exports.NetworkConfiguration$ = NetworkConfiguration$;
|
|
6784
|
+
exports.NetworkInterface$ = NetworkInterface$;
|
|
6785
|
+
exports.NetworkInterfaceCountRequest$ = NetworkInterfaceCountRequest$;
|
|
2340
6786
|
exports.NetworkMode = NetworkMode;
|
|
6787
|
+
exports.NoUpdateAvailableException = NoUpdateAvailableException;
|
|
6788
|
+
exports.NoUpdateAvailableException$ = NoUpdateAvailableException$;
|
|
2341
6789
|
exports.OSFamily = OSFamily;
|
|
2342
6790
|
exports.PidMode = PidMode;
|
|
6791
|
+
exports.PlacementConstraint$ = PlacementConstraint$;
|
|
2343
6792
|
exports.PlacementConstraintType = PlacementConstraintType;
|
|
6793
|
+
exports.PlacementStrategy$ = PlacementStrategy$;
|
|
2344
6794
|
exports.PlacementStrategyType = PlacementStrategyType;
|
|
6795
|
+
exports.PlatformDevice$ = PlatformDevice$;
|
|
2345
6796
|
exports.PlatformDeviceType = PlatformDeviceType;
|
|
6797
|
+
exports.PlatformTaskDefinitionIncompatibilityException = PlatformTaskDefinitionIncompatibilityException;
|
|
6798
|
+
exports.PlatformTaskDefinitionIncompatibilityException$ = PlatformTaskDefinitionIncompatibilityException$;
|
|
6799
|
+
exports.PlatformUnknownException = PlatformUnknownException;
|
|
6800
|
+
exports.PlatformUnknownException$ = PlatformUnknownException$;
|
|
6801
|
+
exports.PortMapping$ = PortMapping$;
|
|
2346
6802
|
exports.PropagateMITags = PropagateMITags;
|
|
2347
6803
|
exports.PropagateTags = PropagateTags;
|
|
6804
|
+
exports.ProtectedTask$ = ProtectedTask$;
|
|
6805
|
+
exports.ProxyConfiguration$ = ProxyConfiguration$;
|
|
2348
6806
|
exports.ProxyConfigurationType = ProxyConfigurationType;
|
|
6807
|
+
exports.PutAccountSetting$ = PutAccountSetting$;
|
|
2349
6808
|
exports.PutAccountSettingCommand = PutAccountSettingCommand;
|
|
6809
|
+
exports.PutAccountSettingDefault$ = PutAccountSettingDefault$;
|
|
2350
6810
|
exports.PutAccountSettingDefaultCommand = PutAccountSettingDefaultCommand;
|
|
6811
|
+
exports.PutAccountSettingDefaultRequest$ = PutAccountSettingDefaultRequest$;
|
|
6812
|
+
exports.PutAccountSettingDefaultResponse$ = PutAccountSettingDefaultResponse$;
|
|
6813
|
+
exports.PutAccountSettingRequest$ = PutAccountSettingRequest$;
|
|
6814
|
+
exports.PutAccountSettingResponse$ = PutAccountSettingResponse$;
|
|
6815
|
+
exports.PutAttributes$ = PutAttributes$;
|
|
2351
6816
|
exports.PutAttributesCommand = PutAttributesCommand;
|
|
6817
|
+
exports.PutAttributesRequest$ = PutAttributesRequest$;
|
|
6818
|
+
exports.PutAttributesResponse$ = PutAttributesResponse$;
|
|
6819
|
+
exports.PutClusterCapacityProviders$ = PutClusterCapacityProviders$;
|
|
2352
6820
|
exports.PutClusterCapacityProvidersCommand = PutClusterCapacityProvidersCommand;
|
|
6821
|
+
exports.PutClusterCapacityProvidersRequest$ = PutClusterCapacityProvidersRequest$;
|
|
6822
|
+
exports.PutClusterCapacityProvidersResponse$ = PutClusterCapacityProvidersResponse$;
|
|
6823
|
+
exports.RegisterContainerInstance$ = RegisterContainerInstance$;
|
|
2353
6824
|
exports.RegisterContainerInstanceCommand = RegisterContainerInstanceCommand;
|
|
6825
|
+
exports.RegisterContainerInstanceRequest$ = RegisterContainerInstanceRequest$;
|
|
6826
|
+
exports.RegisterContainerInstanceResponse$ = RegisterContainerInstanceResponse$;
|
|
6827
|
+
exports.RegisterDaemonTaskDefinition$ = RegisterDaemonTaskDefinition$;
|
|
2354
6828
|
exports.RegisterDaemonTaskDefinitionCommand = RegisterDaemonTaskDefinitionCommand;
|
|
6829
|
+
exports.RegisterDaemonTaskDefinitionRequest$ = RegisterDaemonTaskDefinitionRequest$;
|
|
6830
|
+
exports.RegisterDaemonTaskDefinitionResponse$ = RegisterDaemonTaskDefinitionResponse$;
|
|
6831
|
+
exports.RegisterTaskDefinition$ = RegisterTaskDefinition$;
|
|
2355
6832
|
exports.RegisterTaskDefinitionCommand = RegisterTaskDefinitionCommand;
|
|
6833
|
+
exports.RegisterTaskDefinitionRequest$ = RegisterTaskDefinitionRequest$;
|
|
6834
|
+
exports.RegisterTaskDefinitionResponse$ = RegisterTaskDefinitionResponse$;
|
|
6835
|
+
exports.RepositoryCredentials$ = RepositoryCredentials$;
|
|
6836
|
+
exports.ResolvedConfiguration$ = ResolvedConfiguration$;
|
|
6837
|
+
exports.Resource$ = Resource$;
|
|
6838
|
+
exports.ResourceInUseException = ResourceInUseException;
|
|
6839
|
+
exports.ResourceInUseException$ = ResourceInUseException$;
|
|
2356
6840
|
exports.ResourceManagementType = ResourceManagementType;
|
|
6841
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
6842
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
6843
|
+
exports.ResourceRequirement$ = ResourceRequirement$;
|
|
2357
6844
|
exports.ResourceType = ResourceType;
|
|
6845
|
+
exports.Rollback$ = Rollback$;
|
|
6846
|
+
exports.RunTask$ = RunTask$;
|
|
2358
6847
|
exports.RunTaskCommand = RunTaskCommand;
|
|
6848
|
+
exports.RunTaskRequest$ = RunTaskRequest$;
|
|
6849
|
+
exports.RunTaskResponse$ = RunTaskResponse$;
|
|
6850
|
+
exports.RuntimePlatform$ = RuntimePlatform$;
|
|
6851
|
+
exports.S3FilesVolumeConfiguration$ = S3FilesVolumeConfiguration$;
|
|
6852
|
+
exports.Scale$ = Scale$;
|
|
2359
6853
|
exports.ScaleUnit = ScaleUnit;
|
|
2360
6854
|
exports.SchedulingStrategy = SchedulingStrategy;
|
|
2361
6855
|
exports.Scope = Scope;
|
|
6856
|
+
exports.Secret$ = Secret$;
|
|
6857
|
+
exports.ServerException = ServerException;
|
|
6858
|
+
exports.ServerException$ = ServerException$;
|
|
6859
|
+
exports.Service$ = Service$;
|
|
6860
|
+
exports.ServiceConnectAccessLogConfiguration$ = ServiceConnectAccessLogConfiguration$;
|
|
2362
6861
|
exports.ServiceConnectAccessLoggingFormat = ServiceConnectAccessLoggingFormat;
|
|
6862
|
+
exports.ServiceConnectClientAlias$ = ServiceConnectClientAlias$;
|
|
6863
|
+
exports.ServiceConnectConfiguration$ = ServiceConnectConfiguration$;
|
|
2363
6864
|
exports.ServiceConnectIncludeQueryParameters = ServiceConnectIncludeQueryParameters;
|
|
6865
|
+
exports.ServiceConnectService$ = ServiceConnectService$;
|
|
6866
|
+
exports.ServiceConnectServiceResource$ = ServiceConnectServiceResource$;
|
|
6867
|
+
exports.ServiceConnectTestTrafficHeaderMatchRules$ = ServiceConnectTestTrafficHeaderMatchRules$;
|
|
6868
|
+
exports.ServiceConnectTestTrafficHeaderRules$ = ServiceConnectTestTrafficHeaderRules$;
|
|
6869
|
+
exports.ServiceConnectTestTrafficRules$ = ServiceConnectTestTrafficRules$;
|
|
6870
|
+
exports.ServiceConnectTlsCertificateAuthority$ = ServiceConnectTlsCertificateAuthority$;
|
|
6871
|
+
exports.ServiceConnectTlsConfiguration$ = ServiceConnectTlsConfiguration$;
|
|
6872
|
+
exports.ServiceCurrentRevisionSummary$ = ServiceCurrentRevisionSummary$;
|
|
6873
|
+
exports.ServiceDeployment$ = ServiceDeployment$;
|
|
6874
|
+
exports.ServiceDeploymentAlarms$ = ServiceDeploymentAlarms$;
|
|
6875
|
+
exports.ServiceDeploymentBrief$ = ServiceDeploymentBrief$;
|
|
6876
|
+
exports.ServiceDeploymentCircuitBreaker$ = ServiceDeploymentCircuitBreaker$;
|
|
2364
6877
|
exports.ServiceDeploymentLifecycleStage = ServiceDeploymentLifecycleStage;
|
|
6878
|
+
exports.ServiceDeploymentNotFoundException = ServiceDeploymentNotFoundException;
|
|
6879
|
+
exports.ServiceDeploymentNotFoundException$ = ServiceDeploymentNotFoundException$;
|
|
2365
6880
|
exports.ServiceDeploymentRollbackMonitorsStatus = ServiceDeploymentRollbackMonitorsStatus;
|
|
2366
6881
|
exports.ServiceDeploymentStatus = ServiceDeploymentStatus;
|
|
6882
|
+
exports.ServiceEvent$ = ServiceEvent$;
|
|
2367
6883
|
exports.ServiceField = ServiceField;
|
|
6884
|
+
exports.ServiceManagedEBSVolumeConfiguration$ = ServiceManagedEBSVolumeConfiguration$;
|
|
6885
|
+
exports.ServiceNotActiveException = ServiceNotActiveException;
|
|
6886
|
+
exports.ServiceNotActiveException$ = ServiceNotActiveException$;
|
|
6887
|
+
exports.ServiceNotFoundException = ServiceNotFoundException;
|
|
6888
|
+
exports.ServiceNotFoundException$ = ServiceNotFoundException$;
|
|
6889
|
+
exports.ServiceRegistry$ = ServiceRegistry$;
|
|
6890
|
+
exports.ServiceRevision$ = ServiceRevision$;
|
|
6891
|
+
exports.ServiceRevisionLoadBalancer$ = ServiceRevisionLoadBalancer$;
|
|
6892
|
+
exports.ServiceRevisionSummary$ = ServiceRevisionSummary$;
|
|
6893
|
+
exports.ServiceVolumeConfiguration$ = ServiceVolumeConfiguration$;
|
|
6894
|
+
exports.Session$ = Session$;
|
|
6895
|
+
exports.Setting$ = Setting$;
|
|
2368
6896
|
exports.SettingName = SettingName;
|
|
2369
6897
|
exports.SettingType = SettingType;
|
|
2370
6898
|
exports.SortOrder = SortOrder;
|
|
2371
6899
|
exports.StabilityStatus = StabilityStatus;
|
|
6900
|
+
exports.StartTask$ = StartTask$;
|
|
2372
6901
|
exports.StartTaskCommand = StartTaskCommand;
|
|
6902
|
+
exports.StartTaskRequest$ = StartTaskRequest$;
|
|
6903
|
+
exports.StartTaskResponse$ = StartTaskResponse$;
|
|
6904
|
+
exports.StopServiceDeployment$ = StopServiceDeployment$;
|
|
2373
6905
|
exports.StopServiceDeploymentCommand = StopServiceDeploymentCommand;
|
|
6906
|
+
exports.StopServiceDeploymentRequest$ = StopServiceDeploymentRequest$;
|
|
6907
|
+
exports.StopServiceDeploymentResponse$ = StopServiceDeploymentResponse$;
|
|
2374
6908
|
exports.StopServiceDeploymentStopType = StopServiceDeploymentStopType;
|
|
6909
|
+
exports.StopTask$ = StopTask$;
|
|
2375
6910
|
exports.StopTaskCommand = StopTaskCommand;
|
|
6911
|
+
exports.StopTaskRequest$ = StopTaskRequest$;
|
|
6912
|
+
exports.StopTaskResponse$ = StopTaskResponse$;
|
|
6913
|
+
exports.SubmitAttachmentStateChanges$ = SubmitAttachmentStateChanges$;
|
|
2376
6914
|
exports.SubmitAttachmentStateChangesCommand = SubmitAttachmentStateChangesCommand;
|
|
6915
|
+
exports.SubmitAttachmentStateChangesRequest$ = SubmitAttachmentStateChangesRequest$;
|
|
6916
|
+
exports.SubmitAttachmentStateChangesResponse$ = SubmitAttachmentStateChangesResponse$;
|
|
6917
|
+
exports.SubmitContainerStateChange$ = SubmitContainerStateChange$;
|
|
2377
6918
|
exports.SubmitContainerStateChangeCommand = SubmitContainerStateChangeCommand;
|
|
6919
|
+
exports.SubmitContainerStateChangeRequest$ = SubmitContainerStateChangeRequest$;
|
|
6920
|
+
exports.SubmitContainerStateChangeResponse$ = SubmitContainerStateChangeResponse$;
|
|
6921
|
+
exports.SubmitTaskStateChange$ = SubmitTaskStateChange$;
|
|
2378
6922
|
exports.SubmitTaskStateChangeCommand = SubmitTaskStateChangeCommand;
|
|
6923
|
+
exports.SubmitTaskStateChangeRequest$ = SubmitTaskStateChangeRequest$;
|
|
6924
|
+
exports.SubmitTaskStateChangeResponse$ = SubmitTaskStateChangeResponse$;
|
|
6925
|
+
exports.SystemControl$ = SystemControl$;
|
|
6926
|
+
exports.Tag$ = Tag$;
|
|
6927
|
+
exports.TagResource$ = TagResource$;
|
|
2379
6928
|
exports.TagResourceCommand = TagResourceCommand;
|
|
6929
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
6930
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
6931
|
+
exports.TargetNotConnectedException = TargetNotConnectedException;
|
|
6932
|
+
exports.TargetNotConnectedException$ = TargetNotConnectedException$;
|
|
6933
|
+
exports.TargetNotFoundException = TargetNotFoundException;
|
|
6934
|
+
exports.TargetNotFoundException$ = TargetNotFoundException$;
|
|
2380
6935
|
exports.TargetType = TargetType;
|
|
6936
|
+
exports.Task$ = Task$;
|
|
6937
|
+
exports.TaskDefinition$ = TaskDefinition$;
|
|
2381
6938
|
exports.TaskDefinitionFamilyStatus = TaskDefinitionFamilyStatus;
|
|
2382
6939
|
exports.TaskDefinitionField = TaskDefinitionField;
|
|
6940
|
+
exports.TaskDefinitionPlacementConstraint$ = TaskDefinitionPlacementConstraint$;
|
|
2383
6941
|
exports.TaskDefinitionPlacementConstraintType = TaskDefinitionPlacementConstraintType;
|
|
2384
6942
|
exports.TaskDefinitionStatus = TaskDefinitionStatus;
|
|
6943
|
+
exports.TaskEphemeralStorage$ = TaskEphemeralStorage$;
|
|
2385
6944
|
exports.TaskField = TaskField;
|
|
2386
6945
|
exports.TaskFilesystemType = TaskFilesystemType;
|
|
6946
|
+
exports.TaskManagedEBSVolumeConfiguration$ = TaskManagedEBSVolumeConfiguration$;
|
|
6947
|
+
exports.TaskManagedEBSVolumeTerminationPolicy$ = TaskManagedEBSVolumeTerminationPolicy$;
|
|
6948
|
+
exports.TaskOverride$ = TaskOverride$;
|
|
6949
|
+
exports.TaskSet$ = TaskSet$;
|
|
2387
6950
|
exports.TaskSetField = TaskSetField;
|
|
6951
|
+
exports.TaskSetNotFoundException = TaskSetNotFoundException;
|
|
6952
|
+
exports.TaskSetNotFoundException$ = TaskSetNotFoundException$;
|
|
2388
6953
|
exports.TaskStopCode = TaskStopCode;
|
|
6954
|
+
exports.TaskVolumeConfiguration$ = TaskVolumeConfiguration$;
|
|
6955
|
+
exports.ThresholdConfiguration$ = ThresholdConfiguration$;
|
|
6956
|
+
exports.ThresholdType = ThresholdType;
|
|
6957
|
+
exports.TimeoutConfiguration$ = TimeoutConfiguration$;
|
|
6958
|
+
exports.Tmpfs$ = Tmpfs$;
|
|
6959
|
+
exports.TotalLocalStorageGBRequest$ = TotalLocalStorageGBRequest$;
|
|
2389
6960
|
exports.TransportProtocol = TransportProtocol;
|
|
6961
|
+
exports.Ulimit$ = Ulimit$;
|
|
2390
6962
|
exports.UlimitName = UlimitName;
|
|
6963
|
+
exports.UnsupportedFeatureException = UnsupportedFeatureException;
|
|
6964
|
+
exports.UnsupportedFeatureException$ = UnsupportedFeatureException$;
|
|
6965
|
+
exports.UntagResource$ = UntagResource$;
|
|
2391
6966
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
6967
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
6968
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
6969
|
+
exports.UpdateCapacityProvider$ = UpdateCapacityProvider$;
|
|
2392
6970
|
exports.UpdateCapacityProviderCommand = UpdateCapacityProviderCommand;
|
|
6971
|
+
exports.UpdateCapacityProviderRequest$ = UpdateCapacityProviderRequest$;
|
|
6972
|
+
exports.UpdateCapacityProviderResponse$ = UpdateCapacityProviderResponse$;
|
|
6973
|
+
exports.UpdateCluster$ = UpdateCluster$;
|
|
2393
6974
|
exports.UpdateClusterCommand = UpdateClusterCommand;
|
|
6975
|
+
exports.UpdateClusterRequest$ = UpdateClusterRequest$;
|
|
6976
|
+
exports.UpdateClusterResponse$ = UpdateClusterResponse$;
|
|
6977
|
+
exports.UpdateClusterSettings$ = UpdateClusterSettings$;
|
|
2394
6978
|
exports.UpdateClusterSettingsCommand = UpdateClusterSettingsCommand;
|
|
6979
|
+
exports.UpdateClusterSettingsRequest$ = UpdateClusterSettingsRequest$;
|
|
6980
|
+
exports.UpdateClusterSettingsResponse$ = UpdateClusterSettingsResponse$;
|
|
6981
|
+
exports.UpdateContainerAgent$ = UpdateContainerAgent$;
|
|
2395
6982
|
exports.UpdateContainerAgentCommand = UpdateContainerAgentCommand;
|
|
6983
|
+
exports.UpdateContainerAgentRequest$ = UpdateContainerAgentRequest$;
|
|
6984
|
+
exports.UpdateContainerAgentResponse$ = UpdateContainerAgentResponse$;
|
|
6985
|
+
exports.UpdateContainerInstancesState$ = UpdateContainerInstancesState$;
|
|
2396
6986
|
exports.UpdateContainerInstancesStateCommand = UpdateContainerInstancesStateCommand;
|
|
6987
|
+
exports.UpdateContainerInstancesStateRequest$ = UpdateContainerInstancesStateRequest$;
|
|
6988
|
+
exports.UpdateContainerInstancesStateResponse$ = UpdateContainerInstancesStateResponse$;
|
|
6989
|
+
exports.UpdateDaemon$ = UpdateDaemon$;
|
|
2397
6990
|
exports.UpdateDaemonCommand = UpdateDaemonCommand;
|
|
6991
|
+
exports.UpdateDaemonRequest$ = UpdateDaemonRequest$;
|
|
6992
|
+
exports.UpdateDaemonResponse$ = UpdateDaemonResponse$;
|
|
6993
|
+
exports.UpdateExpressGatewayService$ = UpdateExpressGatewayService$;
|
|
2398
6994
|
exports.UpdateExpressGatewayServiceCommand = UpdateExpressGatewayServiceCommand;
|
|
6995
|
+
exports.UpdateExpressGatewayServiceRequest$ = UpdateExpressGatewayServiceRequest$;
|
|
6996
|
+
exports.UpdateExpressGatewayServiceResponse$ = UpdateExpressGatewayServiceResponse$;
|
|
6997
|
+
exports.UpdateInProgressException = UpdateInProgressException;
|
|
6998
|
+
exports.UpdateInProgressException$ = UpdateInProgressException$;
|
|
6999
|
+
exports.UpdateManagedInstancesProviderConfiguration$ = UpdateManagedInstancesProviderConfiguration$;
|
|
7000
|
+
exports.UpdateService$ = UpdateService$;
|
|
2399
7001
|
exports.UpdateServiceCommand = UpdateServiceCommand;
|
|
7002
|
+
exports.UpdateServicePrimaryTaskSet$ = UpdateServicePrimaryTaskSet$;
|
|
2400
7003
|
exports.UpdateServicePrimaryTaskSetCommand = UpdateServicePrimaryTaskSetCommand;
|
|
7004
|
+
exports.UpdateServicePrimaryTaskSetRequest$ = UpdateServicePrimaryTaskSetRequest$;
|
|
7005
|
+
exports.UpdateServicePrimaryTaskSetResponse$ = UpdateServicePrimaryTaskSetResponse$;
|
|
7006
|
+
exports.UpdateServiceRequest$ = UpdateServiceRequest$;
|
|
7007
|
+
exports.UpdateServiceResponse$ = UpdateServiceResponse$;
|
|
7008
|
+
exports.UpdateTaskProtection$ = UpdateTaskProtection$;
|
|
2401
7009
|
exports.UpdateTaskProtectionCommand = UpdateTaskProtectionCommand;
|
|
7010
|
+
exports.UpdateTaskProtectionRequest$ = UpdateTaskProtectionRequest$;
|
|
7011
|
+
exports.UpdateTaskProtectionResponse$ = UpdateTaskProtectionResponse$;
|
|
7012
|
+
exports.UpdateTaskSet$ = UpdateTaskSet$;
|
|
2402
7013
|
exports.UpdateTaskSetCommand = UpdateTaskSetCommand;
|
|
7014
|
+
exports.UpdateTaskSetRequest$ = UpdateTaskSetRequest$;
|
|
7015
|
+
exports.UpdateTaskSetResponse$ = UpdateTaskSetResponse$;
|
|
7016
|
+
exports.UpdatedExpressGatewayService$ = UpdatedExpressGatewayService$;
|
|
7017
|
+
exports.VCpuCountRangeRequest$ = VCpuCountRangeRequest$;
|
|
2403
7018
|
exports.VersionConsistency = VersionConsistency;
|
|
7019
|
+
exports.VersionInfo$ = VersionInfo$;
|
|
7020
|
+
exports.Volume$ = Volume$;
|
|
7021
|
+
exports.VolumeFrom$ = VolumeFrom$;
|
|
7022
|
+
exports.VpcLatticeConfiguration$ = VpcLatticeConfiguration$;
|
|
7023
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
2404
7024
|
exports.paginateListAccountSettings = paginateListAccountSettings;
|
|
2405
7025
|
exports.paginateListAttributes = paginateListAttributes;
|
|
2406
7026
|
exports.paginateListClusters = paginateListClusters;
|