@aws-sdk/client-route-53 3.312.0 → 3.316.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/Route53.js +74 -980
- package/dist-cjs/protocols/Aws_restXml.js +229 -299
- package/dist-es/Route53.js +74 -980
- package/dist-es/protocols/Aws_restXml.js +72 -142
- package/dist-types/Route53.d.ts +93 -1153
- package/dist-types/ts3.4/Route53.d.ts +2 -1
- package/package.json +6 -6
package/dist-es/Route53.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { createAggregatedClient } from "@aws-sdk/smithy-client";
|
|
1
2
|
import { ActivateKeySigningKeyCommand, } from "./commands/ActivateKeySigningKeyCommand";
|
|
2
3
|
import { AssociateVPCWithHostedZoneCommand, } from "./commands/AssociateVPCWithHostedZoneCommand";
|
|
3
4
|
import { ChangeCidrCollectionCommand, } from "./commands/ChangeCidrCollectionCommand";
|
|
@@ -69,985 +70,78 @@ import { UpdateHostedZoneCommentCommand, } from "./commands/UpdateHostedZoneComm
|
|
|
69
70
|
import { UpdateTrafficPolicyCommentCommand, } from "./commands/UpdateTrafficPolicyCommentCommand";
|
|
70
71
|
import { UpdateTrafficPolicyInstanceCommand, } from "./commands/UpdateTrafficPolicyInstanceCommand";
|
|
71
72
|
import { Route53Client } from "./Route53Client";
|
|
73
|
+
const commands = {
|
|
74
|
+
ActivateKeySigningKeyCommand,
|
|
75
|
+
AssociateVPCWithHostedZoneCommand,
|
|
76
|
+
ChangeCidrCollectionCommand,
|
|
77
|
+
ChangeResourceRecordSetsCommand,
|
|
78
|
+
ChangeTagsForResourceCommand,
|
|
79
|
+
CreateCidrCollectionCommand,
|
|
80
|
+
CreateHealthCheckCommand,
|
|
81
|
+
CreateHostedZoneCommand,
|
|
82
|
+
CreateKeySigningKeyCommand,
|
|
83
|
+
CreateQueryLoggingConfigCommand,
|
|
84
|
+
CreateReusableDelegationSetCommand,
|
|
85
|
+
CreateTrafficPolicyCommand,
|
|
86
|
+
CreateTrafficPolicyInstanceCommand,
|
|
87
|
+
CreateTrafficPolicyVersionCommand,
|
|
88
|
+
CreateVPCAssociationAuthorizationCommand,
|
|
89
|
+
DeactivateKeySigningKeyCommand,
|
|
90
|
+
DeleteCidrCollectionCommand,
|
|
91
|
+
DeleteHealthCheckCommand,
|
|
92
|
+
DeleteHostedZoneCommand,
|
|
93
|
+
DeleteKeySigningKeyCommand,
|
|
94
|
+
DeleteQueryLoggingConfigCommand,
|
|
95
|
+
DeleteReusableDelegationSetCommand,
|
|
96
|
+
DeleteTrafficPolicyCommand,
|
|
97
|
+
DeleteTrafficPolicyInstanceCommand,
|
|
98
|
+
DeleteVPCAssociationAuthorizationCommand,
|
|
99
|
+
DisableHostedZoneDNSSECCommand,
|
|
100
|
+
DisassociateVPCFromHostedZoneCommand,
|
|
101
|
+
EnableHostedZoneDNSSECCommand,
|
|
102
|
+
GetAccountLimitCommand,
|
|
103
|
+
GetChangeCommand,
|
|
104
|
+
GetCheckerIpRangesCommand,
|
|
105
|
+
GetDNSSECCommand,
|
|
106
|
+
GetGeoLocationCommand,
|
|
107
|
+
GetHealthCheckCommand,
|
|
108
|
+
GetHealthCheckCountCommand,
|
|
109
|
+
GetHealthCheckLastFailureReasonCommand,
|
|
110
|
+
GetHealthCheckStatusCommand,
|
|
111
|
+
GetHostedZoneCommand,
|
|
112
|
+
GetHostedZoneCountCommand,
|
|
113
|
+
GetHostedZoneLimitCommand,
|
|
114
|
+
GetQueryLoggingConfigCommand,
|
|
115
|
+
GetReusableDelegationSetCommand,
|
|
116
|
+
GetReusableDelegationSetLimitCommand,
|
|
117
|
+
GetTrafficPolicyCommand,
|
|
118
|
+
GetTrafficPolicyInstanceCommand,
|
|
119
|
+
GetTrafficPolicyInstanceCountCommand,
|
|
120
|
+
ListCidrBlocksCommand,
|
|
121
|
+
ListCidrCollectionsCommand,
|
|
122
|
+
ListCidrLocationsCommand,
|
|
123
|
+
ListGeoLocationsCommand,
|
|
124
|
+
ListHealthChecksCommand,
|
|
125
|
+
ListHostedZonesCommand,
|
|
126
|
+
ListHostedZonesByNameCommand,
|
|
127
|
+
ListHostedZonesByVPCCommand,
|
|
128
|
+
ListQueryLoggingConfigsCommand,
|
|
129
|
+
ListResourceRecordSetsCommand,
|
|
130
|
+
ListReusableDelegationSetsCommand,
|
|
131
|
+
ListTagsForResourceCommand,
|
|
132
|
+
ListTagsForResourcesCommand,
|
|
133
|
+
ListTrafficPoliciesCommand,
|
|
134
|
+
ListTrafficPolicyInstancesCommand,
|
|
135
|
+
ListTrafficPolicyInstancesByHostedZoneCommand,
|
|
136
|
+
ListTrafficPolicyInstancesByPolicyCommand,
|
|
137
|
+
ListTrafficPolicyVersionsCommand,
|
|
138
|
+
ListVPCAssociationAuthorizationsCommand,
|
|
139
|
+
TestDNSAnswerCommand,
|
|
140
|
+
UpdateHealthCheckCommand,
|
|
141
|
+
UpdateHostedZoneCommentCommand,
|
|
142
|
+
UpdateTrafficPolicyCommentCommand,
|
|
143
|
+
UpdateTrafficPolicyInstanceCommand,
|
|
144
|
+
};
|
|
72
145
|
export class Route53 extends Route53Client {
|
|
73
|
-
activateKeySigningKey(args, optionsOrCb, cb) {
|
|
74
|
-
const command = new ActivateKeySigningKeyCommand(args);
|
|
75
|
-
if (typeof optionsOrCb === "function") {
|
|
76
|
-
this.send(command, optionsOrCb);
|
|
77
|
-
}
|
|
78
|
-
else if (typeof cb === "function") {
|
|
79
|
-
if (typeof optionsOrCb !== "object")
|
|
80
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
81
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
82
|
-
}
|
|
83
|
-
else {
|
|
84
|
-
return this.send(command, optionsOrCb);
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
associateVPCWithHostedZone(args, optionsOrCb, cb) {
|
|
88
|
-
const command = new AssociateVPCWithHostedZoneCommand(args);
|
|
89
|
-
if (typeof optionsOrCb === "function") {
|
|
90
|
-
this.send(command, optionsOrCb);
|
|
91
|
-
}
|
|
92
|
-
else if (typeof cb === "function") {
|
|
93
|
-
if (typeof optionsOrCb !== "object")
|
|
94
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
95
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
96
|
-
}
|
|
97
|
-
else {
|
|
98
|
-
return this.send(command, optionsOrCb);
|
|
99
|
-
}
|
|
100
|
-
}
|
|
101
|
-
changeCidrCollection(args, optionsOrCb, cb) {
|
|
102
|
-
const command = new ChangeCidrCollectionCommand(args);
|
|
103
|
-
if (typeof optionsOrCb === "function") {
|
|
104
|
-
this.send(command, optionsOrCb);
|
|
105
|
-
}
|
|
106
|
-
else if (typeof cb === "function") {
|
|
107
|
-
if (typeof optionsOrCb !== "object")
|
|
108
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
109
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
110
|
-
}
|
|
111
|
-
else {
|
|
112
|
-
return this.send(command, optionsOrCb);
|
|
113
|
-
}
|
|
114
|
-
}
|
|
115
|
-
changeResourceRecordSets(args, optionsOrCb, cb) {
|
|
116
|
-
const command = new ChangeResourceRecordSetsCommand(args);
|
|
117
|
-
if (typeof optionsOrCb === "function") {
|
|
118
|
-
this.send(command, optionsOrCb);
|
|
119
|
-
}
|
|
120
|
-
else if (typeof cb === "function") {
|
|
121
|
-
if (typeof optionsOrCb !== "object")
|
|
122
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
123
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
124
|
-
}
|
|
125
|
-
else {
|
|
126
|
-
return this.send(command, optionsOrCb);
|
|
127
|
-
}
|
|
128
|
-
}
|
|
129
|
-
changeTagsForResource(args, optionsOrCb, cb) {
|
|
130
|
-
const command = new ChangeTagsForResourceCommand(args);
|
|
131
|
-
if (typeof optionsOrCb === "function") {
|
|
132
|
-
this.send(command, optionsOrCb);
|
|
133
|
-
}
|
|
134
|
-
else if (typeof cb === "function") {
|
|
135
|
-
if (typeof optionsOrCb !== "object")
|
|
136
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
137
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
138
|
-
}
|
|
139
|
-
else {
|
|
140
|
-
return this.send(command, optionsOrCb);
|
|
141
|
-
}
|
|
142
|
-
}
|
|
143
|
-
createCidrCollection(args, optionsOrCb, cb) {
|
|
144
|
-
const command = new CreateCidrCollectionCommand(args);
|
|
145
|
-
if (typeof optionsOrCb === "function") {
|
|
146
|
-
this.send(command, optionsOrCb);
|
|
147
|
-
}
|
|
148
|
-
else if (typeof cb === "function") {
|
|
149
|
-
if (typeof optionsOrCb !== "object")
|
|
150
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
151
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
152
|
-
}
|
|
153
|
-
else {
|
|
154
|
-
return this.send(command, optionsOrCb);
|
|
155
|
-
}
|
|
156
|
-
}
|
|
157
|
-
createHealthCheck(args, optionsOrCb, cb) {
|
|
158
|
-
const command = new CreateHealthCheckCommand(args);
|
|
159
|
-
if (typeof optionsOrCb === "function") {
|
|
160
|
-
this.send(command, optionsOrCb);
|
|
161
|
-
}
|
|
162
|
-
else if (typeof cb === "function") {
|
|
163
|
-
if (typeof optionsOrCb !== "object")
|
|
164
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
165
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
166
|
-
}
|
|
167
|
-
else {
|
|
168
|
-
return this.send(command, optionsOrCb);
|
|
169
|
-
}
|
|
170
|
-
}
|
|
171
|
-
createHostedZone(args, optionsOrCb, cb) {
|
|
172
|
-
const command = new CreateHostedZoneCommand(args);
|
|
173
|
-
if (typeof optionsOrCb === "function") {
|
|
174
|
-
this.send(command, optionsOrCb);
|
|
175
|
-
}
|
|
176
|
-
else if (typeof cb === "function") {
|
|
177
|
-
if (typeof optionsOrCb !== "object")
|
|
178
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
179
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
180
|
-
}
|
|
181
|
-
else {
|
|
182
|
-
return this.send(command, optionsOrCb);
|
|
183
|
-
}
|
|
184
|
-
}
|
|
185
|
-
createKeySigningKey(args, optionsOrCb, cb) {
|
|
186
|
-
const command = new CreateKeySigningKeyCommand(args);
|
|
187
|
-
if (typeof optionsOrCb === "function") {
|
|
188
|
-
this.send(command, optionsOrCb);
|
|
189
|
-
}
|
|
190
|
-
else if (typeof cb === "function") {
|
|
191
|
-
if (typeof optionsOrCb !== "object")
|
|
192
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
193
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
194
|
-
}
|
|
195
|
-
else {
|
|
196
|
-
return this.send(command, optionsOrCb);
|
|
197
|
-
}
|
|
198
|
-
}
|
|
199
|
-
createQueryLoggingConfig(args, optionsOrCb, cb) {
|
|
200
|
-
const command = new CreateQueryLoggingConfigCommand(args);
|
|
201
|
-
if (typeof optionsOrCb === "function") {
|
|
202
|
-
this.send(command, optionsOrCb);
|
|
203
|
-
}
|
|
204
|
-
else if (typeof cb === "function") {
|
|
205
|
-
if (typeof optionsOrCb !== "object")
|
|
206
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
207
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
208
|
-
}
|
|
209
|
-
else {
|
|
210
|
-
return this.send(command, optionsOrCb);
|
|
211
|
-
}
|
|
212
|
-
}
|
|
213
|
-
createReusableDelegationSet(args, optionsOrCb, cb) {
|
|
214
|
-
const command = new CreateReusableDelegationSetCommand(args);
|
|
215
|
-
if (typeof optionsOrCb === "function") {
|
|
216
|
-
this.send(command, optionsOrCb);
|
|
217
|
-
}
|
|
218
|
-
else if (typeof cb === "function") {
|
|
219
|
-
if (typeof optionsOrCb !== "object")
|
|
220
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
221
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
222
|
-
}
|
|
223
|
-
else {
|
|
224
|
-
return this.send(command, optionsOrCb);
|
|
225
|
-
}
|
|
226
|
-
}
|
|
227
|
-
createTrafficPolicy(args, optionsOrCb, cb) {
|
|
228
|
-
const command = new CreateTrafficPolicyCommand(args);
|
|
229
|
-
if (typeof optionsOrCb === "function") {
|
|
230
|
-
this.send(command, optionsOrCb);
|
|
231
|
-
}
|
|
232
|
-
else if (typeof cb === "function") {
|
|
233
|
-
if (typeof optionsOrCb !== "object")
|
|
234
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
235
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
236
|
-
}
|
|
237
|
-
else {
|
|
238
|
-
return this.send(command, optionsOrCb);
|
|
239
|
-
}
|
|
240
|
-
}
|
|
241
|
-
createTrafficPolicyInstance(args, optionsOrCb, cb) {
|
|
242
|
-
const command = new CreateTrafficPolicyInstanceCommand(args);
|
|
243
|
-
if (typeof optionsOrCb === "function") {
|
|
244
|
-
this.send(command, optionsOrCb);
|
|
245
|
-
}
|
|
246
|
-
else if (typeof cb === "function") {
|
|
247
|
-
if (typeof optionsOrCb !== "object")
|
|
248
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
249
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
250
|
-
}
|
|
251
|
-
else {
|
|
252
|
-
return this.send(command, optionsOrCb);
|
|
253
|
-
}
|
|
254
|
-
}
|
|
255
|
-
createTrafficPolicyVersion(args, optionsOrCb, cb) {
|
|
256
|
-
const command = new CreateTrafficPolicyVersionCommand(args);
|
|
257
|
-
if (typeof optionsOrCb === "function") {
|
|
258
|
-
this.send(command, optionsOrCb);
|
|
259
|
-
}
|
|
260
|
-
else if (typeof cb === "function") {
|
|
261
|
-
if (typeof optionsOrCb !== "object")
|
|
262
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
263
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
264
|
-
}
|
|
265
|
-
else {
|
|
266
|
-
return this.send(command, optionsOrCb);
|
|
267
|
-
}
|
|
268
|
-
}
|
|
269
|
-
createVPCAssociationAuthorization(args, optionsOrCb, cb) {
|
|
270
|
-
const command = new CreateVPCAssociationAuthorizationCommand(args);
|
|
271
|
-
if (typeof optionsOrCb === "function") {
|
|
272
|
-
this.send(command, optionsOrCb);
|
|
273
|
-
}
|
|
274
|
-
else if (typeof cb === "function") {
|
|
275
|
-
if (typeof optionsOrCb !== "object")
|
|
276
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
277
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
278
|
-
}
|
|
279
|
-
else {
|
|
280
|
-
return this.send(command, optionsOrCb);
|
|
281
|
-
}
|
|
282
|
-
}
|
|
283
|
-
deactivateKeySigningKey(args, optionsOrCb, cb) {
|
|
284
|
-
const command = new DeactivateKeySigningKeyCommand(args);
|
|
285
|
-
if (typeof optionsOrCb === "function") {
|
|
286
|
-
this.send(command, optionsOrCb);
|
|
287
|
-
}
|
|
288
|
-
else if (typeof cb === "function") {
|
|
289
|
-
if (typeof optionsOrCb !== "object")
|
|
290
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
291
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
292
|
-
}
|
|
293
|
-
else {
|
|
294
|
-
return this.send(command, optionsOrCb);
|
|
295
|
-
}
|
|
296
|
-
}
|
|
297
|
-
deleteCidrCollection(args, optionsOrCb, cb) {
|
|
298
|
-
const command = new DeleteCidrCollectionCommand(args);
|
|
299
|
-
if (typeof optionsOrCb === "function") {
|
|
300
|
-
this.send(command, optionsOrCb);
|
|
301
|
-
}
|
|
302
|
-
else if (typeof cb === "function") {
|
|
303
|
-
if (typeof optionsOrCb !== "object")
|
|
304
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
305
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
306
|
-
}
|
|
307
|
-
else {
|
|
308
|
-
return this.send(command, optionsOrCb);
|
|
309
|
-
}
|
|
310
|
-
}
|
|
311
|
-
deleteHealthCheck(args, optionsOrCb, cb) {
|
|
312
|
-
const command = new DeleteHealthCheckCommand(args);
|
|
313
|
-
if (typeof optionsOrCb === "function") {
|
|
314
|
-
this.send(command, optionsOrCb);
|
|
315
|
-
}
|
|
316
|
-
else if (typeof cb === "function") {
|
|
317
|
-
if (typeof optionsOrCb !== "object")
|
|
318
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
319
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
320
|
-
}
|
|
321
|
-
else {
|
|
322
|
-
return this.send(command, optionsOrCb);
|
|
323
|
-
}
|
|
324
|
-
}
|
|
325
|
-
deleteHostedZone(args, optionsOrCb, cb) {
|
|
326
|
-
const command = new DeleteHostedZoneCommand(args);
|
|
327
|
-
if (typeof optionsOrCb === "function") {
|
|
328
|
-
this.send(command, optionsOrCb);
|
|
329
|
-
}
|
|
330
|
-
else if (typeof cb === "function") {
|
|
331
|
-
if (typeof optionsOrCb !== "object")
|
|
332
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
333
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
334
|
-
}
|
|
335
|
-
else {
|
|
336
|
-
return this.send(command, optionsOrCb);
|
|
337
|
-
}
|
|
338
|
-
}
|
|
339
|
-
deleteKeySigningKey(args, optionsOrCb, cb) {
|
|
340
|
-
const command = new DeleteKeySigningKeyCommand(args);
|
|
341
|
-
if (typeof optionsOrCb === "function") {
|
|
342
|
-
this.send(command, optionsOrCb);
|
|
343
|
-
}
|
|
344
|
-
else if (typeof cb === "function") {
|
|
345
|
-
if (typeof optionsOrCb !== "object")
|
|
346
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
347
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
348
|
-
}
|
|
349
|
-
else {
|
|
350
|
-
return this.send(command, optionsOrCb);
|
|
351
|
-
}
|
|
352
|
-
}
|
|
353
|
-
deleteQueryLoggingConfig(args, optionsOrCb, cb) {
|
|
354
|
-
const command = new DeleteQueryLoggingConfigCommand(args);
|
|
355
|
-
if (typeof optionsOrCb === "function") {
|
|
356
|
-
this.send(command, optionsOrCb);
|
|
357
|
-
}
|
|
358
|
-
else if (typeof cb === "function") {
|
|
359
|
-
if (typeof optionsOrCb !== "object")
|
|
360
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
361
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
362
|
-
}
|
|
363
|
-
else {
|
|
364
|
-
return this.send(command, optionsOrCb);
|
|
365
|
-
}
|
|
366
|
-
}
|
|
367
|
-
deleteReusableDelegationSet(args, optionsOrCb, cb) {
|
|
368
|
-
const command = new DeleteReusableDelegationSetCommand(args);
|
|
369
|
-
if (typeof optionsOrCb === "function") {
|
|
370
|
-
this.send(command, optionsOrCb);
|
|
371
|
-
}
|
|
372
|
-
else if (typeof cb === "function") {
|
|
373
|
-
if (typeof optionsOrCb !== "object")
|
|
374
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
375
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
376
|
-
}
|
|
377
|
-
else {
|
|
378
|
-
return this.send(command, optionsOrCb);
|
|
379
|
-
}
|
|
380
|
-
}
|
|
381
|
-
deleteTrafficPolicy(args, optionsOrCb, cb) {
|
|
382
|
-
const command = new DeleteTrafficPolicyCommand(args);
|
|
383
|
-
if (typeof optionsOrCb === "function") {
|
|
384
|
-
this.send(command, optionsOrCb);
|
|
385
|
-
}
|
|
386
|
-
else if (typeof cb === "function") {
|
|
387
|
-
if (typeof optionsOrCb !== "object")
|
|
388
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
389
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
390
|
-
}
|
|
391
|
-
else {
|
|
392
|
-
return this.send(command, optionsOrCb);
|
|
393
|
-
}
|
|
394
|
-
}
|
|
395
|
-
deleteTrafficPolicyInstance(args, optionsOrCb, cb) {
|
|
396
|
-
const command = new DeleteTrafficPolicyInstanceCommand(args);
|
|
397
|
-
if (typeof optionsOrCb === "function") {
|
|
398
|
-
this.send(command, optionsOrCb);
|
|
399
|
-
}
|
|
400
|
-
else if (typeof cb === "function") {
|
|
401
|
-
if (typeof optionsOrCb !== "object")
|
|
402
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
403
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
404
|
-
}
|
|
405
|
-
else {
|
|
406
|
-
return this.send(command, optionsOrCb);
|
|
407
|
-
}
|
|
408
|
-
}
|
|
409
|
-
deleteVPCAssociationAuthorization(args, optionsOrCb, cb) {
|
|
410
|
-
const command = new DeleteVPCAssociationAuthorizationCommand(args);
|
|
411
|
-
if (typeof optionsOrCb === "function") {
|
|
412
|
-
this.send(command, optionsOrCb);
|
|
413
|
-
}
|
|
414
|
-
else if (typeof cb === "function") {
|
|
415
|
-
if (typeof optionsOrCb !== "object")
|
|
416
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
417
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
418
|
-
}
|
|
419
|
-
else {
|
|
420
|
-
return this.send(command, optionsOrCb);
|
|
421
|
-
}
|
|
422
|
-
}
|
|
423
|
-
disableHostedZoneDNSSEC(args, optionsOrCb, cb) {
|
|
424
|
-
const command = new DisableHostedZoneDNSSECCommand(args);
|
|
425
|
-
if (typeof optionsOrCb === "function") {
|
|
426
|
-
this.send(command, optionsOrCb);
|
|
427
|
-
}
|
|
428
|
-
else if (typeof cb === "function") {
|
|
429
|
-
if (typeof optionsOrCb !== "object")
|
|
430
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
431
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
432
|
-
}
|
|
433
|
-
else {
|
|
434
|
-
return this.send(command, optionsOrCb);
|
|
435
|
-
}
|
|
436
|
-
}
|
|
437
|
-
disassociateVPCFromHostedZone(args, optionsOrCb, cb) {
|
|
438
|
-
const command = new DisassociateVPCFromHostedZoneCommand(args);
|
|
439
|
-
if (typeof optionsOrCb === "function") {
|
|
440
|
-
this.send(command, optionsOrCb);
|
|
441
|
-
}
|
|
442
|
-
else if (typeof cb === "function") {
|
|
443
|
-
if (typeof optionsOrCb !== "object")
|
|
444
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
445
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
446
|
-
}
|
|
447
|
-
else {
|
|
448
|
-
return this.send(command, optionsOrCb);
|
|
449
|
-
}
|
|
450
|
-
}
|
|
451
|
-
enableHostedZoneDNSSEC(args, optionsOrCb, cb) {
|
|
452
|
-
const command = new EnableHostedZoneDNSSECCommand(args);
|
|
453
|
-
if (typeof optionsOrCb === "function") {
|
|
454
|
-
this.send(command, optionsOrCb);
|
|
455
|
-
}
|
|
456
|
-
else if (typeof cb === "function") {
|
|
457
|
-
if (typeof optionsOrCb !== "object")
|
|
458
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
459
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
460
|
-
}
|
|
461
|
-
else {
|
|
462
|
-
return this.send(command, optionsOrCb);
|
|
463
|
-
}
|
|
464
|
-
}
|
|
465
|
-
getAccountLimit(args, optionsOrCb, cb) {
|
|
466
|
-
const command = new GetAccountLimitCommand(args);
|
|
467
|
-
if (typeof optionsOrCb === "function") {
|
|
468
|
-
this.send(command, optionsOrCb);
|
|
469
|
-
}
|
|
470
|
-
else if (typeof cb === "function") {
|
|
471
|
-
if (typeof optionsOrCb !== "object")
|
|
472
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
473
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
474
|
-
}
|
|
475
|
-
else {
|
|
476
|
-
return this.send(command, optionsOrCb);
|
|
477
|
-
}
|
|
478
|
-
}
|
|
479
|
-
getChange(args, optionsOrCb, cb) {
|
|
480
|
-
const command = new GetChangeCommand(args);
|
|
481
|
-
if (typeof optionsOrCb === "function") {
|
|
482
|
-
this.send(command, optionsOrCb);
|
|
483
|
-
}
|
|
484
|
-
else if (typeof cb === "function") {
|
|
485
|
-
if (typeof optionsOrCb !== "object")
|
|
486
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
487
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
488
|
-
}
|
|
489
|
-
else {
|
|
490
|
-
return this.send(command, optionsOrCb);
|
|
491
|
-
}
|
|
492
|
-
}
|
|
493
|
-
getCheckerIpRanges(args, optionsOrCb, cb) {
|
|
494
|
-
const command = new GetCheckerIpRangesCommand(args);
|
|
495
|
-
if (typeof optionsOrCb === "function") {
|
|
496
|
-
this.send(command, optionsOrCb);
|
|
497
|
-
}
|
|
498
|
-
else if (typeof cb === "function") {
|
|
499
|
-
if (typeof optionsOrCb !== "object")
|
|
500
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
501
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
502
|
-
}
|
|
503
|
-
else {
|
|
504
|
-
return this.send(command, optionsOrCb);
|
|
505
|
-
}
|
|
506
|
-
}
|
|
507
|
-
getDNSSEC(args, optionsOrCb, cb) {
|
|
508
|
-
const command = new GetDNSSECCommand(args);
|
|
509
|
-
if (typeof optionsOrCb === "function") {
|
|
510
|
-
this.send(command, optionsOrCb);
|
|
511
|
-
}
|
|
512
|
-
else if (typeof cb === "function") {
|
|
513
|
-
if (typeof optionsOrCb !== "object")
|
|
514
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
515
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
516
|
-
}
|
|
517
|
-
else {
|
|
518
|
-
return this.send(command, optionsOrCb);
|
|
519
|
-
}
|
|
520
|
-
}
|
|
521
|
-
getGeoLocation(args, optionsOrCb, cb) {
|
|
522
|
-
const command = new GetGeoLocationCommand(args);
|
|
523
|
-
if (typeof optionsOrCb === "function") {
|
|
524
|
-
this.send(command, optionsOrCb);
|
|
525
|
-
}
|
|
526
|
-
else if (typeof cb === "function") {
|
|
527
|
-
if (typeof optionsOrCb !== "object")
|
|
528
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
529
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
530
|
-
}
|
|
531
|
-
else {
|
|
532
|
-
return this.send(command, optionsOrCb);
|
|
533
|
-
}
|
|
534
|
-
}
|
|
535
|
-
getHealthCheck(args, optionsOrCb, cb) {
|
|
536
|
-
const command = new GetHealthCheckCommand(args);
|
|
537
|
-
if (typeof optionsOrCb === "function") {
|
|
538
|
-
this.send(command, optionsOrCb);
|
|
539
|
-
}
|
|
540
|
-
else if (typeof cb === "function") {
|
|
541
|
-
if (typeof optionsOrCb !== "object")
|
|
542
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
543
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
544
|
-
}
|
|
545
|
-
else {
|
|
546
|
-
return this.send(command, optionsOrCb);
|
|
547
|
-
}
|
|
548
|
-
}
|
|
549
|
-
getHealthCheckCount(args, optionsOrCb, cb) {
|
|
550
|
-
const command = new GetHealthCheckCountCommand(args);
|
|
551
|
-
if (typeof optionsOrCb === "function") {
|
|
552
|
-
this.send(command, optionsOrCb);
|
|
553
|
-
}
|
|
554
|
-
else if (typeof cb === "function") {
|
|
555
|
-
if (typeof optionsOrCb !== "object")
|
|
556
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
557
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
558
|
-
}
|
|
559
|
-
else {
|
|
560
|
-
return this.send(command, optionsOrCb);
|
|
561
|
-
}
|
|
562
|
-
}
|
|
563
|
-
getHealthCheckLastFailureReason(args, optionsOrCb, cb) {
|
|
564
|
-
const command = new GetHealthCheckLastFailureReasonCommand(args);
|
|
565
|
-
if (typeof optionsOrCb === "function") {
|
|
566
|
-
this.send(command, optionsOrCb);
|
|
567
|
-
}
|
|
568
|
-
else if (typeof cb === "function") {
|
|
569
|
-
if (typeof optionsOrCb !== "object")
|
|
570
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
571
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
572
|
-
}
|
|
573
|
-
else {
|
|
574
|
-
return this.send(command, optionsOrCb);
|
|
575
|
-
}
|
|
576
|
-
}
|
|
577
|
-
getHealthCheckStatus(args, optionsOrCb, cb) {
|
|
578
|
-
const command = new GetHealthCheckStatusCommand(args);
|
|
579
|
-
if (typeof optionsOrCb === "function") {
|
|
580
|
-
this.send(command, optionsOrCb);
|
|
581
|
-
}
|
|
582
|
-
else if (typeof cb === "function") {
|
|
583
|
-
if (typeof optionsOrCb !== "object")
|
|
584
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
585
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
586
|
-
}
|
|
587
|
-
else {
|
|
588
|
-
return this.send(command, optionsOrCb);
|
|
589
|
-
}
|
|
590
|
-
}
|
|
591
|
-
getHostedZone(args, optionsOrCb, cb) {
|
|
592
|
-
const command = new GetHostedZoneCommand(args);
|
|
593
|
-
if (typeof optionsOrCb === "function") {
|
|
594
|
-
this.send(command, optionsOrCb);
|
|
595
|
-
}
|
|
596
|
-
else if (typeof cb === "function") {
|
|
597
|
-
if (typeof optionsOrCb !== "object")
|
|
598
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
599
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
600
|
-
}
|
|
601
|
-
else {
|
|
602
|
-
return this.send(command, optionsOrCb);
|
|
603
|
-
}
|
|
604
|
-
}
|
|
605
|
-
getHostedZoneCount(args, optionsOrCb, cb) {
|
|
606
|
-
const command = new GetHostedZoneCountCommand(args);
|
|
607
|
-
if (typeof optionsOrCb === "function") {
|
|
608
|
-
this.send(command, optionsOrCb);
|
|
609
|
-
}
|
|
610
|
-
else if (typeof cb === "function") {
|
|
611
|
-
if (typeof optionsOrCb !== "object")
|
|
612
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
613
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
614
|
-
}
|
|
615
|
-
else {
|
|
616
|
-
return this.send(command, optionsOrCb);
|
|
617
|
-
}
|
|
618
|
-
}
|
|
619
|
-
getHostedZoneLimit(args, optionsOrCb, cb) {
|
|
620
|
-
const command = new GetHostedZoneLimitCommand(args);
|
|
621
|
-
if (typeof optionsOrCb === "function") {
|
|
622
|
-
this.send(command, optionsOrCb);
|
|
623
|
-
}
|
|
624
|
-
else if (typeof cb === "function") {
|
|
625
|
-
if (typeof optionsOrCb !== "object")
|
|
626
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
627
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
628
|
-
}
|
|
629
|
-
else {
|
|
630
|
-
return this.send(command, optionsOrCb);
|
|
631
|
-
}
|
|
632
|
-
}
|
|
633
|
-
getQueryLoggingConfig(args, optionsOrCb, cb) {
|
|
634
|
-
const command = new GetQueryLoggingConfigCommand(args);
|
|
635
|
-
if (typeof optionsOrCb === "function") {
|
|
636
|
-
this.send(command, optionsOrCb);
|
|
637
|
-
}
|
|
638
|
-
else if (typeof cb === "function") {
|
|
639
|
-
if (typeof optionsOrCb !== "object")
|
|
640
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
641
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
642
|
-
}
|
|
643
|
-
else {
|
|
644
|
-
return this.send(command, optionsOrCb);
|
|
645
|
-
}
|
|
646
|
-
}
|
|
647
|
-
getReusableDelegationSet(args, optionsOrCb, cb) {
|
|
648
|
-
const command = new GetReusableDelegationSetCommand(args);
|
|
649
|
-
if (typeof optionsOrCb === "function") {
|
|
650
|
-
this.send(command, optionsOrCb);
|
|
651
|
-
}
|
|
652
|
-
else if (typeof cb === "function") {
|
|
653
|
-
if (typeof optionsOrCb !== "object")
|
|
654
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
655
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
656
|
-
}
|
|
657
|
-
else {
|
|
658
|
-
return this.send(command, optionsOrCb);
|
|
659
|
-
}
|
|
660
|
-
}
|
|
661
|
-
getReusableDelegationSetLimit(args, optionsOrCb, cb) {
|
|
662
|
-
const command = new GetReusableDelegationSetLimitCommand(args);
|
|
663
|
-
if (typeof optionsOrCb === "function") {
|
|
664
|
-
this.send(command, optionsOrCb);
|
|
665
|
-
}
|
|
666
|
-
else if (typeof cb === "function") {
|
|
667
|
-
if (typeof optionsOrCb !== "object")
|
|
668
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
669
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
670
|
-
}
|
|
671
|
-
else {
|
|
672
|
-
return this.send(command, optionsOrCb);
|
|
673
|
-
}
|
|
674
|
-
}
|
|
675
|
-
getTrafficPolicy(args, optionsOrCb, cb) {
|
|
676
|
-
const command = new GetTrafficPolicyCommand(args);
|
|
677
|
-
if (typeof optionsOrCb === "function") {
|
|
678
|
-
this.send(command, optionsOrCb);
|
|
679
|
-
}
|
|
680
|
-
else if (typeof cb === "function") {
|
|
681
|
-
if (typeof optionsOrCb !== "object")
|
|
682
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
683
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
684
|
-
}
|
|
685
|
-
else {
|
|
686
|
-
return this.send(command, optionsOrCb);
|
|
687
|
-
}
|
|
688
|
-
}
|
|
689
|
-
getTrafficPolicyInstance(args, optionsOrCb, cb) {
|
|
690
|
-
const command = new GetTrafficPolicyInstanceCommand(args);
|
|
691
|
-
if (typeof optionsOrCb === "function") {
|
|
692
|
-
this.send(command, optionsOrCb);
|
|
693
|
-
}
|
|
694
|
-
else if (typeof cb === "function") {
|
|
695
|
-
if (typeof optionsOrCb !== "object")
|
|
696
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
697
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
698
|
-
}
|
|
699
|
-
else {
|
|
700
|
-
return this.send(command, optionsOrCb);
|
|
701
|
-
}
|
|
702
|
-
}
|
|
703
|
-
getTrafficPolicyInstanceCount(args, optionsOrCb, cb) {
|
|
704
|
-
const command = new GetTrafficPolicyInstanceCountCommand(args);
|
|
705
|
-
if (typeof optionsOrCb === "function") {
|
|
706
|
-
this.send(command, optionsOrCb);
|
|
707
|
-
}
|
|
708
|
-
else if (typeof cb === "function") {
|
|
709
|
-
if (typeof optionsOrCb !== "object")
|
|
710
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
711
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
712
|
-
}
|
|
713
|
-
else {
|
|
714
|
-
return this.send(command, optionsOrCb);
|
|
715
|
-
}
|
|
716
|
-
}
|
|
717
|
-
listCidrBlocks(args, optionsOrCb, cb) {
|
|
718
|
-
const command = new ListCidrBlocksCommand(args);
|
|
719
|
-
if (typeof optionsOrCb === "function") {
|
|
720
|
-
this.send(command, optionsOrCb);
|
|
721
|
-
}
|
|
722
|
-
else if (typeof cb === "function") {
|
|
723
|
-
if (typeof optionsOrCb !== "object")
|
|
724
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
725
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
726
|
-
}
|
|
727
|
-
else {
|
|
728
|
-
return this.send(command, optionsOrCb);
|
|
729
|
-
}
|
|
730
|
-
}
|
|
731
|
-
listCidrCollections(args, optionsOrCb, cb) {
|
|
732
|
-
const command = new ListCidrCollectionsCommand(args);
|
|
733
|
-
if (typeof optionsOrCb === "function") {
|
|
734
|
-
this.send(command, optionsOrCb);
|
|
735
|
-
}
|
|
736
|
-
else if (typeof cb === "function") {
|
|
737
|
-
if (typeof optionsOrCb !== "object")
|
|
738
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
739
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
740
|
-
}
|
|
741
|
-
else {
|
|
742
|
-
return this.send(command, optionsOrCb);
|
|
743
|
-
}
|
|
744
|
-
}
|
|
745
|
-
listCidrLocations(args, optionsOrCb, cb) {
|
|
746
|
-
const command = new ListCidrLocationsCommand(args);
|
|
747
|
-
if (typeof optionsOrCb === "function") {
|
|
748
|
-
this.send(command, optionsOrCb);
|
|
749
|
-
}
|
|
750
|
-
else if (typeof cb === "function") {
|
|
751
|
-
if (typeof optionsOrCb !== "object")
|
|
752
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
753
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
754
|
-
}
|
|
755
|
-
else {
|
|
756
|
-
return this.send(command, optionsOrCb);
|
|
757
|
-
}
|
|
758
|
-
}
|
|
759
|
-
listGeoLocations(args, optionsOrCb, cb) {
|
|
760
|
-
const command = new ListGeoLocationsCommand(args);
|
|
761
|
-
if (typeof optionsOrCb === "function") {
|
|
762
|
-
this.send(command, optionsOrCb);
|
|
763
|
-
}
|
|
764
|
-
else if (typeof cb === "function") {
|
|
765
|
-
if (typeof optionsOrCb !== "object")
|
|
766
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
767
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
768
|
-
}
|
|
769
|
-
else {
|
|
770
|
-
return this.send(command, optionsOrCb);
|
|
771
|
-
}
|
|
772
|
-
}
|
|
773
|
-
listHealthChecks(args, optionsOrCb, cb) {
|
|
774
|
-
const command = new ListHealthChecksCommand(args);
|
|
775
|
-
if (typeof optionsOrCb === "function") {
|
|
776
|
-
this.send(command, optionsOrCb);
|
|
777
|
-
}
|
|
778
|
-
else if (typeof cb === "function") {
|
|
779
|
-
if (typeof optionsOrCb !== "object")
|
|
780
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
781
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
782
|
-
}
|
|
783
|
-
else {
|
|
784
|
-
return this.send(command, optionsOrCb);
|
|
785
|
-
}
|
|
786
|
-
}
|
|
787
|
-
listHostedZones(args, optionsOrCb, cb) {
|
|
788
|
-
const command = new ListHostedZonesCommand(args);
|
|
789
|
-
if (typeof optionsOrCb === "function") {
|
|
790
|
-
this.send(command, optionsOrCb);
|
|
791
|
-
}
|
|
792
|
-
else if (typeof cb === "function") {
|
|
793
|
-
if (typeof optionsOrCb !== "object")
|
|
794
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
795
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
796
|
-
}
|
|
797
|
-
else {
|
|
798
|
-
return this.send(command, optionsOrCb);
|
|
799
|
-
}
|
|
800
|
-
}
|
|
801
|
-
listHostedZonesByName(args, optionsOrCb, cb) {
|
|
802
|
-
const command = new ListHostedZonesByNameCommand(args);
|
|
803
|
-
if (typeof optionsOrCb === "function") {
|
|
804
|
-
this.send(command, optionsOrCb);
|
|
805
|
-
}
|
|
806
|
-
else if (typeof cb === "function") {
|
|
807
|
-
if (typeof optionsOrCb !== "object")
|
|
808
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
809
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
810
|
-
}
|
|
811
|
-
else {
|
|
812
|
-
return this.send(command, optionsOrCb);
|
|
813
|
-
}
|
|
814
|
-
}
|
|
815
|
-
listHostedZonesByVPC(args, optionsOrCb, cb) {
|
|
816
|
-
const command = new ListHostedZonesByVPCCommand(args);
|
|
817
|
-
if (typeof optionsOrCb === "function") {
|
|
818
|
-
this.send(command, optionsOrCb);
|
|
819
|
-
}
|
|
820
|
-
else if (typeof cb === "function") {
|
|
821
|
-
if (typeof optionsOrCb !== "object")
|
|
822
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
823
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
824
|
-
}
|
|
825
|
-
else {
|
|
826
|
-
return this.send(command, optionsOrCb);
|
|
827
|
-
}
|
|
828
|
-
}
|
|
829
|
-
listQueryLoggingConfigs(args, optionsOrCb, cb) {
|
|
830
|
-
const command = new ListQueryLoggingConfigsCommand(args);
|
|
831
|
-
if (typeof optionsOrCb === "function") {
|
|
832
|
-
this.send(command, optionsOrCb);
|
|
833
|
-
}
|
|
834
|
-
else if (typeof cb === "function") {
|
|
835
|
-
if (typeof optionsOrCb !== "object")
|
|
836
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
837
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
838
|
-
}
|
|
839
|
-
else {
|
|
840
|
-
return this.send(command, optionsOrCb);
|
|
841
|
-
}
|
|
842
|
-
}
|
|
843
|
-
listResourceRecordSets(args, optionsOrCb, cb) {
|
|
844
|
-
const command = new ListResourceRecordSetsCommand(args);
|
|
845
|
-
if (typeof optionsOrCb === "function") {
|
|
846
|
-
this.send(command, optionsOrCb);
|
|
847
|
-
}
|
|
848
|
-
else if (typeof cb === "function") {
|
|
849
|
-
if (typeof optionsOrCb !== "object")
|
|
850
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
851
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
852
|
-
}
|
|
853
|
-
else {
|
|
854
|
-
return this.send(command, optionsOrCb);
|
|
855
|
-
}
|
|
856
|
-
}
|
|
857
|
-
listReusableDelegationSets(args, optionsOrCb, cb) {
|
|
858
|
-
const command = new ListReusableDelegationSetsCommand(args);
|
|
859
|
-
if (typeof optionsOrCb === "function") {
|
|
860
|
-
this.send(command, optionsOrCb);
|
|
861
|
-
}
|
|
862
|
-
else if (typeof cb === "function") {
|
|
863
|
-
if (typeof optionsOrCb !== "object")
|
|
864
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
865
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
866
|
-
}
|
|
867
|
-
else {
|
|
868
|
-
return this.send(command, optionsOrCb);
|
|
869
|
-
}
|
|
870
|
-
}
|
|
871
|
-
listTagsForResource(args, optionsOrCb, cb) {
|
|
872
|
-
const command = new ListTagsForResourceCommand(args);
|
|
873
|
-
if (typeof optionsOrCb === "function") {
|
|
874
|
-
this.send(command, optionsOrCb);
|
|
875
|
-
}
|
|
876
|
-
else if (typeof cb === "function") {
|
|
877
|
-
if (typeof optionsOrCb !== "object")
|
|
878
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
879
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
880
|
-
}
|
|
881
|
-
else {
|
|
882
|
-
return this.send(command, optionsOrCb);
|
|
883
|
-
}
|
|
884
|
-
}
|
|
885
|
-
listTagsForResources(args, optionsOrCb, cb) {
|
|
886
|
-
const command = new ListTagsForResourcesCommand(args);
|
|
887
|
-
if (typeof optionsOrCb === "function") {
|
|
888
|
-
this.send(command, optionsOrCb);
|
|
889
|
-
}
|
|
890
|
-
else if (typeof cb === "function") {
|
|
891
|
-
if (typeof optionsOrCb !== "object")
|
|
892
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
893
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
894
|
-
}
|
|
895
|
-
else {
|
|
896
|
-
return this.send(command, optionsOrCb);
|
|
897
|
-
}
|
|
898
|
-
}
|
|
899
|
-
listTrafficPolicies(args, optionsOrCb, cb) {
|
|
900
|
-
const command = new ListTrafficPoliciesCommand(args);
|
|
901
|
-
if (typeof optionsOrCb === "function") {
|
|
902
|
-
this.send(command, optionsOrCb);
|
|
903
|
-
}
|
|
904
|
-
else if (typeof cb === "function") {
|
|
905
|
-
if (typeof optionsOrCb !== "object")
|
|
906
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
907
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
908
|
-
}
|
|
909
|
-
else {
|
|
910
|
-
return this.send(command, optionsOrCb);
|
|
911
|
-
}
|
|
912
|
-
}
|
|
913
|
-
listTrafficPolicyInstances(args, optionsOrCb, cb) {
|
|
914
|
-
const command = new ListTrafficPolicyInstancesCommand(args);
|
|
915
|
-
if (typeof optionsOrCb === "function") {
|
|
916
|
-
this.send(command, optionsOrCb);
|
|
917
|
-
}
|
|
918
|
-
else if (typeof cb === "function") {
|
|
919
|
-
if (typeof optionsOrCb !== "object")
|
|
920
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
921
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
922
|
-
}
|
|
923
|
-
else {
|
|
924
|
-
return this.send(command, optionsOrCb);
|
|
925
|
-
}
|
|
926
|
-
}
|
|
927
|
-
listTrafficPolicyInstancesByHostedZone(args, optionsOrCb, cb) {
|
|
928
|
-
const command = new ListTrafficPolicyInstancesByHostedZoneCommand(args);
|
|
929
|
-
if (typeof optionsOrCb === "function") {
|
|
930
|
-
this.send(command, optionsOrCb);
|
|
931
|
-
}
|
|
932
|
-
else if (typeof cb === "function") {
|
|
933
|
-
if (typeof optionsOrCb !== "object")
|
|
934
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
935
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
936
|
-
}
|
|
937
|
-
else {
|
|
938
|
-
return this.send(command, optionsOrCb);
|
|
939
|
-
}
|
|
940
|
-
}
|
|
941
|
-
listTrafficPolicyInstancesByPolicy(args, optionsOrCb, cb) {
|
|
942
|
-
const command = new ListTrafficPolicyInstancesByPolicyCommand(args);
|
|
943
|
-
if (typeof optionsOrCb === "function") {
|
|
944
|
-
this.send(command, optionsOrCb);
|
|
945
|
-
}
|
|
946
|
-
else if (typeof cb === "function") {
|
|
947
|
-
if (typeof optionsOrCb !== "object")
|
|
948
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
949
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
950
|
-
}
|
|
951
|
-
else {
|
|
952
|
-
return this.send(command, optionsOrCb);
|
|
953
|
-
}
|
|
954
|
-
}
|
|
955
|
-
listTrafficPolicyVersions(args, optionsOrCb, cb) {
|
|
956
|
-
const command = new ListTrafficPolicyVersionsCommand(args);
|
|
957
|
-
if (typeof optionsOrCb === "function") {
|
|
958
|
-
this.send(command, optionsOrCb);
|
|
959
|
-
}
|
|
960
|
-
else if (typeof cb === "function") {
|
|
961
|
-
if (typeof optionsOrCb !== "object")
|
|
962
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
963
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
964
|
-
}
|
|
965
|
-
else {
|
|
966
|
-
return this.send(command, optionsOrCb);
|
|
967
|
-
}
|
|
968
|
-
}
|
|
969
|
-
listVPCAssociationAuthorizations(args, optionsOrCb, cb) {
|
|
970
|
-
const command = new ListVPCAssociationAuthorizationsCommand(args);
|
|
971
|
-
if (typeof optionsOrCb === "function") {
|
|
972
|
-
this.send(command, optionsOrCb);
|
|
973
|
-
}
|
|
974
|
-
else if (typeof cb === "function") {
|
|
975
|
-
if (typeof optionsOrCb !== "object")
|
|
976
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
977
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
978
|
-
}
|
|
979
|
-
else {
|
|
980
|
-
return this.send(command, optionsOrCb);
|
|
981
|
-
}
|
|
982
|
-
}
|
|
983
|
-
testDNSAnswer(args, optionsOrCb, cb) {
|
|
984
|
-
const command = new TestDNSAnswerCommand(args);
|
|
985
|
-
if (typeof optionsOrCb === "function") {
|
|
986
|
-
this.send(command, optionsOrCb);
|
|
987
|
-
}
|
|
988
|
-
else if (typeof cb === "function") {
|
|
989
|
-
if (typeof optionsOrCb !== "object")
|
|
990
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
991
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
992
|
-
}
|
|
993
|
-
else {
|
|
994
|
-
return this.send(command, optionsOrCb);
|
|
995
|
-
}
|
|
996
|
-
}
|
|
997
|
-
updateHealthCheck(args, optionsOrCb, cb) {
|
|
998
|
-
const command = new UpdateHealthCheckCommand(args);
|
|
999
|
-
if (typeof optionsOrCb === "function") {
|
|
1000
|
-
this.send(command, optionsOrCb);
|
|
1001
|
-
}
|
|
1002
|
-
else if (typeof cb === "function") {
|
|
1003
|
-
if (typeof optionsOrCb !== "object")
|
|
1004
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
1005
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
1006
|
-
}
|
|
1007
|
-
else {
|
|
1008
|
-
return this.send(command, optionsOrCb);
|
|
1009
|
-
}
|
|
1010
|
-
}
|
|
1011
|
-
updateHostedZoneComment(args, optionsOrCb, cb) {
|
|
1012
|
-
const command = new UpdateHostedZoneCommentCommand(args);
|
|
1013
|
-
if (typeof optionsOrCb === "function") {
|
|
1014
|
-
this.send(command, optionsOrCb);
|
|
1015
|
-
}
|
|
1016
|
-
else if (typeof cb === "function") {
|
|
1017
|
-
if (typeof optionsOrCb !== "object")
|
|
1018
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
1019
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
1020
|
-
}
|
|
1021
|
-
else {
|
|
1022
|
-
return this.send(command, optionsOrCb);
|
|
1023
|
-
}
|
|
1024
|
-
}
|
|
1025
|
-
updateTrafficPolicyComment(args, optionsOrCb, cb) {
|
|
1026
|
-
const command = new UpdateTrafficPolicyCommentCommand(args);
|
|
1027
|
-
if (typeof optionsOrCb === "function") {
|
|
1028
|
-
this.send(command, optionsOrCb);
|
|
1029
|
-
}
|
|
1030
|
-
else if (typeof cb === "function") {
|
|
1031
|
-
if (typeof optionsOrCb !== "object")
|
|
1032
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
1033
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
1034
|
-
}
|
|
1035
|
-
else {
|
|
1036
|
-
return this.send(command, optionsOrCb);
|
|
1037
|
-
}
|
|
1038
|
-
}
|
|
1039
|
-
updateTrafficPolicyInstance(args, optionsOrCb, cb) {
|
|
1040
|
-
const command = new UpdateTrafficPolicyInstanceCommand(args);
|
|
1041
|
-
if (typeof optionsOrCb === "function") {
|
|
1042
|
-
this.send(command, optionsOrCb);
|
|
1043
|
-
}
|
|
1044
|
-
else if (typeof cb === "function") {
|
|
1045
|
-
if (typeof optionsOrCb !== "object")
|
|
1046
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
1047
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
1048
|
-
}
|
|
1049
|
-
else {
|
|
1050
|
-
return this.send(command, optionsOrCb);
|
|
1051
|
-
}
|
|
1052
|
-
}
|
|
1053
146
|
}
|
|
147
|
+
createAggregatedClient(commands, Route53);
|