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