@aws-sdk/client-apprunner 3.1074.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 +1415 -15
- 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/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/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/AppRunnerServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -71
- 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 -1118
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, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, 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_0Protocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
|
|
17
|
+
const defaultAppRunnerHttpAuthSchemeParametersProvider = 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: "apprunner",
|
|
30
|
+
region: authParameters.region,
|
|
31
|
+
},
|
|
32
|
+
propertiesExtractor: (config, context) => ({
|
|
33
|
+
signingProperties: {
|
|
34
|
+
config,
|
|
35
|
+
context,
|
|
36
|
+
},
|
|
37
|
+
}),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
const defaultAppRunnerHttpAuthSchemeProvider = (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,1212 @@ 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://apprunner-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
92
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
93
|
+
["https://apprunner-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
94
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
95
|
+
["https://apprunner.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
96
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
97
|
+
["https://apprunner.{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 AppRunnerServiceException extends ServiceException {
|
|
133
|
+
constructor(options) {
|
|
134
|
+
super(options);
|
|
135
|
+
Object.setPrototypeOf(this, AppRunnerServiceException.prototype);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
class InternalServiceErrorException extends AppRunnerServiceException {
|
|
140
|
+
name = "InternalServiceErrorException";
|
|
141
|
+
$fault = "server";
|
|
142
|
+
Message;
|
|
143
|
+
constructor(opts) {
|
|
144
|
+
super({
|
|
145
|
+
name: "InternalServiceErrorException",
|
|
146
|
+
$fault: "server",
|
|
147
|
+
...opts,
|
|
148
|
+
});
|
|
149
|
+
Object.setPrototypeOf(this, InternalServiceErrorException.prototype);
|
|
150
|
+
this.Message = opts.Message;
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
class InvalidRequestException extends AppRunnerServiceException {
|
|
154
|
+
name = "InvalidRequestException";
|
|
155
|
+
$fault = "client";
|
|
156
|
+
Message;
|
|
157
|
+
constructor(opts) {
|
|
158
|
+
super({
|
|
159
|
+
name: "InvalidRequestException",
|
|
160
|
+
$fault: "client",
|
|
161
|
+
...opts,
|
|
162
|
+
});
|
|
163
|
+
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
164
|
+
this.Message = opts.Message;
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
class InvalidStateException extends AppRunnerServiceException {
|
|
168
|
+
name = "InvalidStateException";
|
|
169
|
+
$fault = "client";
|
|
170
|
+
Message;
|
|
171
|
+
constructor(opts) {
|
|
172
|
+
super({
|
|
173
|
+
name: "InvalidStateException",
|
|
174
|
+
$fault: "client",
|
|
175
|
+
...opts,
|
|
176
|
+
});
|
|
177
|
+
Object.setPrototypeOf(this, InvalidStateException.prototype);
|
|
178
|
+
this.Message = opts.Message;
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
class ServiceQuotaExceededException extends AppRunnerServiceException {
|
|
182
|
+
name = "ServiceQuotaExceededException";
|
|
183
|
+
$fault = "client";
|
|
184
|
+
Message;
|
|
185
|
+
constructor(opts) {
|
|
186
|
+
super({
|
|
187
|
+
name: "ServiceQuotaExceededException",
|
|
188
|
+
$fault: "client",
|
|
189
|
+
...opts,
|
|
190
|
+
});
|
|
191
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
192
|
+
this.Message = opts.Message;
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
class ResourceNotFoundException extends AppRunnerServiceException {
|
|
196
|
+
name = "ResourceNotFoundException";
|
|
197
|
+
$fault = "client";
|
|
198
|
+
Message;
|
|
199
|
+
constructor(opts) {
|
|
200
|
+
super({
|
|
201
|
+
name: "ResourceNotFoundException",
|
|
202
|
+
$fault: "client",
|
|
203
|
+
...opts,
|
|
204
|
+
});
|
|
205
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
206
|
+
this.Message = opts.Message;
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
const _AC = "AuthenticationConfiguration";
|
|
211
|
+
const _ACD = "AssociateCustomDomain";
|
|
212
|
+
const _ACDR = "AssociateCustomDomainRequest";
|
|
213
|
+
const _ACDRs = "AssociateCustomDomainResponse";
|
|
214
|
+
const _ADE = "AutoDeploymentsEnabled";
|
|
215
|
+
const _AI = "AccountId";
|
|
216
|
+
const _ARA = "AccessRoleArn";
|
|
217
|
+
const _ASC = "AutoScalingConfiguration";
|
|
218
|
+
const _ASCA = "AutoScalingConfigurationArn";
|
|
219
|
+
const _ASCN = "AutoScalingConfigurationName";
|
|
220
|
+
const _ASCR = "AutoScalingConfigurationRevision";
|
|
221
|
+
const _ASCS = "AutoScalingConfigurationSummary";
|
|
222
|
+
const _ASCSL = "AutoScalingConfigurationSummaryList";
|
|
223
|
+
const _BC = "BuildCommand";
|
|
224
|
+
const _C = "Connection";
|
|
225
|
+
const _CA = "ConnectionArn";
|
|
226
|
+
const _CASC = "CreateAutoScalingConfiguration";
|
|
227
|
+
const _CASCR = "CreateAutoScalingConfigurationRequest";
|
|
228
|
+
const _CASCRr = "CreateAutoScalingConfigurationResponse";
|
|
229
|
+
const _CAr = "CreatedAt";
|
|
230
|
+
const _CC = "CodeConfiguration";
|
|
231
|
+
const _CCR = "CreateConnectionRequest";
|
|
232
|
+
const _CCRr = "CreateConnectionResponse";
|
|
233
|
+
const _CCV = "CodeConfigurationValues";
|
|
234
|
+
const _CCr = "CreateConnection";
|
|
235
|
+
const _CD = "CustomDomain";
|
|
236
|
+
const _CDL = "CustomDomainList";
|
|
237
|
+
const _CDu = "CustomDomains";
|
|
238
|
+
const _CN = "ConnectionName";
|
|
239
|
+
const _COC = "CreateObservabilityConfiguration";
|
|
240
|
+
const _COCR = "CreateObservabilityConfigurationRequest";
|
|
241
|
+
const _COCRr = "CreateObservabilityConfigurationResponse";
|
|
242
|
+
const _CR = "CodeRepository";
|
|
243
|
+
const _CS = "ConfigurationSource";
|
|
244
|
+
const _CSL = "ConnectionSummaryList";
|
|
245
|
+
const _CSR = "CreateServiceRequest";
|
|
246
|
+
const _CSRr = "CreateServiceResponse";
|
|
247
|
+
const _CSo = "ConnectionSummary";
|
|
248
|
+
const _CSr = "CreateService";
|
|
249
|
+
const _CVC = "CreateVpcConnector";
|
|
250
|
+
const _CVCR = "CreateVpcConnectorRequest";
|
|
251
|
+
const _CVCRr = "CreateVpcConnectorResponse";
|
|
252
|
+
const _CVIC = "CreateVpcIngressConnection";
|
|
253
|
+
const _CVICR = "CreateVpcIngressConnectionRequest";
|
|
254
|
+
const _CVICRr = "CreateVpcIngressConnectionResponse";
|
|
255
|
+
const _CVR = "CertificateValidationRecord";
|
|
256
|
+
const _CVRL = "CertificateValidationRecordList";
|
|
257
|
+
const _CVRe = "CertificateValidationRecords";
|
|
258
|
+
const _Cp = "Cpu";
|
|
259
|
+
const _DA = "DeletedAt";
|
|
260
|
+
const _DAR = "DeleteAllRevisions";
|
|
261
|
+
const _DASC = "DeleteAutoScalingConfiguration";
|
|
262
|
+
const _DASCR = "DeleteAutoScalingConfigurationRequest";
|
|
263
|
+
const _DASCRe = "DeleteAutoScalingConfigurationResponse";
|
|
264
|
+
const _DASCRes = "DescribeAutoScalingConfigurationRequest";
|
|
265
|
+
const _DASCResc = "DescribeAutoScalingConfigurationResponse";
|
|
266
|
+
const _DASCe = "DescribeAutoScalingConfiguration";
|
|
267
|
+
const _DC = "DeleteConnection";
|
|
268
|
+
const _DCD = "DescribeCustomDomains";
|
|
269
|
+
const _DCDR = "DescribeCustomDomainsRequest";
|
|
270
|
+
const _DCDRe = "DescribeCustomDomainsResponse";
|
|
271
|
+
const _DCDRi = "DisassociateCustomDomainRequest";
|
|
272
|
+
const _DCDRis = "DisassociateCustomDomainResponse";
|
|
273
|
+
const _DCDi = "DisassociateCustomDomain";
|
|
274
|
+
const _DCR = "DeleteConnectionRequest";
|
|
275
|
+
const _DCRe = "DeleteConnectionResponse";
|
|
276
|
+
const _DN = "DomainName";
|
|
277
|
+
const _DNST = "DNSTarget";
|
|
278
|
+
const _DOC = "DeleteObservabilityConfiguration";
|
|
279
|
+
const _DOCR = "DeleteObservabilityConfigurationRequest";
|
|
280
|
+
const _DOCRe = "DeleteObservabilityConfigurationResponse";
|
|
281
|
+
const _DOCRes = "DescribeObservabilityConfigurationRequest";
|
|
282
|
+
const _DOCResc = "DescribeObservabilityConfigurationResponse";
|
|
283
|
+
const _DOCe = "DescribeObservabilityConfiguration";
|
|
284
|
+
const _DS = "DeleteService";
|
|
285
|
+
const _DSR = "DeleteServiceRequest";
|
|
286
|
+
const _DSRe = "DeleteServiceResponse";
|
|
287
|
+
const _DSRes = "DescribeServiceRequest";
|
|
288
|
+
const _DSResc = "DescribeServiceResponse";
|
|
289
|
+
const _DSe = "DescribeService";
|
|
290
|
+
const _DVC = "DeleteVpcConnector";
|
|
291
|
+
const _DVCR = "DeleteVpcConnectorRequest";
|
|
292
|
+
const _DVCRe = "DeleteVpcConnectorResponse";
|
|
293
|
+
const _DVCRes = "DescribeVpcConnectorRequest";
|
|
294
|
+
const _DVCResc = "DescribeVpcConnectorResponse";
|
|
295
|
+
const _DVCe = "DescribeVpcConnector";
|
|
296
|
+
const _DVIC = "DeleteVpcIngressConnection";
|
|
297
|
+
const _DVICR = "DeleteVpcIngressConnectionRequest";
|
|
298
|
+
const _DVICRe = "DeleteVpcIngressConnectionResponse";
|
|
299
|
+
const _DVICRes = "DescribeVpcIngressConnectionRequest";
|
|
300
|
+
const _DVICResc = "DescribeVpcIngressConnectionResponse";
|
|
301
|
+
const _DVICe = "DescribeVpcIngressConnection";
|
|
302
|
+
const _EA = "EndedAt";
|
|
303
|
+
const _EC = "EncryptionConfiguration";
|
|
304
|
+
const _ECg = "EgressConfiguration";
|
|
305
|
+
const _ET = "EgressType";
|
|
306
|
+
const _EWWWS = "EnableWWWSubdomain";
|
|
307
|
+
const _F = "Filter";
|
|
308
|
+
const _HAS = "HasAssociatedService";
|
|
309
|
+
const _HCC = "HealthCheckConfiguration";
|
|
310
|
+
const _HT = "HealthyThreshold";
|
|
311
|
+
const _I = "Interval";
|
|
312
|
+
const _IAT = "IpAddressType";
|
|
313
|
+
const _IC = "InstanceConfiguration";
|
|
314
|
+
const _ICm = "ImageConfiguration";
|
|
315
|
+
const _ICn = "IngressConfiguration";
|
|
316
|
+
const _ID = "IsDefault";
|
|
317
|
+
const _II = "ImageIdentifier";
|
|
318
|
+
const _IPA = "IsPubliclyAccessible";
|
|
319
|
+
const _IR = "ImageRepository";
|
|
320
|
+
const _IRA = "InstanceRoleArn";
|
|
321
|
+
const _IRE = "InvalidRequestException";
|
|
322
|
+
const _IRT = "ImageRepositoryType";
|
|
323
|
+
const _ISE = "InvalidStateException";
|
|
324
|
+
const _ISEE = "InternalServiceErrorException";
|
|
325
|
+
const _IVC = "IngressVpcConfiguration";
|
|
326
|
+
const _Id = "Id";
|
|
327
|
+
const _K = "Key";
|
|
328
|
+
const _KK = "KmsKey";
|
|
329
|
+
const _L = "Latest";
|
|
330
|
+
const _LASC = "ListAutoScalingConfigurations";
|
|
331
|
+
const _LASCR = "ListAutoScalingConfigurationsRequest";
|
|
332
|
+
const _LASCRi = "ListAutoScalingConfigurationsResponse";
|
|
333
|
+
const _LC = "ListConnections";
|
|
334
|
+
const _LCR = "ListConnectionsRequest";
|
|
335
|
+
const _LCRi = "ListConnectionsResponse";
|
|
336
|
+
const _LO = "LatestOnly";
|
|
337
|
+
const _LOC = "ListObservabilityConfigurations";
|
|
338
|
+
const _LOCR = "ListObservabilityConfigurationsRequest";
|
|
339
|
+
const _LOCRi = "ListObservabilityConfigurationsResponse";
|
|
340
|
+
const _LOR = "ListOperationsRequest";
|
|
341
|
+
const _LORi = "ListOperationsResponse";
|
|
342
|
+
const _LOi = "ListOperations";
|
|
343
|
+
const _LS = "ListServices";
|
|
344
|
+
const _LSFASC = "ListServicesForAutoScalingConfiguration";
|
|
345
|
+
const _LSFASCR = "ListServicesForAutoScalingConfigurationRequest";
|
|
346
|
+
const _LSFASCRi = "ListServicesForAutoScalingConfigurationResponse";
|
|
347
|
+
const _LSR = "ListServicesRequest";
|
|
348
|
+
const _LSRi = "ListServicesResponse";
|
|
349
|
+
const _LTFR = "ListTagsForResource";
|
|
350
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
351
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
352
|
+
const _LVC = "ListVpcConnectors";
|
|
353
|
+
const _LVCR = "ListVpcConnectorsRequest";
|
|
354
|
+
const _LVCRi = "ListVpcConnectorsResponse";
|
|
355
|
+
const _LVIC = "ListVpcIngressConnections";
|
|
356
|
+
const _LVICF = "ListVpcIngressConnectionsFilter";
|
|
357
|
+
const _LVICR = "ListVpcIngressConnectionsRequest";
|
|
358
|
+
const _LVICRi = "ListVpcIngressConnectionsResponse";
|
|
359
|
+
const _M = "Message";
|
|
360
|
+
const _MC = "MaxConcurrency";
|
|
361
|
+
const _MR = "MaxResults";
|
|
362
|
+
const _MS = "MinSize";
|
|
363
|
+
const _MSa = "MaxSize";
|
|
364
|
+
const _Me = "Memory";
|
|
365
|
+
const _N = "Name";
|
|
366
|
+
const _NC = "NetworkConfiguration";
|
|
367
|
+
const _NT = "NextToken";
|
|
368
|
+
const _OC = "ObservabilityConfiguration";
|
|
369
|
+
const _OCA = "ObservabilityConfigurationArn";
|
|
370
|
+
const _OCN = "ObservabilityConfigurationName";
|
|
371
|
+
const _OCR = "ObservabilityConfigurationRevision";
|
|
372
|
+
const _OCS = "ObservabilityConfigurationSummary";
|
|
373
|
+
const _OCSL = "ObservabilityConfigurationSummaryList";
|
|
374
|
+
const _OE = "ObservabilityEnabled";
|
|
375
|
+
const _OI = "OperationId";
|
|
376
|
+
const _OS = "OperationSummary";
|
|
377
|
+
const _OSL = "OperationSummaryList";
|
|
378
|
+
const _P = "Port";
|
|
379
|
+
const _PS = "PauseService";
|
|
380
|
+
const _PSR = "PauseServiceRequest";
|
|
381
|
+
const _PSRa = "PauseServiceResponse";
|
|
382
|
+
const _PT = "ProviderType";
|
|
383
|
+
const _Pa = "Path";
|
|
384
|
+
const _Pr = "Protocol";
|
|
385
|
+
const _R = "Runtime";
|
|
386
|
+
const _RA = "ResourceArn";
|
|
387
|
+
const _RES = "RuntimeEnvironmentSecrets";
|
|
388
|
+
const _RESN = "RuntimeEnvironmentSecretsName";
|
|
389
|
+
const _RESV = "RuntimeEnvironmentSecretsValue";
|
|
390
|
+
const _REV = "RuntimeEnvironmentVariables";
|
|
391
|
+
const _REVK = "RuntimeEnvironmentVariablesKey";
|
|
392
|
+
const _REVV = "RuntimeEnvironmentVariablesValue";
|
|
393
|
+
const _RNFE = "ResourceNotFoundException";
|
|
394
|
+
const _RS = "ResumeService";
|
|
395
|
+
const _RSR = "ResumeServiceRequest";
|
|
396
|
+
const _RSRe = "ResumeServiceResponse";
|
|
397
|
+
const _RU = "RepositoryUrl";
|
|
398
|
+
const _S = "Status";
|
|
399
|
+
const _SA = "ServiceArn";
|
|
400
|
+
const _SAL = "ServiceArnList";
|
|
401
|
+
const _SAt = "StartedAt";
|
|
402
|
+
const _SC = "StartCommand";
|
|
403
|
+
const _SCV = "SourceCodeVersion";
|
|
404
|
+
const _SCo = "SourceConfiguration";
|
|
405
|
+
const _SD = "SourceDirectory";
|
|
406
|
+
const _SDR = "StartDeploymentRequest";
|
|
407
|
+
const _SDRt = "StartDeploymentResponse";
|
|
408
|
+
const _SDt = "StartDeployment";
|
|
409
|
+
const _SG = "SecurityGroups";
|
|
410
|
+
const _SI = "ServiceId";
|
|
411
|
+
const _SN = "ServiceName";
|
|
412
|
+
const _SOC = "ServiceObservabilityConfiguration";
|
|
413
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
414
|
+
const _SS = "ServiceSummary";
|
|
415
|
+
const _SSL = "ServiceSummaryList";
|
|
416
|
+
const _SU = "ServiceUrl";
|
|
417
|
+
const _Se = "Service";
|
|
418
|
+
const _Su = "Subnets";
|
|
419
|
+
const _T = "Type";
|
|
420
|
+
const _TA = "TargetArn";
|
|
421
|
+
const _TC = "TraceConfiguration";
|
|
422
|
+
const _TK = "TagKeys";
|
|
423
|
+
const _TL = "TagList";
|
|
424
|
+
const _TR = "TagResource";
|
|
425
|
+
const _TRR = "TagResourceRequest";
|
|
426
|
+
const _TRRa = "TagResourceResponse";
|
|
427
|
+
const _Ta = "Tags";
|
|
428
|
+
const _Tag = "Tag";
|
|
429
|
+
const _Ti = "Timeout";
|
|
430
|
+
const _UA = "UpdatedAt";
|
|
431
|
+
const _UDASC = "UpdateDefaultAutoScalingConfiguration";
|
|
432
|
+
const _UDASCR = "UpdateDefaultAutoScalingConfigurationRequest";
|
|
433
|
+
const _UDASCRp = "UpdateDefaultAutoScalingConfigurationResponse";
|
|
434
|
+
const _UR = "UntagResource";
|
|
435
|
+
const _URR = "UntagResourceRequest";
|
|
436
|
+
const _URRn = "UntagResourceResponse";
|
|
437
|
+
const _US = "UpdateService";
|
|
438
|
+
const _USR = "UpdateServiceRequest";
|
|
439
|
+
const _USRp = "UpdateServiceResponse";
|
|
440
|
+
const _UT = "UnhealthyThreshold";
|
|
441
|
+
const _UVIC = "UpdateVpcIngressConnection";
|
|
442
|
+
const _UVICR = "UpdateVpcIngressConnectionRequest";
|
|
443
|
+
const _UVICRp = "UpdateVpcIngressConnectionResponse";
|
|
444
|
+
const _V = "Value";
|
|
445
|
+
const _VC = "VpcConnector";
|
|
446
|
+
const _VCA = "VpcConnectorArn";
|
|
447
|
+
const _VCN = "VpcConnectorName";
|
|
448
|
+
const _VCR = "VpcConnectorRevision";
|
|
449
|
+
const _VCp = "VpcConnectors";
|
|
450
|
+
const _VDNST = "VpcDNSTargets";
|
|
451
|
+
const _VDNSTL = "VpcDNSTargetList";
|
|
452
|
+
const _VDNSTp = "VpcDNSTarget";
|
|
453
|
+
const _VEI = "VpcEndpointId";
|
|
454
|
+
const _VI = "VpcId";
|
|
455
|
+
const _VIC = "VpcIngressConnection";
|
|
456
|
+
const _VICA = "VpcIngressConnectionArn";
|
|
457
|
+
const _VICN = "VpcIngressConnectionName";
|
|
458
|
+
const _VICS = "VpcIngressConnectionSummary";
|
|
459
|
+
const _VICSL = "VpcIngressConnectionSummaryList";
|
|
460
|
+
const _Ve = "Vendor";
|
|
461
|
+
const _aQE = "awsQueryError";
|
|
462
|
+
const _c = "client";
|
|
463
|
+
const _e = "error";
|
|
464
|
+
const _hE = "httpError";
|
|
465
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.apprunner";
|
|
466
|
+
const _se = "server";
|
|
467
|
+
const n0 = "com.amazonaws.apprunner";
|
|
468
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
469
|
+
var AppRunnerServiceException$ = [-3, _s, "AppRunnerServiceException", 0, [], []];
|
|
470
|
+
_s_registry.registerError(AppRunnerServiceException$, AppRunnerServiceException);
|
|
471
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
472
|
+
var InternalServiceErrorException$ = [-3, n0, _ISEE,
|
|
473
|
+
{ [_aQE]: [`InternalServiceError`, 500], [_e]: _se, [_hE]: 500 },
|
|
474
|
+
[_M],
|
|
475
|
+
[0]
|
|
476
|
+
];
|
|
477
|
+
n0_registry.registerError(InternalServiceErrorException$, InternalServiceErrorException);
|
|
478
|
+
var InvalidRequestException$ = [-3, n0, _IRE,
|
|
479
|
+
{ [_aQE]: [`InvalidRequest`, 400], [_e]: _c, [_hE]: 400 },
|
|
480
|
+
[_M],
|
|
481
|
+
[0]
|
|
482
|
+
];
|
|
483
|
+
n0_registry.registerError(InvalidRequestException$, InvalidRequestException);
|
|
484
|
+
var InvalidStateException$ = [-3, n0, _ISE,
|
|
485
|
+
{ [_aQE]: [`InvalidState`, 400], [_e]: _c, [_hE]: 400 },
|
|
486
|
+
[_M],
|
|
487
|
+
[0]
|
|
488
|
+
];
|
|
489
|
+
n0_registry.registerError(InvalidStateException$, InvalidStateException);
|
|
490
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
491
|
+
{ [_aQE]: [`ResourceNotfound`, 400], [_e]: _c, [_hE]: 400 },
|
|
492
|
+
[_M],
|
|
493
|
+
[0]
|
|
494
|
+
];
|
|
495
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
496
|
+
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
497
|
+
{ [_aQE]: [`ServiceQuotaExceeded`, 402], [_e]: _c, [_hE]: 402 },
|
|
498
|
+
[_M],
|
|
499
|
+
[0]
|
|
500
|
+
];
|
|
501
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
502
|
+
const errorTypeRegistries = [
|
|
503
|
+
_s_registry,
|
|
504
|
+
n0_registry,
|
|
505
|
+
];
|
|
506
|
+
var BuildCommand = [0, n0, _BC, 8, 0];
|
|
507
|
+
var RuntimeEnvironmentSecretsName = [0, n0, _RESN, 8, 0];
|
|
508
|
+
var RuntimeEnvironmentSecretsValue = [0, n0, _RESV, 8, 0];
|
|
509
|
+
var RuntimeEnvironmentVariablesKey = [0, n0, _REVK, 8, 0];
|
|
510
|
+
var RuntimeEnvironmentVariablesValue = [0, n0, _REVV, 8, 0];
|
|
511
|
+
var StartCommand = [0, n0, _SC, 8, 0];
|
|
512
|
+
var AssociateCustomDomainRequest$ = [3, n0, _ACDR,
|
|
513
|
+
0,
|
|
514
|
+
[_SA, _DN, _EWWWS],
|
|
515
|
+
[0, 0, 2], 2
|
|
516
|
+
];
|
|
517
|
+
var AssociateCustomDomainResponse$ = [3, n0, _ACDRs,
|
|
518
|
+
0,
|
|
519
|
+
[_DNST, _SA, _CD, _VDNST],
|
|
520
|
+
[0, 0, () => CustomDomain$, () => VpcDNSTargetList], 4
|
|
521
|
+
];
|
|
522
|
+
var AuthenticationConfiguration$ = [3, n0, _AC,
|
|
523
|
+
0,
|
|
524
|
+
[_CA, _ARA],
|
|
525
|
+
[0, 0]
|
|
526
|
+
];
|
|
527
|
+
var AutoScalingConfiguration$ = [3, n0, _ASC,
|
|
528
|
+
0,
|
|
529
|
+
[_ASCA, _ASCN, _ASCR, _L, _S, _MC, _MS, _MSa, _CAr, _DA, _HAS, _ID],
|
|
530
|
+
[0, 0, 1, 2, 0, 1, 1, 1, 4, 4, 2, 2]
|
|
531
|
+
];
|
|
532
|
+
var AutoScalingConfigurationSummary$ = [3, n0, _ASCS,
|
|
533
|
+
0,
|
|
534
|
+
[_ASCA, _ASCN, _ASCR, _S, _CAr, _HAS, _ID],
|
|
535
|
+
[0, 0, 1, 0, 4, 2, 2]
|
|
536
|
+
];
|
|
537
|
+
var CertificateValidationRecord$ = [3, n0, _CVR,
|
|
538
|
+
0,
|
|
539
|
+
[_N, _T, _V, _S],
|
|
540
|
+
[0, 0, 0, 0]
|
|
541
|
+
];
|
|
542
|
+
var CodeConfiguration$ = [3, n0, _CC,
|
|
543
|
+
0,
|
|
544
|
+
[_CS, _CCV],
|
|
545
|
+
[0, [() => CodeConfigurationValues$, 0]], 1
|
|
546
|
+
];
|
|
547
|
+
var CodeConfigurationValues$ = [3, n0, _CCV,
|
|
548
|
+
0,
|
|
549
|
+
[_R, _BC, _SC, _P, _REV, _RES],
|
|
550
|
+
[0, [() => BuildCommand, 0], [() => StartCommand, 0], 0, [() => RuntimeEnvironmentVariables, 0], [() => RuntimeEnvironmentSecrets, 0]], 1
|
|
551
|
+
];
|
|
552
|
+
var CodeRepository$ = [3, n0, _CR,
|
|
553
|
+
0,
|
|
554
|
+
[_RU, _SCV, _CC, _SD],
|
|
555
|
+
[0, () => SourceCodeVersion$, [() => CodeConfiguration$, 0], 0], 2
|
|
556
|
+
];
|
|
557
|
+
var Connection$ = [3, n0, _C,
|
|
558
|
+
0,
|
|
559
|
+
[_CN, _CA, _PT, _S, _CAr],
|
|
560
|
+
[0, 0, 0, 0, 4]
|
|
561
|
+
];
|
|
562
|
+
var ConnectionSummary$ = [3, n0, _CSo,
|
|
563
|
+
0,
|
|
564
|
+
[_CN, _CA, _PT, _S, _CAr],
|
|
565
|
+
[0, 0, 0, 0, 4]
|
|
566
|
+
];
|
|
567
|
+
var CreateAutoScalingConfigurationRequest$ = [3, n0, _CASCR,
|
|
568
|
+
0,
|
|
569
|
+
[_ASCN, _MC, _MS, _MSa, _Ta],
|
|
570
|
+
[0, 1, 1, 1, () => TagList], 1
|
|
571
|
+
];
|
|
572
|
+
var CreateAutoScalingConfigurationResponse$ = [3, n0, _CASCRr,
|
|
573
|
+
0,
|
|
574
|
+
[_ASC],
|
|
575
|
+
[() => AutoScalingConfiguration$], 1
|
|
576
|
+
];
|
|
577
|
+
var CreateConnectionRequest$ = [3, n0, _CCR,
|
|
578
|
+
0,
|
|
579
|
+
[_CN, _PT, _Ta],
|
|
580
|
+
[0, 0, () => TagList], 2
|
|
581
|
+
];
|
|
582
|
+
var CreateConnectionResponse$ = [3, n0, _CCRr,
|
|
583
|
+
0,
|
|
584
|
+
[_C],
|
|
585
|
+
[() => Connection$], 1
|
|
586
|
+
];
|
|
587
|
+
var CreateObservabilityConfigurationRequest$ = [3, n0, _COCR,
|
|
588
|
+
0,
|
|
589
|
+
[_OCN, _TC, _Ta],
|
|
590
|
+
[0, () => TraceConfiguration$, () => TagList], 1
|
|
591
|
+
];
|
|
592
|
+
var CreateObservabilityConfigurationResponse$ = [3, n0, _COCRr,
|
|
593
|
+
0,
|
|
594
|
+
[_OC],
|
|
595
|
+
[() => ObservabilityConfiguration$], 1
|
|
596
|
+
];
|
|
597
|
+
var CreateServiceRequest$ = [3, n0, _CSR,
|
|
598
|
+
0,
|
|
599
|
+
[_SN, _SCo, _IC, _Ta, _EC, _HCC, _ASCA, _NC, _OC],
|
|
600
|
+
[0, [() => SourceConfiguration$, 0], () => InstanceConfiguration$, () => TagList, () => EncryptionConfiguration$, () => HealthCheckConfiguration$, 0, () => NetworkConfiguration$, () => ServiceObservabilityConfiguration$], 2
|
|
601
|
+
];
|
|
602
|
+
var CreateServiceResponse$ = [3, n0, _CSRr,
|
|
603
|
+
0,
|
|
604
|
+
[_Se, _OI],
|
|
605
|
+
[[() => Service$, 0], 0], 2
|
|
606
|
+
];
|
|
607
|
+
var CreateVpcConnectorRequest$ = [3, n0, _CVCR,
|
|
608
|
+
0,
|
|
609
|
+
[_VCN, _Su, _SG, _Ta],
|
|
610
|
+
[0, 64 | 0, 64 | 0, () => TagList], 2
|
|
611
|
+
];
|
|
612
|
+
var CreateVpcConnectorResponse$ = [3, n0, _CVCRr,
|
|
613
|
+
0,
|
|
614
|
+
[_VC],
|
|
615
|
+
[() => VpcConnector$], 1
|
|
616
|
+
];
|
|
617
|
+
var CreateVpcIngressConnectionRequest$ = [3, n0, _CVICR,
|
|
618
|
+
0,
|
|
619
|
+
[_SA, _VICN, _IVC, _Ta],
|
|
620
|
+
[0, 0, () => IngressVpcConfiguration$, () => TagList], 3
|
|
621
|
+
];
|
|
622
|
+
var CreateVpcIngressConnectionResponse$ = [3, n0, _CVICRr,
|
|
623
|
+
0,
|
|
624
|
+
[_VIC],
|
|
625
|
+
[() => VpcIngressConnection$], 1
|
|
626
|
+
];
|
|
627
|
+
var CustomDomain$ = [3, n0, _CD,
|
|
628
|
+
0,
|
|
629
|
+
[_DN, _EWWWS, _S, _CVRe],
|
|
630
|
+
[0, 2, 0, () => CertificateValidationRecordList], 3
|
|
631
|
+
];
|
|
632
|
+
var DeleteAutoScalingConfigurationRequest$ = [3, n0, _DASCR,
|
|
633
|
+
0,
|
|
634
|
+
[_ASCA, _DAR],
|
|
635
|
+
[0, 2], 1
|
|
636
|
+
];
|
|
637
|
+
var DeleteAutoScalingConfigurationResponse$ = [3, n0, _DASCRe,
|
|
638
|
+
0,
|
|
639
|
+
[_ASC],
|
|
640
|
+
[() => AutoScalingConfiguration$], 1
|
|
641
|
+
];
|
|
642
|
+
var DeleteConnectionRequest$ = [3, n0, _DCR,
|
|
643
|
+
0,
|
|
644
|
+
[_CA],
|
|
645
|
+
[0], 1
|
|
646
|
+
];
|
|
647
|
+
var DeleteConnectionResponse$ = [3, n0, _DCRe,
|
|
648
|
+
0,
|
|
649
|
+
[_C],
|
|
650
|
+
[() => Connection$]
|
|
651
|
+
];
|
|
652
|
+
var DeleteObservabilityConfigurationRequest$ = [3, n0, _DOCR,
|
|
653
|
+
0,
|
|
654
|
+
[_OCA],
|
|
655
|
+
[0], 1
|
|
656
|
+
];
|
|
657
|
+
var DeleteObservabilityConfigurationResponse$ = [3, n0, _DOCRe,
|
|
658
|
+
0,
|
|
659
|
+
[_OC],
|
|
660
|
+
[() => ObservabilityConfiguration$], 1
|
|
661
|
+
];
|
|
662
|
+
var DeleteServiceRequest$ = [3, n0, _DSR,
|
|
663
|
+
0,
|
|
664
|
+
[_SA],
|
|
665
|
+
[0], 1
|
|
666
|
+
];
|
|
667
|
+
var DeleteServiceResponse$ = [3, n0, _DSRe,
|
|
668
|
+
0,
|
|
669
|
+
[_Se, _OI],
|
|
670
|
+
[[() => Service$, 0], 0], 2
|
|
671
|
+
];
|
|
672
|
+
var DeleteVpcConnectorRequest$ = [3, n0, _DVCR,
|
|
673
|
+
0,
|
|
674
|
+
[_VCA],
|
|
675
|
+
[0], 1
|
|
676
|
+
];
|
|
677
|
+
var DeleteVpcConnectorResponse$ = [3, n0, _DVCRe,
|
|
678
|
+
0,
|
|
679
|
+
[_VC],
|
|
680
|
+
[() => VpcConnector$], 1
|
|
681
|
+
];
|
|
682
|
+
var DeleteVpcIngressConnectionRequest$ = [3, n0, _DVICR,
|
|
683
|
+
0,
|
|
684
|
+
[_VICA],
|
|
685
|
+
[0], 1
|
|
686
|
+
];
|
|
687
|
+
var DeleteVpcIngressConnectionResponse$ = [3, n0, _DVICRe,
|
|
688
|
+
0,
|
|
689
|
+
[_VIC],
|
|
690
|
+
[() => VpcIngressConnection$], 1
|
|
691
|
+
];
|
|
692
|
+
var DescribeAutoScalingConfigurationRequest$ = [3, n0, _DASCRes,
|
|
693
|
+
0,
|
|
694
|
+
[_ASCA],
|
|
695
|
+
[0], 1
|
|
696
|
+
];
|
|
697
|
+
var DescribeAutoScalingConfigurationResponse$ = [3, n0, _DASCResc,
|
|
698
|
+
0,
|
|
699
|
+
[_ASC],
|
|
700
|
+
[() => AutoScalingConfiguration$], 1
|
|
701
|
+
];
|
|
702
|
+
var DescribeCustomDomainsRequest$ = [3, n0, _DCDR,
|
|
703
|
+
0,
|
|
704
|
+
[_SA, _NT, _MR],
|
|
705
|
+
[0, 0, 1], 1
|
|
706
|
+
];
|
|
707
|
+
var DescribeCustomDomainsResponse$ = [3, n0, _DCDRe,
|
|
708
|
+
0,
|
|
709
|
+
[_DNST, _SA, _CDu, _VDNST, _NT],
|
|
710
|
+
[0, 0, () => CustomDomainList, () => VpcDNSTargetList, 0], 4
|
|
711
|
+
];
|
|
712
|
+
var DescribeObservabilityConfigurationRequest$ = [3, n0, _DOCRes,
|
|
713
|
+
0,
|
|
714
|
+
[_OCA],
|
|
715
|
+
[0], 1
|
|
716
|
+
];
|
|
717
|
+
var DescribeObservabilityConfigurationResponse$ = [3, n0, _DOCResc,
|
|
718
|
+
0,
|
|
719
|
+
[_OC],
|
|
720
|
+
[() => ObservabilityConfiguration$], 1
|
|
721
|
+
];
|
|
722
|
+
var DescribeServiceRequest$ = [3, n0, _DSRes,
|
|
723
|
+
0,
|
|
724
|
+
[_SA],
|
|
725
|
+
[0], 1
|
|
726
|
+
];
|
|
727
|
+
var DescribeServiceResponse$ = [3, n0, _DSResc,
|
|
728
|
+
0,
|
|
729
|
+
[_Se],
|
|
730
|
+
[[() => Service$, 0]], 1
|
|
731
|
+
];
|
|
732
|
+
var DescribeVpcConnectorRequest$ = [3, n0, _DVCRes,
|
|
733
|
+
0,
|
|
734
|
+
[_VCA],
|
|
735
|
+
[0], 1
|
|
736
|
+
];
|
|
737
|
+
var DescribeVpcConnectorResponse$ = [3, n0, _DVCResc,
|
|
738
|
+
0,
|
|
739
|
+
[_VC],
|
|
740
|
+
[() => VpcConnector$], 1
|
|
741
|
+
];
|
|
742
|
+
var DescribeVpcIngressConnectionRequest$ = [3, n0, _DVICRes,
|
|
743
|
+
0,
|
|
744
|
+
[_VICA],
|
|
745
|
+
[0], 1
|
|
746
|
+
];
|
|
747
|
+
var DescribeVpcIngressConnectionResponse$ = [3, n0, _DVICResc,
|
|
748
|
+
0,
|
|
749
|
+
[_VIC],
|
|
750
|
+
[() => VpcIngressConnection$], 1
|
|
751
|
+
];
|
|
752
|
+
var DisassociateCustomDomainRequest$ = [3, n0, _DCDRi,
|
|
753
|
+
0,
|
|
754
|
+
[_SA, _DN],
|
|
755
|
+
[0, 0], 2
|
|
756
|
+
];
|
|
757
|
+
var DisassociateCustomDomainResponse$ = [3, n0, _DCDRis,
|
|
758
|
+
0,
|
|
759
|
+
[_DNST, _SA, _CD, _VDNST],
|
|
760
|
+
[0, 0, () => CustomDomain$, () => VpcDNSTargetList], 4
|
|
761
|
+
];
|
|
762
|
+
var EgressConfiguration$ = [3, n0, _ECg,
|
|
763
|
+
0,
|
|
764
|
+
[_ET, _VCA],
|
|
765
|
+
[0, 0]
|
|
766
|
+
];
|
|
767
|
+
var EncryptionConfiguration$ = [3, n0, _EC,
|
|
768
|
+
0,
|
|
769
|
+
[_KK],
|
|
770
|
+
[0], 1
|
|
771
|
+
];
|
|
772
|
+
var HealthCheckConfiguration$ = [3, n0, _HCC,
|
|
773
|
+
0,
|
|
774
|
+
[_Pr, _Pa, _I, _Ti, _HT, _UT],
|
|
775
|
+
[0, 0, 1, 1, 1, 1]
|
|
776
|
+
];
|
|
777
|
+
var ImageConfiguration$ = [3, n0, _ICm,
|
|
778
|
+
0,
|
|
779
|
+
[_REV, _SC, _P, _RES],
|
|
780
|
+
[[() => RuntimeEnvironmentVariables, 0], [() => StartCommand, 0], 0, [() => RuntimeEnvironmentSecrets, 0]]
|
|
781
|
+
];
|
|
782
|
+
var ImageRepository$ = [3, n0, _IR,
|
|
783
|
+
0,
|
|
784
|
+
[_II, _IRT, _ICm],
|
|
785
|
+
[0, 0, [() => ImageConfiguration$, 0]], 2
|
|
786
|
+
];
|
|
787
|
+
var IngressConfiguration$ = [3, n0, _ICn,
|
|
788
|
+
0,
|
|
789
|
+
[_IPA],
|
|
790
|
+
[2]
|
|
791
|
+
];
|
|
792
|
+
var IngressVpcConfiguration$ = [3, n0, _IVC,
|
|
793
|
+
0,
|
|
794
|
+
[_VI, _VEI],
|
|
795
|
+
[0, 0]
|
|
796
|
+
];
|
|
797
|
+
var InstanceConfiguration$ = [3, n0, _IC,
|
|
798
|
+
0,
|
|
799
|
+
[_Cp, _Me, _IRA],
|
|
800
|
+
[0, 0, 0]
|
|
801
|
+
];
|
|
802
|
+
var ListAutoScalingConfigurationsRequest$ = [3, n0, _LASCR,
|
|
803
|
+
0,
|
|
804
|
+
[_ASCN, _LO, _MR, _NT],
|
|
805
|
+
[0, 2, 1, 0]
|
|
806
|
+
];
|
|
807
|
+
var ListAutoScalingConfigurationsResponse$ = [3, n0, _LASCRi,
|
|
808
|
+
0,
|
|
809
|
+
[_ASCSL, _NT],
|
|
810
|
+
[() => AutoScalingConfigurationSummaryList, 0], 1
|
|
811
|
+
];
|
|
812
|
+
var ListConnectionsRequest$ = [3, n0, _LCR,
|
|
813
|
+
0,
|
|
814
|
+
[_CN, _MR, _NT],
|
|
815
|
+
[0, 1, 0]
|
|
816
|
+
];
|
|
817
|
+
var ListConnectionsResponse$ = [3, n0, _LCRi,
|
|
818
|
+
0,
|
|
819
|
+
[_CSL, _NT],
|
|
820
|
+
[() => ConnectionSummaryList, 0], 1
|
|
821
|
+
];
|
|
822
|
+
var ListObservabilityConfigurationsRequest$ = [3, n0, _LOCR,
|
|
823
|
+
0,
|
|
824
|
+
[_OCN, _LO, _MR, _NT],
|
|
825
|
+
[0, 2, 1, 0]
|
|
826
|
+
];
|
|
827
|
+
var ListObservabilityConfigurationsResponse$ = [3, n0, _LOCRi,
|
|
828
|
+
0,
|
|
829
|
+
[_OCSL, _NT],
|
|
830
|
+
[() => ObservabilityConfigurationSummaryList, 0], 1
|
|
831
|
+
];
|
|
832
|
+
var ListOperationsRequest$ = [3, n0, _LOR,
|
|
833
|
+
0,
|
|
834
|
+
[_SA, _NT, _MR],
|
|
835
|
+
[0, 0, 1], 1
|
|
836
|
+
];
|
|
837
|
+
var ListOperationsResponse$ = [3, n0, _LORi,
|
|
838
|
+
0,
|
|
839
|
+
[_OSL, _NT],
|
|
840
|
+
[() => OperationSummaryList, 0]
|
|
841
|
+
];
|
|
842
|
+
var ListServicesForAutoScalingConfigurationRequest$ = [3, n0, _LSFASCR,
|
|
843
|
+
0,
|
|
844
|
+
[_ASCA, _MR, _NT],
|
|
845
|
+
[0, 1, 0], 1
|
|
846
|
+
];
|
|
847
|
+
var ListServicesForAutoScalingConfigurationResponse$ = [3, n0, _LSFASCRi,
|
|
848
|
+
0,
|
|
849
|
+
[_SAL, _NT],
|
|
850
|
+
[64 | 0, 0], 1
|
|
851
|
+
];
|
|
852
|
+
var ListServicesRequest$ = [3, n0, _LSR,
|
|
853
|
+
0,
|
|
854
|
+
[_NT, _MR],
|
|
855
|
+
[0, 1]
|
|
856
|
+
];
|
|
857
|
+
var ListServicesResponse$ = [3, n0, _LSRi,
|
|
858
|
+
0,
|
|
859
|
+
[_SSL, _NT],
|
|
860
|
+
[() => ServiceSummaryList, 0], 1
|
|
861
|
+
];
|
|
862
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
863
|
+
0,
|
|
864
|
+
[_RA],
|
|
865
|
+
[0], 1
|
|
866
|
+
];
|
|
867
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
868
|
+
0,
|
|
869
|
+
[_Ta],
|
|
870
|
+
[() => TagList]
|
|
871
|
+
];
|
|
872
|
+
var ListVpcConnectorsRequest$ = [3, n0, _LVCR,
|
|
873
|
+
0,
|
|
874
|
+
[_MR, _NT],
|
|
875
|
+
[1, 0]
|
|
876
|
+
];
|
|
877
|
+
var ListVpcConnectorsResponse$ = [3, n0, _LVCRi,
|
|
878
|
+
0,
|
|
879
|
+
[_VCp, _NT],
|
|
880
|
+
[() => VpcConnectors, 0], 1
|
|
881
|
+
];
|
|
882
|
+
var ListVpcIngressConnectionsFilter$ = [3, n0, _LVICF,
|
|
883
|
+
0,
|
|
884
|
+
[_SA, _VEI],
|
|
885
|
+
[0, 0]
|
|
886
|
+
];
|
|
887
|
+
var ListVpcIngressConnectionsRequest$ = [3, n0, _LVICR,
|
|
888
|
+
0,
|
|
889
|
+
[_F, _MR, _NT],
|
|
890
|
+
[() => ListVpcIngressConnectionsFilter$, 1, 0]
|
|
891
|
+
];
|
|
892
|
+
var ListVpcIngressConnectionsResponse$ = [3, n0, _LVICRi,
|
|
893
|
+
0,
|
|
894
|
+
[_VICSL, _NT],
|
|
895
|
+
[() => VpcIngressConnectionSummaryList, 0], 1
|
|
896
|
+
];
|
|
897
|
+
var NetworkConfiguration$ = [3, n0, _NC,
|
|
898
|
+
0,
|
|
899
|
+
[_ECg, _ICn, _IAT],
|
|
900
|
+
[() => EgressConfiguration$, () => IngressConfiguration$, 0]
|
|
901
|
+
];
|
|
902
|
+
var ObservabilityConfiguration$ = [3, n0, _OC,
|
|
903
|
+
0,
|
|
904
|
+
[_OCA, _OCN, _TC, _OCR, _L, _S, _CAr, _DA],
|
|
905
|
+
[0, 0, () => TraceConfiguration$, 1, 2, 0, 4, 4]
|
|
906
|
+
];
|
|
907
|
+
var ObservabilityConfigurationSummary$ = [3, n0, _OCS,
|
|
908
|
+
0,
|
|
909
|
+
[_OCA, _OCN, _OCR],
|
|
910
|
+
[0, 0, 1]
|
|
911
|
+
];
|
|
912
|
+
var OperationSummary$ = [3, n0, _OS,
|
|
913
|
+
0,
|
|
914
|
+
[_Id, _T, _S, _TA, _SAt, _EA, _UA],
|
|
915
|
+
[0, 0, 0, 0, 4, 4, 4]
|
|
916
|
+
];
|
|
917
|
+
var PauseServiceRequest$ = [3, n0, _PSR,
|
|
918
|
+
0,
|
|
919
|
+
[_SA],
|
|
920
|
+
[0], 1
|
|
921
|
+
];
|
|
922
|
+
var PauseServiceResponse$ = [3, n0, _PSRa,
|
|
923
|
+
0,
|
|
924
|
+
[_Se, _OI],
|
|
925
|
+
[[() => Service$, 0], 0], 1
|
|
926
|
+
];
|
|
927
|
+
var ResumeServiceRequest$ = [3, n0, _RSR,
|
|
928
|
+
0,
|
|
929
|
+
[_SA],
|
|
930
|
+
[0], 1
|
|
931
|
+
];
|
|
932
|
+
var ResumeServiceResponse$ = [3, n0, _RSRe,
|
|
933
|
+
0,
|
|
934
|
+
[_Se, _OI],
|
|
935
|
+
[[() => Service$, 0], 0], 1
|
|
936
|
+
];
|
|
937
|
+
var Service$ = [3, n0, _Se,
|
|
938
|
+
0,
|
|
939
|
+
[_SN, _SI, _SA, _CAr, _UA, _S, _SCo, _IC, _ASCS, _NC, _SU, _DA, _EC, _HCC, _OC],
|
|
940
|
+
[0, 0, 0, 4, 4, 0, [() => SourceConfiguration$, 0], () => InstanceConfiguration$, () => AutoScalingConfigurationSummary$, () => NetworkConfiguration$, 0, 4, () => EncryptionConfiguration$, () => HealthCheckConfiguration$, () => ServiceObservabilityConfiguration$], 10
|
|
941
|
+
];
|
|
942
|
+
var ServiceObservabilityConfiguration$ = [3, n0, _SOC,
|
|
943
|
+
0,
|
|
944
|
+
[_OE, _OCA],
|
|
945
|
+
[2, 0], 1
|
|
946
|
+
];
|
|
947
|
+
var ServiceSummary$ = [3, n0, _SS,
|
|
948
|
+
0,
|
|
949
|
+
[_SN, _SI, _SA, _SU, _CAr, _UA, _S],
|
|
950
|
+
[0, 0, 0, 0, 4, 4, 0]
|
|
951
|
+
];
|
|
952
|
+
var SourceCodeVersion$ = [3, n0, _SCV,
|
|
953
|
+
0,
|
|
954
|
+
[_T, _V],
|
|
955
|
+
[0, 0], 2
|
|
956
|
+
];
|
|
957
|
+
var SourceConfiguration$ = [3, n0, _SCo,
|
|
958
|
+
0,
|
|
959
|
+
[_CR, _IR, _ADE, _AC],
|
|
960
|
+
[[() => CodeRepository$, 0], [() => ImageRepository$, 0], 2, () => AuthenticationConfiguration$]
|
|
961
|
+
];
|
|
962
|
+
var StartDeploymentRequest$ = [3, n0, _SDR,
|
|
963
|
+
0,
|
|
964
|
+
[_SA],
|
|
965
|
+
[0], 1
|
|
966
|
+
];
|
|
967
|
+
var StartDeploymentResponse$ = [3, n0, _SDRt,
|
|
968
|
+
0,
|
|
969
|
+
[_OI],
|
|
970
|
+
[0], 1
|
|
971
|
+
];
|
|
972
|
+
var Tag$ = [3, n0, _Tag,
|
|
973
|
+
0,
|
|
974
|
+
[_K, _V],
|
|
975
|
+
[0, 0]
|
|
976
|
+
];
|
|
977
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
978
|
+
0,
|
|
979
|
+
[_RA, _Ta],
|
|
980
|
+
[0, () => TagList], 2
|
|
981
|
+
];
|
|
982
|
+
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
983
|
+
0,
|
|
984
|
+
[],
|
|
985
|
+
[]
|
|
986
|
+
];
|
|
987
|
+
var TraceConfiguration$ = [3, n0, _TC,
|
|
988
|
+
0,
|
|
989
|
+
[_Ve],
|
|
990
|
+
[0], 1
|
|
991
|
+
];
|
|
992
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
993
|
+
0,
|
|
994
|
+
[_RA, _TK],
|
|
995
|
+
[0, 64 | 0], 2
|
|
996
|
+
];
|
|
997
|
+
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
998
|
+
0,
|
|
999
|
+
[],
|
|
1000
|
+
[]
|
|
1001
|
+
];
|
|
1002
|
+
var UpdateDefaultAutoScalingConfigurationRequest$ = [3, n0, _UDASCR,
|
|
1003
|
+
0,
|
|
1004
|
+
[_ASCA],
|
|
1005
|
+
[0], 1
|
|
1006
|
+
];
|
|
1007
|
+
var UpdateDefaultAutoScalingConfigurationResponse$ = [3, n0, _UDASCRp,
|
|
1008
|
+
0,
|
|
1009
|
+
[_ASC],
|
|
1010
|
+
[() => AutoScalingConfiguration$], 1
|
|
1011
|
+
];
|
|
1012
|
+
var UpdateServiceRequest$ = [3, n0, _USR,
|
|
1013
|
+
0,
|
|
1014
|
+
[_SA, _SCo, _IC, _ASCA, _HCC, _NC, _OC],
|
|
1015
|
+
[0, [() => SourceConfiguration$, 0], () => InstanceConfiguration$, 0, () => HealthCheckConfiguration$, () => NetworkConfiguration$, () => ServiceObservabilityConfiguration$], 1
|
|
1016
|
+
];
|
|
1017
|
+
var UpdateServiceResponse$ = [3, n0, _USRp,
|
|
1018
|
+
0,
|
|
1019
|
+
[_Se, _OI],
|
|
1020
|
+
[[() => Service$, 0], 0], 2
|
|
1021
|
+
];
|
|
1022
|
+
var UpdateVpcIngressConnectionRequest$ = [3, n0, _UVICR,
|
|
1023
|
+
0,
|
|
1024
|
+
[_VICA, _IVC],
|
|
1025
|
+
[0, () => IngressVpcConfiguration$], 2
|
|
1026
|
+
];
|
|
1027
|
+
var UpdateVpcIngressConnectionResponse$ = [3, n0, _UVICRp,
|
|
1028
|
+
0,
|
|
1029
|
+
[_VIC],
|
|
1030
|
+
[() => VpcIngressConnection$], 1
|
|
1031
|
+
];
|
|
1032
|
+
var VpcConnector$ = [3, n0, _VC,
|
|
1033
|
+
0,
|
|
1034
|
+
[_VCN, _VCA, _VCR, _Su, _SG, _S, _CAr, _DA],
|
|
1035
|
+
[0, 0, 1, 64 | 0, 64 | 0, 0, 4, 4]
|
|
1036
|
+
];
|
|
1037
|
+
var VpcDNSTarget$ = [3, n0, _VDNSTp,
|
|
1038
|
+
0,
|
|
1039
|
+
[_VICA, _VI, _DN],
|
|
1040
|
+
[0, 0, 0]
|
|
1041
|
+
];
|
|
1042
|
+
var VpcIngressConnection$ = [3, n0, _VIC,
|
|
1043
|
+
0,
|
|
1044
|
+
[_VICA, _VICN, _SA, _S, _AI, _DN, _IVC, _CAr, _DA],
|
|
1045
|
+
[0, 0, 0, 0, 0, 0, () => IngressVpcConfiguration$, 4, 4]
|
|
1046
|
+
];
|
|
1047
|
+
var VpcIngressConnectionSummary$ = [3, n0, _VICS,
|
|
1048
|
+
0,
|
|
1049
|
+
[_VICA, _SA],
|
|
1050
|
+
[0, 0]
|
|
1051
|
+
];
|
|
1052
|
+
var AutoScalingConfigurationSummaryList = [1, n0, _ASCSL,
|
|
1053
|
+
0, () => AutoScalingConfigurationSummary$
|
|
1054
|
+
];
|
|
1055
|
+
var CertificateValidationRecordList = [1, n0, _CVRL,
|
|
1056
|
+
0, () => CertificateValidationRecord$
|
|
1057
|
+
];
|
|
1058
|
+
var ConnectionSummaryList = [1, n0, _CSL,
|
|
1059
|
+
0, () => ConnectionSummary$
|
|
1060
|
+
];
|
|
1061
|
+
var CustomDomainList = [1, n0, _CDL,
|
|
1062
|
+
0, () => CustomDomain$
|
|
1063
|
+
];
|
|
1064
|
+
var ObservabilityConfigurationSummaryList = [1, n0, _OCSL,
|
|
1065
|
+
0, () => ObservabilityConfigurationSummary$
|
|
1066
|
+
];
|
|
1067
|
+
var OperationSummaryList = [1, n0, _OSL,
|
|
1068
|
+
0, () => OperationSummary$
|
|
1069
|
+
];
|
|
1070
|
+
var ServiceSummaryList = [1, n0, _SSL,
|
|
1071
|
+
0, () => ServiceSummary$
|
|
1072
|
+
];
|
|
1073
|
+
var TagList = [1, n0, _TL,
|
|
1074
|
+
0, () => Tag$
|
|
1075
|
+
];
|
|
1076
|
+
var VpcConnectors = [1, n0, _VCp,
|
|
1077
|
+
0, () => VpcConnector$
|
|
1078
|
+
];
|
|
1079
|
+
var VpcDNSTargetList = [1, n0, _VDNSTL,
|
|
1080
|
+
0, () => VpcDNSTarget$
|
|
1081
|
+
];
|
|
1082
|
+
var VpcIngressConnectionSummaryList = [1, n0, _VICSL,
|
|
1083
|
+
0, () => VpcIngressConnectionSummary$
|
|
1084
|
+
];
|
|
1085
|
+
var RuntimeEnvironmentSecrets = [2, n0, _RES,
|
|
1086
|
+
0, [() => RuntimeEnvironmentSecretsName,
|
|
1087
|
+
0],
|
|
1088
|
+
[() => RuntimeEnvironmentSecretsValue,
|
|
1089
|
+
0]
|
|
1090
|
+
];
|
|
1091
|
+
var RuntimeEnvironmentVariables = [2, n0, _REV,
|
|
1092
|
+
0, [() => RuntimeEnvironmentVariablesKey,
|
|
1093
|
+
0],
|
|
1094
|
+
[() => RuntimeEnvironmentVariablesValue,
|
|
1095
|
+
0]
|
|
1096
|
+
];
|
|
1097
|
+
var AssociateCustomDomain$ = [9, n0, _ACD,
|
|
1098
|
+
0, () => AssociateCustomDomainRequest$, () => AssociateCustomDomainResponse$
|
|
1099
|
+
];
|
|
1100
|
+
var CreateAutoScalingConfiguration$ = [9, n0, _CASC,
|
|
1101
|
+
0, () => CreateAutoScalingConfigurationRequest$, () => CreateAutoScalingConfigurationResponse$
|
|
1102
|
+
];
|
|
1103
|
+
var CreateConnection$ = [9, n0, _CCr,
|
|
1104
|
+
0, () => CreateConnectionRequest$, () => CreateConnectionResponse$
|
|
1105
|
+
];
|
|
1106
|
+
var CreateObservabilityConfiguration$ = [9, n0, _COC,
|
|
1107
|
+
0, () => CreateObservabilityConfigurationRequest$, () => CreateObservabilityConfigurationResponse$
|
|
1108
|
+
];
|
|
1109
|
+
var CreateService$ = [9, n0, _CSr,
|
|
1110
|
+
0, () => CreateServiceRequest$, () => CreateServiceResponse$
|
|
1111
|
+
];
|
|
1112
|
+
var CreateVpcConnector$ = [9, n0, _CVC,
|
|
1113
|
+
0, () => CreateVpcConnectorRequest$, () => CreateVpcConnectorResponse$
|
|
1114
|
+
];
|
|
1115
|
+
var CreateVpcIngressConnection$ = [9, n0, _CVIC,
|
|
1116
|
+
0, () => CreateVpcIngressConnectionRequest$, () => CreateVpcIngressConnectionResponse$
|
|
1117
|
+
];
|
|
1118
|
+
var DeleteAutoScalingConfiguration$ = [9, n0, _DASC,
|
|
1119
|
+
0, () => DeleteAutoScalingConfigurationRequest$, () => DeleteAutoScalingConfigurationResponse$
|
|
1120
|
+
];
|
|
1121
|
+
var DeleteConnection$ = [9, n0, _DC,
|
|
1122
|
+
0, () => DeleteConnectionRequest$, () => DeleteConnectionResponse$
|
|
1123
|
+
];
|
|
1124
|
+
var DeleteObservabilityConfiguration$ = [9, n0, _DOC,
|
|
1125
|
+
0, () => DeleteObservabilityConfigurationRequest$, () => DeleteObservabilityConfigurationResponse$
|
|
1126
|
+
];
|
|
1127
|
+
var DeleteService$ = [9, n0, _DS,
|
|
1128
|
+
0, () => DeleteServiceRequest$, () => DeleteServiceResponse$
|
|
1129
|
+
];
|
|
1130
|
+
var DeleteVpcConnector$ = [9, n0, _DVC,
|
|
1131
|
+
0, () => DeleteVpcConnectorRequest$, () => DeleteVpcConnectorResponse$
|
|
1132
|
+
];
|
|
1133
|
+
var DeleteVpcIngressConnection$ = [9, n0, _DVIC,
|
|
1134
|
+
0, () => DeleteVpcIngressConnectionRequest$, () => DeleteVpcIngressConnectionResponse$
|
|
1135
|
+
];
|
|
1136
|
+
var DescribeAutoScalingConfiguration$ = [9, n0, _DASCe,
|
|
1137
|
+
0, () => DescribeAutoScalingConfigurationRequest$, () => DescribeAutoScalingConfigurationResponse$
|
|
1138
|
+
];
|
|
1139
|
+
var DescribeCustomDomains$ = [9, n0, _DCD,
|
|
1140
|
+
0, () => DescribeCustomDomainsRequest$, () => DescribeCustomDomainsResponse$
|
|
1141
|
+
];
|
|
1142
|
+
var DescribeObservabilityConfiguration$ = [9, n0, _DOCe,
|
|
1143
|
+
0, () => DescribeObservabilityConfigurationRequest$, () => DescribeObservabilityConfigurationResponse$
|
|
1144
|
+
];
|
|
1145
|
+
var DescribeService$ = [9, n0, _DSe,
|
|
1146
|
+
0, () => DescribeServiceRequest$, () => DescribeServiceResponse$
|
|
1147
|
+
];
|
|
1148
|
+
var DescribeVpcConnector$ = [9, n0, _DVCe,
|
|
1149
|
+
0, () => DescribeVpcConnectorRequest$, () => DescribeVpcConnectorResponse$
|
|
1150
|
+
];
|
|
1151
|
+
var DescribeVpcIngressConnection$ = [9, n0, _DVICe,
|
|
1152
|
+
0, () => DescribeVpcIngressConnectionRequest$, () => DescribeVpcIngressConnectionResponse$
|
|
1153
|
+
];
|
|
1154
|
+
var DisassociateCustomDomain$ = [9, n0, _DCDi,
|
|
1155
|
+
0, () => DisassociateCustomDomainRequest$, () => DisassociateCustomDomainResponse$
|
|
1156
|
+
];
|
|
1157
|
+
var ListAutoScalingConfigurations$ = [9, n0, _LASC,
|
|
1158
|
+
0, () => ListAutoScalingConfigurationsRequest$, () => ListAutoScalingConfigurationsResponse$
|
|
1159
|
+
];
|
|
1160
|
+
var ListConnections$ = [9, n0, _LC,
|
|
1161
|
+
0, () => ListConnectionsRequest$, () => ListConnectionsResponse$
|
|
1162
|
+
];
|
|
1163
|
+
var ListObservabilityConfigurations$ = [9, n0, _LOC,
|
|
1164
|
+
0, () => ListObservabilityConfigurationsRequest$, () => ListObservabilityConfigurationsResponse$
|
|
1165
|
+
];
|
|
1166
|
+
var ListOperations$ = [9, n0, _LOi,
|
|
1167
|
+
0, () => ListOperationsRequest$, () => ListOperationsResponse$
|
|
1168
|
+
];
|
|
1169
|
+
var ListServices$ = [9, n0, _LS,
|
|
1170
|
+
0, () => ListServicesRequest$, () => ListServicesResponse$
|
|
1171
|
+
];
|
|
1172
|
+
var ListServicesForAutoScalingConfiguration$ = [9, n0, _LSFASC,
|
|
1173
|
+
0, () => ListServicesForAutoScalingConfigurationRequest$, () => ListServicesForAutoScalingConfigurationResponse$
|
|
1174
|
+
];
|
|
1175
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1176
|
+
0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1177
|
+
];
|
|
1178
|
+
var ListVpcConnectors$ = [9, n0, _LVC,
|
|
1179
|
+
0, () => ListVpcConnectorsRequest$, () => ListVpcConnectorsResponse$
|
|
1180
|
+
];
|
|
1181
|
+
var ListVpcIngressConnections$ = [9, n0, _LVIC,
|
|
1182
|
+
0, () => ListVpcIngressConnectionsRequest$, () => ListVpcIngressConnectionsResponse$
|
|
1183
|
+
];
|
|
1184
|
+
var PauseService$ = [9, n0, _PS,
|
|
1185
|
+
0, () => PauseServiceRequest$, () => PauseServiceResponse$
|
|
1186
|
+
];
|
|
1187
|
+
var ResumeService$ = [9, n0, _RS,
|
|
1188
|
+
0, () => ResumeServiceRequest$, () => ResumeServiceResponse$
|
|
1189
|
+
];
|
|
1190
|
+
var StartDeployment$ = [9, n0, _SDt,
|
|
1191
|
+
0, () => StartDeploymentRequest$, () => StartDeploymentResponse$
|
|
1192
|
+
];
|
|
1193
|
+
var TagResource$ = [9, n0, _TR,
|
|
1194
|
+
0, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1195
|
+
];
|
|
1196
|
+
var UntagResource$ = [9, n0, _UR,
|
|
1197
|
+
0, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1198
|
+
];
|
|
1199
|
+
var UpdateDefaultAutoScalingConfiguration$ = [9, n0, _UDASC,
|
|
1200
|
+
0, () => UpdateDefaultAutoScalingConfigurationRequest$, () => UpdateDefaultAutoScalingConfigurationResponse$
|
|
1201
|
+
];
|
|
1202
|
+
var UpdateService$ = [9, n0, _US,
|
|
1203
|
+
0, () => UpdateServiceRequest$, () => UpdateServiceResponse$
|
|
1204
|
+
];
|
|
1205
|
+
var UpdateVpcIngressConnection$ = [9, n0, _UVIC,
|
|
1206
|
+
0, () => UpdateVpcIngressConnectionRequest$, () => UpdateVpcIngressConnectionResponse$
|
|
1207
|
+
];
|
|
1208
|
+
|
|
1209
|
+
const getRuntimeConfig$1 = (config) => {
|
|
1210
|
+
return {
|
|
1211
|
+
apiVersion: "2020-05-15",
|
|
1212
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
1213
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
1214
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
1215
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
1216
|
+
extensions: config?.extensions ?? [],
|
|
1217
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultAppRunnerHttpAuthSchemeProvider,
|
|
1218
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
1219
|
+
{
|
|
1220
|
+
schemeId: "aws.auth#sigv4",
|
|
1221
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
1222
|
+
signer: new AwsSdkSigV4Signer(),
|
|
1223
|
+
},
|
|
1224
|
+
],
|
|
1225
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
1226
|
+
protocol: config?.protocol ?? AwsJson1_0Protocol,
|
|
1227
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
1228
|
+
defaultNamespace: "com.amazonaws.apprunner",
|
|
1229
|
+
errorTypeRegistries,
|
|
1230
|
+
xmlNamespace: "http://apprunner.amazonaws.com/doc/2020-05-15/",
|
|
1231
|
+
version: "2020-05-15",
|
|
1232
|
+
serviceTarget: "AppRunner",
|
|
1233
|
+
},
|
|
1234
|
+
serviceId: config?.serviceId ?? "AppRunner",
|
|
1235
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
1236
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
1237
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
1238
|
+
};
|
|
1239
|
+
};
|
|
1240
|
+
|
|
1241
|
+
const getRuntimeConfig = (config) => {
|
|
1242
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
1243
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
1244
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
1245
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
1246
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
1247
|
+
const loaderConfig = {
|
|
1248
|
+
profile: config?.profile,
|
|
1249
|
+
logger: clientSharedValues.logger,
|
|
1250
|
+
};
|
|
1251
|
+
return {
|
|
1252
|
+
...clientSharedValues,
|
|
1253
|
+
...config,
|
|
1254
|
+
runtime: "node",
|
|
1255
|
+
defaultsMode,
|
|
1256
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
1257
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
1258
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
1259
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
1260
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
1261
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
1262
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
1263
|
+
retryMode: config?.retryMode ??
|
|
1264
|
+
loadConfig({
|
|
1265
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
1266
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
1267
|
+
}, config),
|
|
1268
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
1269
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
1270
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1271
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1272
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
1273
|
+
};
|
|
1274
|
+
};
|
|
1275
|
+
|
|
34
1276
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
1277
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
1278
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -742,62 +1984,220 @@ const OperationType = {
|
|
|
742
1984
|
|
|
743
1985
|
exports.AppRunner = AppRunner;
|
|
744
1986
|
exports.AppRunnerClient = AppRunnerClient;
|
|
1987
|
+
exports.AppRunnerServiceException = AppRunnerServiceException;
|
|
1988
|
+
exports.AppRunnerServiceException$ = AppRunnerServiceException$;
|
|
1989
|
+
exports.AssociateCustomDomain$ = AssociateCustomDomain$;
|
|
745
1990
|
exports.AssociateCustomDomainCommand = AssociateCustomDomainCommand;
|
|
1991
|
+
exports.AssociateCustomDomainRequest$ = AssociateCustomDomainRequest$;
|
|
1992
|
+
exports.AssociateCustomDomainResponse$ = AssociateCustomDomainResponse$;
|
|
1993
|
+
exports.AuthenticationConfiguration$ = AuthenticationConfiguration$;
|
|
1994
|
+
exports.AutoScalingConfiguration$ = AutoScalingConfiguration$;
|
|
746
1995
|
exports.AutoScalingConfigurationStatus = AutoScalingConfigurationStatus;
|
|
1996
|
+
exports.AutoScalingConfigurationSummary$ = AutoScalingConfigurationSummary$;
|
|
1997
|
+
exports.CertificateValidationRecord$ = CertificateValidationRecord$;
|
|
747
1998
|
exports.CertificateValidationRecordStatus = CertificateValidationRecordStatus;
|
|
1999
|
+
exports.CodeConfiguration$ = CodeConfiguration$;
|
|
2000
|
+
exports.CodeConfigurationValues$ = CodeConfigurationValues$;
|
|
2001
|
+
exports.CodeRepository$ = CodeRepository$;
|
|
748
2002
|
exports.ConfigurationSource = ConfigurationSource;
|
|
2003
|
+
exports.Connection$ = Connection$;
|
|
749
2004
|
exports.ConnectionStatus = ConnectionStatus;
|
|
2005
|
+
exports.ConnectionSummary$ = ConnectionSummary$;
|
|
2006
|
+
exports.CreateAutoScalingConfiguration$ = CreateAutoScalingConfiguration$;
|
|
750
2007
|
exports.CreateAutoScalingConfigurationCommand = CreateAutoScalingConfigurationCommand;
|
|
2008
|
+
exports.CreateAutoScalingConfigurationRequest$ = CreateAutoScalingConfigurationRequest$;
|
|
2009
|
+
exports.CreateAutoScalingConfigurationResponse$ = CreateAutoScalingConfigurationResponse$;
|
|
2010
|
+
exports.CreateConnection$ = CreateConnection$;
|
|
751
2011
|
exports.CreateConnectionCommand = CreateConnectionCommand;
|
|
2012
|
+
exports.CreateConnectionRequest$ = CreateConnectionRequest$;
|
|
2013
|
+
exports.CreateConnectionResponse$ = CreateConnectionResponse$;
|
|
2014
|
+
exports.CreateObservabilityConfiguration$ = CreateObservabilityConfiguration$;
|
|
752
2015
|
exports.CreateObservabilityConfigurationCommand = CreateObservabilityConfigurationCommand;
|
|
2016
|
+
exports.CreateObservabilityConfigurationRequest$ = CreateObservabilityConfigurationRequest$;
|
|
2017
|
+
exports.CreateObservabilityConfigurationResponse$ = CreateObservabilityConfigurationResponse$;
|
|
2018
|
+
exports.CreateService$ = CreateService$;
|
|
753
2019
|
exports.CreateServiceCommand = CreateServiceCommand;
|
|
2020
|
+
exports.CreateServiceRequest$ = CreateServiceRequest$;
|
|
2021
|
+
exports.CreateServiceResponse$ = CreateServiceResponse$;
|
|
2022
|
+
exports.CreateVpcConnector$ = CreateVpcConnector$;
|
|
754
2023
|
exports.CreateVpcConnectorCommand = CreateVpcConnectorCommand;
|
|
2024
|
+
exports.CreateVpcConnectorRequest$ = CreateVpcConnectorRequest$;
|
|
2025
|
+
exports.CreateVpcConnectorResponse$ = CreateVpcConnectorResponse$;
|
|
2026
|
+
exports.CreateVpcIngressConnection$ = CreateVpcIngressConnection$;
|
|
755
2027
|
exports.CreateVpcIngressConnectionCommand = CreateVpcIngressConnectionCommand;
|
|
2028
|
+
exports.CreateVpcIngressConnectionRequest$ = CreateVpcIngressConnectionRequest$;
|
|
2029
|
+
exports.CreateVpcIngressConnectionResponse$ = CreateVpcIngressConnectionResponse$;
|
|
2030
|
+
exports.CustomDomain$ = CustomDomain$;
|
|
756
2031
|
exports.CustomDomainAssociationStatus = CustomDomainAssociationStatus;
|
|
2032
|
+
exports.DeleteAutoScalingConfiguration$ = DeleteAutoScalingConfiguration$;
|
|
757
2033
|
exports.DeleteAutoScalingConfigurationCommand = DeleteAutoScalingConfigurationCommand;
|
|
2034
|
+
exports.DeleteAutoScalingConfigurationRequest$ = DeleteAutoScalingConfigurationRequest$;
|
|
2035
|
+
exports.DeleteAutoScalingConfigurationResponse$ = DeleteAutoScalingConfigurationResponse$;
|
|
2036
|
+
exports.DeleteConnection$ = DeleteConnection$;
|
|
758
2037
|
exports.DeleteConnectionCommand = DeleteConnectionCommand;
|
|
2038
|
+
exports.DeleteConnectionRequest$ = DeleteConnectionRequest$;
|
|
2039
|
+
exports.DeleteConnectionResponse$ = DeleteConnectionResponse$;
|
|
2040
|
+
exports.DeleteObservabilityConfiguration$ = DeleteObservabilityConfiguration$;
|
|
759
2041
|
exports.DeleteObservabilityConfigurationCommand = DeleteObservabilityConfigurationCommand;
|
|
2042
|
+
exports.DeleteObservabilityConfigurationRequest$ = DeleteObservabilityConfigurationRequest$;
|
|
2043
|
+
exports.DeleteObservabilityConfigurationResponse$ = DeleteObservabilityConfigurationResponse$;
|
|
2044
|
+
exports.DeleteService$ = DeleteService$;
|
|
760
2045
|
exports.DeleteServiceCommand = DeleteServiceCommand;
|
|
2046
|
+
exports.DeleteServiceRequest$ = DeleteServiceRequest$;
|
|
2047
|
+
exports.DeleteServiceResponse$ = DeleteServiceResponse$;
|
|
2048
|
+
exports.DeleteVpcConnector$ = DeleteVpcConnector$;
|
|
761
2049
|
exports.DeleteVpcConnectorCommand = DeleteVpcConnectorCommand;
|
|
2050
|
+
exports.DeleteVpcConnectorRequest$ = DeleteVpcConnectorRequest$;
|
|
2051
|
+
exports.DeleteVpcConnectorResponse$ = DeleteVpcConnectorResponse$;
|
|
2052
|
+
exports.DeleteVpcIngressConnection$ = DeleteVpcIngressConnection$;
|
|
762
2053
|
exports.DeleteVpcIngressConnectionCommand = DeleteVpcIngressConnectionCommand;
|
|
2054
|
+
exports.DeleteVpcIngressConnectionRequest$ = DeleteVpcIngressConnectionRequest$;
|
|
2055
|
+
exports.DeleteVpcIngressConnectionResponse$ = DeleteVpcIngressConnectionResponse$;
|
|
2056
|
+
exports.DescribeAutoScalingConfiguration$ = DescribeAutoScalingConfiguration$;
|
|
763
2057
|
exports.DescribeAutoScalingConfigurationCommand = DescribeAutoScalingConfigurationCommand;
|
|
2058
|
+
exports.DescribeAutoScalingConfigurationRequest$ = DescribeAutoScalingConfigurationRequest$;
|
|
2059
|
+
exports.DescribeAutoScalingConfigurationResponse$ = DescribeAutoScalingConfigurationResponse$;
|
|
2060
|
+
exports.DescribeCustomDomains$ = DescribeCustomDomains$;
|
|
764
2061
|
exports.DescribeCustomDomainsCommand = DescribeCustomDomainsCommand;
|
|
2062
|
+
exports.DescribeCustomDomainsRequest$ = DescribeCustomDomainsRequest$;
|
|
2063
|
+
exports.DescribeCustomDomainsResponse$ = DescribeCustomDomainsResponse$;
|
|
2064
|
+
exports.DescribeObservabilityConfiguration$ = DescribeObservabilityConfiguration$;
|
|
765
2065
|
exports.DescribeObservabilityConfigurationCommand = DescribeObservabilityConfigurationCommand;
|
|
2066
|
+
exports.DescribeObservabilityConfigurationRequest$ = DescribeObservabilityConfigurationRequest$;
|
|
2067
|
+
exports.DescribeObservabilityConfigurationResponse$ = DescribeObservabilityConfigurationResponse$;
|
|
2068
|
+
exports.DescribeService$ = DescribeService$;
|
|
766
2069
|
exports.DescribeServiceCommand = DescribeServiceCommand;
|
|
2070
|
+
exports.DescribeServiceRequest$ = DescribeServiceRequest$;
|
|
2071
|
+
exports.DescribeServiceResponse$ = DescribeServiceResponse$;
|
|
2072
|
+
exports.DescribeVpcConnector$ = DescribeVpcConnector$;
|
|
767
2073
|
exports.DescribeVpcConnectorCommand = DescribeVpcConnectorCommand;
|
|
2074
|
+
exports.DescribeVpcConnectorRequest$ = DescribeVpcConnectorRequest$;
|
|
2075
|
+
exports.DescribeVpcConnectorResponse$ = DescribeVpcConnectorResponse$;
|
|
2076
|
+
exports.DescribeVpcIngressConnection$ = DescribeVpcIngressConnection$;
|
|
768
2077
|
exports.DescribeVpcIngressConnectionCommand = DescribeVpcIngressConnectionCommand;
|
|
2078
|
+
exports.DescribeVpcIngressConnectionRequest$ = DescribeVpcIngressConnectionRequest$;
|
|
2079
|
+
exports.DescribeVpcIngressConnectionResponse$ = DescribeVpcIngressConnectionResponse$;
|
|
2080
|
+
exports.DisassociateCustomDomain$ = DisassociateCustomDomain$;
|
|
769
2081
|
exports.DisassociateCustomDomainCommand = DisassociateCustomDomainCommand;
|
|
2082
|
+
exports.DisassociateCustomDomainRequest$ = DisassociateCustomDomainRequest$;
|
|
2083
|
+
exports.DisassociateCustomDomainResponse$ = DisassociateCustomDomainResponse$;
|
|
2084
|
+
exports.EgressConfiguration$ = EgressConfiguration$;
|
|
770
2085
|
exports.EgressType = EgressType;
|
|
2086
|
+
exports.EncryptionConfiguration$ = EncryptionConfiguration$;
|
|
2087
|
+
exports.HealthCheckConfiguration$ = HealthCheckConfiguration$;
|
|
771
2088
|
exports.HealthCheckProtocol = HealthCheckProtocol;
|
|
2089
|
+
exports.ImageConfiguration$ = ImageConfiguration$;
|
|
2090
|
+
exports.ImageRepository$ = ImageRepository$;
|
|
772
2091
|
exports.ImageRepositoryType = ImageRepositoryType;
|
|
2092
|
+
exports.IngressConfiguration$ = IngressConfiguration$;
|
|
2093
|
+
exports.IngressVpcConfiguration$ = IngressVpcConfiguration$;
|
|
2094
|
+
exports.InstanceConfiguration$ = InstanceConfiguration$;
|
|
2095
|
+
exports.InternalServiceErrorException = InternalServiceErrorException;
|
|
2096
|
+
exports.InternalServiceErrorException$ = InternalServiceErrorException$;
|
|
2097
|
+
exports.InvalidRequestException = InvalidRequestException;
|
|
2098
|
+
exports.InvalidRequestException$ = InvalidRequestException$;
|
|
2099
|
+
exports.InvalidStateException = InvalidStateException;
|
|
2100
|
+
exports.InvalidStateException$ = InvalidStateException$;
|
|
773
2101
|
exports.IpAddressType = IpAddressType;
|
|
2102
|
+
exports.ListAutoScalingConfigurations$ = ListAutoScalingConfigurations$;
|
|
774
2103
|
exports.ListAutoScalingConfigurationsCommand = ListAutoScalingConfigurationsCommand;
|
|
2104
|
+
exports.ListAutoScalingConfigurationsRequest$ = ListAutoScalingConfigurationsRequest$;
|
|
2105
|
+
exports.ListAutoScalingConfigurationsResponse$ = ListAutoScalingConfigurationsResponse$;
|
|
2106
|
+
exports.ListConnections$ = ListConnections$;
|
|
775
2107
|
exports.ListConnectionsCommand = ListConnectionsCommand;
|
|
2108
|
+
exports.ListConnectionsRequest$ = ListConnectionsRequest$;
|
|
2109
|
+
exports.ListConnectionsResponse$ = ListConnectionsResponse$;
|
|
2110
|
+
exports.ListObservabilityConfigurations$ = ListObservabilityConfigurations$;
|
|
776
2111
|
exports.ListObservabilityConfigurationsCommand = ListObservabilityConfigurationsCommand;
|
|
2112
|
+
exports.ListObservabilityConfigurationsRequest$ = ListObservabilityConfigurationsRequest$;
|
|
2113
|
+
exports.ListObservabilityConfigurationsResponse$ = ListObservabilityConfigurationsResponse$;
|
|
2114
|
+
exports.ListOperations$ = ListOperations$;
|
|
777
2115
|
exports.ListOperationsCommand = ListOperationsCommand;
|
|
2116
|
+
exports.ListOperationsRequest$ = ListOperationsRequest$;
|
|
2117
|
+
exports.ListOperationsResponse$ = ListOperationsResponse$;
|
|
2118
|
+
exports.ListServices$ = ListServices$;
|
|
778
2119
|
exports.ListServicesCommand = ListServicesCommand;
|
|
2120
|
+
exports.ListServicesForAutoScalingConfiguration$ = ListServicesForAutoScalingConfiguration$;
|
|
779
2121
|
exports.ListServicesForAutoScalingConfigurationCommand = ListServicesForAutoScalingConfigurationCommand;
|
|
2122
|
+
exports.ListServicesForAutoScalingConfigurationRequest$ = ListServicesForAutoScalingConfigurationRequest$;
|
|
2123
|
+
exports.ListServicesForAutoScalingConfigurationResponse$ = ListServicesForAutoScalingConfigurationResponse$;
|
|
2124
|
+
exports.ListServicesRequest$ = ListServicesRequest$;
|
|
2125
|
+
exports.ListServicesResponse$ = ListServicesResponse$;
|
|
2126
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
780
2127
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2128
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
2129
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
2130
|
+
exports.ListVpcConnectors$ = ListVpcConnectors$;
|
|
781
2131
|
exports.ListVpcConnectorsCommand = ListVpcConnectorsCommand;
|
|
2132
|
+
exports.ListVpcConnectorsRequest$ = ListVpcConnectorsRequest$;
|
|
2133
|
+
exports.ListVpcConnectorsResponse$ = ListVpcConnectorsResponse$;
|
|
2134
|
+
exports.ListVpcIngressConnections$ = ListVpcIngressConnections$;
|
|
782
2135
|
exports.ListVpcIngressConnectionsCommand = ListVpcIngressConnectionsCommand;
|
|
2136
|
+
exports.ListVpcIngressConnectionsFilter$ = ListVpcIngressConnectionsFilter$;
|
|
2137
|
+
exports.ListVpcIngressConnectionsRequest$ = ListVpcIngressConnectionsRequest$;
|
|
2138
|
+
exports.ListVpcIngressConnectionsResponse$ = ListVpcIngressConnectionsResponse$;
|
|
2139
|
+
exports.NetworkConfiguration$ = NetworkConfiguration$;
|
|
2140
|
+
exports.ObservabilityConfiguration$ = ObservabilityConfiguration$;
|
|
783
2141
|
exports.ObservabilityConfigurationStatus = ObservabilityConfigurationStatus;
|
|
2142
|
+
exports.ObservabilityConfigurationSummary$ = ObservabilityConfigurationSummary$;
|
|
784
2143
|
exports.OperationStatus = OperationStatus;
|
|
2144
|
+
exports.OperationSummary$ = OperationSummary$;
|
|
785
2145
|
exports.OperationType = OperationType;
|
|
2146
|
+
exports.PauseService$ = PauseService$;
|
|
786
2147
|
exports.PauseServiceCommand = PauseServiceCommand;
|
|
2148
|
+
exports.PauseServiceRequest$ = PauseServiceRequest$;
|
|
2149
|
+
exports.PauseServiceResponse$ = PauseServiceResponse$;
|
|
787
2150
|
exports.ProviderType = ProviderType;
|
|
2151
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2152
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
2153
|
+
exports.ResumeService$ = ResumeService$;
|
|
788
2154
|
exports.ResumeServiceCommand = ResumeServiceCommand;
|
|
2155
|
+
exports.ResumeServiceRequest$ = ResumeServiceRequest$;
|
|
2156
|
+
exports.ResumeServiceResponse$ = ResumeServiceResponse$;
|
|
789
2157
|
exports.Runtime = Runtime;
|
|
2158
|
+
exports.Service$ = Service$;
|
|
2159
|
+
exports.ServiceObservabilityConfiguration$ = ServiceObservabilityConfiguration$;
|
|
2160
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
2161
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
790
2162
|
exports.ServiceStatus = ServiceStatus;
|
|
2163
|
+
exports.ServiceSummary$ = ServiceSummary$;
|
|
2164
|
+
exports.SourceCodeVersion$ = SourceCodeVersion$;
|
|
791
2165
|
exports.SourceCodeVersionType = SourceCodeVersionType;
|
|
2166
|
+
exports.SourceConfiguration$ = SourceConfiguration$;
|
|
2167
|
+
exports.StartDeployment$ = StartDeployment$;
|
|
792
2168
|
exports.StartDeploymentCommand = StartDeploymentCommand;
|
|
2169
|
+
exports.StartDeploymentRequest$ = StartDeploymentRequest$;
|
|
2170
|
+
exports.StartDeploymentResponse$ = StartDeploymentResponse$;
|
|
2171
|
+
exports.Tag$ = Tag$;
|
|
2172
|
+
exports.TagResource$ = TagResource$;
|
|
793
2173
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2174
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
2175
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
2176
|
+
exports.TraceConfiguration$ = TraceConfiguration$;
|
|
794
2177
|
exports.TracingVendor = TracingVendor;
|
|
2178
|
+
exports.UntagResource$ = UntagResource$;
|
|
795
2179
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2180
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
2181
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
2182
|
+
exports.UpdateDefaultAutoScalingConfiguration$ = UpdateDefaultAutoScalingConfiguration$;
|
|
796
2183
|
exports.UpdateDefaultAutoScalingConfigurationCommand = UpdateDefaultAutoScalingConfigurationCommand;
|
|
2184
|
+
exports.UpdateDefaultAutoScalingConfigurationRequest$ = UpdateDefaultAutoScalingConfigurationRequest$;
|
|
2185
|
+
exports.UpdateDefaultAutoScalingConfigurationResponse$ = UpdateDefaultAutoScalingConfigurationResponse$;
|
|
2186
|
+
exports.UpdateService$ = UpdateService$;
|
|
797
2187
|
exports.UpdateServiceCommand = UpdateServiceCommand;
|
|
2188
|
+
exports.UpdateServiceRequest$ = UpdateServiceRequest$;
|
|
2189
|
+
exports.UpdateServiceResponse$ = UpdateServiceResponse$;
|
|
2190
|
+
exports.UpdateVpcIngressConnection$ = UpdateVpcIngressConnection$;
|
|
798
2191
|
exports.UpdateVpcIngressConnectionCommand = UpdateVpcIngressConnectionCommand;
|
|
2192
|
+
exports.UpdateVpcIngressConnectionRequest$ = UpdateVpcIngressConnectionRequest$;
|
|
2193
|
+
exports.UpdateVpcIngressConnectionResponse$ = UpdateVpcIngressConnectionResponse$;
|
|
2194
|
+
exports.VpcConnector$ = VpcConnector$;
|
|
799
2195
|
exports.VpcConnectorStatus = VpcConnectorStatus;
|
|
2196
|
+
exports.VpcDNSTarget$ = VpcDNSTarget$;
|
|
2197
|
+
exports.VpcIngressConnection$ = VpcIngressConnection$;
|
|
800
2198
|
exports.VpcIngressConnectionStatus = VpcIngressConnectionStatus;
|
|
2199
|
+
exports.VpcIngressConnectionSummary$ = VpcIngressConnectionSummary$;
|
|
2200
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
801
2201
|
exports.paginateDescribeCustomDomains = paginateDescribeCustomDomains;
|
|
802
2202
|
exports.paginateListAutoScalingConfigurations = paginateListAutoScalingConfigurations;
|
|
803
2203
|
exports.paginateListConnections = paginateListConnections;
|