@aws-sdk/client-route53globalresolver 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 +1534 -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 -29
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/Route53GlobalResolverServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -117
- 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 -38
- package/dist-cjs/schemas/schemas_0.js +0 -1203
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 { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
const { Sha256 } = require("@smithy/core/checksum");
|
|
17
|
+
|
|
18
|
+
const defaultRoute53GlobalResolverHttpAuthSchemeParametersProvider = 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: "route53globalresolver",
|
|
31
|
+
region: authParameters.region,
|
|
32
|
+
},
|
|
33
|
+
propertiesExtractor: (config, context) => ({
|
|
34
|
+
signingProperties: {
|
|
35
|
+
config,
|
|
36
|
+
context,
|
|
37
|
+
},
|
|
38
|
+
}),
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
const defaultRoute53GlobalResolverHttpAuthSchemeProvider = (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, {
|
|
@@ -29,6 +66,1312 @@ const commonParams = {
|
|
|
29
66
|
Region: { type: "builtInParams", name: "region" },
|
|
30
67
|
};
|
|
31
68
|
|
|
69
|
+
var version = "3.1076.0";
|
|
70
|
+
var packageInfo = {
|
|
71
|
+
version: version};
|
|
72
|
+
|
|
73
|
+
const a = "isSet", b = { "ref": "Endpoint" }, c = [{ "ref": "Region" }];
|
|
74
|
+
const _data = {
|
|
75
|
+
conditions: [
|
|
76
|
+
[a, [b]],
|
|
77
|
+
[a, c],
|
|
78
|
+
["aws.partition", c, "PartitionResult"],
|
|
79
|
+
["booleanEquals", [{ ref: "UseFIPS" }, true]]
|
|
80
|
+
],
|
|
81
|
+
results: [
|
|
82
|
+
[-1],
|
|
83
|
+
[-1, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
84
|
+
[b, {}],
|
|
85
|
+
["https://route53globalresolver-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", {}],
|
|
86
|
+
["https://route53globalresolver.{Region}.{PartitionResult#dualStackDnsSuffix}", {}],
|
|
87
|
+
[-1, "Invalid Configuration: Missing Region"]
|
|
88
|
+
]
|
|
89
|
+
};
|
|
90
|
+
const root = 2;
|
|
91
|
+
const r = 100_000_000;
|
|
92
|
+
const nodes = new Int32Array([
|
|
93
|
+
-1, 1, -1,
|
|
94
|
+
0, 6, 3,
|
|
95
|
+
1, 4, r + 5,
|
|
96
|
+
2, 5, r + 5,
|
|
97
|
+
3, r + 3, r + 4,
|
|
98
|
+
3, r + 1, r + 2,
|
|
99
|
+
]);
|
|
100
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
101
|
+
|
|
102
|
+
const cache = new EndpointCache({
|
|
103
|
+
size: 50,
|
|
104
|
+
params: ["Endpoint", "Region", "UseFIPS"],
|
|
105
|
+
});
|
|
106
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
107
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
108
|
+
endpointParams: endpointParams,
|
|
109
|
+
logger: context.logger,
|
|
110
|
+
}));
|
|
111
|
+
};
|
|
112
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
113
|
+
|
|
114
|
+
class Route53GlobalResolverServiceException extends ServiceException {
|
|
115
|
+
constructor(options) {
|
|
116
|
+
super(options);
|
|
117
|
+
Object.setPrototypeOf(this, Route53GlobalResolverServiceException.prototype);
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
class AccessDeniedException extends Route53GlobalResolverServiceException {
|
|
122
|
+
name = "AccessDeniedException";
|
|
123
|
+
$fault = "client";
|
|
124
|
+
constructor(opts) {
|
|
125
|
+
super({
|
|
126
|
+
name: "AccessDeniedException",
|
|
127
|
+
$fault: "client",
|
|
128
|
+
...opts,
|
|
129
|
+
});
|
|
130
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
class ConflictException extends Route53GlobalResolverServiceException {
|
|
134
|
+
name = "ConflictException";
|
|
135
|
+
$fault = "client";
|
|
136
|
+
resourceId;
|
|
137
|
+
resourceType;
|
|
138
|
+
constructor(opts) {
|
|
139
|
+
super({
|
|
140
|
+
name: "ConflictException",
|
|
141
|
+
$fault: "client",
|
|
142
|
+
...opts,
|
|
143
|
+
});
|
|
144
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
145
|
+
this.resourceId = opts.resourceId;
|
|
146
|
+
this.resourceType = opts.resourceType;
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
class InternalServerException extends Route53GlobalResolverServiceException {
|
|
150
|
+
name = "InternalServerException";
|
|
151
|
+
$fault = "server";
|
|
152
|
+
$retryable = {};
|
|
153
|
+
retryAfterSeconds;
|
|
154
|
+
constructor(opts) {
|
|
155
|
+
super({
|
|
156
|
+
name: "InternalServerException",
|
|
157
|
+
$fault: "server",
|
|
158
|
+
...opts,
|
|
159
|
+
});
|
|
160
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
161
|
+
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
class ResourceNotFoundException extends Route53GlobalResolverServiceException {
|
|
165
|
+
name = "ResourceNotFoundException";
|
|
166
|
+
$fault = "client";
|
|
167
|
+
resourceId;
|
|
168
|
+
resourceType;
|
|
169
|
+
constructor(opts) {
|
|
170
|
+
super({
|
|
171
|
+
name: "ResourceNotFoundException",
|
|
172
|
+
$fault: "client",
|
|
173
|
+
...opts,
|
|
174
|
+
});
|
|
175
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
176
|
+
this.resourceId = opts.resourceId;
|
|
177
|
+
this.resourceType = opts.resourceType;
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
class ServiceQuotaExceededException extends Route53GlobalResolverServiceException {
|
|
181
|
+
name = "ServiceQuotaExceededException";
|
|
182
|
+
$fault = "client";
|
|
183
|
+
resourceId;
|
|
184
|
+
resourceType;
|
|
185
|
+
serviceCode;
|
|
186
|
+
quotaCode;
|
|
187
|
+
constructor(opts) {
|
|
188
|
+
super({
|
|
189
|
+
name: "ServiceQuotaExceededException",
|
|
190
|
+
$fault: "client",
|
|
191
|
+
...opts,
|
|
192
|
+
});
|
|
193
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
194
|
+
this.resourceId = opts.resourceId;
|
|
195
|
+
this.resourceType = opts.resourceType;
|
|
196
|
+
this.serviceCode = opts.serviceCode;
|
|
197
|
+
this.quotaCode = opts.quotaCode;
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
class ThrottlingException extends Route53GlobalResolverServiceException {
|
|
201
|
+
name = "ThrottlingException";
|
|
202
|
+
$fault = "client";
|
|
203
|
+
$retryable = {
|
|
204
|
+
throttling: true,
|
|
205
|
+
};
|
|
206
|
+
serviceCode;
|
|
207
|
+
quotaCode;
|
|
208
|
+
retryAfterSeconds;
|
|
209
|
+
constructor(opts) {
|
|
210
|
+
super({
|
|
211
|
+
name: "ThrottlingException",
|
|
212
|
+
$fault: "client",
|
|
213
|
+
...opts,
|
|
214
|
+
});
|
|
215
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
216
|
+
this.serviceCode = opts.serviceCode;
|
|
217
|
+
this.quotaCode = opts.quotaCode;
|
|
218
|
+
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
class ValidationException extends Route53GlobalResolverServiceException {
|
|
222
|
+
name = "ValidationException";
|
|
223
|
+
$fault = "client";
|
|
224
|
+
reason;
|
|
225
|
+
fieldList;
|
|
226
|
+
constructor(opts) {
|
|
227
|
+
super({
|
|
228
|
+
name: "ValidationException",
|
|
229
|
+
$fault: "client",
|
|
230
|
+
...opts,
|
|
231
|
+
});
|
|
232
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
233
|
+
this.reason = opts.reason;
|
|
234
|
+
this.fieldList = opts.fieldList;
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
const _ADE = "AccessDeniedException";
|
|
239
|
+
const _AHZ = "AssociateHostedZone";
|
|
240
|
+
const _AHZI = "AssociateHostedZoneInput";
|
|
241
|
+
const _AHZO = "AssociateHostedZoneOutput";
|
|
242
|
+
const _AS = "AccessSources";
|
|
243
|
+
const _ASI = "AccessSourcesItem";
|
|
244
|
+
const _AT = "AccessTokens";
|
|
245
|
+
const _ATI = "AccessTokenItem";
|
|
246
|
+
const _ATV = "AccessTokenValue";
|
|
247
|
+
const _BCFR = "BatchCreateFirewallRule";
|
|
248
|
+
const _BCFRI = "BatchCreateFirewallRuleInput";
|
|
249
|
+
const _BCFRII = "BatchCreateFirewallRuleInputItem";
|
|
250
|
+
const _BCFRIIa = "BatchCreateFirewallRuleInputItems";
|
|
251
|
+
const _BCFRO = "BatchCreateFirewallRuleOutput";
|
|
252
|
+
const _BCFROI = "BatchCreateFirewallRuleOutputItem";
|
|
253
|
+
const _BCFROIa = "BatchCreateFirewallRuleOutputItems";
|
|
254
|
+
const _BCFRR = "BatchCreateFirewallRuleResult";
|
|
255
|
+
const _BDFR = "BatchDeleteFirewallRule";
|
|
256
|
+
const _BDFRI = "BatchDeleteFirewallRuleInput";
|
|
257
|
+
const _BDFRII = "BatchDeleteFirewallRuleInputItem";
|
|
258
|
+
const _BDFRIIa = "BatchDeleteFirewallRuleInputItems";
|
|
259
|
+
const _BDFRO = "BatchDeleteFirewallRuleOutput";
|
|
260
|
+
const _BDFROI = "BatchDeleteFirewallRuleOutputItem";
|
|
261
|
+
const _BDFROIa = "BatchDeleteFirewallRuleOutputItems";
|
|
262
|
+
const _BDFRR = "BatchDeleteFirewallRuleResult";
|
|
263
|
+
const _BUFR = "BatchUpdateFirewallRule";
|
|
264
|
+
const _BUFRI = "BatchUpdateFirewallRuleInput";
|
|
265
|
+
const _BUFRII = "BatchUpdateFirewallRuleInputItem";
|
|
266
|
+
const _BUFRIIa = "BatchUpdateFirewallRuleInputItems";
|
|
267
|
+
const _BUFRO = "BatchUpdateFirewallRuleOutput";
|
|
268
|
+
const _BUFROI = "BatchUpdateFirewallRuleOutputItem";
|
|
269
|
+
const _BUFROIa = "BatchUpdateFirewallRuleOutputItems";
|
|
270
|
+
const _BUFRR = "BatchUpdateFirewallRuleResult";
|
|
271
|
+
const _CAS = "CreateAccessSource";
|
|
272
|
+
const _CASI = "CreateAccessSourceInput";
|
|
273
|
+
const _CASO = "CreateAccessSourceOutput";
|
|
274
|
+
const _CAT = "CreateAccessToken";
|
|
275
|
+
const _CATI = "CreateAccessTokenInput";
|
|
276
|
+
const _CATO = "CreateAccessTokenOutput";
|
|
277
|
+
const _CDNSV = "CreateDNSView";
|
|
278
|
+
const _CDNSVI = "CreateDNSViewInput";
|
|
279
|
+
const _CDNSVO = "CreateDNSViewOutput";
|
|
280
|
+
const _CE = "ConflictException";
|
|
281
|
+
const _CFDL = "CreateFirewallDomainList";
|
|
282
|
+
const _CFDLI = "CreateFirewallDomainListInput";
|
|
283
|
+
const _CFDLO = "CreateFirewallDomainListOutput";
|
|
284
|
+
const _CFR = "CreateFirewallRule";
|
|
285
|
+
const _CFRI = "CreateFirewallRuleInput";
|
|
286
|
+
const _CFRO = "CreateFirewallRuleOutput";
|
|
287
|
+
const _CGR = "CreateGlobalResolver";
|
|
288
|
+
const _CGRI = "CreateGlobalResolverInput";
|
|
289
|
+
const _CGRO = "CreateGlobalResolverOutput";
|
|
290
|
+
const _DAS = "DeleteAccessSource";
|
|
291
|
+
const _DASI = "DeleteAccessSourceInput";
|
|
292
|
+
const _DASO = "DeleteAccessSourceOutput";
|
|
293
|
+
const _DAT = "DeleteAccessToken";
|
|
294
|
+
const _DATI = "DeleteAccessTokenInput";
|
|
295
|
+
const _DATO = "DeleteAccessTokenOutput";
|
|
296
|
+
const _DDNSV = "DeleteDNSView";
|
|
297
|
+
const _DDNSVI = "DeleteDNSViewInput";
|
|
298
|
+
const _DDNSVIi = "DisableDNSViewInput";
|
|
299
|
+
const _DDNSVO = "DeleteDNSViewOutput";
|
|
300
|
+
const _DDNSVOi = "DisableDNSViewOutput";
|
|
301
|
+
const _DDNSVi = "DisableDNSView";
|
|
302
|
+
const _DFDL = "DeleteFirewallDomainList";
|
|
303
|
+
const _DFDLI = "DeleteFirewallDomainListInput";
|
|
304
|
+
const _DFDLO = "DeleteFirewallDomainListOutput";
|
|
305
|
+
const _DFR = "DeleteFirewallRule";
|
|
306
|
+
const _DFRI = "DeleteFirewallRuleInput";
|
|
307
|
+
const _DFRO = "DeleteFirewallRuleOutput";
|
|
308
|
+
const _DGR = "DeleteGlobalResolver";
|
|
309
|
+
const _DGRI = "DeleteGlobalResolverInput";
|
|
310
|
+
const _DGRO = "DeleteGlobalResolverOutput";
|
|
311
|
+
const _DHZ = "DisassociateHostedZone";
|
|
312
|
+
const _DHZI = "DisassociateHostedZoneInput";
|
|
313
|
+
const _DHZO = "DisassociateHostedZoneOutput";
|
|
314
|
+
const _DNSV = "DNSViews";
|
|
315
|
+
const _DNSVS = "DNSViewSummary";
|
|
316
|
+
const _EDNSV = "EnableDNSView";
|
|
317
|
+
const _EDNSVI = "EnableDNSViewInput";
|
|
318
|
+
const _EDNSVO = "EnableDNSViewOutput";
|
|
319
|
+
const _F = "Filters";
|
|
320
|
+
const _FDL = "FirewallDomainLists";
|
|
321
|
+
const _FDLI = "FirewallDomainListsItem";
|
|
322
|
+
const _FR = "FirewallRules";
|
|
323
|
+
const _FRI = "FirewallRulesItem";
|
|
324
|
+
const _GAS = "GetAccessSource";
|
|
325
|
+
const _GASI = "GetAccessSourceInput";
|
|
326
|
+
const _GASO = "GetAccessSourceOutput";
|
|
327
|
+
const _GAT = "GetAccessToken";
|
|
328
|
+
const _GATI = "GetAccessTokenInput";
|
|
329
|
+
const _GATO = "GetAccessTokenOutput";
|
|
330
|
+
const _GDNSV = "GetDNSView";
|
|
331
|
+
const _GDNSVI = "GetDNSViewInput";
|
|
332
|
+
const _GDNSVO = "GetDNSViewOutput";
|
|
333
|
+
const _GFDL = "GetFirewallDomainList";
|
|
334
|
+
const _GFDLI = "GetFirewallDomainListInput";
|
|
335
|
+
const _GFDLO = "GetFirewallDomainListOutput";
|
|
336
|
+
const _GFR = "GetFirewallRule";
|
|
337
|
+
const _GFRI = "GetFirewallRuleInput";
|
|
338
|
+
const _GFRO = "GetFirewallRuleOutput";
|
|
339
|
+
const _GGR = "GetGlobalResolver";
|
|
340
|
+
const _GGRI = "GetGlobalResolverInput";
|
|
341
|
+
const _GGRO = "GetGlobalResolverOutput";
|
|
342
|
+
const _GHZA = "GetHostedZoneAssociation";
|
|
343
|
+
const _GHZAI = "GetHostedZoneAssociationInput";
|
|
344
|
+
const _GHZAO = "GetHostedZoneAssociationOutput";
|
|
345
|
+
const _GMFDL = "GetManagedFirewallDomainList";
|
|
346
|
+
const _GMFDLI = "GetManagedFirewallDomainListInput";
|
|
347
|
+
const _GMFDLO = "GetManagedFirewallDomainListOutput";
|
|
348
|
+
const _GR = "GlobalResolvers";
|
|
349
|
+
const _GRI = "GlobalResolversItem";
|
|
350
|
+
const _HZA = "HostedZoneAssociations";
|
|
351
|
+
const _HZAS = "HostedZoneAssociationSummary";
|
|
352
|
+
const _IFD = "ImportFirewallDomains";
|
|
353
|
+
const _IFDI = "ImportFirewallDomainsInput";
|
|
354
|
+
const _IFDO = "ImportFirewallDomainsOutput";
|
|
355
|
+
const _ISE = "InternalServerException";
|
|
356
|
+
const _LAS = "ListAccessSources";
|
|
357
|
+
const _LASI = "ListAccessSourcesInput";
|
|
358
|
+
const _LASO = "ListAccessSourcesOutput";
|
|
359
|
+
const _LAT = "ListAccessTokens";
|
|
360
|
+
const _LATI = "ListAccessTokensInput";
|
|
361
|
+
const _LATO = "ListAccessTokensOutput";
|
|
362
|
+
const _LDNSV = "ListDNSViews";
|
|
363
|
+
const _LDNSVI = "ListDNSViewsInput";
|
|
364
|
+
const _LDNSVO = "ListDNSViewsOutput";
|
|
365
|
+
const _LFD = "ListFirewallDomains";
|
|
366
|
+
const _LFDI = "ListFirewallDomainsInput";
|
|
367
|
+
const _LFDL = "ListFirewallDomainLists";
|
|
368
|
+
const _LFDLI = "ListFirewallDomainListsInput";
|
|
369
|
+
const _LFDLO = "ListFirewallDomainListsOutput";
|
|
370
|
+
const _LFDO = "ListFirewallDomainsOutput";
|
|
371
|
+
const _LFR = "ListFirewallRules";
|
|
372
|
+
const _LFRI = "ListFirewallRulesInput";
|
|
373
|
+
const _LFRO = "ListFirewallRulesOutput";
|
|
374
|
+
const _LGR = "ListGlobalResolvers";
|
|
375
|
+
const _LGRI = "ListGlobalResolversInput";
|
|
376
|
+
const _LGRO = "ListGlobalResolversOutput";
|
|
377
|
+
const _LHZA = "ListHostedZoneAssociations";
|
|
378
|
+
const _LHZAI = "ListHostedZoneAssociationsInput";
|
|
379
|
+
const _LHZAO = "ListHostedZoneAssociationsOutput";
|
|
380
|
+
const _LMFDL = "ListManagedFirewallDomainLists";
|
|
381
|
+
const _LMFDLI = "ListManagedFirewallDomainListsInput";
|
|
382
|
+
const _LMFDLO = "ListManagedFirewallDomainListsOutput";
|
|
383
|
+
const _LTFR = "ListTagsForResource";
|
|
384
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
385
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
386
|
+
const _MFDL = "ManagedFirewallDomainLists";
|
|
387
|
+
const _MFDLI = "ManagedFirewallDomainListsItem";
|
|
388
|
+
const _RA = "Retry-After";
|
|
389
|
+
const _RNFE = "ResourceNotFoundException";
|
|
390
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
391
|
+
const _TE = "ThrottlingException";
|
|
392
|
+
const _TR = "TagResource";
|
|
393
|
+
const _TRR = "TagResourceRequest";
|
|
394
|
+
const _TRRa = "TagResourceResponse";
|
|
395
|
+
const _UAS = "UpdateAccessSource";
|
|
396
|
+
const _UASI = "UpdateAccessSourceInput";
|
|
397
|
+
const _UASO = "UpdateAccessSourceOutput";
|
|
398
|
+
const _UAT = "UpdateAccessToken";
|
|
399
|
+
const _UATI = "UpdateAccessTokenInput";
|
|
400
|
+
const _UATO = "UpdateAccessTokenOutput";
|
|
401
|
+
const _UDNSV = "UpdateDNSView";
|
|
402
|
+
const _UDNSVI = "UpdateDNSViewInput";
|
|
403
|
+
const _UDNSVO = "UpdateDNSViewOutput";
|
|
404
|
+
const _UFD = "UpdateFirewallDomains";
|
|
405
|
+
const _UFDI = "UpdateFirewallDomainsInput";
|
|
406
|
+
const _UFDO = "UpdateFirewallDomainsOutput";
|
|
407
|
+
const _UFR = "UpdateFirewallRule";
|
|
408
|
+
const _UFRI = "UpdateFirewallRuleInput";
|
|
409
|
+
const _UFRO = "UpdateFirewallRuleOutput";
|
|
410
|
+
const _UGR = "UpdateGlobalResolver";
|
|
411
|
+
const _UGRI = "UpdateGlobalResolverInput";
|
|
412
|
+
const _UGRO = "UpdateGlobalResolverOutput";
|
|
413
|
+
const _UHZA = "UpdateHostedZoneAssociation";
|
|
414
|
+
const _UHZAI = "UpdateHostedZoneAssociationInput";
|
|
415
|
+
const _UHZAO = "UpdateHostedZoneAssociationOutput";
|
|
416
|
+
const _UR = "UntagResource";
|
|
417
|
+
const _URR = "UntagResourceRequest";
|
|
418
|
+
const _URRn = "UntagResourceResponse";
|
|
419
|
+
const _VE = "ValidationException";
|
|
420
|
+
const _VEF = "ValidationExceptionField";
|
|
421
|
+
const _VEFL = "ValidationExceptionFieldList";
|
|
422
|
+
const _a = "arn";
|
|
423
|
+
const _aS = "accessSources";
|
|
424
|
+
const _aSI = "accessSourceId";
|
|
425
|
+
const _aT = "accessTokens";
|
|
426
|
+
const _aTI = "accessTokenId";
|
|
427
|
+
const _ac = "action";
|
|
428
|
+
const _bOD = "blockOverrideDomain";
|
|
429
|
+
const _bODT = "blockOverrideDnsType";
|
|
430
|
+
const _bOT = "blockOverrideTtl";
|
|
431
|
+
const _bR = "blockResponse";
|
|
432
|
+
const _c = "client";
|
|
433
|
+
const _cA = "createdAt";
|
|
434
|
+
const _cT = "clientToken";
|
|
435
|
+
const _cTo = "confidenceThreshold";
|
|
436
|
+
const _ci = "cidr";
|
|
437
|
+
const _co = "code";
|
|
438
|
+
const _d = "description";
|
|
439
|
+
const _dA = "deletedAt";
|
|
440
|
+
const _dAP = "dnsAdvancedProtection";
|
|
441
|
+
const _dC = "domainCount";
|
|
442
|
+
const _dFU = "domainFileUrl";
|
|
443
|
+
const _dN = "dnsName";
|
|
444
|
+
const _dV = "dnssecValidation";
|
|
445
|
+
const _dVI = "dnsViewId";
|
|
446
|
+
const _dVn = "dnsViews";
|
|
447
|
+
const _di = "dnsview_id";
|
|
448
|
+
const _do = "domains";
|
|
449
|
+
const _e = "error";
|
|
450
|
+
const _eA = "expiresAt";
|
|
451
|
+
const _eCS = "ednsClientSubnet";
|
|
452
|
+
const _f = "failures";
|
|
453
|
+
const _fDL = "firewallDomainLists";
|
|
454
|
+
const _fDLI = "firewallDomainListId";
|
|
455
|
+
const _fL = "fieldList";
|
|
456
|
+
const _fR = "firewallRules";
|
|
457
|
+
const _fRFO = "firewallRulesFailOpen";
|
|
458
|
+
const _fRI = "firewallRuleId";
|
|
459
|
+
const _fRi = "firewallRule";
|
|
460
|
+
const _fi = "filters";
|
|
461
|
+
const _gR = "globalResolvers";
|
|
462
|
+
const _gRI = "globalResolverId";
|
|
463
|
+
const _gri = "global_resolver_id";
|
|
464
|
+
const _h = "http";
|
|
465
|
+
const _hE = "httpError";
|
|
466
|
+
const _hH = "httpHeader";
|
|
467
|
+
const _hQ = "httpQuery";
|
|
468
|
+
const _hZA = "hostedZoneAssociations";
|
|
469
|
+
const _hZAI = "hostedZoneAssociationId";
|
|
470
|
+
const _hZI = "hostedZoneId";
|
|
471
|
+
const _hZN = "hostedZoneName";
|
|
472
|
+
const _i = "id";
|
|
473
|
+
const _iA = "ipv4Addresses";
|
|
474
|
+
const _iAT = "ipAddressType";
|
|
475
|
+
const _iAp = "ipv6Addresses";
|
|
476
|
+
const _m = "message";
|
|
477
|
+
const _mDLN = "managedDomainListName";
|
|
478
|
+
const _mFDL = "managedFirewallDomainLists";
|
|
479
|
+
const _mFDLI = "managedFirewallDomainListId";
|
|
480
|
+
const _mFDLT = "managedFirewallDomainListType";
|
|
481
|
+
const _mLT = "managedListType";
|
|
482
|
+
const _mR = "maxResults";
|
|
483
|
+
const _mr = "max_results";
|
|
484
|
+
const _n = "name";
|
|
485
|
+
const _nT = "nextToken";
|
|
486
|
+
const _nt = "next_token";
|
|
487
|
+
const _o = "operation";
|
|
488
|
+
const _oR = "observabilityRegion";
|
|
489
|
+
const _p = "protocol";
|
|
490
|
+
const _pr = "priority";
|
|
491
|
+
const _qC = "quotaCode";
|
|
492
|
+
const _qT = "qType";
|
|
493
|
+
const _qTu = "queryType";
|
|
494
|
+
const _r = "reason";
|
|
495
|
+
const _rA = "resourceArn";
|
|
496
|
+
const _rAS = "retryAfterSeconds";
|
|
497
|
+
const _rI = "resourceId";
|
|
498
|
+
const _rT = "resourceType";
|
|
499
|
+
const _re = "regions";
|
|
500
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.route53globalresolver";
|
|
501
|
+
const _sC = "serviceCode";
|
|
502
|
+
const _sM = "statusMessage";
|
|
503
|
+
const _se = "server";
|
|
504
|
+
const _st = "status";
|
|
505
|
+
const _su = "successes";
|
|
506
|
+
const _t = "tags";
|
|
507
|
+
const _tK = "tagKeys";
|
|
508
|
+
const _uA = "updatedAt";
|
|
509
|
+
const _v = "value";
|
|
510
|
+
const n0 = "com.amazonaws.route53globalresolver";
|
|
511
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
512
|
+
var Route53GlobalResolverServiceException$ = [-3, _s, "Route53GlobalResolverServiceException", 0, [], []];
|
|
513
|
+
_s_registry.registerError(Route53GlobalResolverServiceException$, Route53GlobalResolverServiceException);
|
|
514
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
515
|
+
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
516
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
517
|
+
[_m],
|
|
518
|
+
[0], 1
|
|
519
|
+
];
|
|
520
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
521
|
+
var ConflictException$ = [-3, n0, _CE,
|
|
522
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
523
|
+
[_m, _rT, _rI],
|
|
524
|
+
[0, 0, 0], 2
|
|
525
|
+
];
|
|
526
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
527
|
+
var InternalServerException$ = [-3, n0, _ISE,
|
|
528
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
529
|
+
[_m, _rAS],
|
|
530
|
+
[0, [1, { [_hH]: _RA }]], 1
|
|
531
|
+
];
|
|
532
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
533
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
534
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
535
|
+
[_m, _rT, _rI],
|
|
536
|
+
[0, 0, 0], 2
|
|
537
|
+
];
|
|
538
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
539
|
+
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
540
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
541
|
+
[_m, _rT, _rI, _sC, _qC],
|
|
542
|
+
[0, 0, 0, 0, 0], 2
|
|
543
|
+
];
|
|
544
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
545
|
+
var ThrottlingException$ = [-3, n0, _TE,
|
|
546
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
547
|
+
[_m, _sC, _qC, _rAS],
|
|
548
|
+
[0, 0, 0, [1, { [_hH]: _RA }]], 1
|
|
549
|
+
];
|
|
550
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
551
|
+
var ValidationException$ = [-3, n0, _VE,
|
|
552
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
553
|
+
[_m, _r, _fL],
|
|
554
|
+
[0, 0, () => ValidationExceptionFieldList], 2
|
|
555
|
+
];
|
|
556
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
557
|
+
const errorTypeRegistries = [
|
|
558
|
+
_s_registry,
|
|
559
|
+
n0_registry,
|
|
560
|
+
];
|
|
561
|
+
var AccessTokenValue = [0, n0, _ATV, 8, 0];
|
|
562
|
+
var AccessSourcesItem$ = [3, n0, _ASI,
|
|
563
|
+
0,
|
|
564
|
+
[_a, _ci, _cA, _i, _iAT, _dVI, _p, _st, _uA, _n],
|
|
565
|
+
[0, 0, 5, 0, 0, 0, 0, 0, 5, 0], 9
|
|
566
|
+
];
|
|
567
|
+
var AccessTokenItem$ = [3, n0, _ATI,
|
|
568
|
+
0,
|
|
569
|
+
[_i, _a, _cA, _dVI, _eA, _gRI, _st, _uA, _n],
|
|
570
|
+
[0, 0, 5, 0, 5, 0, 0, 5, 0], 8
|
|
571
|
+
];
|
|
572
|
+
var AssociateHostedZoneInput$ = [3, n0, _AHZI,
|
|
573
|
+
0,
|
|
574
|
+
[_hZI, _rA, _n],
|
|
575
|
+
[[0, 1], 0, 0], 3
|
|
576
|
+
];
|
|
577
|
+
var AssociateHostedZoneOutput$ = [3, n0, _AHZO,
|
|
578
|
+
0,
|
|
579
|
+
[_i, _rA, _hZI, _hZN, _n, _cA, _uA, _st],
|
|
580
|
+
[0, 0, 0, 0, 0, 5, 5, 0], 8
|
|
581
|
+
];
|
|
582
|
+
var BatchCreateFirewallRuleInput$ = [3, n0, _BCFRI,
|
|
583
|
+
0,
|
|
584
|
+
[_fR],
|
|
585
|
+
[() => BatchCreateFirewallRuleInputItems], 1
|
|
586
|
+
];
|
|
587
|
+
var BatchCreateFirewallRuleInputItem$ = [3, n0, _BCFRII,
|
|
588
|
+
0,
|
|
589
|
+
[_ac, _cT, _n, _dVI, _bODT, _bOD, _bOT, _bR, _cTo, _d, _dAP, _fDLI, _pr, _qT],
|
|
590
|
+
[0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0], 4
|
|
591
|
+
];
|
|
592
|
+
var BatchCreateFirewallRuleOutput$ = [3, n0, _BCFRO,
|
|
593
|
+
0,
|
|
594
|
+
[_f, _su],
|
|
595
|
+
[() => BatchCreateFirewallRuleOutputItems, () => BatchCreateFirewallRuleOutputItems], 2
|
|
596
|
+
];
|
|
597
|
+
var BatchCreateFirewallRuleOutputItem$ = [3, n0, _BCFROI,
|
|
598
|
+
0,
|
|
599
|
+
[_fRi, _co, _m],
|
|
600
|
+
[() => BatchCreateFirewallRuleResult$, 1, 0], 2
|
|
601
|
+
];
|
|
602
|
+
var BatchCreateFirewallRuleResult$ = [3, n0, _BCFRR,
|
|
603
|
+
0,
|
|
604
|
+
[_ac, _cT, _n, _dVI, _bODT, _bOD, _bOT, _bR, _cTo, _cA, _d, _dAP, _fDLI, _i, _mDLN, _pr, _qTu, _st, _uA],
|
|
605
|
+
[0, 0, 0, 0, 0, 0, 1, 0, 0, 5, 0, 0, 0, 0, 0, 1, 0, 0, 5], 4
|
|
606
|
+
];
|
|
607
|
+
var BatchDeleteFirewallRuleInput$ = [3, n0, _BDFRI,
|
|
608
|
+
0,
|
|
609
|
+
[_fR],
|
|
610
|
+
[() => BatchDeleteFirewallRuleInputItems], 1
|
|
611
|
+
];
|
|
612
|
+
var BatchDeleteFirewallRuleInputItem$ = [3, n0, _BDFRII,
|
|
613
|
+
0,
|
|
614
|
+
[_fRI],
|
|
615
|
+
[0], 1
|
|
616
|
+
];
|
|
617
|
+
var BatchDeleteFirewallRuleOutput$ = [3, n0, _BDFRO,
|
|
618
|
+
0,
|
|
619
|
+
[_f, _su],
|
|
620
|
+
[() => BatchDeleteFirewallRuleOutputItems, () => BatchDeleteFirewallRuleOutputItems], 2
|
|
621
|
+
];
|
|
622
|
+
var BatchDeleteFirewallRuleOutputItem$ = [3, n0, _BDFROI,
|
|
623
|
+
0,
|
|
624
|
+
[_fRi, _co, _m],
|
|
625
|
+
[() => BatchDeleteFirewallRuleResult$, 1, 0], 2
|
|
626
|
+
];
|
|
627
|
+
var BatchDeleteFirewallRuleResult$ = [3, n0, _BDFRR,
|
|
628
|
+
0,
|
|
629
|
+
[_i, _cT, _n, _st],
|
|
630
|
+
[0, 0, 0, 0], 1
|
|
631
|
+
];
|
|
632
|
+
var BatchUpdateFirewallRuleInput$ = [3, n0, _BUFRI,
|
|
633
|
+
0,
|
|
634
|
+
[_fR],
|
|
635
|
+
[() => BatchUpdateFirewallRuleInputItems], 1
|
|
636
|
+
];
|
|
637
|
+
var BatchUpdateFirewallRuleInputItem$ = [3, n0, _BUFRII,
|
|
638
|
+
0,
|
|
639
|
+
[_fRI, _ac, _bODT, _bOD, _bOT, _bR, _cTo, _d, _dAP, _n, _pr],
|
|
640
|
+
[0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1], 1
|
|
641
|
+
];
|
|
642
|
+
var BatchUpdateFirewallRuleOutput$ = [3, n0, _BUFRO,
|
|
643
|
+
0,
|
|
644
|
+
[_f, _su],
|
|
645
|
+
[() => BatchUpdateFirewallRuleOutputItems, () => BatchUpdateFirewallRuleOutputItems], 2
|
|
646
|
+
];
|
|
647
|
+
var BatchUpdateFirewallRuleOutputItem$ = [3, n0, _BUFROI,
|
|
648
|
+
0,
|
|
649
|
+
[_fRi, _co, _m],
|
|
650
|
+
[() => BatchUpdateFirewallRuleResult$, 1, 0], 2
|
|
651
|
+
];
|
|
652
|
+
var BatchUpdateFirewallRuleResult$ = [3, n0, _BUFRR,
|
|
653
|
+
0,
|
|
654
|
+
[_i, _ac, _bODT, _bOD, _bOT, _bR, _cT, _cTo, _cA, _d, _dAP, _fDLI, _n, _pr, _dVI, _qTu, _st, _uA],
|
|
655
|
+
[0, 0, 0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 0, 1, 0, 0, 0, 5], 1
|
|
656
|
+
];
|
|
657
|
+
var CreateAccessSourceInput$ = [3, n0, _CASI,
|
|
658
|
+
0,
|
|
659
|
+
[_ci, _dVI, _p, _cT, _iAT, _n, _t],
|
|
660
|
+
[0, 0, 0, [0, 4], 0, 0, 128 | 0], 3
|
|
661
|
+
];
|
|
662
|
+
var CreateAccessSourceOutput$ = [3, n0, _CASO,
|
|
663
|
+
0,
|
|
664
|
+
[_a, _ci, _cA, _i, _iAT, _dVI, _p, _st, _uA, _n],
|
|
665
|
+
[0, 0, 5, 0, 0, 0, 0, 0, 5, 0], 9
|
|
666
|
+
];
|
|
667
|
+
var CreateAccessTokenInput$ = [3, n0, _CATI,
|
|
668
|
+
0,
|
|
669
|
+
[_dVI, _cT, _eA, _n, _t],
|
|
670
|
+
[[0, 1], [0, 4], 5, 0, 128 | 0], 1
|
|
671
|
+
];
|
|
672
|
+
var CreateAccessTokenOutput$ = [3, n0, _CATO,
|
|
673
|
+
0,
|
|
674
|
+
[_i, _a, _cA, _dVI, _eA, _st, _v, _cT, _n],
|
|
675
|
+
[0, 0, 5, 0, 5, 0, [() => AccessTokenValue, 0], 0, 0], 7
|
|
676
|
+
];
|
|
677
|
+
var CreateDNSViewInput$ = [3, n0, _CDNSVI,
|
|
678
|
+
0,
|
|
679
|
+
[_gRI, _n, _cT, _dV, _eCS, _fRFO, _d, _t],
|
|
680
|
+
[[0, 1], 0, [0, 4], 0, 0, 0, 0, 128 | 0], 2
|
|
681
|
+
];
|
|
682
|
+
var CreateDNSViewOutput$ = [3, n0, _CDNSVO,
|
|
683
|
+
0,
|
|
684
|
+
[_i, _a, _dV, _eCS, _fRFO, _n, _gRI, _cA, _uA, _st, _cT, _d],
|
|
685
|
+
[0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0], 10
|
|
686
|
+
];
|
|
687
|
+
var CreateFirewallDomainListInput$ = [3, n0, _CFDLI,
|
|
688
|
+
0,
|
|
689
|
+
[_gRI, _n, _cT, _d, _t],
|
|
690
|
+
[[0, 1], 0, [0, 4], 0, 128 | 0], 2
|
|
691
|
+
];
|
|
692
|
+
var CreateFirewallDomainListOutput$ = [3, n0, _CFDLO,
|
|
693
|
+
0,
|
|
694
|
+
[_a, _gRI, _cA, _dC, _i, _n, _st, _uA, _d],
|
|
695
|
+
[0, 0, 5, 1, 0, 0, 0, 5, 0], 8
|
|
696
|
+
];
|
|
697
|
+
var CreateFirewallRuleInput$ = [3, n0, _CFRI,
|
|
698
|
+
0,
|
|
699
|
+
[_ac, _n, _dVI, _bODT, _bOD, _bOT, _bR, _cT, _cTo, _d, _dAP, _fDLI, _pr, _qT],
|
|
700
|
+
[0, 0, 0, 0, 0, 1, 0, [0, 4], 0, 0, 0, 0, 1, 0], 3
|
|
701
|
+
];
|
|
702
|
+
var CreateFirewallRuleOutput$ = [3, n0, _CFRO,
|
|
703
|
+
0,
|
|
704
|
+
[_ac, _cA, _i, _n, _pr, _dVI, _st, _uA, _bODT, _bOD, _bOT, _bR, _cTo, _d, _dAP, _fDLI, _qTu],
|
|
705
|
+
[0, 5, 0, 0, 1, 0, 0, 5, 0, 0, 1, 0, 0, 0, 0, 0, 0], 8
|
|
706
|
+
];
|
|
707
|
+
var CreateGlobalResolverInput$ = [3, n0, _CGRI,
|
|
708
|
+
0,
|
|
709
|
+
[_n, _re, _cT, _d, _iAT, _oR, _t],
|
|
710
|
+
[0, 64 | 0, [0, 4], 0, 0, 0, 128 | 0], 2
|
|
711
|
+
];
|
|
712
|
+
var CreateGlobalResolverOutput$ = [3, n0, _CGRO,
|
|
713
|
+
0,
|
|
714
|
+
[_i, _a, _cT, _cA, _dN, _iA, _n, _re, _st, _uA, _d, _iAT, _iAp, _oR],
|
|
715
|
+
[0, 0, 0, 5, 0, 64 | 0, 0, 64 | 0, 0, 5, 0, 0, 64 | 0, 0], 10
|
|
716
|
+
];
|
|
717
|
+
var DeleteAccessSourceInput$ = [3, n0, _DASI,
|
|
718
|
+
0,
|
|
719
|
+
[_aSI],
|
|
720
|
+
[[0, 1]], 1
|
|
721
|
+
];
|
|
722
|
+
var DeleteAccessSourceOutput$ = [3, n0, _DASO,
|
|
723
|
+
0,
|
|
724
|
+
[_a, _ci, _cA, _i, _iAT, _dVI, _p, _st, _uA, _n],
|
|
725
|
+
[0, 0, 5, 0, 0, 0, 0, 0, 5, 0], 9
|
|
726
|
+
];
|
|
727
|
+
var DeleteAccessTokenInput$ = [3, n0, _DATI,
|
|
728
|
+
0,
|
|
729
|
+
[_aTI],
|
|
730
|
+
[[0, 1]], 1
|
|
731
|
+
];
|
|
732
|
+
var DeleteAccessTokenOutput$ = [3, n0, _DATO,
|
|
733
|
+
0,
|
|
734
|
+
[_i, _st, _dA],
|
|
735
|
+
[0, 0, 5], 3
|
|
736
|
+
];
|
|
737
|
+
var DeleteDNSViewInput$ = [3, n0, _DDNSVI,
|
|
738
|
+
0,
|
|
739
|
+
[_dVI],
|
|
740
|
+
[[0, 1]], 1
|
|
741
|
+
];
|
|
742
|
+
var DeleteDNSViewOutput$ = [3, n0, _DDNSVO,
|
|
743
|
+
0,
|
|
744
|
+
[_i, _a, _dV, _eCS, _fRFO, _n, _gRI, _cA, _uA, _st, _cT, _d],
|
|
745
|
+
[0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0], 10
|
|
746
|
+
];
|
|
747
|
+
var DeleteFirewallDomainListInput$ = [3, n0, _DFDLI,
|
|
748
|
+
0,
|
|
749
|
+
[_fDLI],
|
|
750
|
+
[[0, 1]], 1
|
|
751
|
+
];
|
|
752
|
+
var DeleteFirewallDomainListOutput$ = [3, n0, _DFDLO,
|
|
753
|
+
0,
|
|
754
|
+
[_a, _i, _n, _st],
|
|
755
|
+
[0, 0, 0, 0], 4
|
|
756
|
+
];
|
|
757
|
+
var DeleteFirewallRuleInput$ = [3, n0, _DFRI,
|
|
758
|
+
0,
|
|
759
|
+
[_fRI],
|
|
760
|
+
[[0, 1]], 1
|
|
761
|
+
];
|
|
762
|
+
var DeleteFirewallRuleOutput$ = [3, n0, _DFRO,
|
|
763
|
+
0,
|
|
764
|
+
[_ac, _cA, _i, _n, _pr, _dVI, _st, _uA, _bODT, _bOD, _bOT, _bR, _cTo, _d, _dAP, _fDLI, _qTu],
|
|
765
|
+
[0, 5, 0, 0, 1, 0, 0, 5, 0, 0, 1, 0, 0, 0, 0, 0, 0], 8
|
|
766
|
+
];
|
|
767
|
+
var DeleteGlobalResolverInput$ = [3, n0, _DGRI,
|
|
768
|
+
0,
|
|
769
|
+
[_gRI],
|
|
770
|
+
[[0, 1]], 1
|
|
771
|
+
];
|
|
772
|
+
var DeleteGlobalResolverOutput$ = [3, n0, _DGRO,
|
|
773
|
+
0,
|
|
774
|
+
[_i, _a, _cT, _dN, _n, _re, _cA, _uA, _st, _iA, _oR, _d, _iAp, _iAT],
|
|
775
|
+
[0, 0, 0, 0, 0, 64 | 0, 5, 5, 0, 64 | 0, 0, 0, 64 | 0, 0], 10
|
|
776
|
+
];
|
|
777
|
+
var DisableDNSViewInput$ = [3, n0, _DDNSVIi,
|
|
778
|
+
0,
|
|
779
|
+
[_dVI],
|
|
780
|
+
[[0, 1]], 1
|
|
781
|
+
];
|
|
782
|
+
var DisableDNSViewOutput$ = [3, n0, _DDNSVOi,
|
|
783
|
+
0,
|
|
784
|
+
[_i, _a, _dV, _eCS, _fRFO, _n, _gRI, _cA, _uA, _st, _cT, _d],
|
|
785
|
+
[0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0], 10
|
|
786
|
+
];
|
|
787
|
+
var DisassociateHostedZoneInput$ = [3, n0, _DHZI,
|
|
788
|
+
0,
|
|
789
|
+
[_hZI, _rA],
|
|
790
|
+
[[0, 1], [0, 1]], 2
|
|
791
|
+
];
|
|
792
|
+
var DisassociateHostedZoneOutput$ = [3, n0, _DHZO,
|
|
793
|
+
0,
|
|
794
|
+
[_i, _rA, _hZI, _hZN, _n, _cA, _uA, _st],
|
|
795
|
+
[0, 0, 0, 0, 0, 5, 5, 0], 8
|
|
796
|
+
];
|
|
797
|
+
var DNSViewSummary$ = [3, n0, _DNSVS,
|
|
798
|
+
0,
|
|
799
|
+
[_i, _a, _cT, _dV, _eCS, _fRFO, _n, _gRI, _cA, _uA, _st, _d],
|
|
800
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0], 11
|
|
801
|
+
];
|
|
802
|
+
var EnableDNSViewInput$ = [3, n0, _EDNSVI,
|
|
803
|
+
0,
|
|
804
|
+
[_dVI],
|
|
805
|
+
[[0, 1]], 1
|
|
806
|
+
];
|
|
807
|
+
var EnableDNSViewOutput$ = [3, n0, _EDNSVO,
|
|
808
|
+
0,
|
|
809
|
+
[_i, _a, _dV, _eCS, _fRFO, _n, _gRI, _cA, _uA, _st, _cT, _d],
|
|
810
|
+
[0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0], 10
|
|
811
|
+
];
|
|
812
|
+
var FirewallDomainListsItem$ = [3, n0, _FDLI,
|
|
813
|
+
0,
|
|
814
|
+
[_a, _gRI, _cA, _i, _n, _st, _uA, _d],
|
|
815
|
+
[0, 0, 5, 0, 0, 0, 5, 0], 7
|
|
816
|
+
];
|
|
817
|
+
var FirewallRulesItem$ = [3, n0, _FRI,
|
|
818
|
+
0,
|
|
819
|
+
[_ac, _cA, _i, _n, _pr, _dVI, _st, _uA, _bODT, _bOD, _bOT, _bR, _cTo, _d, _dAP, _fDLI, _qTu],
|
|
820
|
+
[0, 5, 0, 0, 1, 0, 0, 5, 0, 0, 1, 0, 0, 0, 0, 0, 0], 8
|
|
821
|
+
];
|
|
822
|
+
var GetAccessSourceInput$ = [3, n0, _GASI,
|
|
823
|
+
0,
|
|
824
|
+
[_aSI],
|
|
825
|
+
[[0, 1]], 1
|
|
826
|
+
];
|
|
827
|
+
var GetAccessSourceOutput$ = [3, n0, _GASO,
|
|
828
|
+
0,
|
|
829
|
+
[_a, _ci, _cA, _i, _iAT, _dVI, _p, _st, _uA, _n],
|
|
830
|
+
[0, 0, 5, 0, 0, 0, 0, 0, 5, 0], 9
|
|
831
|
+
];
|
|
832
|
+
var GetAccessTokenInput$ = [3, n0, _GATI,
|
|
833
|
+
0,
|
|
834
|
+
[_aTI],
|
|
835
|
+
[[0, 1]], 1
|
|
836
|
+
];
|
|
837
|
+
var GetAccessTokenOutput$ = [3, n0, _GATO,
|
|
838
|
+
0,
|
|
839
|
+
[_i, _a, _cA, _dVI, _eA, _gRI, _st, _uA, _v, _cT, _n],
|
|
840
|
+
[0, 0, 5, 0, 5, 0, 0, 5, [() => AccessTokenValue, 0], 0, 0], 9
|
|
841
|
+
];
|
|
842
|
+
var GetDNSViewInput$ = [3, n0, _GDNSVI,
|
|
843
|
+
0,
|
|
844
|
+
[_dVI],
|
|
845
|
+
[[0, 1]], 1
|
|
846
|
+
];
|
|
847
|
+
var GetDNSViewOutput$ = [3, n0, _GDNSVO,
|
|
848
|
+
0,
|
|
849
|
+
[_i, _a, _dV, _eCS, _fRFO, _n, _gRI, _cA, _uA, _st, _cT, _d],
|
|
850
|
+
[0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0], 10
|
|
851
|
+
];
|
|
852
|
+
var GetFirewallDomainListInput$ = [3, n0, _GFDLI,
|
|
853
|
+
0,
|
|
854
|
+
[_fDLI],
|
|
855
|
+
[[0, 1]], 1
|
|
856
|
+
];
|
|
857
|
+
var GetFirewallDomainListOutput$ = [3, n0, _GFDLO,
|
|
858
|
+
0,
|
|
859
|
+
[_a, _gRI, _cA, _dC, _i, _n, _st, _uA, _cT, _d, _sM],
|
|
860
|
+
[0, 0, 5, 1, 0, 0, 0, 5, 0, 0, 0], 8
|
|
861
|
+
];
|
|
862
|
+
var GetFirewallRuleInput$ = [3, n0, _GFRI,
|
|
863
|
+
0,
|
|
864
|
+
[_fRI],
|
|
865
|
+
[[0, 1]], 1
|
|
866
|
+
];
|
|
867
|
+
var GetFirewallRuleOutput$ = [3, n0, _GFRO,
|
|
868
|
+
0,
|
|
869
|
+
[_ac, _cA, _i, _n, _pr, _dVI, _st, _uA, _bODT, _bOD, _bOT, _bR, _cTo, _d, _dAP, _fDLI, _qTu],
|
|
870
|
+
[0, 5, 0, 0, 1, 0, 0, 5, 0, 0, 1, 0, 0, 0, 0, 0, 0], 8
|
|
871
|
+
];
|
|
872
|
+
var GetGlobalResolverInput$ = [3, n0, _GGRI,
|
|
873
|
+
0,
|
|
874
|
+
[_gRI],
|
|
875
|
+
[[0, 1]], 1
|
|
876
|
+
];
|
|
877
|
+
var GetGlobalResolverOutput$ = [3, n0, _GGRO,
|
|
878
|
+
0,
|
|
879
|
+
[_i, _a, _cT, _dN, _n, _re, _cA, _uA, _st, _iA, _oR, _d, _iAp, _iAT],
|
|
880
|
+
[0, 0, 0, 0, 0, 64 | 0, 5, 5, 0, 64 | 0, 0, 0, 64 | 0, 0], 10
|
|
881
|
+
];
|
|
882
|
+
var GetHostedZoneAssociationInput$ = [3, n0, _GHZAI,
|
|
883
|
+
0,
|
|
884
|
+
[_hZAI],
|
|
885
|
+
[[0, 1]], 1
|
|
886
|
+
];
|
|
887
|
+
var GetHostedZoneAssociationOutput$ = [3, n0, _GHZAO,
|
|
888
|
+
0,
|
|
889
|
+
[_i, _rA, _hZI, _hZN, _n, _cA, _uA, _st],
|
|
890
|
+
[0, 0, 0, 0, 0, 5, 5, 0], 8
|
|
891
|
+
];
|
|
892
|
+
var GetManagedFirewallDomainListInput$ = [3, n0, _GMFDLI,
|
|
893
|
+
0,
|
|
894
|
+
[_mFDLI],
|
|
895
|
+
[[0, 1]], 1
|
|
896
|
+
];
|
|
897
|
+
var GetManagedFirewallDomainListOutput$ = [3, n0, _GMFDLO,
|
|
898
|
+
0,
|
|
899
|
+
[_i, _n, _mLT, _d],
|
|
900
|
+
[0, 0, 0, 0], 3
|
|
901
|
+
];
|
|
902
|
+
var GlobalResolversItem$ = [3, n0, _GRI,
|
|
903
|
+
0,
|
|
904
|
+
[_i, _a, _cT, _dN, _n, _re, _cA, _uA, _st, _iA, _oR, _d, _iAp, _iAT],
|
|
905
|
+
[0, 0, 0, 0, 0, 64 | 0, 5, 5, 0, 64 | 0, 0, 0, 64 | 0, 0], 10
|
|
906
|
+
];
|
|
907
|
+
var HostedZoneAssociationSummary$ = [3, n0, _HZAS,
|
|
908
|
+
0,
|
|
909
|
+
[_i, _rA, _hZI, _hZN, _n, _cA, _uA, _st],
|
|
910
|
+
[0, 0, 0, 0, 0, 5, 5, 0], 8
|
|
911
|
+
];
|
|
912
|
+
var ImportFirewallDomainsInput$ = [3, n0, _IFDI,
|
|
913
|
+
0,
|
|
914
|
+
[_dFU, _fDLI, _o],
|
|
915
|
+
[0, [0, 1], 0], 3
|
|
916
|
+
];
|
|
917
|
+
var ImportFirewallDomainsOutput$ = [3, n0, _IFDO,
|
|
918
|
+
0,
|
|
919
|
+
[_i, _n, _st],
|
|
920
|
+
[0, 0, 0], 3
|
|
921
|
+
];
|
|
922
|
+
var ListAccessSourcesInput$ = [3, n0, _LASI,
|
|
923
|
+
0,
|
|
924
|
+
[_mR, _nT, _fi],
|
|
925
|
+
[[1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }], [[2, n0, _F, 0, 0, 64 | 0], 64]]
|
|
926
|
+
];
|
|
927
|
+
var ListAccessSourcesOutput$ = [3, n0, _LASO,
|
|
928
|
+
0,
|
|
929
|
+
[_aS, _nT],
|
|
930
|
+
[() => AccessSources, 0], 1
|
|
931
|
+
];
|
|
932
|
+
var ListAccessTokensInput$ = [3, n0, _LATI,
|
|
933
|
+
0,
|
|
934
|
+
[_dVI, _mR, _nT, _fi],
|
|
935
|
+
[[0, 1], [1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }], [[2, n0, _F, 0, 0, 64 | 0], 64]], 1
|
|
936
|
+
];
|
|
937
|
+
var ListAccessTokensOutput$ = [3, n0, _LATO,
|
|
938
|
+
0,
|
|
939
|
+
[_nT, _aT],
|
|
940
|
+
[0, () => AccessTokens]
|
|
941
|
+
];
|
|
942
|
+
var ListDNSViewsInput$ = [3, n0, _LDNSVI,
|
|
943
|
+
0,
|
|
944
|
+
[_gRI, _mR, _nT],
|
|
945
|
+
[[0, 1], [1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }]], 1
|
|
946
|
+
];
|
|
947
|
+
var ListDNSViewsOutput$ = [3, n0, _LDNSVO,
|
|
948
|
+
0,
|
|
949
|
+
[_dVn, _nT],
|
|
950
|
+
[() => DNSViews, 0], 1
|
|
951
|
+
];
|
|
952
|
+
var ListFirewallDomainListsInput$ = [3, n0, _LFDLI,
|
|
953
|
+
0,
|
|
954
|
+
[_mR, _nT, _gRI],
|
|
955
|
+
[[1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }], [0, { [_hQ]: _gri }]]
|
|
956
|
+
];
|
|
957
|
+
var ListFirewallDomainListsOutput$ = [3, n0, _LFDLO,
|
|
958
|
+
0,
|
|
959
|
+
[_fDL, _nT],
|
|
960
|
+
[() => FirewallDomainLists, 0], 1
|
|
961
|
+
];
|
|
962
|
+
var ListFirewallDomainsInput$ = [3, n0, _LFDI,
|
|
963
|
+
0,
|
|
964
|
+
[_fDLI, _mR, _nT],
|
|
965
|
+
[[0, 1], [1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }]], 1
|
|
966
|
+
];
|
|
967
|
+
var ListFirewallDomainsOutput$ = [3, n0, _LFDO,
|
|
968
|
+
0,
|
|
969
|
+
[_do, _nT],
|
|
970
|
+
[64 | 0, 0], 1
|
|
971
|
+
];
|
|
972
|
+
var ListFirewallRulesInput$ = [3, n0, _LFRI,
|
|
973
|
+
0,
|
|
974
|
+
[_dVI, _mR, _nT, _fi],
|
|
975
|
+
[[0, { [_hQ]: _di }], [1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }], [[2, n0, _F, 0, 0, 64 | 0], 64]], 1
|
|
976
|
+
];
|
|
977
|
+
var ListFirewallRulesOutput$ = [3, n0, _LFRO,
|
|
978
|
+
0,
|
|
979
|
+
[_fR, _nT],
|
|
980
|
+
[() => FirewallRules, 0], 1
|
|
981
|
+
];
|
|
982
|
+
var ListGlobalResolversInput$ = [3, n0, _LGRI,
|
|
983
|
+
0,
|
|
984
|
+
[_mR, _nT],
|
|
985
|
+
[[1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }]]
|
|
986
|
+
];
|
|
987
|
+
var ListGlobalResolversOutput$ = [3, n0, _LGRO,
|
|
988
|
+
0,
|
|
989
|
+
[_gR, _nT],
|
|
990
|
+
[() => GlobalResolvers, 0], 1
|
|
991
|
+
];
|
|
992
|
+
var ListHostedZoneAssociationsInput$ = [3, n0, _LHZAI,
|
|
993
|
+
0,
|
|
994
|
+
[_rA, _mR, _nT],
|
|
995
|
+
[[0, 1], [1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }]], 1
|
|
996
|
+
];
|
|
997
|
+
var ListHostedZoneAssociationsOutput$ = [3, n0, _LHZAO,
|
|
998
|
+
0,
|
|
999
|
+
[_hZA, _nT],
|
|
1000
|
+
[() => HostedZoneAssociations, 0], 1
|
|
1001
|
+
];
|
|
1002
|
+
var ListManagedFirewallDomainListsInput$ = [3, n0, _LMFDLI,
|
|
1003
|
+
0,
|
|
1004
|
+
[_mFDLT, _mR, _nT],
|
|
1005
|
+
[[0, 1], [1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }]], 1
|
|
1006
|
+
];
|
|
1007
|
+
var ListManagedFirewallDomainListsOutput$ = [3, n0, _LMFDLO,
|
|
1008
|
+
0,
|
|
1009
|
+
[_mFDL, _nT],
|
|
1010
|
+
[() => ManagedFirewallDomainLists, 0], 1
|
|
1011
|
+
];
|
|
1012
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1013
|
+
0,
|
|
1014
|
+
[_rA],
|
|
1015
|
+
[0], 1
|
|
1016
|
+
];
|
|
1017
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1018
|
+
0,
|
|
1019
|
+
[_t],
|
|
1020
|
+
[128 | 0]
|
|
1021
|
+
];
|
|
1022
|
+
var ManagedFirewallDomainListsItem$ = [3, n0, _MFDLI,
|
|
1023
|
+
0,
|
|
1024
|
+
[_i, _n, _mLT, _d],
|
|
1025
|
+
[0, 0, 0, 0], 3
|
|
1026
|
+
];
|
|
1027
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1028
|
+
0,
|
|
1029
|
+
[_rA, _t],
|
|
1030
|
+
[0, 128 | 0], 2
|
|
1031
|
+
];
|
|
1032
|
+
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1033
|
+
0,
|
|
1034
|
+
[],
|
|
1035
|
+
[]
|
|
1036
|
+
];
|
|
1037
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1038
|
+
0,
|
|
1039
|
+
[_rA, _tK],
|
|
1040
|
+
[0, 64 | 0], 2
|
|
1041
|
+
];
|
|
1042
|
+
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1043
|
+
0,
|
|
1044
|
+
[],
|
|
1045
|
+
[]
|
|
1046
|
+
];
|
|
1047
|
+
var UpdateAccessSourceInput$ = [3, n0, _UASI,
|
|
1048
|
+
0,
|
|
1049
|
+
[_aSI, _ci, _iAT, _n, _p],
|
|
1050
|
+
[[0, 1], 0, 0, 0, 0], 1
|
|
1051
|
+
];
|
|
1052
|
+
var UpdateAccessSourceOutput$ = [3, n0, _UASO,
|
|
1053
|
+
0,
|
|
1054
|
+
[_a, _ci, _cA, _i, _iAT, _dVI, _p, _st, _uA, _n],
|
|
1055
|
+
[0, 0, 5, 0, 0, 0, 0, 0, 5, 0], 9
|
|
1056
|
+
];
|
|
1057
|
+
var UpdateAccessTokenInput$ = [3, n0, _UATI,
|
|
1058
|
+
0,
|
|
1059
|
+
[_aTI, _n],
|
|
1060
|
+
[[0, 1], 0], 2
|
|
1061
|
+
];
|
|
1062
|
+
var UpdateAccessTokenOutput$ = [3, n0, _UATO,
|
|
1063
|
+
0,
|
|
1064
|
+
[_i, _n],
|
|
1065
|
+
[0, 0], 2
|
|
1066
|
+
];
|
|
1067
|
+
var UpdateDNSViewInput$ = [3, n0, _UDNSVI,
|
|
1068
|
+
0,
|
|
1069
|
+
[_dVI, _n, _d, _dV, _eCS, _fRFO],
|
|
1070
|
+
[[0, 1], 0, 0, 0, 0, 0], 1
|
|
1071
|
+
];
|
|
1072
|
+
var UpdateDNSViewOutput$ = [3, n0, _UDNSVO,
|
|
1073
|
+
0,
|
|
1074
|
+
[_i, _a, _dV, _eCS, _fRFO, _n, _gRI, _cA, _uA, _st, _cT, _d],
|
|
1075
|
+
[0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0], 10
|
|
1076
|
+
];
|
|
1077
|
+
var UpdateFirewallDomainsInput$ = [3, n0, _UFDI,
|
|
1078
|
+
0,
|
|
1079
|
+
[_do, _fDLI, _o],
|
|
1080
|
+
[64 | 0, [0, 1], 0], 3
|
|
1081
|
+
];
|
|
1082
|
+
var UpdateFirewallDomainsOutput$ = [3, n0, _UFDO,
|
|
1083
|
+
0,
|
|
1084
|
+
[_i, _n, _st],
|
|
1085
|
+
[0, 0, 0], 3
|
|
1086
|
+
];
|
|
1087
|
+
var UpdateFirewallRuleInput$ = [3, n0, _UFRI,
|
|
1088
|
+
0,
|
|
1089
|
+
[_fRI, _ac, _bODT, _bOD, _bOT, _bR, _cT, _cTo, _d, _dAP, _n, _pr],
|
|
1090
|
+
[[0, 1], 0, 0, 0, 1, 0, [0, 4], 0, 0, 0, 0, 1], 1
|
|
1091
|
+
];
|
|
1092
|
+
var UpdateFirewallRuleOutput$ = [3, n0, _UFRO,
|
|
1093
|
+
0,
|
|
1094
|
+
[_ac, _cA, _i, _n, _pr, _dVI, _st, _uA, _bODT, _bOD, _bOT, _bR, _cTo, _d, _dAP, _fDLI, _qTu],
|
|
1095
|
+
[0, 5, 0, 0, 1, 0, 0, 5, 0, 0, 1, 0, 0, 0, 0, 0, 0], 8
|
|
1096
|
+
];
|
|
1097
|
+
var UpdateGlobalResolverInput$ = [3, n0, _UGRI,
|
|
1098
|
+
0,
|
|
1099
|
+
[_gRI, _n, _oR, _d, _iAT, _re],
|
|
1100
|
+
[[0, 1], 0, 0, 0, 0, 64 | 0], 1
|
|
1101
|
+
];
|
|
1102
|
+
var UpdateGlobalResolverOutput$ = [3, n0, _UGRO,
|
|
1103
|
+
0,
|
|
1104
|
+
[_i, _a, _cT, _dN, _n, _re, _cA, _uA, _st, _iA, _oR, _d, _iAp, _iAT],
|
|
1105
|
+
[0, 0, 0, 0, 0, 64 | 0, 5, 5, 0, 64 | 0, 0, 0, 64 | 0, 0], 10
|
|
1106
|
+
];
|
|
1107
|
+
var UpdateHostedZoneAssociationInput$ = [3, n0, _UHZAI,
|
|
1108
|
+
0,
|
|
1109
|
+
[_hZAI, _n],
|
|
1110
|
+
[[0, 1], 0], 1
|
|
1111
|
+
];
|
|
1112
|
+
var UpdateHostedZoneAssociationOutput$ = [3, n0, _UHZAO,
|
|
1113
|
+
0,
|
|
1114
|
+
[_i, _rA, _hZI, _hZN, _n, _cA, _uA, _st],
|
|
1115
|
+
[0, 0, 0, 0, 0, 5, 5, 0], 8
|
|
1116
|
+
];
|
|
1117
|
+
var ValidationExceptionField$ = [3, n0, _VEF,
|
|
1118
|
+
0,
|
|
1119
|
+
[_n, _m],
|
|
1120
|
+
[0, 0], 2
|
|
1121
|
+
];
|
|
1122
|
+
var AccessSources = [1, n0, _AS,
|
|
1123
|
+
0, () => AccessSourcesItem$
|
|
1124
|
+
];
|
|
1125
|
+
var AccessTokens = [1, n0, _AT,
|
|
1126
|
+
0, () => AccessTokenItem$
|
|
1127
|
+
];
|
|
1128
|
+
var BatchCreateFirewallRuleInputItems = [1, n0, _BCFRIIa,
|
|
1129
|
+
0, () => BatchCreateFirewallRuleInputItem$
|
|
1130
|
+
];
|
|
1131
|
+
var BatchCreateFirewallRuleOutputItems = [1, n0, _BCFROIa,
|
|
1132
|
+
0, () => BatchCreateFirewallRuleOutputItem$
|
|
1133
|
+
];
|
|
1134
|
+
var BatchDeleteFirewallRuleInputItems = [1, n0, _BDFRIIa,
|
|
1135
|
+
0, () => BatchDeleteFirewallRuleInputItem$
|
|
1136
|
+
];
|
|
1137
|
+
var BatchDeleteFirewallRuleOutputItems = [1, n0, _BDFROIa,
|
|
1138
|
+
0, () => BatchDeleteFirewallRuleOutputItem$
|
|
1139
|
+
];
|
|
1140
|
+
var BatchUpdateFirewallRuleInputItems = [1, n0, _BUFRIIa,
|
|
1141
|
+
0, () => BatchUpdateFirewallRuleInputItem$
|
|
1142
|
+
];
|
|
1143
|
+
var BatchUpdateFirewallRuleOutputItems = [1, n0, _BUFROIa,
|
|
1144
|
+
0, () => BatchUpdateFirewallRuleOutputItem$
|
|
1145
|
+
];
|
|
1146
|
+
var DNSViews = [1, n0, _DNSV,
|
|
1147
|
+
0, () => DNSViewSummary$
|
|
1148
|
+
];
|
|
1149
|
+
var FirewallDomainLists = [1, n0, _FDL,
|
|
1150
|
+
0, () => FirewallDomainListsItem$
|
|
1151
|
+
];
|
|
1152
|
+
var FirewallRules = [1, n0, _FR,
|
|
1153
|
+
0, () => FirewallRulesItem$
|
|
1154
|
+
];
|
|
1155
|
+
var GlobalResolvers = [1, n0, _GR,
|
|
1156
|
+
0, () => GlobalResolversItem$
|
|
1157
|
+
];
|
|
1158
|
+
var HostedZoneAssociations = [1, n0, _HZA,
|
|
1159
|
+
0, () => HostedZoneAssociationSummary$
|
|
1160
|
+
];
|
|
1161
|
+
var ManagedFirewallDomainLists = [1, n0, _MFDL,
|
|
1162
|
+
0, () => ManagedFirewallDomainListsItem$
|
|
1163
|
+
];
|
|
1164
|
+
var ValidationExceptionFieldList = [1, n0, _VEFL,
|
|
1165
|
+
0, () => ValidationExceptionField$
|
|
1166
|
+
];
|
|
1167
|
+
var AssociateHostedZone$ = [9, n0, _AHZ,
|
|
1168
|
+
{ [_h]: ["POST", "/hosted-zone-associations/{hostedZoneId}", 200] }, () => AssociateHostedZoneInput$, () => AssociateHostedZoneOutput$
|
|
1169
|
+
];
|
|
1170
|
+
var BatchCreateFirewallRule$ = [9, n0, _BCFR,
|
|
1171
|
+
{ [_h]: ["POST", "/firewall-rules/batch-create", 200] }, () => BatchCreateFirewallRuleInput$, () => BatchCreateFirewallRuleOutput$
|
|
1172
|
+
];
|
|
1173
|
+
var BatchDeleteFirewallRule$ = [9, n0, _BDFR,
|
|
1174
|
+
{ [_h]: ["POST", "/firewall-rules/batch-delete", 200] }, () => BatchDeleteFirewallRuleInput$, () => BatchDeleteFirewallRuleOutput$
|
|
1175
|
+
];
|
|
1176
|
+
var BatchUpdateFirewallRule$ = [9, n0, _BUFR,
|
|
1177
|
+
{ [_h]: ["POST", "/firewall-rules/batch-update", 200] }, () => BatchUpdateFirewallRuleInput$, () => BatchUpdateFirewallRuleOutput$
|
|
1178
|
+
];
|
|
1179
|
+
var CreateAccessSource$ = [9, n0, _CAS,
|
|
1180
|
+
{ [_h]: ["POST", "/access-sources", 200] }, () => CreateAccessSourceInput$, () => CreateAccessSourceOutput$
|
|
1181
|
+
];
|
|
1182
|
+
var CreateAccessToken$ = [9, n0, _CAT,
|
|
1183
|
+
{ [_h]: ["POST", "/tokens/{dnsViewId}", 200] }, () => CreateAccessTokenInput$, () => CreateAccessTokenOutput$
|
|
1184
|
+
];
|
|
1185
|
+
var CreateDNSView$ = [9, n0, _CDNSV,
|
|
1186
|
+
{ [_h]: ["POST", "/dns-views/{globalResolverId}", 200] }, () => CreateDNSViewInput$, () => CreateDNSViewOutput$
|
|
1187
|
+
];
|
|
1188
|
+
var CreateFirewallDomainList$ = [9, n0, _CFDL,
|
|
1189
|
+
{ [_h]: ["POST", "/firewall-domain-lists/{globalResolverId}", 200] }, () => CreateFirewallDomainListInput$, () => CreateFirewallDomainListOutput$
|
|
1190
|
+
];
|
|
1191
|
+
var CreateFirewallRule$ = [9, n0, _CFR,
|
|
1192
|
+
{ [_h]: ["POST", "/firewall-rules", 200] }, () => CreateFirewallRuleInput$, () => CreateFirewallRuleOutput$
|
|
1193
|
+
];
|
|
1194
|
+
var CreateGlobalResolver$ = [9, n0, _CGR,
|
|
1195
|
+
{ [_h]: ["POST", "/global-resolver", 200] }, () => CreateGlobalResolverInput$, () => CreateGlobalResolverOutput$
|
|
1196
|
+
];
|
|
1197
|
+
var DeleteAccessSource$ = [9, n0, _DAS,
|
|
1198
|
+
{ [_h]: ["DELETE", "/access-sources/{accessSourceId}", 200] }, () => DeleteAccessSourceInput$, () => DeleteAccessSourceOutput$
|
|
1199
|
+
];
|
|
1200
|
+
var DeleteAccessToken$ = [9, n0, _DAT,
|
|
1201
|
+
{ [_h]: ["DELETE", "/tokens/{accessTokenId}", 200] }, () => DeleteAccessTokenInput$, () => DeleteAccessTokenOutput$
|
|
1202
|
+
];
|
|
1203
|
+
var DeleteDNSView$ = [9, n0, _DDNSV,
|
|
1204
|
+
{ [_h]: ["DELETE", "/dns-views/{dnsViewId}", 200] }, () => DeleteDNSViewInput$, () => DeleteDNSViewOutput$
|
|
1205
|
+
];
|
|
1206
|
+
var DeleteFirewallDomainList$ = [9, n0, _DFDL,
|
|
1207
|
+
{ [_h]: ["DELETE", "/firewall-domain-lists/{firewallDomainListId}", 200] }, () => DeleteFirewallDomainListInput$, () => DeleteFirewallDomainListOutput$
|
|
1208
|
+
];
|
|
1209
|
+
var DeleteFirewallRule$ = [9, n0, _DFR,
|
|
1210
|
+
{ [_h]: ["DELETE", "/firewall-rules/{firewallRuleId}", 200] }, () => DeleteFirewallRuleInput$, () => DeleteFirewallRuleOutput$
|
|
1211
|
+
];
|
|
1212
|
+
var DeleteGlobalResolver$ = [9, n0, _DGR,
|
|
1213
|
+
{ [_h]: ["DELETE", "/global-resolver/{globalResolverId}", 200] }, () => DeleteGlobalResolverInput$, () => DeleteGlobalResolverOutput$
|
|
1214
|
+
];
|
|
1215
|
+
var DisableDNSView$ = [9, n0, _DDNSVi,
|
|
1216
|
+
{ [_h]: ["PATCH", "/dns-views/{dnsViewId}/disable", 200] }, () => DisableDNSViewInput$, () => DisableDNSViewOutput$
|
|
1217
|
+
];
|
|
1218
|
+
var DisassociateHostedZone$ = [9, n0, _DHZ,
|
|
1219
|
+
{ [_h]: ["DELETE", "/hosted-zone-associations/hosted-zone/{hostedZoneId}/resource-arn/{resourceArn+}", 200] }, () => DisassociateHostedZoneInput$, () => DisassociateHostedZoneOutput$
|
|
1220
|
+
];
|
|
1221
|
+
var EnableDNSView$ = [9, n0, _EDNSV,
|
|
1222
|
+
{ [_h]: ["PATCH", "/dns-views/{dnsViewId}/enable", 200] }, () => EnableDNSViewInput$, () => EnableDNSViewOutput$
|
|
1223
|
+
];
|
|
1224
|
+
var GetAccessSource$ = [9, n0, _GAS,
|
|
1225
|
+
{ [_h]: ["GET", "/access-sources/{accessSourceId}", 200] }, () => GetAccessSourceInput$, () => GetAccessSourceOutput$
|
|
1226
|
+
];
|
|
1227
|
+
var GetAccessToken$ = [9, n0, _GAT,
|
|
1228
|
+
{ [_h]: ["GET", "/tokens/{accessTokenId}", 200] }, () => GetAccessTokenInput$, () => GetAccessTokenOutput$
|
|
1229
|
+
];
|
|
1230
|
+
var GetDNSView$ = [9, n0, _GDNSV,
|
|
1231
|
+
{ [_h]: ["GET", "/dns-views/{dnsViewId}", 200] }, () => GetDNSViewInput$, () => GetDNSViewOutput$
|
|
1232
|
+
];
|
|
1233
|
+
var GetFirewallDomainList$ = [9, n0, _GFDL,
|
|
1234
|
+
{ [_h]: ["GET", "/firewall-domain-lists/{firewallDomainListId}", 200] }, () => GetFirewallDomainListInput$, () => GetFirewallDomainListOutput$
|
|
1235
|
+
];
|
|
1236
|
+
var GetFirewallRule$ = [9, n0, _GFR,
|
|
1237
|
+
{ [_h]: ["GET", "/firewall-rules/{firewallRuleId}", 200] }, () => GetFirewallRuleInput$, () => GetFirewallRuleOutput$
|
|
1238
|
+
];
|
|
1239
|
+
var GetGlobalResolver$ = [9, n0, _GGR,
|
|
1240
|
+
{ [_h]: ["GET", "/global-resolver/{globalResolverId}", 200] }, () => GetGlobalResolverInput$, () => GetGlobalResolverOutput$
|
|
1241
|
+
];
|
|
1242
|
+
var GetHostedZoneAssociation$ = [9, n0, _GHZA,
|
|
1243
|
+
{ [_h]: ["GET", "/hosted-zone-associations/{hostedZoneAssociationId}", 200] }, () => GetHostedZoneAssociationInput$, () => GetHostedZoneAssociationOutput$
|
|
1244
|
+
];
|
|
1245
|
+
var GetManagedFirewallDomainList$ = [9, n0, _GMFDL,
|
|
1246
|
+
{ [_h]: ["GET", "/managed-firewall-domain-lists/{managedFirewallDomainListId}", 200] }, () => GetManagedFirewallDomainListInput$, () => GetManagedFirewallDomainListOutput$
|
|
1247
|
+
];
|
|
1248
|
+
var ImportFirewallDomains$ = [9, n0, _IFD,
|
|
1249
|
+
{ [_h]: ["PATCH", "/firewall-domain-lists/{firewallDomainListId}/domains/s3_file_url", 200] }, () => ImportFirewallDomainsInput$, () => ImportFirewallDomainsOutput$
|
|
1250
|
+
];
|
|
1251
|
+
var ListAccessSources$ = [9, n0, _LAS,
|
|
1252
|
+
{ [_h]: ["GET", "/access-sources", 200] }, () => ListAccessSourcesInput$, () => ListAccessSourcesOutput$
|
|
1253
|
+
];
|
|
1254
|
+
var ListAccessTokens$ = [9, n0, _LAT,
|
|
1255
|
+
{ [_h]: ["GET", "/tokens/dns-view/{dnsViewId}", 200] }, () => ListAccessTokensInput$, () => ListAccessTokensOutput$
|
|
1256
|
+
];
|
|
1257
|
+
var ListDNSViews$ = [9, n0, _LDNSV,
|
|
1258
|
+
{ [_h]: ["GET", "/dns-views/resolver/{globalResolverId}", 200] }, () => ListDNSViewsInput$, () => ListDNSViewsOutput$
|
|
1259
|
+
];
|
|
1260
|
+
var ListFirewallDomainLists$ = [9, n0, _LFDL,
|
|
1261
|
+
{ [_h]: ["GET", "/firewall-domain-lists", 200] }, () => ListFirewallDomainListsInput$, () => ListFirewallDomainListsOutput$
|
|
1262
|
+
];
|
|
1263
|
+
var ListFirewallDomains$ = [9, n0, _LFD,
|
|
1264
|
+
{ [_h]: ["GET", "/firewall-domain-lists/{firewallDomainListId}/domains", 200] }, () => ListFirewallDomainsInput$, () => ListFirewallDomainsOutput$
|
|
1265
|
+
];
|
|
1266
|
+
var ListFirewallRules$ = [9, n0, _LFR,
|
|
1267
|
+
{ [_h]: ["GET", "/firewall-rules", 200] }, () => ListFirewallRulesInput$, () => ListFirewallRulesOutput$
|
|
1268
|
+
];
|
|
1269
|
+
var ListGlobalResolvers$ = [9, n0, _LGR,
|
|
1270
|
+
{ [_h]: ["GET", "/global-resolver", 200] }, () => ListGlobalResolversInput$, () => ListGlobalResolversOutput$
|
|
1271
|
+
];
|
|
1272
|
+
var ListHostedZoneAssociations$ = [9, n0, _LHZA,
|
|
1273
|
+
{ [_h]: ["GET", "/hosted-zone-associations/resource-arn/{resourceArn+}", 200] }, () => ListHostedZoneAssociationsInput$, () => ListHostedZoneAssociationsOutput$
|
|
1274
|
+
];
|
|
1275
|
+
var ListManagedFirewallDomainLists$ = [9, n0, _LMFDL,
|
|
1276
|
+
{ [_h]: ["GET", "/list-managed-firewall-domain-lists/{managedFirewallDomainListType}", 200] }, () => ListManagedFirewallDomainListsInput$, () => ListManagedFirewallDomainListsOutput$
|
|
1277
|
+
];
|
|
1278
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1279
|
+
{ [_h]: ["POST", "/get-all-tags", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1280
|
+
];
|
|
1281
|
+
var TagResource$ = [9, n0, _TR,
|
|
1282
|
+
{ [_h]: ["POST", "/tag-resource", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1283
|
+
];
|
|
1284
|
+
var UntagResource$ = [9, n0, _UR,
|
|
1285
|
+
{ [_h]: ["POST", "/untag-resource", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1286
|
+
];
|
|
1287
|
+
var UpdateAccessSource$ = [9, n0, _UAS,
|
|
1288
|
+
{ [_h]: ["PATCH", "/access-sources/{accessSourceId}", 200] }, () => UpdateAccessSourceInput$, () => UpdateAccessSourceOutput$
|
|
1289
|
+
];
|
|
1290
|
+
var UpdateAccessToken$ = [9, n0, _UAT,
|
|
1291
|
+
{ [_h]: ["PATCH", "/tokens/{accessTokenId}", 200] }, () => UpdateAccessTokenInput$, () => UpdateAccessTokenOutput$
|
|
1292
|
+
];
|
|
1293
|
+
var UpdateDNSView$ = [9, n0, _UDNSV,
|
|
1294
|
+
{ [_h]: ["PATCH", "/dns-views/{dnsViewId}", 200] }, () => UpdateDNSViewInput$, () => UpdateDNSViewOutput$
|
|
1295
|
+
];
|
|
1296
|
+
var UpdateFirewallDomains$ = [9, n0, _UFD,
|
|
1297
|
+
{ [_h]: ["PATCH", "/firewall-domain-lists/{firewallDomainListId}/domains", 200] }, () => UpdateFirewallDomainsInput$, () => UpdateFirewallDomainsOutput$
|
|
1298
|
+
];
|
|
1299
|
+
var UpdateFirewallRule$ = [9, n0, _UFR,
|
|
1300
|
+
{ [_h]: ["PATCH", "/firewall-rules/{firewallRuleId}", 200] }, () => UpdateFirewallRuleInput$, () => UpdateFirewallRuleOutput$
|
|
1301
|
+
];
|
|
1302
|
+
var UpdateGlobalResolver$ = [9, n0, _UGR,
|
|
1303
|
+
{ [_h]: ["PATCH", "/global-resolver/{globalResolverId}", 200] }, () => UpdateGlobalResolverInput$, () => UpdateGlobalResolverOutput$
|
|
1304
|
+
];
|
|
1305
|
+
var UpdateHostedZoneAssociation$ = [9, n0, _UHZA,
|
|
1306
|
+
{ [_h]: ["PATCH", "/hosted-zone-associations/{hostedZoneAssociationId}", 200] }, () => UpdateHostedZoneAssociationInput$, () => UpdateHostedZoneAssociationOutput$
|
|
1307
|
+
];
|
|
1308
|
+
|
|
1309
|
+
const getRuntimeConfig$1 = (config) => {
|
|
1310
|
+
return {
|
|
1311
|
+
apiVersion: "2022-09-27",
|
|
1312
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
1313
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
1314
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
1315
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
1316
|
+
extensions: config?.extensions ?? [],
|
|
1317
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultRoute53GlobalResolverHttpAuthSchemeProvider,
|
|
1318
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
1319
|
+
{
|
|
1320
|
+
schemeId: "aws.auth#sigv4",
|
|
1321
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
1322
|
+
signer: new AwsSdkSigV4Signer(),
|
|
1323
|
+
},
|
|
1324
|
+
],
|
|
1325
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
1326
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
1327
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
1328
|
+
defaultNamespace: "com.amazonaws.route53globalresolver",
|
|
1329
|
+
errorTypeRegistries,
|
|
1330
|
+
version: "2022-09-27",
|
|
1331
|
+
serviceTarget: "EC2DNSGlobalResolverCustomerAPI",
|
|
1332
|
+
},
|
|
1333
|
+
serviceId: config?.serviceId ?? "Route53GlobalResolver",
|
|
1334
|
+
sha256: config?.sha256 ?? Sha256,
|
|
1335
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
1336
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
1337
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
1338
|
+
};
|
|
1339
|
+
};
|
|
1340
|
+
|
|
1341
|
+
const getRuntimeConfig = (config) => {
|
|
1342
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
1343
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
1344
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
1345
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
1346
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
1347
|
+
const loaderConfig = {
|
|
1348
|
+
profile: config?.profile,
|
|
1349
|
+
logger: clientSharedValues.logger,
|
|
1350
|
+
};
|
|
1351
|
+
return {
|
|
1352
|
+
...clientSharedValues,
|
|
1353
|
+
...config,
|
|
1354
|
+
runtime: "node",
|
|
1355
|
+
defaultsMode,
|
|
1356
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
1357
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
1358
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
1359
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
1360
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
1361
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
1362
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
1363
|
+
retryMode: config?.retryMode ??
|
|
1364
|
+
loadConfig({
|
|
1365
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
1366
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
1367
|
+
}, config),
|
|
1368
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
1369
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1370
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1371
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
1372
|
+
};
|
|
1373
|
+
};
|
|
1374
|
+
|
|
32
1375
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
33
1376
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
34
1377
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -835,71 +2178,247 @@ const GlobalResolverIpAddressType = {
|
|
|
835
2178
|
IPV4: "IPV4",
|
|
836
2179
|
};
|
|
837
2180
|
|
|
2181
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
2182
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
2183
|
+
exports.AccessSourcesItem$ = AccessSourcesItem$;
|
|
2184
|
+
exports.AccessTokenItem$ = AccessTokenItem$;
|
|
2185
|
+
exports.AssociateHostedZone$ = AssociateHostedZone$;
|
|
838
2186
|
exports.AssociateHostedZoneCommand = AssociateHostedZoneCommand;
|
|
2187
|
+
exports.AssociateHostedZoneInput$ = AssociateHostedZoneInput$;
|
|
2188
|
+
exports.AssociateHostedZoneOutput$ = AssociateHostedZoneOutput$;
|
|
2189
|
+
exports.BatchCreateFirewallRule$ = BatchCreateFirewallRule$;
|
|
839
2190
|
exports.BatchCreateFirewallRuleCommand = BatchCreateFirewallRuleCommand;
|
|
2191
|
+
exports.BatchCreateFirewallRuleInput$ = BatchCreateFirewallRuleInput$;
|
|
2192
|
+
exports.BatchCreateFirewallRuleInputItem$ = BatchCreateFirewallRuleInputItem$;
|
|
2193
|
+
exports.BatchCreateFirewallRuleOutput$ = BatchCreateFirewallRuleOutput$;
|
|
2194
|
+
exports.BatchCreateFirewallRuleOutputItem$ = BatchCreateFirewallRuleOutputItem$;
|
|
2195
|
+
exports.BatchCreateFirewallRuleResult$ = BatchCreateFirewallRuleResult$;
|
|
2196
|
+
exports.BatchDeleteFirewallRule$ = BatchDeleteFirewallRule$;
|
|
840
2197
|
exports.BatchDeleteFirewallRuleCommand = BatchDeleteFirewallRuleCommand;
|
|
2198
|
+
exports.BatchDeleteFirewallRuleInput$ = BatchDeleteFirewallRuleInput$;
|
|
2199
|
+
exports.BatchDeleteFirewallRuleInputItem$ = BatchDeleteFirewallRuleInputItem$;
|
|
2200
|
+
exports.BatchDeleteFirewallRuleOutput$ = BatchDeleteFirewallRuleOutput$;
|
|
2201
|
+
exports.BatchDeleteFirewallRuleOutputItem$ = BatchDeleteFirewallRuleOutputItem$;
|
|
2202
|
+
exports.BatchDeleteFirewallRuleResult$ = BatchDeleteFirewallRuleResult$;
|
|
2203
|
+
exports.BatchUpdateFirewallRule$ = BatchUpdateFirewallRule$;
|
|
841
2204
|
exports.BatchUpdateFirewallRuleCommand = BatchUpdateFirewallRuleCommand;
|
|
2205
|
+
exports.BatchUpdateFirewallRuleInput$ = BatchUpdateFirewallRuleInput$;
|
|
2206
|
+
exports.BatchUpdateFirewallRuleInputItem$ = BatchUpdateFirewallRuleInputItem$;
|
|
2207
|
+
exports.BatchUpdateFirewallRuleOutput$ = BatchUpdateFirewallRuleOutput$;
|
|
2208
|
+
exports.BatchUpdateFirewallRuleOutputItem$ = BatchUpdateFirewallRuleOutputItem$;
|
|
2209
|
+
exports.BatchUpdateFirewallRuleResult$ = BatchUpdateFirewallRuleResult$;
|
|
842
2210
|
exports.BlockOverrideDnsQueryType = BlockOverrideDnsQueryType;
|
|
843
2211
|
exports.CRResourceStatus = CRResourceStatus;
|
|
844
2212
|
exports.ConfidenceThreshold = ConfidenceThreshold;
|
|
2213
|
+
exports.ConflictException = ConflictException;
|
|
2214
|
+
exports.ConflictException$ = ConflictException$;
|
|
2215
|
+
exports.CreateAccessSource$ = CreateAccessSource$;
|
|
845
2216
|
exports.CreateAccessSourceCommand = CreateAccessSourceCommand;
|
|
2217
|
+
exports.CreateAccessSourceInput$ = CreateAccessSourceInput$;
|
|
2218
|
+
exports.CreateAccessSourceOutput$ = CreateAccessSourceOutput$;
|
|
2219
|
+
exports.CreateAccessToken$ = CreateAccessToken$;
|
|
846
2220
|
exports.CreateAccessTokenCommand = CreateAccessTokenCommand;
|
|
2221
|
+
exports.CreateAccessTokenInput$ = CreateAccessTokenInput$;
|
|
2222
|
+
exports.CreateAccessTokenOutput$ = CreateAccessTokenOutput$;
|
|
2223
|
+
exports.CreateDNSView$ = CreateDNSView$;
|
|
847
2224
|
exports.CreateDNSViewCommand = CreateDNSViewCommand;
|
|
2225
|
+
exports.CreateDNSViewInput$ = CreateDNSViewInput$;
|
|
2226
|
+
exports.CreateDNSViewOutput$ = CreateDNSViewOutput$;
|
|
2227
|
+
exports.CreateFirewallDomainList$ = CreateFirewallDomainList$;
|
|
848
2228
|
exports.CreateFirewallDomainListCommand = CreateFirewallDomainListCommand;
|
|
2229
|
+
exports.CreateFirewallDomainListInput$ = CreateFirewallDomainListInput$;
|
|
2230
|
+
exports.CreateFirewallDomainListOutput$ = CreateFirewallDomainListOutput$;
|
|
2231
|
+
exports.CreateFirewallRule$ = CreateFirewallRule$;
|
|
849
2232
|
exports.CreateFirewallRuleCommand = CreateFirewallRuleCommand;
|
|
2233
|
+
exports.CreateFirewallRuleInput$ = CreateFirewallRuleInput$;
|
|
2234
|
+
exports.CreateFirewallRuleOutput$ = CreateFirewallRuleOutput$;
|
|
2235
|
+
exports.CreateGlobalResolver$ = CreateGlobalResolver$;
|
|
850
2236
|
exports.CreateGlobalResolverCommand = CreateGlobalResolverCommand;
|
|
2237
|
+
exports.CreateGlobalResolverInput$ = CreateGlobalResolverInput$;
|
|
2238
|
+
exports.CreateGlobalResolverOutput$ = CreateGlobalResolverOutput$;
|
|
2239
|
+
exports.DNSViewSummary$ = DNSViewSummary$;
|
|
2240
|
+
exports.DeleteAccessSource$ = DeleteAccessSource$;
|
|
851
2241
|
exports.DeleteAccessSourceCommand = DeleteAccessSourceCommand;
|
|
2242
|
+
exports.DeleteAccessSourceInput$ = DeleteAccessSourceInput$;
|
|
2243
|
+
exports.DeleteAccessSourceOutput$ = DeleteAccessSourceOutput$;
|
|
2244
|
+
exports.DeleteAccessToken$ = DeleteAccessToken$;
|
|
852
2245
|
exports.DeleteAccessTokenCommand = DeleteAccessTokenCommand;
|
|
2246
|
+
exports.DeleteAccessTokenInput$ = DeleteAccessTokenInput$;
|
|
2247
|
+
exports.DeleteAccessTokenOutput$ = DeleteAccessTokenOutput$;
|
|
2248
|
+
exports.DeleteDNSView$ = DeleteDNSView$;
|
|
853
2249
|
exports.DeleteDNSViewCommand = DeleteDNSViewCommand;
|
|
2250
|
+
exports.DeleteDNSViewInput$ = DeleteDNSViewInput$;
|
|
2251
|
+
exports.DeleteDNSViewOutput$ = DeleteDNSViewOutput$;
|
|
2252
|
+
exports.DeleteFirewallDomainList$ = DeleteFirewallDomainList$;
|
|
854
2253
|
exports.DeleteFirewallDomainListCommand = DeleteFirewallDomainListCommand;
|
|
2254
|
+
exports.DeleteFirewallDomainListInput$ = DeleteFirewallDomainListInput$;
|
|
2255
|
+
exports.DeleteFirewallDomainListOutput$ = DeleteFirewallDomainListOutput$;
|
|
2256
|
+
exports.DeleteFirewallRule$ = DeleteFirewallRule$;
|
|
855
2257
|
exports.DeleteFirewallRuleCommand = DeleteFirewallRuleCommand;
|
|
2258
|
+
exports.DeleteFirewallRuleInput$ = DeleteFirewallRuleInput$;
|
|
2259
|
+
exports.DeleteFirewallRuleOutput$ = DeleteFirewallRuleOutput$;
|
|
2260
|
+
exports.DeleteGlobalResolver$ = DeleteGlobalResolver$;
|
|
856
2261
|
exports.DeleteGlobalResolverCommand = DeleteGlobalResolverCommand;
|
|
2262
|
+
exports.DeleteGlobalResolverInput$ = DeleteGlobalResolverInput$;
|
|
2263
|
+
exports.DeleteGlobalResolverOutput$ = DeleteGlobalResolverOutput$;
|
|
2264
|
+
exports.DisableDNSView$ = DisableDNSView$;
|
|
857
2265
|
exports.DisableDNSViewCommand = DisableDNSViewCommand;
|
|
2266
|
+
exports.DisableDNSViewInput$ = DisableDNSViewInput$;
|
|
2267
|
+
exports.DisableDNSViewOutput$ = DisableDNSViewOutput$;
|
|
2268
|
+
exports.DisassociateHostedZone$ = DisassociateHostedZone$;
|
|
858
2269
|
exports.DisassociateHostedZoneCommand = DisassociateHostedZoneCommand;
|
|
2270
|
+
exports.DisassociateHostedZoneInput$ = DisassociateHostedZoneInput$;
|
|
2271
|
+
exports.DisassociateHostedZoneOutput$ = DisassociateHostedZoneOutput$;
|
|
859
2272
|
exports.DnsAdvancedProtection = DnsAdvancedProtection;
|
|
860
2273
|
exports.DnsProtocol = DnsProtocol;
|
|
861
2274
|
exports.DnsSecValidationType = DnsSecValidationType;
|
|
862
2275
|
exports.EdnsClientSubnetType = EdnsClientSubnetType;
|
|
2276
|
+
exports.EnableDNSView$ = EnableDNSView$;
|
|
863
2277
|
exports.EnableDNSViewCommand = EnableDNSViewCommand;
|
|
2278
|
+
exports.EnableDNSViewInput$ = EnableDNSViewInput$;
|
|
2279
|
+
exports.EnableDNSViewOutput$ = EnableDNSViewOutput$;
|
|
864
2280
|
exports.FirewallBlockResponse = FirewallBlockResponse;
|
|
2281
|
+
exports.FirewallDomainListsItem$ = FirewallDomainListsItem$;
|
|
865
2282
|
exports.FirewallRuleAction = FirewallRuleAction;
|
|
866
2283
|
exports.FirewallRulesFailOpenType = FirewallRulesFailOpenType;
|
|
2284
|
+
exports.FirewallRulesItem$ = FirewallRulesItem$;
|
|
2285
|
+
exports.GetAccessSource$ = GetAccessSource$;
|
|
867
2286
|
exports.GetAccessSourceCommand = GetAccessSourceCommand;
|
|
2287
|
+
exports.GetAccessSourceInput$ = GetAccessSourceInput$;
|
|
2288
|
+
exports.GetAccessSourceOutput$ = GetAccessSourceOutput$;
|
|
2289
|
+
exports.GetAccessToken$ = GetAccessToken$;
|
|
868
2290
|
exports.GetAccessTokenCommand = GetAccessTokenCommand;
|
|
2291
|
+
exports.GetAccessTokenInput$ = GetAccessTokenInput$;
|
|
2292
|
+
exports.GetAccessTokenOutput$ = GetAccessTokenOutput$;
|
|
2293
|
+
exports.GetDNSView$ = GetDNSView$;
|
|
869
2294
|
exports.GetDNSViewCommand = GetDNSViewCommand;
|
|
2295
|
+
exports.GetDNSViewInput$ = GetDNSViewInput$;
|
|
2296
|
+
exports.GetDNSViewOutput$ = GetDNSViewOutput$;
|
|
2297
|
+
exports.GetFirewallDomainList$ = GetFirewallDomainList$;
|
|
870
2298
|
exports.GetFirewallDomainListCommand = GetFirewallDomainListCommand;
|
|
2299
|
+
exports.GetFirewallDomainListInput$ = GetFirewallDomainListInput$;
|
|
2300
|
+
exports.GetFirewallDomainListOutput$ = GetFirewallDomainListOutput$;
|
|
2301
|
+
exports.GetFirewallRule$ = GetFirewallRule$;
|
|
871
2302
|
exports.GetFirewallRuleCommand = GetFirewallRuleCommand;
|
|
2303
|
+
exports.GetFirewallRuleInput$ = GetFirewallRuleInput$;
|
|
2304
|
+
exports.GetFirewallRuleOutput$ = GetFirewallRuleOutput$;
|
|
2305
|
+
exports.GetGlobalResolver$ = GetGlobalResolver$;
|
|
872
2306
|
exports.GetGlobalResolverCommand = GetGlobalResolverCommand;
|
|
2307
|
+
exports.GetGlobalResolverInput$ = GetGlobalResolverInput$;
|
|
2308
|
+
exports.GetGlobalResolverOutput$ = GetGlobalResolverOutput$;
|
|
2309
|
+
exports.GetHostedZoneAssociation$ = GetHostedZoneAssociation$;
|
|
873
2310
|
exports.GetHostedZoneAssociationCommand = GetHostedZoneAssociationCommand;
|
|
2311
|
+
exports.GetHostedZoneAssociationInput$ = GetHostedZoneAssociationInput$;
|
|
2312
|
+
exports.GetHostedZoneAssociationOutput$ = GetHostedZoneAssociationOutput$;
|
|
2313
|
+
exports.GetManagedFirewallDomainList$ = GetManagedFirewallDomainList$;
|
|
874
2314
|
exports.GetManagedFirewallDomainListCommand = GetManagedFirewallDomainListCommand;
|
|
2315
|
+
exports.GetManagedFirewallDomainListInput$ = GetManagedFirewallDomainListInput$;
|
|
2316
|
+
exports.GetManagedFirewallDomainListOutput$ = GetManagedFirewallDomainListOutput$;
|
|
875
2317
|
exports.GlobalResolverIpAddressType = GlobalResolverIpAddressType;
|
|
2318
|
+
exports.GlobalResolversItem$ = GlobalResolversItem$;
|
|
876
2319
|
exports.HostedZoneAssociationStatus = HostedZoneAssociationStatus;
|
|
2320
|
+
exports.HostedZoneAssociationSummary$ = HostedZoneAssociationSummary$;
|
|
2321
|
+
exports.ImportFirewallDomains$ = ImportFirewallDomains$;
|
|
877
2322
|
exports.ImportFirewallDomainsCommand = ImportFirewallDomainsCommand;
|
|
2323
|
+
exports.ImportFirewallDomainsInput$ = ImportFirewallDomainsInput$;
|
|
2324
|
+
exports.ImportFirewallDomainsOutput$ = ImportFirewallDomainsOutput$;
|
|
2325
|
+
exports.InternalServerException = InternalServerException;
|
|
2326
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
878
2327
|
exports.IpAddressType = IpAddressType;
|
|
2328
|
+
exports.ListAccessSources$ = ListAccessSources$;
|
|
879
2329
|
exports.ListAccessSourcesCommand = ListAccessSourcesCommand;
|
|
2330
|
+
exports.ListAccessSourcesInput$ = ListAccessSourcesInput$;
|
|
2331
|
+
exports.ListAccessSourcesOutput$ = ListAccessSourcesOutput$;
|
|
2332
|
+
exports.ListAccessTokens$ = ListAccessTokens$;
|
|
880
2333
|
exports.ListAccessTokensCommand = ListAccessTokensCommand;
|
|
2334
|
+
exports.ListAccessTokensInput$ = ListAccessTokensInput$;
|
|
2335
|
+
exports.ListAccessTokensOutput$ = ListAccessTokensOutput$;
|
|
2336
|
+
exports.ListDNSViews$ = ListDNSViews$;
|
|
881
2337
|
exports.ListDNSViewsCommand = ListDNSViewsCommand;
|
|
2338
|
+
exports.ListDNSViewsInput$ = ListDNSViewsInput$;
|
|
2339
|
+
exports.ListDNSViewsOutput$ = ListDNSViewsOutput$;
|
|
2340
|
+
exports.ListFirewallDomainLists$ = ListFirewallDomainLists$;
|
|
882
2341
|
exports.ListFirewallDomainListsCommand = ListFirewallDomainListsCommand;
|
|
2342
|
+
exports.ListFirewallDomainListsInput$ = ListFirewallDomainListsInput$;
|
|
2343
|
+
exports.ListFirewallDomainListsOutput$ = ListFirewallDomainListsOutput$;
|
|
2344
|
+
exports.ListFirewallDomains$ = ListFirewallDomains$;
|
|
883
2345
|
exports.ListFirewallDomainsCommand = ListFirewallDomainsCommand;
|
|
2346
|
+
exports.ListFirewallDomainsInput$ = ListFirewallDomainsInput$;
|
|
2347
|
+
exports.ListFirewallDomainsOutput$ = ListFirewallDomainsOutput$;
|
|
2348
|
+
exports.ListFirewallRules$ = ListFirewallRules$;
|
|
884
2349
|
exports.ListFirewallRulesCommand = ListFirewallRulesCommand;
|
|
2350
|
+
exports.ListFirewallRulesInput$ = ListFirewallRulesInput$;
|
|
2351
|
+
exports.ListFirewallRulesOutput$ = ListFirewallRulesOutput$;
|
|
2352
|
+
exports.ListGlobalResolvers$ = ListGlobalResolvers$;
|
|
885
2353
|
exports.ListGlobalResolversCommand = ListGlobalResolversCommand;
|
|
2354
|
+
exports.ListGlobalResolversInput$ = ListGlobalResolversInput$;
|
|
2355
|
+
exports.ListGlobalResolversOutput$ = ListGlobalResolversOutput$;
|
|
2356
|
+
exports.ListHostedZoneAssociations$ = ListHostedZoneAssociations$;
|
|
886
2357
|
exports.ListHostedZoneAssociationsCommand = ListHostedZoneAssociationsCommand;
|
|
2358
|
+
exports.ListHostedZoneAssociationsInput$ = ListHostedZoneAssociationsInput$;
|
|
2359
|
+
exports.ListHostedZoneAssociationsOutput$ = ListHostedZoneAssociationsOutput$;
|
|
2360
|
+
exports.ListManagedFirewallDomainLists$ = ListManagedFirewallDomainLists$;
|
|
887
2361
|
exports.ListManagedFirewallDomainListsCommand = ListManagedFirewallDomainListsCommand;
|
|
2362
|
+
exports.ListManagedFirewallDomainListsInput$ = ListManagedFirewallDomainListsInput$;
|
|
2363
|
+
exports.ListManagedFirewallDomainListsOutput$ = ListManagedFirewallDomainListsOutput$;
|
|
2364
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
888
2365
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2366
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
2367
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
2368
|
+
exports.ManagedFirewallDomainListsItem$ = ManagedFirewallDomainListsItem$;
|
|
889
2369
|
exports.ProfileResourceStatus = ProfileResourceStatus;
|
|
2370
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2371
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
890
2372
|
exports.Route53GlobalResolver = Route53GlobalResolver;
|
|
891
2373
|
exports.Route53GlobalResolverClient = Route53GlobalResolverClient;
|
|
2374
|
+
exports.Route53GlobalResolverServiceException = Route53GlobalResolverServiceException;
|
|
2375
|
+
exports.Route53GlobalResolverServiceException$ = Route53GlobalResolverServiceException$;
|
|
2376
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
2377
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
2378
|
+
exports.TagResource$ = TagResource$;
|
|
892
2379
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2380
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
2381
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
2382
|
+
exports.ThrottlingException = ThrottlingException;
|
|
2383
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
893
2384
|
exports.TokenStatus = TokenStatus;
|
|
2385
|
+
exports.UntagResource$ = UntagResource$;
|
|
894
2386
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2387
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
2388
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
2389
|
+
exports.UpdateAccessSource$ = UpdateAccessSource$;
|
|
895
2390
|
exports.UpdateAccessSourceCommand = UpdateAccessSourceCommand;
|
|
2391
|
+
exports.UpdateAccessSourceInput$ = UpdateAccessSourceInput$;
|
|
2392
|
+
exports.UpdateAccessSourceOutput$ = UpdateAccessSourceOutput$;
|
|
2393
|
+
exports.UpdateAccessToken$ = UpdateAccessToken$;
|
|
896
2394
|
exports.UpdateAccessTokenCommand = UpdateAccessTokenCommand;
|
|
2395
|
+
exports.UpdateAccessTokenInput$ = UpdateAccessTokenInput$;
|
|
2396
|
+
exports.UpdateAccessTokenOutput$ = UpdateAccessTokenOutput$;
|
|
2397
|
+
exports.UpdateDNSView$ = UpdateDNSView$;
|
|
897
2398
|
exports.UpdateDNSViewCommand = UpdateDNSViewCommand;
|
|
2399
|
+
exports.UpdateDNSViewInput$ = UpdateDNSViewInput$;
|
|
2400
|
+
exports.UpdateDNSViewOutput$ = UpdateDNSViewOutput$;
|
|
2401
|
+
exports.UpdateFirewallDomains$ = UpdateFirewallDomains$;
|
|
898
2402
|
exports.UpdateFirewallDomainsCommand = UpdateFirewallDomainsCommand;
|
|
2403
|
+
exports.UpdateFirewallDomainsInput$ = UpdateFirewallDomainsInput$;
|
|
2404
|
+
exports.UpdateFirewallDomainsOutput$ = UpdateFirewallDomainsOutput$;
|
|
2405
|
+
exports.UpdateFirewallRule$ = UpdateFirewallRule$;
|
|
899
2406
|
exports.UpdateFirewallRuleCommand = UpdateFirewallRuleCommand;
|
|
2407
|
+
exports.UpdateFirewallRuleInput$ = UpdateFirewallRuleInput$;
|
|
2408
|
+
exports.UpdateFirewallRuleOutput$ = UpdateFirewallRuleOutput$;
|
|
2409
|
+
exports.UpdateGlobalResolver$ = UpdateGlobalResolver$;
|
|
900
2410
|
exports.UpdateGlobalResolverCommand = UpdateGlobalResolverCommand;
|
|
2411
|
+
exports.UpdateGlobalResolverInput$ = UpdateGlobalResolverInput$;
|
|
2412
|
+
exports.UpdateGlobalResolverOutput$ = UpdateGlobalResolverOutput$;
|
|
2413
|
+
exports.UpdateHostedZoneAssociation$ = UpdateHostedZoneAssociation$;
|
|
901
2414
|
exports.UpdateHostedZoneAssociationCommand = UpdateHostedZoneAssociationCommand;
|
|
2415
|
+
exports.UpdateHostedZoneAssociationInput$ = UpdateHostedZoneAssociationInput$;
|
|
2416
|
+
exports.UpdateHostedZoneAssociationOutput$ = UpdateHostedZoneAssociationOutput$;
|
|
2417
|
+
exports.ValidationException = ValidationException;
|
|
2418
|
+
exports.ValidationException$ = ValidationException$;
|
|
2419
|
+
exports.ValidationExceptionField$ = ValidationExceptionField$;
|
|
902
2420
|
exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
2421
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
903
2422
|
exports.paginateListAccessSources = paginateListAccessSources;
|
|
904
2423
|
exports.paginateListAccessTokens = paginateListAccessTokens;
|
|
905
2424
|
exports.paginateListDNSViews = paginateListDNSViews;
|