@aws-sdk/client-route53globalresolver 3.1067.0 → 3.1069.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/auth/httpAuthSchemeProvider.js +9 -15
- package/dist-cjs/endpoint/bdd.js +2 -5
- package/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/dist-cjs/index.js +190 -210
- package/dist-cjs/models/Route53GlobalResolverServiceException.js +4 -8
- package/dist-cjs/models/errors.js +15 -25
- package/dist-cjs/runtimeConfig.browser.js +22 -26
- package/dist-cjs/runtimeConfig.js +30 -34
- package/dist-cjs/runtimeConfig.native.js +4 -7
- package/dist-cjs/runtimeConfig.shared.js +20 -24
- package/dist-cjs/schemas/schemas_0.js +318 -204
- package/package.json +8 -8
package/dist-cjs/index.js
CHANGED
|
@@ -1,18 +1,21 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
1
|
+
var __exportStar = (m, e) => { Object.assign(e, m); };
|
|
2
|
+
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
|
+
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
+
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
|
+
exports.$Command = Command;
|
|
6
|
+
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 { resolveHttpAuthSchemeConfig, defaultRoute53GlobalResolverHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
|
|
13
|
+
const { getRuntimeConfig } = require("./runtimeConfig");
|
|
14
|
+
const { AssociateHostedZone$, BatchCreateFirewallRule$, BatchDeleteFirewallRule$, BatchUpdateFirewallRule$, CreateAccessSource$, CreateAccessToken$, CreateDNSView$, CreateFirewallDomainList$, CreateFirewallRule$, CreateGlobalResolver$, DeleteAccessSource$, DeleteAccessToken$, DeleteDNSView$, DeleteFirewallDomainList$, DeleteFirewallRule$, DeleteGlobalResolver$, DisableDNSView$, DisassociateHostedZone$, EnableDNSView$, GetAccessSource$, GetAccessToken$, GetDNSView$, GetFirewallDomainList$, GetFirewallRule$, GetGlobalResolver$, GetHostedZoneAssociation$, GetManagedFirewallDomainList$, ImportFirewallDomains$, ListAccessSources$, ListAccessTokens$, ListDNSViews$, ListFirewallDomainLists$, ListFirewallDomains$, ListFirewallRules$, ListGlobalResolvers$, ListHostedZoneAssociations$, ListManagedFirewallDomainLists$, ListTagsForResource$, TagResource$, UntagResource$, UpdateAccessSource$, UpdateAccessToken$, UpdateDNSView$, UpdateFirewallDomains$, UpdateFirewallRule$, UpdateGlobalResolver$, UpdateHostedZoneAssociation$ } = require("./schemas/schemas_0");
|
|
15
|
+
__exportStar(require("./schemas/schemas_0"), exports);
|
|
16
|
+
__exportStar(require("./models/errors"), exports);
|
|
17
|
+
const { Route53GlobalResolverServiceException } = require("./models/Route53GlobalResolverServiceException");
|
|
18
|
+
exports.Route53GlobalResolverServiceException = Route53GlobalResolverServiceException;
|
|
16
19
|
|
|
17
20
|
const resolveClientEndpointParameters = (options) => {
|
|
18
21
|
return Object.assign(options, {
|
|
@@ -66,627 +69,627 @@ const resolveHttpAuthRuntimeConfig = (config) => {
|
|
|
66
69
|
};
|
|
67
70
|
|
|
68
71
|
const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
|
|
69
|
-
const extensionConfiguration = Object.assign(
|
|
72
|
+
const extensionConfiguration = Object.assign(getAwsRegionExtensionConfiguration(runtimeConfig), getDefaultExtensionConfiguration(runtimeConfig), getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration(runtimeConfig));
|
|
70
73
|
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
71
|
-
return Object.assign(runtimeConfig,
|
|
74
|
+
return Object.assign(runtimeConfig, resolveAwsRegionExtensionConfiguration(extensionConfiguration), resolveDefaultRuntimeConfig(extensionConfiguration), resolveHttpHandlerRuntimeConfig(extensionConfiguration), resolveHttpAuthRuntimeConfig(extensionConfiguration));
|
|
72
75
|
};
|
|
73
76
|
|
|
74
|
-
class Route53GlobalResolverClient extends
|
|
77
|
+
class Route53GlobalResolverClient extends Client {
|
|
75
78
|
config;
|
|
76
79
|
constructor(...[configuration]) {
|
|
77
|
-
const _config_0 =
|
|
80
|
+
const _config_0 = getRuntimeConfig(configuration || {});
|
|
78
81
|
super(_config_0);
|
|
79
82
|
this.initConfig = _config_0;
|
|
80
83
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
81
|
-
const _config_2 =
|
|
82
|
-
const _config_3 =
|
|
83
|
-
const _config_4 =
|
|
84
|
-
const _config_5 =
|
|
85
|
-
const _config_6 =
|
|
86
|
-
const _config_7 =
|
|
84
|
+
const _config_2 = resolveUserAgentConfig(_config_1);
|
|
85
|
+
const _config_3 = resolveRetryConfig(_config_2);
|
|
86
|
+
const _config_4 = resolveRegionConfig(_config_3);
|
|
87
|
+
const _config_5 = resolveHostHeaderConfig(_config_4);
|
|
88
|
+
const _config_6 = resolveEndpointConfig(_config_5);
|
|
89
|
+
const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
|
|
87
90
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
88
91
|
this.config = _config_8;
|
|
89
|
-
this.middlewareStack.use(
|
|
90
|
-
this.middlewareStack.use(
|
|
91
|
-
this.middlewareStack.use(
|
|
92
|
-
this.middlewareStack.use(
|
|
93
|
-
this.middlewareStack.use(
|
|
94
|
-
this.middlewareStack.use(
|
|
95
|
-
this.middlewareStack.use(
|
|
96
|
-
this.middlewareStack.use(
|
|
97
|
-
httpAuthSchemeParametersProvider:
|
|
98
|
-
identityProviderConfigProvider: async (config) => new
|
|
92
|
+
this.middlewareStack.use(getSchemaSerdePlugin(this.config));
|
|
93
|
+
this.middlewareStack.use(getUserAgentPlugin(this.config));
|
|
94
|
+
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
95
|
+
this.middlewareStack.use(getContentLengthPlugin(this.config));
|
|
96
|
+
this.middlewareStack.use(getHostHeaderPlugin(this.config));
|
|
97
|
+
this.middlewareStack.use(getLoggerPlugin(this.config));
|
|
98
|
+
this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
|
|
99
|
+
this.middlewareStack.use(getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {
|
|
100
|
+
httpAuthSchemeParametersProvider: defaultRoute53GlobalResolverHttpAuthSchemeParametersProvider,
|
|
101
|
+
identityProviderConfigProvider: async (config) => new DefaultIdentityProviderConfig({
|
|
99
102
|
"aws.auth#sigv4": config.credentials,
|
|
100
103
|
}),
|
|
101
104
|
}));
|
|
102
|
-
this.middlewareStack.use(
|
|
105
|
+
this.middlewareStack.use(getHttpSigningPlugin(this.config));
|
|
103
106
|
}
|
|
104
107
|
destroy() {
|
|
105
108
|
super.destroy();
|
|
106
109
|
}
|
|
107
110
|
}
|
|
108
111
|
|
|
109
|
-
class AssociateHostedZoneCommand extends
|
|
112
|
+
class AssociateHostedZoneCommand extends Command
|
|
110
113
|
.classBuilder()
|
|
111
114
|
.ep(commonParams)
|
|
112
115
|
.m(function (Command, cs, config, o) {
|
|
113
|
-
return [
|
|
116
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
114
117
|
})
|
|
115
118
|
.s("EC2DNSGlobalResolverCustomerAPI", "AssociateHostedZone", {})
|
|
116
119
|
.n("Route53GlobalResolverClient", "AssociateHostedZoneCommand")
|
|
117
|
-
.sc(
|
|
120
|
+
.sc(AssociateHostedZone$)
|
|
118
121
|
.build() {
|
|
119
122
|
}
|
|
120
123
|
|
|
121
|
-
class BatchCreateFirewallRuleCommand extends
|
|
124
|
+
class BatchCreateFirewallRuleCommand extends Command
|
|
122
125
|
.classBuilder()
|
|
123
126
|
.ep(commonParams)
|
|
124
127
|
.m(function (Command, cs, config, o) {
|
|
125
|
-
return [
|
|
128
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
126
129
|
})
|
|
127
130
|
.s("EC2DNSGlobalResolverCustomerAPI", "BatchCreateFirewallRule", {})
|
|
128
131
|
.n("Route53GlobalResolverClient", "BatchCreateFirewallRuleCommand")
|
|
129
|
-
.sc(
|
|
132
|
+
.sc(BatchCreateFirewallRule$)
|
|
130
133
|
.build() {
|
|
131
134
|
}
|
|
132
135
|
|
|
133
|
-
class BatchDeleteFirewallRuleCommand extends
|
|
136
|
+
class BatchDeleteFirewallRuleCommand extends Command
|
|
134
137
|
.classBuilder()
|
|
135
138
|
.ep(commonParams)
|
|
136
139
|
.m(function (Command, cs, config, o) {
|
|
137
|
-
return [
|
|
140
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
138
141
|
})
|
|
139
142
|
.s("EC2DNSGlobalResolverCustomerAPI", "BatchDeleteFirewallRule", {})
|
|
140
143
|
.n("Route53GlobalResolverClient", "BatchDeleteFirewallRuleCommand")
|
|
141
|
-
.sc(
|
|
144
|
+
.sc(BatchDeleteFirewallRule$)
|
|
142
145
|
.build() {
|
|
143
146
|
}
|
|
144
147
|
|
|
145
|
-
class BatchUpdateFirewallRuleCommand extends
|
|
148
|
+
class BatchUpdateFirewallRuleCommand extends Command
|
|
146
149
|
.classBuilder()
|
|
147
150
|
.ep(commonParams)
|
|
148
151
|
.m(function (Command, cs, config, o) {
|
|
149
|
-
return [
|
|
152
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
150
153
|
})
|
|
151
154
|
.s("EC2DNSGlobalResolverCustomerAPI", "BatchUpdateFirewallRule", {})
|
|
152
155
|
.n("Route53GlobalResolverClient", "BatchUpdateFirewallRuleCommand")
|
|
153
|
-
.sc(
|
|
156
|
+
.sc(BatchUpdateFirewallRule$)
|
|
154
157
|
.build() {
|
|
155
158
|
}
|
|
156
159
|
|
|
157
|
-
class CreateAccessSourceCommand extends
|
|
160
|
+
class CreateAccessSourceCommand extends Command
|
|
158
161
|
.classBuilder()
|
|
159
162
|
.ep(commonParams)
|
|
160
163
|
.m(function (Command, cs, config, o) {
|
|
161
|
-
return [
|
|
164
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
162
165
|
})
|
|
163
166
|
.s("EC2DNSGlobalResolverCustomerAPI", "CreateAccessSource", {})
|
|
164
167
|
.n("Route53GlobalResolverClient", "CreateAccessSourceCommand")
|
|
165
|
-
.sc(
|
|
168
|
+
.sc(CreateAccessSource$)
|
|
166
169
|
.build() {
|
|
167
170
|
}
|
|
168
171
|
|
|
169
|
-
class CreateAccessTokenCommand extends
|
|
172
|
+
class CreateAccessTokenCommand extends Command
|
|
170
173
|
.classBuilder()
|
|
171
174
|
.ep(commonParams)
|
|
172
175
|
.m(function (Command, cs, config, o) {
|
|
173
|
-
return [
|
|
176
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
174
177
|
})
|
|
175
178
|
.s("EC2DNSGlobalResolverCustomerAPI", "CreateAccessToken", {})
|
|
176
179
|
.n("Route53GlobalResolverClient", "CreateAccessTokenCommand")
|
|
177
|
-
.sc(
|
|
180
|
+
.sc(CreateAccessToken$)
|
|
178
181
|
.build() {
|
|
179
182
|
}
|
|
180
183
|
|
|
181
|
-
class CreateDNSViewCommand extends
|
|
184
|
+
class CreateDNSViewCommand extends Command
|
|
182
185
|
.classBuilder()
|
|
183
186
|
.ep(commonParams)
|
|
184
187
|
.m(function (Command, cs, config, o) {
|
|
185
|
-
return [
|
|
188
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
186
189
|
})
|
|
187
190
|
.s("EC2DNSGlobalResolverCustomerAPI", "CreateDNSView", {})
|
|
188
191
|
.n("Route53GlobalResolverClient", "CreateDNSViewCommand")
|
|
189
|
-
.sc(
|
|
192
|
+
.sc(CreateDNSView$)
|
|
190
193
|
.build() {
|
|
191
194
|
}
|
|
192
195
|
|
|
193
|
-
class CreateFirewallDomainListCommand extends
|
|
196
|
+
class CreateFirewallDomainListCommand extends Command
|
|
194
197
|
.classBuilder()
|
|
195
198
|
.ep(commonParams)
|
|
196
199
|
.m(function (Command, cs, config, o) {
|
|
197
|
-
return [
|
|
200
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
198
201
|
})
|
|
199
202
|
.s("EC2DNSGlobalResolverCustomerAPI", "CreateFirewallDomainList", {})
|
|
200
203
|
.n("Route53GlobalResolverClient", "CreateFirewallDomainListCommand")
|
|
201
|
-
.sc(
|
|
204
|
+
.sc(CreateFirewallDomainList$)
|
|
202
205
|
.build() {
|
|
203
206
|
}
|
|
204
207
|
|
|
205
|
-
class CreateFirewallRuleCommand extends
|
|
208
|
+
class CreateFirewallRuleCommand extends Command
|
|
206
209
|
.classBuilder()
|
|
207
210
|
.ep(commonParams)
|
|
208
211
|
.m(function (Command, cs, config, o) {
|
|
209
|
-
return [
|
|
212
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
210
213
|
})
|
|
211
214
|
.s("EC2DNSGlobalResolverCustomerAPI", "CreateFirewallRule", {})
|
|
212
215
|
.n("Route53GlobalResolverClient", "CreateFirewallRuleCommand")
|
|
213
|
-
.sc(
|
|
216
|
+
.sc(CreateFirewallRule$)
|
|
214
217
|
.build() {
|
|
215
218
|
}
|
|
216
219
|
|
|
217
|
-
class CreateGlobalResolverCommand extends
|
|
220
|
+
class CreateGlobalResolverCommand extends Command
|
|
218
221
|
.classBuilder()
|
|
219
222
|
.ep(commonParams)
|
|
220
223
|
.m(function (Command, cs, config, o) {
|
|
221
|
-
return [
|
|
224
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
222
225
|
})
|
|
223
226
|
.s("EC2DNSGlobalResolverCustomerAPI", "CreateGlobalResolver", {})
|
|
224
227
|
.n("Route53GlobalResolverClient", "CreateGlobalResolverCommand")
|
|
225
|
-
.sc(
|
|
228
|
+
.sc(CreateGlobalResolver$)
|
|
226
229
|
.build() {
|
|
227
230
|
}
|
|
228
231
|
|
|
229
|
-
class DeleteAccessSourceCommand extends
|
|
232
|
+
class DeleteAccessSourceCommand extends Command
|
|
230
233
|
.classBuilder()
|
|
231
234
|
.ep(commonParams)
|
|
232
235
|
.m(function (Command, cs, config, o) {
|
|
233
|
-
return [
|
|
236
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
234
237
|
})
|
|
235
238
|
.s("EC2DNSGlobalResolverCustomerAPI", "DeleteAccessSource", {})
|
|
236
239
|
.n("Route53GlobalResolverClient", "DeleteAccessSourceCommand")
|
|
237
|
-
.sc(
|
|
240
|
+
.sc(DeleteAccessSource$)
|
|
238
241
|
.build() {
|
|
239
242
|
}
|
|
240
243
|
|
|
241
|
-
class DeleteAccessTokenCommand extends
|
|
244
|
+
class DeleteAccessTokenCommand extends Command
|
|
242
245
|
.classBuilder()
|
|
243
246
|
.ep(commonParams)
|
|
244
247
|
.m(function (Command, cs, config, o) {
|
|
245
|
-
return [
|
|
248
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
246
249
|
})
|
|
247
250
|
.s("EC2DNSGlobalResolverCustomerAPI", "DeleteAccessToken", {})
|
|
248
251
|
.n("Route53GlobalResolverClient", "DeleteAccessTokenCommand")
|
|
249
|
-
.sc(
|
|
252
|
+
.sc(DeleteAccessToken$)
|
|
250
253
|
.build() {
|
|
251
254
|
}
|
|
252
255
|
|
|
253
|
-
class DeleteDNSViewCommand extends
|
|
256
|
+
class DeleteDNSViewCommand extends Command
|
|
254
257
|
.classBuilder()
|
|
255
258
|
.ep(commonParams)
|
|
256
259
|
.m(function (Command, cs, config, o) {
|
|
257
|
-
return [
|
|
260
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
258
261
|
})
|
|
259
262
|
.s("EC2DNSGlobalResolverCustomerAPI", "DeleteDNSView", {})
|
|
260
263
|
.n("Route53GlobalResolverClient", "DeleteDNSViewCommand")
|
|
261
|
-
.sc(
|
|
264
|
+
.sc(DeleteDNSView$)
|
|
262
265
|
.build() {
|
|
263
266
|
}
|
|
264
267
|
|
|
265
|
-
class DeleteFirewallDomainListCommand extends
|
|
268
|
+
class DeleteFirewallDomainListCommand extends Command
|
|
266
269
|
.classBuilder()
|
|
267
270
|
.ep(commonParams)
|
|
268
271
|
.m(function (Command, cs, config, o) {
|
|
269
|
-
return [
|
|
272
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
270
273
|
})
|
|
271
274
|
.s("EC2DNSGlobalResolverCustomerAPI", "DeleteFirewallDomainList", {})
|
|
272
275
|
.n("Route53GlobalResolverClient", "DeleteFirewallDomainListCommand")
|
|
273
|
-
.sc(
|
|
276
|
+
.sc(DeleteFirewallDomainList$)
|
|
274
277
|
.build() {
|
|
275
278
|
}
|
|
276
279
|
|
|
277
|
-
class DeleteFirewallRuleCommand extends
|
|
280
|
+
class DeleteFirewallRuleCommand extends Command
|
|
278
281
|
.classBuilder()
|
|
279
282
|
.ep(commonParams)
|
|
280
283
|
.m(function (Command, cs, config, o) {
|
|
281
|
-
return [
|
|
284
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
282
285
|
})
|
|
283
286
|
.s("EC2DNSGlobalResolverCustomerAPI", "DeleteFirewallRule", {})
|
|
284
287
|
.n("Route53GlobalResolverClient", "DeleteFirewallRuleCommand")
|
|
285
|
-
.sc(
|
|
288
|
+
.sc(DeleteFirewallRule$)
|
|
286
289
|
.build() {
|
|
287
290
|
}
|
|
288
291
|
|
|
289
|
-
class DeleteGlobalResolverCommand extends
|
|
292
|
+
class DeleteGlobalResolverCommand extends Command
|
|
290
293
|
.classBuilder()
|
|
291
294
|
.ep(commonParams)
|
|
292
295
|
.m(function (Command, cs, config, o) {
|
|
293
|
-
return [
|
|
296
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
294
297
|
})
|
|
295
298
|
.s("EC2DNSGlobalResolverCustomerAPI", "DeleteGlobalResolver", {})
|
|
296
299
|
.n("Route53GlobalResolverClient", "DeleteGlobalResolverCommand")
|
|
297
|
-
.sc(
|
|
300
|
+
.sc(DeleteGlobalResolver$)
|
|
298
301
|
.build() {
|
|
299
302
|
}
|
|
300
303
|
|
|
301
|
-
class DisableDNSViewCommand extends
|
|
304
|
+
class DisableDNSViewCommand extends Command
|
|
302
305
|
.classBuilder()
|
|
303
306
|
.ep(commonParams)
|
|
304
307
|
.m(function (Command, cs, config, o) {
|
|
305
|
-
return [
|
|
308
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
306
309
|
})
|
|
307
310
|
.s("EC2DNSGlobalResolverCustomerAPI", "DisableDNSView", {})
|
|
308
311
|
.n("Route53GlobalResolverClient", "DisableDNSViewCommand")
|
|
309
|
-
.sc(
|
|
312
|
+
.sc(DisableDNSView$)
|
|
310
313
|
.build() {
|
|
311
314
|
}
|
|
312
315
|
|
|
313
|
-
class DisassociateHostedZoneCommand extends
|
|
316
|
+
class DisassociateHostedZoneCommand extends Command
|
|
314
317
|
.classBuilder()
|
|
315
318
|
.ep(commonParams)
|
|
316
319
|
.m(function (Command, cs, config, o) {
|
|
317
|
-
return [
|
|
320
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
318
321
|
})
|
|
319
322
|
.s("EC2DNSGlobalResolverCustomerAPI", "DisassociateHostedZone", {})
|
|
320
323
|
.n("Route53GlobalResolverClient", "DisassociateHostedZoneCommand")
|
|
321
|
-
.sc(
|
|
324
|
+
.sc(DisassociateHostedZone$)
|
|
322
325
|
.build() {
|
|
323
326
|
}
|
|
324
327
|
|
|
325
|
-
class EnableDNSViewCommand extends
|
|
328
|
+
class EnableDNSViewCommand extends Command
|
|
326
329
|
.classBuilder()
|
|
327
330
|
.ep(commonParams)
|
|
328
331
|
.m(function (Command, cs, config, o) {
|
|
329
|
-
return [
|
|
332
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
330
333
|
})
|
|
331
334
|
.s("EC2DNSGlobalResolverCustomerAPI", "EnableDNSView", {})
|
|
332
335
|
.n("Route53GlobalResolverClient", "EnableDNSViewCommand")
|
|
333
|
-
.sc(
|
|
336
|
+
.sc(EnableDNSView$)
|
|
334
337
|
.build() {
|
|
335
338
|
}
|
|
336
339
|
|
|
337
|
-
class GetAccessSourceCommand extends
|
|
340
|
+
class GetAccessSourceCommand extends Command
|
|
338
341
|
.classBuilder()
|
|
339
342
|
.ep(commonParams)
|
|
340
343
|
.m(function (Command, cs, config, o) {
|
|
341
|
-
return [
|
|
344
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
342
345
|
})
|
|
343
346
|
.s("EC2DNSGlobalResolverCustomerAPI", "GetAccessSource", {})
|
|
344
347
|
.n("Route53GlobalResolverClient", "GetAccessSourceCommand")
|
|
345
|
-
.sc(
|
|
348
|
+
.sc(GetAccessSource$)
|
|
346
349
|
.build() {
|
|
347
350
|
}
|
|
348
351
|
|
|
349
|
-
class GetAccessTokenCommand extends
|
|
352
|
+
class GetAccessTokenCommand extends Command
|
|
350
353
|
.classBuilder()
|
|
351
354
|
.ep(commonParams)
|
|
352
355
|
.m(function (Command, cs, config, o) {
|
|
353
|
-
return [
|
|
356
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
354
357
|
})
|
|
355
358
|
.s("EC2DNSGlobalResolverCustomerAPI", "GetAccessToken", {})
|
|
356
359
|
.n("Route53GlobalResolverClient", "GetAccessTokenCommand")
|
|
357
|
-
.sc(
|
|
360
|
+
.sc(GetAccessToken$)
|
|
358
361
|
.build() {
|
|
359
362
|
}
|
|
360
363
|
|
|
361
|
-
class GetDNSViewCommand extends
|
|
364
|
+
class GetDNSViewCommand extends Command
|
|
362
365
|
.classBuilder()
|
|
363
366
|
.ep(commonParams)
|
|
364
367
|
.m(function (Command, cs, config, o) {
|
|
365
|
-
return [
|
|
368
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
366
369
|
})
|
|
367
370
|
.s("EC2DNSGlobalResolverCustomerAPI", "GetDNSView", {})
|
|
368
371
|
.n("Route53GlobalResolverClient", "GetDNSViewCommand")
|
|
369
|
-
.sc(
|
|
372
|
+
.sc(GetDNSView$)
|
|
370
373
|
.build() {
|
|
371
374
|
}
|
|
372
375
|
|
|
373
|
-
class GetFirewallDomainListCommand extends
|
|
376
|
+
class GetFirewallDomainListCommand extends Command
|
|
374
377
|
.classBuilder()
|
|
375
378
|
.ep(commonParams)
|
|
376
379
|
.m(function (Command, cs, config, o) {
|
|
377
|
-
return [
|
|
380
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
378
381
|
})
|
|
379
382
|
.s("EC2DNSGlobalResolverCustomerAPI", "GetFirewallDomainList", {})
|
|
380
383
|
.n("Route53GlobalResolverClient", "GetFirewallDomainListCommand")
|
|
381
|
-
.sc(
|
|
384
|
+
.sc(GetFirewallDomainList$)
|
|
382
385
|
.build() {
|
|
383
386
|
}
|
|
384
387
|
|
|
385
|
-
class GetFirewallRuleCommand extends
|
|
388
|
+
class GetFirewallRuleCommand extends Command
|
|
386
389
|
.classBuilder()
|
|
387
390
|
.ep(commonParams)
|
|
388
391
|
.m(function (Command, cs, config, o) {
|
|
389
|
-
return [
|
|
392
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
390
393
|
})
|
|
391
394
|
.s("EC2DNSGlobalResolverCustomerAPI", "GetFirewallRule", {})
|
|
392
395
|
.n("Route53GlobalResolverClient", "GetFirewallRuleCommand")
|
|
393
|
-
.sc(
|
|
396
|
+
.sc(GetFirewallRule$)
|
|
394
397
|
.build() {
|
|
395
398
|
}
|
|
396
399
|
|
|
397
|
-
class GetGlobalResolverCommand extends
|
|
400
|
+
class GetGlobalResolverCommand extends Command
|
|
398
401
|
.classBuilder()
|
|
399
402
|
.ep(commonParams)
|
|
400
403
|
.m(function (Command, cs, config, o) {
|
|
401
|
-
return [
|
|
404
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
402
405
|
})
|
|
403
406
|
.s("EC2DNSGlobalResolverCustomerAPI", "GetGlobalResolver", {})
|
|
404
407
|
.n("Route53GlobalResolverClient", "GetGlobalResolverCommand")
|
|
405
|
-
.sc(
|
|
408
|
+
.sc(GetGlobalResolver$)
|
|
406
409
|
.build() {
|
|
407
410
|
}
|
|
408
411
|
|
|
409
|
-
class GetHostedZoneAssociationCommand extends
|
|
412
|
+
class GetHostedZoneAssociationCommand extends Command
|
|
410
413
|
.classBuilder()
|
|
411
414
|
.ep(commonParams)
|
|
412
415
|
.m(function (Command, cs, config, o) {
|
|
413
|
-
return [
|
|
416
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
414
417
|
})
|
|
415
418
|
.s("EC2DNSGlobalResolverCustomerAPI", "GetHostedZoneAssociation", {})
|
|
416
419
|
.n("Route53GlobalResolverClient", "GetHostedZoneAssociationCommand")
|
|
417
|
-
.sc(
|
|
420
|
+
.sc(GetHostedZoneAssociation$)
|
|
418
421
|
.build() {
|
|
419
422
|
}
|
|
420
423
|
|
|
421
|
-
class GetManagedFirewallDomainListCommand extends
|
|
424
|
+
class GetManagedFirewallDomainListCommand extends Command
|
|
422
425
|
.classBuilder()
|
|
423
426
|
.ep(commonParams)
|
|
424
427
|
.m(function (Command, cs, config, o) {
|
|
425
|
-
return [
|
|
428
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
426
429
|
})
|
|
427
430
|
.s("EC2DNSGlobalResolverCustomerAPI", "GetManagedFirewallDomainList", {})
|
|
428
431
|
.n("Route53GlobalResolverClient", "GetManagedFirewallDomainListCommand")
|
|
429
|
-
.sc(
|
|
432
|
+
.sc(GetManagedFirewallDomainList$)
|
|
430
433
|
.build() {
|
|
431
434
|
}
|
|
432
435
|
|
|
433
|
-
class ImportFirewallDomainsCommand extends
|
|
436
|
+
class ImportFirewallDomainsCommand extends Command
|
|
434
437
|
.classBuilder()
|
|
435
438
|
.ep(commonParams)
|
|
436
439
|
.m(function (Command, cs, config, o) {
|
|
437
|
-
return [
|
|
440
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
438
441
|
})
|
|
439
442
|
.s("EC2DNSGlobalResolverCustomerAPI", "ImportFirewallDomains", {})
|
|
440
443
|
.n("Route53GlobalResolverClient", "ImportFirewallDomainsCommand")
|
|
441
|
-
.sc(
|
|
444
|
+
.sc(ImportFirewallDomains$)
|
|
442
445
|
.build() {
|
|
443
446
|
}
|
|
444
447
|
|
|
445
|
-
class ListAccessSourcesCommand extends
|
|
448
|
+
class ListAccessSourcesCommand extends Command
|
|
446
449
|
.classBuilder()
|
|
447
450
|
.ep(commonParams)
|
|
448
451
|
.m(function (Command, cs, config, o) {
|
|
449
|
-
return [
|
|
452
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
450
453
|
})
|
|
451
454
|
.s("EC2DNSGlobalResolverCustomerAPI", "ListAccessSources", {})
|
|
452
455
|
.n("Route53GlobalResolverClient", "ListAccessSourcesCommand")
|
|
453
|
-
.sc(
|
|
456
|
+
.sc(ListAccessSources$)
|
|
454
457
|
.build() {
|
|
455
458
|
}
|
|
456
459
|
|
|
457
|
-
class ListAccessTokensCommand extends
|
|
460
|
+
class ListAccessTokensCommand extends Command
|
|
458
461
|
.classBuilder()
|
|
459
462
|
.ep(commonParams)
|
|
460
463
|
.m(function (Command, cs, config, o) {
|
|
461
|
-
return [
|
|
464
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
462
465
|
})
|
|
463
466
|
.s("EC2DNSGlobalResolverCustomerAPI", "ListAccessTokens", {})
|
|
464
467
|
.n("Route53GlobalResolverClient", "ListAccessTokensCommand")
|
|
465
|
-
.sc(
|
|
468
|
+
.sc(ListAccessTokens$)
|
|
466
469
|
.build() {
|
|
467
470
|
}
|
|
468
471
|
|
|
469
|
-
class ListDNSViewsCommand extends
|
|
472
|
+
class ListDNSViewsCommand extends Command
|
|
470
473
|
.classBuilder()
|
|
471
474
|
.ep(commonParams)
|
|
472
475
|
.m(function (Command, cs, config, o) {
|
|
473
|
-
return [
|
|
476
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
474
477
|
})
|
|
475
478
|
.s("EC2DNSGlobalResolverCustomerAPI", "ListDNSViews", {})
|
|
476
479
|
.n("Route53GlobalResolverClient", "ListDNSViewsCommand")
|
|
477
|
-
.sc(
|
|
480
|
+
.sc(ListDNSViews$)
|
|
478
481
|
.build() {
|
|
479
482
|
}
|
|
480
483
|
|
|
481
|
-
class ListFirewallDomainListsCommand extends
|
|
484
|
+
class ListFirewallDomainListsCommand extends Command
|
|
482
485
|
.classBuilder()
|
|
483
486
|
.ep(commonParams)
|
|
484
487
|
.m(function (Command, cs, config, o) {
|
|
485
|
-
return [
|
|
488
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
486
489
|
})
|
|
487
490
|
.s("EC2DNSGlobalResolverCustomerAPI", "ListFirewallDomainLists", {})
|
|
488
491
|
.n("Route53GlobalResolverClient", "ListFirewallDomainListsCommand")
|
|
489
|
-
.sc(
|
|
492
|
+
.sc(ListFirewallDomainLists$)
|
|
490
493
|
.build() {
|
|
491
494
|
}
|
|
492
495
|
|
|
493
|
-
class ListFirewallDomainsCommand extends
|
|
496
|
+
class ListFirewallDomainsCommand extends Command
|
|
494
497
|
.classBuilder()
|
|
495
498
|
.ep(commonParams)
|
|
496
499
|
.m(function (Command, cs, config, o) {
|
|
497
|
-
return [
|
|
500
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
498
501
|
})
|
|
499
502
|
.s("EC2DNSGlobalResolverCustomerAPI", "ListFirewallDomains", {})
|
|
500
503
|
.n("Route53GlobalResolverClient", "ListFirewallDomainsCommand")
|
|
501
|
-
.sc(
|
|
504
|
+
.sc(ListFirewallDomains$)
|
|
502
505
|
.build() {
|
|
503
506
|
}
|
|
504
507
|
|
|
505
|
-
class ListFirewallRulesCommand extends
|
|
508
|
+
class ListFirewallRulesCommand extends Command
|
|
506
509
|
.classBuilder()
|
|
507
510
|
.ep(commonParams)
|
|
508
511
|
.m(function (Command, cs, config, o) {
|
|
509
|
-
return [
|
|
512
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
510
513
|
})
|
|
511
514
|
.s("EC2DNSGlobalResolverCustomerAPI", "ListFirewallRules", {})
|
|
512
515
|
.n("Route53GlobalResolverClient", "ListFirewallRulesCommand")
|
|
513
|
-
.sc(
|
|
516
|
+
.sc(ListFirewallRules$)
|
|
514
517
|
.build() {
|
|
515
518
|
}
|
|
516
519
|
|
|
517
|
-
class ListGlobalResolversCommand extends
|
|
520
|
+
class ListGlobalResolversCommand extends Command
|
|
518
521
|
.classBuilder()
|
|
519
522
|
.ep(commonParams)
|
|
520
523
|
.m(function (Command, cs, config, o) {
|
|
521
|
-
return [
|
|
524
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
522
525
|
})
|
|
523
526
|
.s("EC2DNSGlobalResolverCustomerAPI", "ListGlobalResolvers", {})
|
|
524
527
|
.n("Route53GlobalResolverClient", "ListGlobalResolversCommand")
|
|
525
|
-
.sc(
|
|
528
|
+
.sc(ListGlobalResolvers$)
|
|
526
529
|
.build() {
|
|
527
530
|
}
|
|
528
531
|
|
|
529
|
-
class ListHostedZoneAssociationsCommand extends
|
|
532
|
+
class ListHostedZoneAssociationsCommand extends Command
|
|
530
533
|
.classBuilder()
|
|
531
534
|
.ep(commonParams)
|
|
532
535
|
.m(function (Command, cs, config, o) {
|
|
533
|
-
return [
|
|
536
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
534
537
|
})
|
|
535
538
|
.s("EC2DNSGlobalResolverCustomerAPI", "ListHostedZoneAssociations", {})
|
|
536
539
|
.n("Route53GlobalResolverClient", "ListHostedZoneAssociationsCommand")
|
|
537
|
-
.sc(
|
|
540
|
+
.sc(ListHostedZoneAssociations$)
|
|
538
541
|
.build() {
|
|
539
542
|
}
|
|
540
543
|
|
|
541
|
-
class ListManagedFirewallDomainListsCommand extends
|
|
544
|
+
class ListManagedFirewallDomainListsCommand extends Command
|
|
542
545
|
.classBuilder()
|
|
543
546
|
.ep(commonParams)
|
|
544
547
|
.m(function (Command, cs, config, o) {
|
|
545
|
-
return [
|
|
548
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
546
549
|
})
|
|
547
550
|
.s("EC2DNSGlobalResolverCustomerAPI", "ListManagedFirewallDomainLists", {})
|
|
548
551
|
.n("Route53GlobalResolverClient", "ListManagedFirewallDomainListsCommand")
|
|
549
|
-
.sc(
|
|
552
|
+
.sc(ListManagedFirewallDomainLists$)
|
|
550
553
|
.build() {
|
|
551
554
|
}
|
|
552
555
|
|
|
553
|
-
class ListTagsForResourceCommand extends
|
|
556
|
+
class ListTagsForResourceCommand extends Command
|
|
554
557
|
.classBuilder()
|
|
555
558
|
.ep(commonParams)
|
|
556
559
|
.m(function (Command, cs, config, o) {
|
|
557
|
-
return [
|
|
560
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
558
561
|
})
|
|
559
562
|
.s("EC2DNSGlobalResolverCustomerAPI", "ListTagsForResource", {})
|
|
560
563
|
.n("Route53GlobalResolverClient", "ListTagsForResourceCommand")
|
|
561
|
-
.sc(
|
|
564
|
+
.sc(ListTagsForResource$)
|
|
562
565
|
.build() {
|
|
563
566
|
}
|
|
564
567
|
|
|
565
|
-
class TagResourceCommand extends
|
|
568
|
+
class TagResourceCommand extends Command
|
|
566
569
|
.classBuilder()
|
|
567
570
|
.ep(commonParams)
|
|
568
571
|
.m(function (Command, cs, config, o) {
|
|
569
|
-
return [
|
|
572
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
570
573
|
})
|
|
571
574
|
.s("EC2DNSGlobalResolverCustomerAPI", "TagResource", {})
|
|
572
575
|
.n("Route53GlobalResolverClient", "TagResourceCommand")
|
|
573
|
-
.sc(
|
|
576
|
+
.sc(TagResource$)
|
|
574
577
|
.build() {
|
|
575
578
|
}
|
|
576
579
|
|
|
577
|
-
class UntagResourceCommand extends
|
|
580
|
+
class UntagResourceCommand extends Command
|
|
578
581
|
.classBuilder()
|
|
579
582
|
.ep(commonParams)
|
|
580
583
|
.m(function (Command, cs, config, o) {
|
|
581
|
-
return [
|
|
584
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
582
585
|
})
|
|
583
586
|
.s("EC2DNSGlobalResolverCustomerAPI", "UntagResource", {})
|
|
584
587
|
.n("Route53GlobalResolverClient", "UntagResourceCommand")
|
|
585
|
-
.sc(
|
|
588
|
+
.sc(UntagResource$)
|
|
586
589
|
.build() {
|
|
587
590
|
}
|
|
588
591
|
|
|
589
|
-
class UpdateAccessSourceCommand extends
|
|
592
|
+
class UpdateAccessSourceCommand extends Command
|
|
590
593
|
.classBuilder()
|
|
591
594
|
.ep(commonParams)
|
|
592
595
|
.m(function (Command, cs, config, o) {
|
|
593
|
-
return [
|
|
596
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
594
597
|
})
|
|
595
598
|
.s("EC2DNSGlobalResolverCustomerAPI", "UpdateAccessSource", {})
|
|
596
599
|
.n("Route53GlobalResolverClient", "UpdateAccessSourceCommand")
|
|
597
|
-
.sc(
|
|
600
|
+
.sc(UpdateAccessSource$)
|
|
598
601
|
.build() {
|
|
599
602
|
}
|
|
600
603
|
|
|
601
|
-
class UpdateAccessTokenCommand extends
|
|
604
|
+
class UpdateAccessTokenCommand extends Command
|
|
602
605
|
.classBuilder()
|
|
603
606
|
.ep(commonParams)
|
|
604
607
|
.m(function (Command, cs, config, o) {
|
|
605
|
-
return [
|
|
608
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
606
609
|
})
|
|
607
610
|
.s("EC2DNSGlobalResolverCustomerAPI", "UpdateAccessToken", {})
|
|
608
611
|
.n("Route53GlobalResolverClient", "UpdateAccessTokenCommand")
|
|
609
|
-
.sc(
|
|
612
|
+
.sc(UpdateAccessToken$)
|
|
610
613
|
.build() {
|
|
611
614
|
}
|
|
612
615
|
|
|
613
|
-
class UpdateDNSViewCommand extends
|
|
616
|
+
class UpdateDNSViewCommand extends Command
|
|
614
617
|
.classBuilder()
|
|
615
618
|
.ep(commonParams)
|
|
616
619
|
.m(function (Command, cs, config, o) {
|
|
617
|
-
return [
|
|
620
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
618
621
|
})
|
|
619
622
|
.s("EC2DNSGlobalResolverCustomerAPI", "UpdateDNSView", {})
|
|
620
623
|
.n("Route53GlobalResolverClient", "UpdateDNSViewCommand")
|
|
621
|
-
.sc(
|
|
624
|
+
.sc(UpdateDNSView$)
|
|
622
625
|
.build() {
|
|
623
626
|
}
|
|
624
627
|
|
|
625
|
-
class UpdateFirewallDomainsCommand extends
|
|
628
|
+
class UpdateFirewallDomainsCommand extends Command
|
|
626
629
|
.classBuilder()
|
|
627
630
|
.ep(commonParams)
|
|
628
631
|
.m(function (Command, cs, config, o) {
|
|
629
|
-
return [
|
|
632
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
630
633
|
})
|
|
631
634
|
.s("EC2DNSGlobalResolverCustomerAPI", "UpdateFirewallDomains", {})
|
|
632
635
|
.n("Route53GlobalResolverClient", "UpdateFirewallDomainsCommand")
|
|
633
|
-
.sc(
|
|
636
|
+
.sc(UpdateFirewallDomains$)
|
|
634
637
|
.build() {
|
|
635
638
|
}
|
|
636
639
|
|
|
637
|
-
class UpdateFirewallRuleCommand extends
|
|
640
|
+
class UpdateFirewallRuleCommand extends Command
|
|
638
641
|
.classBuilder()
|
|
639
642
|
.ep(commonParams)
|
|
640
643
|
.m(function (Command, cs, config, o) {
|
|
641
|
-
return [
|
|
644
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
642
645
|
})
|
|
643
646
|
.s("EC2DNSGlobalResolverCustomerAPI", "UpdateFirewallRule", {})
|
|
644
647
|
.n("Route53GlobalResolverClient", "UpdateFirewallRuleCommand")
|
|
645
|
-
.sc(
|
|
648
|
+
.sc(UpdateFirewallRule$)
|
|
646
649
|
.build() {
|
|
647
650
|
}
|
|
648
651
|
|
|
649
|
-
class UpdateGlobalResolverCommand extends
|
|
652
|
+
class UpdateGlobalResolverCommand extends Command
|
|
650
653
|
.classBuilder()
|
|
651
654
|
.ep(commonParams)
|
|
652
655
|
.m(function (Command, cs, config, o) {
|
|
653
|
-
return [
|
|
656
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
654
657
|
})
|
|
655
658
|
.s("EC2DNSGlobalResolverCustomerAPI", "UpdateGlobalResolver", {})
|
|
656
659
|
.n("Route53GlobalResolverClient", "UpdateGlobalResolverCommand")
|
|
657
|
-
.sc(
|
|
660
|
+
.sc(UpdateGlobalResolver$)
|
|
658
661
|
.build() {
|
|
659
662
|
}
|
|
660
663
|
|
|
661
|
-
class UpdateHostedZoneAssociationCommand extends
|
|
664
|
+
class UpdateHostedZoneAssociationCommand extends Command
|
|
662
665
|
.classBuilder()
|
|
663
666
|
.ep(commonParams)
|
|
664
667
|
.m(function (Command, cs, config, o) {
|
|
665
|
-
return [
|
|
668
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
666
669
|
})
|
|
667
670
|
.s("EC2DNSGlobalResolverCustomerAPI", "UpdateHostedZoneAssociation", {})
|
|
668
671
|
.n("Route53GlobalResolverClient", "UpdateHostedZoneAssociationCommand")
|
|
669
|
-
.sc(
|
|
672
|
+
.sc(UpdateHostedZoneAssociation$)
|
|
670
673
|
.build() {
|
|
671
674
|
}
|
|
672
675
|
|
|
673
|
-
const paginateListAccessSources =
|
|
676
|
+
const paginateListAccessSources = createPaginator(Route53GlobalResolverClient, ListAccessSourcesCommand, "nextToken", "nextToken", "maxResults");
|
|
674
677
|
|
|
675
|
-
const paginateListAccessTokens =
|
|
678
|
+
const paginateListAccessTokens = createPaginator(Route53GlobalResolverClient, ListAccessTokensCommand, "nextToken", "nextToken", "maxResults");
|
|
676
679
|
|
|
677
|
-
const paginateListDNSViews =
|
|
680
|
+
const paginateListDNSViews = createPaginator(Route53GlobalResolverClient, ListDNSViewsCommand, "nextToken", "nextToken", "maxResults");
|
|
678
681
|
|
|
679
|
-
const paginateListFirewallDomainLists =
|
|
682
|
+
const paginateListFirewallDomainLists = createPaginator(Route53GlobalResolverClient, ListFirewallDomainListsCommand, "nextToken", "nextToken", "maxResults");
|
|
680
683
|
|
|
681
|
-
const paginateListFirewallDomains =
|
|
684
|
+
const paginateListFirewallDomains = createPaginator(Route53GlobalResolverClient, ListFirewallDomainsCommand, "nextToken", "nextToken", "maxResults");
|
|
682
685
|
|
|
683
|
-
const paginateListFirewallRules =
|
|
686
|
+
const paginateListFirewallRules = createPaginator(Route53GlobalResolverClient, ListFirewallRulesCommand, "nextToken", "nextToken", "maxResults");
|
|
684
687
|
|
|
685
|
-
const paginateListGlobalResolvers =
|
|
688
|
+
const paginateListGlobalResolvers = createPaginator(Route53GlobalResolverClient, ListGlobalResolversCommand, "nextToken", "nextToken", "maxResults");
|
|
686
689
|
|
|
687
|
-
const paginateListHostedZoneAssociations =
|
|
690
|
+
const paginateListHostedZoneAssociations = createPaginator(Route53GlobalResolverClient, ListHostedZoneAssociationsCommand, "nextToken", "nextToken", "maxResults");
|
|
688
691
|
|
|
689
|
-
const paginateListManagedFirewallDomainLists =
|
|
692
|
+
const paginateListManagedFirewallDomainLists = createPaginator(Route53GlobalResolverClient, ListManagedFirewallDomainListsCommand, "nextToken", "nextToken", "maxResults");
|
|
690
693
|
|
|
691
694
|
const commands = {
|
|
692
695
|
AssociateHostedZoneCommand,
|
|
@@ -750,7 +753,7 @@ const paginators = {
|
|
|
750
753
|
};
|
|
751
754
|
class Route53GlobalResolver extends Route53GlobalResolverClient {
|
|
752
755
|
}
|
|
753
|
-
|
|
756
|
+
createAggregatedClient(commands, Route53GlobalResolver, { paginators });
|
|
754
757
|
|
|
755
758
|
const IpAddressType = {
|
|
756
759
|
IPV4: "IPV4",
|
|
@@ -832,9 +835,6 @@ const GlobalResolverIpAddressType = {
|
|
|
832
835
|
IPV4: "IPV4",
|
|
833
836
|
};
|
|
834
837
|
|
|
835
|
-
exports.$Command = client.Command;
|
|
836
|
-
exports.__Client = client.Client;
|
|
837
|
-
exports.Route53GlobalResolverServiceException = Route53GlobalResolverServiceException.Route53GlobalResolverServiceException;
|
|
838
838
|
exports.AssociateHostedZoneCommand = AssociateHostedZoneCommand;
|
|
839
839
|
exports.BatchCreateFirewallRuleCommand = BatchCreateFirewallRuleCommand;
|
|
840
840
|
exports.BatchDeleteFirewallRuleCommand = BatchDeleteFirewallRuleCommand;
|
|
@@ -909,23 +909,3 @@ exports.paginateListFirewallRules = paginateListFirewallRules;
|
|
|
909
909
|
exports.paginateListGlobalResolvers = paginateListGlobalResolvers;
|
|
910
910
|
exports.paginateListHostedZoneAssociations = paginateListHostedZoneAssociations;
|
|
911
911
|
exports.paginateListManagedFirewallDomainLists = paginateListManagedFirewallDomainLists;
|
|
912
|
-
Object.prototype.hasOwnProperty.call(schemas_0, '__proto__') &&
|
|
913
|
-
!Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
|
|
914
|
-
Object.defineProperty(exports, '__proto__', {
|
|
915
|
-
enumerable: true,
|
|
916
|
-
value: schemas_0['__proto__']
|
|
917
|
-
});
|
|
918
|
-
|
|
919
|
-
Object.keys(schemas_0).forEach(function (k) {
|
|
920
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = schemas_0[k];
|
|
921
|
-
});
|
|
922
|
-
Object.prototype.hasOwnProperty.call(errors, '__proto__') &&
|
|
923
|
-
!Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
|
|
924
|
-
Object.defineProperty(exports, '__proto__', {
|
|
925
|
-
enumerable: true,
|
|
926
|
-
value: errors['__proto__']
|
|
927
|
-
});
|
|
928
|
-
|
|
929
|
-
Object.keys(errors).forEach(function (k) {
|
|
930
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = errors[k];
|
|
931
|
-
});
|