@aws-sdk/client-route-53 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 +312 -332
- package/dist-cjs/models/Route53ServiceException.js +4 -8
- package/dist-cjs/models/errors.js +139 -212
- 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 +731 -485
- package/package.json +14 -14
package/dist-cjs/index.js
CHANGED
|
@@ -1,19 +1,22 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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, createWaiter, checkExceptions, WaiterState, 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, defaultRoute53HttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
|
|
13
|
+
const { getRuntimeConfig } = require("./runtimeConfig");
|
|
14
|
+
const { getIdNormalizerPlugin, getChangeResourceRecordSetsPlugin } = require("@aws-sdk/middleware-sdk-route53");
|
|
15
|
+
const { ActivateKeySigningKey$, AssociateVPCWithHostedZone$, ChangeCidrCollection$, ChangeResourceRecordSets$, ChangeTagsForResource$, CreateCidrCollection$, CreateHealthCheck$, CreateHostedZone$, CreateKeySigningKey$, CreateQueryLoggingConfig$, CreateReusableDelegationSet$, CreateTrafficPolicy$, CreateTrafficPolicyInstance$, CreateTrafficPolicyVersion$, CreateVPCAssociationAuthorization$, DeactivateKeySigningKey$, DeleteCidrCollection$, DeleteHealthCheck$, DeleteHostedZone$, DeleteKeySigningKey$, DeleteQueryLoggingConfig$, DeleteReusableDelegationSet$, DeleteTrafficPolicy$, DeleteTrafficPolicyInstance$, DeleteVPCAssociationAuthorization$, DisableHostedZoneDNSSEC$, DisassociateVPCFromHostedZone$, EnableHostedZoneDNSSEC$, GetAccountLimit$, GetChange$, GetCheckerIpRanges$, GetDNSSEC$, GetGeoLocation$, GetHealthCheck$, GetHealthCheckCount$, GetHealthCheckLastFailureReason$, GetHealthCheckStatus$, GetHostedZone$, GetHostedZoneCount$, GetHostedZoneLimit$, GetQueryLoggingConfig$, GetReusableDelegationSet$, GetReusableDelegationSetLimit$, GetTrafficPolicy$, GetTrafficPolicyInstance$, GetTrafficPolicyInstanceCount$, ListCidrBlocks$, ListCidrCollections$, ListCidrLocations$, ListGeoLocations$, ListHealthChecks$, ListHostedZonesByName$, ListHostedZonesByVPC$, ListHostedZones$, ListQueryLoggingConfigs$, ListResourceRecordSets$, ListReusableDelegationSets$, ListTagsForResource$, ListTagsForResources$, ListTrafficPolicies$, ListTrafficPolicyInstancesByHostedZone$, ListTrafficPolicyInstancesByPolicy$, ListTrafficPolicyInstances$, ListTrafficPolicyVersions$, ListVPCAssociationAuthorizations$, TestDNSAnswer$, UpdateHealthCheck$, UpdateHostedZoneComment$, UpdateHostedZoneFeatures$, UpdateTrafficPolicyComment$, UpdateTrafficPolicyInstance$ } = require("./schemas/schemas_0");
|
|
16
|
+
__exportStar(require("./schemas/schemas_0"), exports);
|
|
17
|
+
__exportStar(require("./models/errors"), exports);
|
|
18
|
+
const { Route53ServiceException } = require("./models/Route53ServiceException");
|
|
19
|
+
exports.Route53ServiceException = Route53ServiceException;
|
|
17
20
|
|
|
18
21
|
const resolveClientEndpointParameters = (options) => {
|
|
19
22
|
return Object.assign(options, {
|
|
@@ -69,1054 +72,1054 @@ const resolveHttpAuthRuntimeConfig = (config) => {
|
|
|
69
72
|
};
|
|
70
73
|
|
|
71
74
|
const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
|
|
72
|
-
const extensionConfiguration = Object.assign(
|
|
75
|
+
const extensionConfiguration = Object.assign(getAwsRegionExtensionConfiguration(runtimeConfig), getDefaultExtensionConfiguration(runtimeConfig), getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration(runtimeConfig));
|
|
73
76
|
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
74
|
-
return Object.assign(runtimeConfig,
|
|
77
|
+
return Object.assign(runtimeConfig, resolveAwsRegionExtensionConfiguration(extensionConfiguration), resolveDefaultRuntimeConfig(extensionConfiguration), resolveHttpHandlerRuntimeConfig(extensionConfiguration), resolveHttpAuthRuntimeConfig(extensionConfiguration));
|
|
75
78
|
};
|
|
76
79
|
|
|
77
|
-
class Route53Client extends
|
|
80
|
+
class Route53Client extends Client {
|
|
78
81
|
config;
|
|
79
82
|
constructor(...[configuration]) {
|
|
80
|
-
const _config_0 =
|
|
83
|
+
const _config_0 = getRuntimeConfig(configuration || {});
|
|
81
84
|
super(_config_0);
|
|
82
85
|
this.initConfig = _config_0;
|
|
83
86
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
84
|
-
const _config_2 =
|
|
85
|
-
const _config_3 =
|
|
86
|
-
const _config_4 =
|
|
87
|
-
const _config_5 =
|
|
88
|
-
const _config_6 =
|
|
89
|
-
const _config_7 =
|
|
87
|
+
const _config_2 = resolveUserAgentConfig(_config_1);
|
|
88
|
+
const _config_3 = resolveRetryConfig(_config_2);
|
|
89
|
+
const _config_4 = resolveRegionConfig(_config_3);
|
|
90
|
+
const _config_5 = resolveHostHeaderConfig(_config_4);
|
|
91
|
+
const _config_6 = resolveEndpointConfig(_config_5);
|
|
92
|
+
const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
|
|
90
93
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
91
94
|
this.config = _config_8;
|
|
92
|
-
this.middlewareStack.use(
|
|
93
|
-
this.middlewareStack.use(
|
|
94
|
-
this.middlewareStack.use(
|
|
95
|
-
this.middlewareStack.use(
|
|
96
|
-
this.middlewareStack.use(
|
|
97
|
-
this.middlewareStack.use(
|
|
98
|
-
this.middlewareStack.use(
|
|
99
|
-
this.middlewareStack.use(
|
|
100
|
-
httpAuthSchemeParametersProvider:
|
|
101
|
-
identityProviderConfigProvider: async (config) => new
|
|
95
|
+
this.middlewareStack.use(getSchemaSerdePlugin(this.config));
|
|
96
|
+
this.middlewareStack.use(getUserAgentPlugin(this.config));
|
|
97
|
+
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
98
|
+
this.middlewareStack.use(getContentLengthPlugin(this.config));
|
|
99
|
+
this.middlewareStack.use(getHostHeaderPlugin(this.config));
|
|
100
|
+
this.middlewareStack.use(getLoggerPlugin(this.config));
|
|
101
|
+
this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
|
|
102
|
+
this.middlewareStack.use(getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {
|
|
103
|
+
httpAuthSchemeParametersProvider: defaultRoute53HttpAuthSchemeParametersProvider,
|
|
104
|
+
identityProviderConfigProvider: async (config) => new DefaultIdentityProviderConfig({
|
|
102
105
|
"aws.auth#sigv4": config.credentials,
|
|
103
106
|
}),
|
|
104
107
|
}));
|
|
105
|
-
this.middlewareStack.use(
|
|
108
|
+
this.middlewareStack.use(getHttpSigningPlugin(this.config));
|
|
106
109
|
}
|
|
107
110
|
destroy() {
|
|
108
111
|
super.destroy();
|
|
109
112
|
}
|
|
110
113
|
}
|
|
111
114
|
|
|
112
|
-
class ActivateKeySigningKeyCommand extends
|
|
115
|
+
class ActivateKeySigningKeyCommand extends Command
|
|
113
116
|
.classBuilder()
|
|
114
117
|
.ep(commonParams)
|
|
115
118
|
.m(function (Command, cs, config, o) {
|
|
116
119
|
return [
|
|
117
|
-
|
|
118
|
-
|
|
120
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
121
|
+
getIdNormalizerPlugin(config),
|
|
119
122
|
];
|
|
120
123
|
})
|
|
121
124
|
.s("AWSDnsV20130401", "ActivateKeySigningKey", {})
|
|
122
125
|
.n("Route53Client", "ActivateKeySigningKeyCommand")
|
|
123
|
-
.sc(
|
|
126
|
+
.sc(ActivateKeySigningKey$)
|
|
124
127
|
.build() {
|
|
125
128
|
}
|
|
126
129
|
|
|
127
|
-
class AssociateVPCWithHostedZoneCommand extends
|
|
130
|
+
class AssociateVPCWithHostedZoneCommand extends Command
|
|
128
131
|
.classBuilder()
|
|
129
132
|
.ep(commonParams)
|
|
130
133
|
.m(function (Command, cs, config, o) {
|
|
131
134
|
return [
|
|
132
|
-
|
|
133
|
-
|
|
135
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
136
|
+
getIdNormalizerPlugin(config),
|
|
134
137
|
];
|
|
135
138
|
})
|
|
136
139
|
.s("AWSDnsV20130401", "AssociateVPCWithHostedZone", {})
|
|
137
140
|
.n("Route53Client", "AssociateVPCWithHostedZoneCommand")
|
|
138
|
-
.sc(
|
|
141
|
+
.sc(AssociateVPCWithHostedZone$)
|
|
139
142
|
.build() {
|
|
140
143
|
}
|
|
141
144
|
|
|
142
|
-
class ChangeCidrCollectionCommand extends
|
|
145
|
+
class ChangeCidrCollectionCommand extends Command
|
|
143
146
|
.classBuilder()
|
|
144
147
|
.ep(commonParams)
|
|
145
148
|
.m(function (Command, cs, config, o) {
|
|
146
149
|
return [
|
|
147
|
-
|
|
148
|
-
|
|
150
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
151
|
+
getIdNormalizerPlugin(config),
|
|
149
152
|
];
|
|
150
153
|
})
|
|
151
154
|
.s("AWSDnsV20130401", "ChangeCidrCollection", {})
|
|
152
155
|
.n("Route53Client", "ChangeCidrCollectionCommand")
|
|
153
|
-
.sc(
|
|
156
|
+
.sc(ChangeCidrCollection$)
|
|
154
157
|
.build() {
|
|
155
158
|
}
|
|
156
159
|
|
|
157
|
-
class ChangeResourceRecordSetsCommand extends
|
|
160
|
+
class ChangeResourceRecordSetsCommand extends Command
|
|
158
161
|
.classBuilder()
|
|
159
162
|
.ep(commonParams)
|
|
160
163
|
.m(function (Command, cs, config, o) {
|
|
161
164
|
return [
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
166
|
+
getChangeResourceRecordSetsPlugin(config),
|
|
167
|
+
getIdNormalizerPlugin(config),
|
|
165
168
|
];
|
|
166
169
|
})
|
|
167
170
|
.s("AWSDnsV20130401", "ChangeResourceRecordSets", {})
|
|
168
171
|
.n("Route53Client", "ChangeResourceRecordSetsCommand")
|
|
169
|
-
.sc(
|
|
172
|
+
.sc(ChangeResourceRecordSets$)
|
|
170
173
|
.build() {
|
|
171
174
|
}
|
|
172
175
|
|
|
173
|
-
class ChangeTagsForResourceCommand extends
|
|
176
|
+
class ChangeTagsForResourceCommand extends Command
|
|
174
177
|
.classBuilder()
|
|
175
178
|
.ep(commonParams)
|
|
176
179
|
.m(function (Command, cs, config, o) {
|
|
177
|
-
return [
|
|
180
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
178
181
|
})
|
|
179
182
|
.s("AWSDnsV20130401", "ChangeTagsForResource", {})
|
|
180
183
|
.n("Route53Client", "ChangeTagsForResourceCommand")
|
|
181
|
-
.sc(
|
|
184
|
+
.sc(ChangeTagsForResource$)
|
|
182
185
|
.build() {
|
|
183
186
|
}
|
|
184
187
|
|
|
185
|
-
class CreateCidrCollectionCommand extends
|
|
188
|
+
class CreateCidrCollectionCommand extends Command
|
|
186
189
|
.classBuilder()
|
|
187
190
|
.ep(commonParams)
|
|
188
191
|
.m(function (Command, cs, config, o) {
|
|
189
|
-
return [
|
|
192
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
190
193
|
})
|
|
191
194
|
.s("AWSDnsV20130401", "CreateCidrCollection", {})
|
|
192
195
|
.n("Route53Client", "CreateCidrCollectionCommand")
|
|
193
|
-
.sc(
|
|
196
|
+
.sc(CreateCidrCollection$)
|
|
194
197
|
.build() {
|
|
195
198
|
}
|
|
196
199
|
|
|
197
|
-
class CreateHealthCheckCommand extends
|
|
200
|
+
class CreateHealthCheckCommand extends Command
|
|
198
201
|
.classBuilder()
|
|
199
202
|
.ep(commonParams)
|
|
200
203
|
.m(function (Command, cs, config, o) {
|
|
201
|
-
return [
|
|
204
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
202
205
|
})
|
|
203
206
|
.s("AWSDnsV20130401", "CreateHealthCheck", {})
|
|
204
207
|
.n("Route53Client", "CreateHealthCheckCommand")
|
|
205
|
-
.sc(
|
|
208
|
+
.sc(CreateHealthCheck$)
|
|
206
209
|
.build() {
|
|
207
210
|
}
|
|
208
211
|
|
|
209
|
-
class CreateHostedZoneCommand extends
|
|
212
|
+
class CreateHostedZoneCommand extends Command
|
|
210
213
|
.classBuilder()
|
|
211
214
|
.ep(commonParams)
|
|
212
215
|
.m(function (Command, cs, config, o) {
|
|
213
216
|
return [
|
|
214
|
-
|
|
215
|
-
|
|
217
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
218
|
+
getIdNormalizerPlugin(config),
|
|
216
219
|
];
|
|
217
220
|
})
|
|
218
221
|
.s("AWSDnsV20130401", "CreateHostedZone", {})
|
|
219
222
|
.n("Route53Client", "CreateHostedZoneCommand")
|
|
220
|
-
.sc(
|
|
223
|
+
.sc(CreateHostedZone$)
|
|
221
224
|
.build() {
|
|
222
225
|
}
|
|
223
226
|
|
|
224
|
-
class CreateKeySigningKeyCommand extends
|
|
227
|
+
class CreateKeySigningKeyCommand extends Command
|
|
225
228
|
.classBuilder()
|
|
226
229
|
.ep(commonParams)
|
|
227
230
|
.m(function (Command, cs, config, o) {
|
|
228
231
|
return [
|
|
229
|
-
|
|
230
|
-
|
|
232
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
233
|
+
getIdNormalizerPlugin(config),
|
|
231
234
|
];
|
|
232
235
|
})
|
|
233
236
|
.s("AWSDnsV20130401", "CreateKeySigningKey", {})
|
|
234
237
|
.n("Route53Client", "CreateKeySigningKeyCommand")
|
|
235
|
-
.sc(
|
|
238
|
+
.sc(CreateKeySigningKey$)
|
|
236
239
|
.build() {
|
|
237
240
|
}
|
|
238
241
|
|
|
239
|
-
class CreateQueryLoggingConfigCommand extends
|
|
242
|
+
class CreateQueryLoggingConfigCommand extends Command
|
|
240
243
|
.classBuilder()
|
|
241
244
|
.ep(commonParams)
|
|
242
245
|
.m(function (Command, cs, config, o) {
|
|
243
246
|
return [
|
|
244
|
-
|
|
245
|
-
|
|
247
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
248
|
+
getIdNormalizerPlugin(config),
|
|
246
249
|
];
|
|
247
250
|
})
|
|
248
251
|
.s("AWSDnsV20130401", "CreateQueryLoggingConfig", {})
|
|
249
252
|
.n("Route53Client", "CreateQueryLoggingConfigCommand")
|
|
250
|
-
.sc(
|
|
253
|
+
.sc(CreateQueryLoggingConfig$)
|
|
251
254
|
.build() {
|
|
252
255
|
}
|
|
253
256
|
|
|
254
|
-
class CreateReusableDelegationSetCommand extends
|
|
257
|
+
class CreateReusableDelegationSetCommand extends Command
|
|
255
258
|
.classBuilder()
|
|
256
259
|
.ep(commonParams)
|
|
257
260
|
.m(function (Command, cs, config, o) {
|
|
258
261
|
return [
|
|
259
|
-
|
|
260
|
-
|
|
262
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
263
|
+
getIdNormalizerPlugin(config),
|
|
261
264
|
];
|
|
262
265
|
})
|
|
263
266
|
.s("AWSDnsV20130401", "CreateReusableDelegationSet", {})
|
|
264
267
|
.n("Route53Client", "CreateReusableDelegationSetCommand")
|
|
265
|
-
.sc(
|
|
268
|
+
.sc(CreateReusableDelegationSet$)
|
|
266
269
|
.build() {
|
|
267
270
|
}
|
|
268
271
|
|
|
269
|
-
class CreateTrafficPolicyCommand extends
|
|
272
|
+
class CreateTrafficPolicyCommand extends Command
|
|
270
273
|
.classBuilder()
|
|
271
274
|
.ep(commonParams)
|
|
272
275
|
.m(function (Command, cs, config, o) {
|
|
273
|
-
return [
|
|
276
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
274
277
|
})
|
|
275
278
|
.s("AWSDnsV20130401", "CreateTrafficPolicy", {})
|
|
276
279
|
.n("Route53Client", "CreateTrafficPolicyCommand")
|
|
277
|
-
.sc(
|
|
280
|
+
.sc(CreateTrafficPolicy$)
|
|
278
281
|
.build() {
|
|
279
282
|
}
|
|
280
283
|
|
|
281
|
-
class CreateTrafficPolicyInstanceCommand extends
|
|
284
|
+
class CreateTrafficPolicyInstanceCommand extends Command
|
|
282
285
|
.classBuilder()
|
|
283
286
|
.ep(commonParams)
|
|
284
287
|
.m(function (Command, cs, config, o) {
|
|
285
288
|
return [
|
|
286
|
-
|
|
287
|
-
|
|
289
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
290
|
+
getIdNormalizerPlugin(config),
|
|
288
291
|
];
|
|
289
292
|
})
|
|
290
293
|
.s("AWSDnsV20130401", "CreateTrafficPolicyInstance", {})
|
|
291
294
|
.n("Route53Client", "CreateTrafficPolicyInstanceCommand")
|
|
292
|
-
.sc(
|
|
295
|
+
.sc(CreateTrafficPolicyInstance$)
|
|
293
296
|
.build() {
|
|
294
297
|
}
|
|
295
298
|
|
|
296
|
-
class CreateTrafficPolicyVersionCommand extends
|
|
299
|
+
class CreateTrafficPolicyVersionCommand extends Command
|
|
297
300
|
.classBuilder()
|
|
298
301
|
.ep(commonParams)
|
|
299
302
|
.m(function (Command, cs, config, o) {
|
|
300
303
|
return [
|
|
301
|
-
|
|
302
|
-
|
|
304
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
305
|
+
getIdNormalizerPlugin(config),
|
|
303
306
|
];
|
|
304
307
|
})
|
|
305
308
|
.s("AWSDnsV20130401", "CreateTrafficPolicyVersion", {})
|
|
306
309
|
.n("Route53Client", "CreateTrafficPolicyVersionCommand")
|
|
307
|
-
.sc(
|
|
310
|
+
.sc(CreateTrafficPolicyVersion$)
|
|
308
311
|
.build() {
|
|
309
312
|
}
|
|
310
313
|
|
|
311
|
-
class CreateVPCAssociationAuthorizationCommand extends
|
|
314
|
+
class CreateVPCAssociationAuthorizationCommand extends Command
|
|
312
315
|
.classBuilder()
|
|
313
316
|
.ep(commonParams)
|
|
314
317
|
.m(function (Command, cs, config, o) {
|
|
315
318
|
return [
|
|
316
|
-
|
|
317
|
-
|
|
319
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
320
|
+
getIdNormalizerPlugin(config),
|
|
318
321
|
];
|
|
319
322
|
})
|
|
320
323
|
.s("AWSDnsV20130401", "CreateVPCAssociationAuthorization", {})
|
|
321
324
|
.n("Route53Client", "CreateVPCAssociationAuthorizationCommand")
|
|
322
|
-
.sc(
|
|
325
|
+
.sc(CreateVPCAssociationAuthorization$)
|
|
323
326
|
.build() {
|
|
324
327
|
}
|
|
325
328
|
|
|
326
|
-
class DeactivateKeySigningKeyCommand extends
|
|
329
|
+
class DeactivateKeySigningKeyCommand extends Command
|
|
327
330
|
.classBuilder()
|
|
328
331
|
.ep(commonParams)
|
|
329
332
|
.m(function (Command, cs, config, o) {
|
|
330
333
|
return [
|
|
331
|
-
|
|
332
|
-
|
|
334
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
335
|
+
getIdNormalizerPlugin(config),
|
|
333
336
|
];
|
|
334
337
|
})
|
|
335
338
|
.s("AWSDnsV20130401", "DeactivateKeySigningKey", {})
|
|
336
339
|
.n("Route53Client", "DeactivateKeySigningKeyCommand")
|
|
337
|
-
.sc(
|
|
340
|
+
.sc(DeactivateKeySigningKey$)
|
|
338
341
|
.build() {
|
|
339
342
|
}
|
|
340
343
|
|
|
341
|
-
class DeleteCidrCollectionCommand extends
|
|
344
|
+
class DeleteCidrCollectionCommand extends Command
|
|
342
345
|
.classBuilder()
|
|
343
346
|
.ep(commonParams)
|
|
344
347
|
.m(function (Command, cs, config, o) {
|
|
345
348
|
return [
|
|
346
|
-
|
|
347
|
-
|
|
349
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
350
|
+
getIdNormalizerPlugin(config),
|
|
348
351
|
];
|
|
349
352
|
})
|
|
350
353
|
.s("AWSDnsV20130401", "DeleteCidrCollection", {})
|
|
351
354
|
.n("Route53Client", "DeleteCidrCollectionCommand")
|
|
352
|
-
.sc(
|
|
355
|
+
.sc(DeleteCidrCollection$)
|
|
353
356
|
.build() {
|
|
354
357
|
}
|
|
355
358
|
|
|
356
|
-
class DeleteHealthCheckCommand extends
|
|
359
|
+
class DeleteHealthCheckCommand extends Command
|
|
357
360
|
.classBuilder()
|
|
358
361
|
.ep(commonParams)
|
|
359
362
|
.m(function (Command, cs, config, o) {
|
|
360
|
-
return [
|
|
363
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
361
364
|
})
|
|
362
365
|
.s("AWSDnsV20130401", "DeleteHealthCheck", {})
|
|
363
366
|
.n("Route53Client", "DeleteHealthCheckCommand")
|
|
364
|
-
.sc(
|
|
367
|
+
.sc(DeleteHealthCheck$)
|
|
365
368
|
.build() {
|
|
366
369
|
}
|
|
367
370
|
|
|
368
|
-
class DeleteHostedZoneCommand extends
|
|
371
|
+
class DeleteHostedZoneCommand extends Command
|
|
369
372
|
.classBuilder()
|
|
370
373
|
.ep(commonParams)
|
|
371
374
|
.m(function (Command, cs, config, o) {
|
|
372
375
|
return [
|
|
373
|
-
|
|
374
|
-
|
|
376
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
377
|
+
getIdNormalizerPlugin(config),
|
|
375
378
|
];
|
|
376
379
|
})
|
|
377
380
|
.s("AWSDnsV20130401", "DeleteHostedZone", {})
|
|
378
381
|
.n("Route53Client", "DeleteHostedZoneCommand")
|
|
379
|
-
.sc(
|
|
382
|
+
.sc(DeleteHostedZone$)
|
|
380
383
|
.build() {
|
|
381
384
|
}
|
|
382
385
|
|
|
383
|
-
class DeleteKeySigningKeyCommand extends
|
|
386
|
+
class DeleteKeySigningKeyCommand extends Command
|
|
384
387
|
.classBuilder()
|
|
385
388
|
.ep(commonParams)
|
|
386
389
|
.m(function (Command, cs, config, o) {
|
|
387
390
|
return [
|
|
388
|
-
|
|
389
|
-
|
|
391
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
392
|
+
getIdNormalizerPlugin(config),
|
|
390
393
|
];
|
|
391
394
|
})
|
|
392
395
|
.s("AWSDnsV20130401", "DeleteKeySigningKey", {})
|
|
393
396
|
.n("Route53Client", "DeleteKeySigningKeyCommand")
|
|
394
|
-
.sc(
|
|
397
|
+
.sc(DeleteKeySigningKey$)
|
|
395
398
|
.build() {
|
|
396
399
|
}
|
|
397
400
|
|
|
398
|
-
class DeleteQueryLoggingConfigCommand extends
|
|
401
|
+
class DeleteQueryLoggingConfigCommand extends Command
|
|
399
402
|
.classBuilder()
|
|
400
403
|
.ep(commonParams)
|
|
401
404
|
.m(function (Command, cs, config, o) {
|
|
402
405
|
return [
|
|
403
|
-
|
|
404
|
-
|
|
406
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
407
|
+
getIdNormalizerPlugin(config),
|
|
405
408
|
];
|
|
406
409
|
})
|
|
407
410
|
.s("AWSDnsV20130401", "DeleteQueryLoggingConfig", {})
|
|
408
411
|
.n("Route53Client", "DeleteQueryLoggingConfigCommand")
|
|
409
|
-
.sc(
|
|
412
|
+
.sc(DeleteQueryLoggingConfig$)
|
|
410
413
|
.build() {
|
|
411
414
|
}
|
|
412
415
|
|
|
413
|
-
class DeleteReusableDelegationSetCommand extends
|
|
416
|
+
class DeleteReusableDelegationSetCommand extends Command
|
|
414
417
|
.classBuilder()
|
|
415
418
|
.ep(commonParams)
|
|
416
419
|
.m(function (Command, cs, config, o) {
|
|
417
420
|
return [
|
|
418
|
-
|
|
419
|
-
|
|
421
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
422
|
+
getIdNormalizerPlugin(config),
|
|
420
423
|
];
|
|
421
424
|
})
|
|
422
425
|
.s("AWSDnsV20130401", "DeleteReusableDelegationSet", {})
|
|
423
426
|
.n("Route53Client", "DeleteReusableDelegationSetCommand")
|
|
424
|
-
.sc(
|
|
427
|
+
.sc(DeleteReusableDelegationSet$)
|
|
425
428
|
.build() {
|
|
426
429
|
}
|
|
427
430
|
|
|
428
|
-
class DeleteTrafficPolicyCommand extends
|
|
431
|
+
class DeleteTrafficPolicyCommand extends Command
|
|
429
432
|
.classBuilder()
|
|
430
433
|
.ep(commonParams)
|
|
431
434
|
.m(function (Command, cs, config, o) {
|
|
432
435
|
return [
|
|
433
|
-
|
|
434
|
-
|
|
436
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
437
|
+
getIdNormalizerPlugin(config),
|
|
435
438
|
];
|
|
436
439
|
})
|
|
437
440
|
.s("AWSDnsV20130401", "DeleteTrafficPolicy", {})
|
|
438
441
|
.n("Route53Client", "DeleteTrafficPolicyCommand")
|
|
439
|
-
.sc(
|
|
442
|
+
.sc(DeleteTrafficPolicy$)
|
|
440
443
|
.build() {
|
|
441
444
|
}
|
|
442
445
|
|
|
443
|
-
class DeleteTrafficPolicyInstanceCommand extends
|
|
446
|
+
class DeleteTrafficPolicyInstanceCommand extends Command
|
|
444
447
|
.classBuilder()
|
|
445
448
|
.ep(commonParams)
|
|
446
449
|
.m(function (Command, cs, config, o) {
|
|
447
450
|
return [
|
|
448
|
-
|
|
449
|
-
|
|
451
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
452
|
+
getIdNormalizerPlugin(config),
|
|
450
453
|
];
|
|
451
454
|
})
|
|
452
455
|
.s("AWSDnsV20130401", "DeleteTrafficPolicyInstance", {})
|
|
453
456
|
.n("Route53Client", "DeleteTrafficPolicyInstanceCommand")
|
|
454
|
-
.sc(
|
|
457
|
+
.sc(DeleteTrafficPolicyInstance$)
|
|
455
458
|
.build() {
|
|
456
459
|
}
|
|
457
460
|
|
|
458
|
-
class DeleteVPCAssociationAuthorizationCommand extends
|
|
461
|
+
class DeleteVPCAssociationAuthorizationCommand extends Command
|
|
459
462
|
.classBuilder()
|
|
460
463
|
.ep(commonParams)
|
|
461
464
|
.m(function (Command, cs, config, o) {
|
|
462
465
|
return [
|
|
463
|
-
|
|
464
|
-
|
|
466
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
467
|
+
getIdNormalizerPlugin(config),
|
|
465
468
|
];
|
|
466
469
|
})
|
|
467
470
|
.s("AWSDnsV20130401", "DeleteVPCAssociationAuthorization", {})
|
|
468
471
|
.n("Route53Client", "DeleteVPCAssociationAuthorizationCommand")
|
|
469
|
-
.sc(
|
|
472
|
+
.sc(DeleteVPCAssociationAuthorization$)
|
|
470
473
|
.build() {
|
|
471
474
|
}
|
|
472
475
|
|
|
473
|
-
class DisableHostedZoneDNSSECCommand extends
|
|
476
|
+
class DisableHostedZoneDNSSECCommand extends Command
|
|
474
477
|
.classBuilder()
|
|
475
478
|
.ep(commonParams)
|
|
476
479
|
.m(function (Command, cs, config, o) {
|
|
477
480
|
return [
|
|
478
|
-
|
|
479
|
-
|
|
481
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
482
|
+
getIdNormalizerPlugin(config),
|
|
480
483
|
];
|
|
481
484
|
})
|
|
482
485
|
.s("AWSDnsV20130401", "DisableHostedZoneDNSSEC", {})
|
|
483
486
|
.n("Route53Client", "DisableHostedZoneDNSSECCommand")
|
|
484
|
-
.sc(
|
|
487
|
+
.sc(DisableHostedZoneDNSSEC$)
|
|
485
488
|
.build() {
|
|
486
489
|
}
|
|
487
490
|
|
|
488
|
-
class DisassociateVPCFromHostedZoneCommand extends
|
|
491
|
+
class DisassociateVPCFromHostedZoneCommand extends Command
|
|
489
492
|
.classBuilder()
|
|
490
493
|
.ep(commonParams)
|
|
491
494
|
.m(function (Command, cs, config, o) {
|
|
492
495
|
return [
|
|
493
|
-
|
|
494
|
-
|
|
496
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
497
|
+
getIdNormalizerPlugin(config),
|
|
495
498
|
];
|
|
496
499
|
})
|
|
497
500
|
.s("AWSDnsV20130401", "DisassociateVPCFromHostedZone", {})
|
|
498
501
|
.n("Route53Client", "DisassociateVPCFromHostedZoneCommand")
|
|
499
|
-
.sc(
|
|
502
|
+
.sc(DisassociateVPCFromHostedZone$)
|
|
500
503
|
.build() {
|
|
501
504
|
}
|
|
502
505
|
|
|
503
|
-
class EnableHostedZoneDNSSECCommand extends
|
|
506
|
+
class EnableHostedZoneDNSSECCommand extends Command
|
|
504
507
|
.classBuilder()
|
|
505
508
|
.ep(commonParams)
|
|
506
509
|
.m(function (Command, cs, config, o) {
|
|
507
510
|
return [
|
|
508
|
-
|
|
509
|
-
|
|
511
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
512
|
+
getIdNormalizerPlugin(config),
|
|
510
513
|
];
|
|
511
514
|
})
|
|
512
515
|
.s("AWSDnsV20130401", "EnableHostedZoneDNSSEC", {})
|
|
513
516
|
.n("Route53Client", "EnableHostedZoneDNSSECCommand")
|
|
514
|
-
.sc(
|
|
517
|
+
.sc(EnableHostedZoneDNSSEC$)
|
|
515
518
|
.build() {
|
|
516
519
|
}
|
|
517
520
|
|
|
518
|
-
class GetAccountLimitCommand extends
|
|
521
|
+
class GetAccountLimitCommand extends Command
|
|
519
522
|
.classBuilder()
|
|
520
523
|
.ep(commonParams)
|
|
521
524
|
.m(function (Command, cs, config, o) {
|
|
522
|
-
return [
|
|
525
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
523
526
|
})
|
|
524
527
|
.s("AWSDnsV20130401", "GetAccountLimit", {})
|
|
525
528
|
.n("Route53Client", "GetAccountLimitCommand")
|
|
526
|
-
.sc(
|
|
529
|
+
.sc(GetAccountLimit$)
|
|
527
530
|
.build() {
|
|
528
531
|
}
|
|
529
532
|
|
|
530
|
-
class GetChangeCommand extends
|
|
533
|
+
class GetChangeCommand extends Command
|
|
531
534
|
.classBuilder()
|
|
532
535
|
.ep(commonParams)
|
|
533
536
|
.m(function (Command, cs, config, o) {
|
|
534
537
|
return [
|
|
535
|
-
|
|
536
|
-
|
|
538
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
539
|
+
getIdNormalizerPlugin(config),
|
|
537
540
|
];
|
|
538
541
|
})
|
|
539
542
|
.s("AWSDnsV20130401", "GetChange", {})
|
|
540
543
|
.n("Route53Client", "GetChangeCommand")
|
|
541
|
-
.sc(
|
|
544
|
+
.sc(GetChange$)
|
|
542
545
|
.build() {
|
|
543
546
|
}
|
|
544
547
|
|
|
545
|
-
class GetCheckerIpRangesCommand extends
|
|
548
|
+
class GetCheckerIpRangesCommand extends Command
|
|
546
549
|
.classBuilder()
|
|
547
550
|
.ep(commonParams)
|
|
548
551
|
.m(function (Command, cs, config, o) {
|
|
549
|
-
return [
|
|
552
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
550
553
|
})
|
|
551
554
|
.s("AWSDnsV20130401", "GetCheckerIpRanges", {})
|
|
552
555
|
.n("Route53Client", "GetCheckerIpRangesCommand")
|
|
553
|
-
.sc(
|
|
556
|
+
.sc(GetCheckerIpRanges$)
|
|
554
557
|
.build() {
|
|
555
558
|
}
|
|
556
559
|
|
|
557
|
-
class GetDNSSECCommand extends
|
|
560
|
+
class GetDNSSECCommand extends Command
|
|
558
561
|
.classBuilder()
|
|
559
562
|
.ep(commonParams)
|
|
560
563
|
.m(function (Command, cs, config, o) {
|
|
561
564
|
return [
|
|
562
|
-
|
|
563
|
-
|
|
565
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
566
|
+
getIdNormalizerPlugin(config),
|
|
564
567
|
];
|
|
565
568
|
})
|
|
566
569
|
.s("AWSDnsV20130401", "GetDNSSEC", {})
|
|
567
570
|
.n("Route53Client", "GetDNSSECCommand")
|
|
568
|
-
.sc(
|
|
571
|
+
.sc(GetDNSSEC$)
|
|
569
572
|
.build() {
|
|
570
573
|
}
|
|
571
574
|
|
|
572
|
-
class GetGeoLocationCommand extends
|
|
575
|
+
class GetGeoLocationCommand extends Command
|
|
573
576
|
.classBuilder()
|
|
574
577
|
.ep(commonParams)
|
|
575
578
|
.m(function (Command, cs, config, o) {
|
|
576
|
-
return [
|
|
579
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
577
580
|
})
|
|
578
581
|
.s("AWSDnsV20130401", "GetGeoLocation", {})
|
|
579
582
|
.n("Route53Client", "GetGeoLocationCommand")
|
|
580
|
-
.sc(
|
|
583
|
+
.sc(GetGeoLocation$)
|
|
581
584
|
.build() {
|
|
582
585
|
}
|
|
583
586
|
|
|
584
|
-
class GetHealthCheckCommand extends
|
|
587
|
+
class GetHealthCheckCommand extends Command
|
|
585
588
|
.classBuilder()
|
|
586
589
|
.ep(commonParams)
|
|
587
590
|
.m(function (Command, cs, config, o) {
|
|
588
|
-
return [
|
|
591
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
589
592
|
})
|
|
590
593
|
.s("AWSDnsV20130401", "GetHealthCheck", {})
|
|
591
594
|
.n("Route53Client", "GetHealthCheckCommand")
|
|
592
|
-
.sc(
|
|
595
|
+
.sc(GetHealthCheck$)
|
|
593
596
|
.build() {
|
|
594
597
|
}
|
|
595
598
|
|
|
596
|
-
class GetHealthCheckCountCommand extends
|
|
599
|
+
class GetHealthCheckCountCommand extends Command
|
|
597
600
|
.classBuilder()
|
|
598
601
|
.ep(commonParams)
|
|
599
602
|
.m(function (Command, cs, config, o) {
|
|
600
|
-
return [
|
|
603
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
601
604
|
})
|
|
602
605
|
.s("AWSDnsV20130401", "GetHealthCheckCount", {})
|
|
603
606
|
.n("Route53Client", "GetHealthCheckCountCommand")
|
|
604
|
-
.sc(
|
|
607
|
+
.sc(GetHealthCheckCount$)
|
|
605
608
|
.build() {
|
|
606
609
|
}
|
|
607
610
|
|
|
608
|
-
class GetHealthCheckLastFailureReasonCommand extends
|
|
611
|
+
class GetHealthCheckLastFailureReasonCommand extends Command
|
|
609
612
|
.classBuilder()
|
|
610
613
|
.ep(commonParams)
|
|
611
614
|
.m(function (Command, cs, config, o) {
|
|
612
|
-
return [
|
|
615
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
613
616
|
})
|
|
614
617
|
.s("AWSDnsV20130401", "GetHealthCheckLastFailureReason", {})
|
|
615
618
|
.n("Route53Client", "GetHealthCheckLastFailureReasonCommand")
|
|
616
|
-
.sc(
|
|
619
|
+
.sc(GetHealthCheckLastFailureReason$)
|
|
617
620
|
.build() {
|
|
618
621
|
}
|
|
619
622
|
|
|
620
|
-
class GetHealthCheckStatusCommand extends
|
|
623
|
+
class GetHealthCheckStatusCommand extends Command
|
|
621
624
|
.classBuilder()
|
|
622
625
|
.ep(commonParams)
|
|
623
626
|
.m(function (Command, cs, config, o) {
|
|
624
|
-
return [
|
|
627
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
625
628
|
})
|
|
626
629
|
.s("AWSDnsV20130401", "GetHealthCheckStatus", {})
|
|
627
630
|
.n("Route53Client", "GetHealthCheckStatusCommand")
|
|
628
|
-
.sc(
|
|
631
|
+
.sc(GetHealthCheckStatus$)
|
|
629
632
|
.build() {
|
|
630
633
|
}
|
|
631
634
|
|
|
632
|
-
class GetHostedZoneCommand extends
|
|
635
|
+
class GetHostedZoneCommand extends Command
|
|
633
636
|
.classBuilder()
|
|
634
637
|
.ep(commonParams)
|
|
635
638
|
.m(function (Command, cs, config, o) {
|
|
636
639
|
return [
|
|
637
|
-
|
|
638
|
-
|
|
640
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
641
|
+
getIdNormalizerPlugin(config),
|
|
639
642
|
];
|
|
640
643
|
})
|
|
641
644
|
.s("AWSDnsV20130401", "GetHostedZone", {})
|
|
642
645
|
.n("Route53Client", "GetHostedZoneCommand")
|
|
643
|
-
.sc(
|
|
646
|
+
.sc(GetHostedZone$)
|
|
644
647
|
.build() {
|
|
645
648
|
}
|
|
646
649
|
|
|
647
|
-
class GetHostedZoneCountCommand extends
|
|
650
|
+
class GetHostedZoneCountCommand extends Command
|
|
648
651
|
.classBuilder()
|
|
649
652
|
.ep(commonParams)
|
|
650
653
|
.m(function (Command, cs, config, o) {
|
|
651
|
-
return [
|
|
654
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
652
655
|
})
|
|
653
656
|
.s("AWSDnsV20130401", "GetHostedZoneCount", {})
|
|
654
657
|
.n("Route53Client", "GetHostedZoneCountCommand")
|
|
655
|
-
.sc(
|
|
658
|
+
.sc(GetHostedZoneCount$)
|
|
656
659
|
.build() {
|
|
657
660
|
}
|
|
658
661
|
|
|
659
|
-
class GetHostedZoneLimitCommand extends
|
|
662
|
+
class GetHostedZoneLimitCommand extends Command
|
|
660
663
|
.classBuilder()
|
|
661
664
|
.ep(commonParams)
|
|
662
665
|
.m(function (Command, cs, config, o) {
|
|
663
666
|
return [
|
|
664
|
-
|
|
665
|
-
|
|
667
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
668
|
+
getIdNormalizerPlugin(config),
|
|
666
669
|
];
|
|
667
670
|
})
|
|
668
671
|
.s("AWSDnsV20130401", "GetHostedZoneLimit", {})
|
|
669
672
|
.n("Route53Client", "GetHostedZoneLimitCommand")
|
|
670
|
-
.sc(
|
|
673
|
+
.sc(GetHostedZoneLimit$)
|
|
671
674
|
.build() {
|
|
672
675
|
}
|
|
673
676
|
|
|
674
|
-
class GetQueryLoggingConfigCommand extends
|
|
677
|
+
class GetQueryLoggingConfigCommand extends Command
|
|
675
678
|
.classBuilder()
|
|
676
679
|
.ep(commonParams)
|
|
677
680
|
.m(function (Command, cs, config, o) {
|
|
678
681
|
return [
|
|
679
|
-
|
|
680
|
-
|
|
682
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
683
|
+
getIdNormalizerPlugin(config),
|
|
681
684
|
];
|
|
682
685
|
})
|
|
683
686
|
.s("AWSDnsV20130401", "GetQueryLoggingConfig", {})
|
|
684
687
|
.n("Route53Client", "GetQueryLoggingConfigCommand")
|
|
685
|
-
.sc(
|
|
688
|
+
.sc(GetQueryLoggingConfig$)
|
|
686
689
|
.build() {
|
|
687
690
|
}
|
|
688
691
|
|
|
689
|
-
class GetReusableDelegationSetCommand extends
|
|
692
|
+
class GetReusableDelegationSetCommand extends Command
|
|
690
693
|
.classBuilder()
|
|
691
694
|
.ep(commonParams)
|
|
692
695
|
.m(function (Command, cs, config, o) {
|
|
693
696
|
return [
|
|
694
|
-
|
|
695
|
-
|
|
697
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
698
|
+
getIdNormalizerPlugin(config),
|
|
696
699
|
];
|
|
697
700
|
})
|
|
698
701
|
.s("AWSDnsV20130401", "GetReusableDelegationSet", {})
|
|
699
702
|
.n("Route53Client", "GetReusableDelegationSetCommand")
|
|
700
|
-
.sc(
|
|
703
|
+
.sc(GetReusableDelegationSet$)
|
|
701
704
|
.build() {
|
|
702
705
|
}
|
|
703
706
|
|
|
704
|
-
class GetReusableDelegationSetLimitCommand extends
|
|
707
|
+
class GetReusableDelegationSetLimitCommand extends Command
|
|
705
708
|
.classBuilder()
|
|
706
709
|
.ep(commonParams)
|
|
707
710
|
.m(function (Command, cs, config, o) {
|
|
708
711
|
return [
|
|
709
|
-
|
|
710
|
-
|
|
712
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
713
|
+
getIdNormalizerPlugin(config),
|
|
711
714
|
];
|
|
712
715
|
})
|
|
713
716
|
.s("AWSDnsV20130401", "GetReusableDelegationSetLimit", {})
|
|
714
717
|
.n("Route53Client", "GetReusableDelegationSetLimitCommand")
|
|
715
|
-
.sc(
|
|
718
|
+
.sc(GetReusableDelegationSetLimit$)
|
|
716
719
|
.build() {
|
|
717
720
|
}
|
|
718
721
|
|
|
719
|
-
class GetTrafficPolicyCommand extends
|
|
722
|
+
class GetTrafficPolicyCommand extends Command
|
|
720
723
|
.classBuilder()
|
|
721
724
|
.ep(commonParams)
|
|
722
725
|
.m(function (Command, cs, config, o) {
|
|
723
726
|
return [
|
|
724
|
-
|
|
725
|
-
|
|
727
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
728
|
+
getIdNormalizerPlugin(config),
|
|
726
729
|
];
|
|
727
730
|
})
|
|
728
731
|
.s("AWSDnsV20130401", "GetTrafficPolicy", {})
|
|
729
732
|
.n("Route53Client", "GetTrafficPolicyCommand")
|
|
730
|
-
.sc(
|
|
733
|
+
.sc(GetTrafficPolicy$)
|
|
731
734
|
.build() {
|
|
732
735
|
}
|
|
733
736
|
|
|
734
|
-
class GetTrafficPolicyInstanceCommand extends
|
|
737
|
+
class GetTrafficPolicyInstanceCommand extends Command
|
|
735
738
|
.classBuilder()
|
|
736
739
|
.ep(commonParams)
|
|
737
740
|
.m(function (Command, cs, config, o) {
|
|
738
741
|
return [
|
|
739
|
-
|
|
740
|
-
|
|
742
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
743
|
+
getIdNormalizerPlugin(config),
|
|
741
744
|
];
|
|
742
745
|
})
|
|
743
746
|
.s("AWSDnsV20130401", "GetTrafficPolicyInstance", {})
|
|
744
747
|
.n("Route53Client", "GetTrafficPolicyInstanceCommand")
|
|
745
|
-
.sc(
|
|
748
|
+
.sc(GetTrafficPolicyInstance$)
|
|
746
749
|
.build() {
|
|
747
750
|
}
|
|
748
751
|
|
|
749
|
-
class GetTrafficPolicyInstanceCountCommand extends
|
|
752
|
+
class GetTrafficPolicyInstanceCountCommand extends Command
|
|
750
753
|
.classBuilder()
|
|
751
754
|
.ep(commonParams)
|
|
752
755
|
.m(function (Command, cs, config, o) {
|
|
753
|
-
return [
|
|
756
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
754
757
|
})
|
|
755
758
|
.s("AWSDnsV20130401", "GetTrafficPolicyInstanceCount", {})
|
|
756
759
|
.n("Route53Client", "GetTrafficPolicyInstanceCountCommand")
|
|
757
|
-
.sc(
|
|
760
|
+
.sc(GetTrafficPolicyInstanceCount$)
|
|
758
761
|
.build() {
|
|
759
762
|
}
|
|
760
763
|
|
|
761
|
-
class ListCidrBlocksCommand extends
|
|
764
|
+
class ListCidrBlocksCommand extends Command
|
|
762
765
|
.classBuilder()
|
|
763
766
|
.ep(commonParams)
|
|
764
767
|
.m(function (Command, cs, config, o) {
|
|
765
|
-
return [
|
|
768
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
766
769
|
})
|
|
767
770
|
.s("AWSDnsV20130401", "ListCidrBlocks", {})
|
|
768
771
|
.n("Route53Client", "ListCidrBlocksCommand")
|
|
769
|
-
.sc(
|
|
772
|
+
.sc(ListCidrBlocks$)
|
|
770
773
|
.build() {
|
|
771
774
|
}
|
|
772
775
|
|
|
773
|
-
class ListCidrCollectionsCommand extends
|
|
776
|
+
class ListCidrCollectionsCommand extends Command
|
|
774
777
|
.classBuilder()
|
|
775
778
|
.ep(commonParams)
|
|
776
779
|
.m(function (Command, cs, config, o) {
|
|
777
|
-
return [
|
|
780
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
778
781
|
})
|
|
779
782
|
.s("AWSDnsV20130401", "ListCidrCollections", {})
|
|
780
783
|
.n("Route53Client", "ListCidrCollectionsCommand")
|
|
781
|
-
.sc(
|
|
784
|
+
.sc(ListCidrCollections$)
|
|
782
785
|
.build() {
|
|
783
786
|
}
|
|
784
787
|
|
|
785
|
-
class ListCidrLocationsCommand extends
|
|
788
|
+
class ListCidrLocationsCommand extends Command
|
|
786
789
|
.classBuilder()
|
|
787
790
|
.ep(commonParams)
|
|
788
791
|
.m(function (Command, cs, config, o) {
|
|
789
|
-
return [
|
|
792
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
790
793
|
})
|
|
791
794
|
.s("AWSDnsV20130401", "ListCidrLocations", {})
|
|
792
795
|
.n("Route53Client", "ListCidrLocationsCommand")
|
|
793
|
-
.sc(
|
|
796
|
+
.sc(ListCidrLocations$)
|
|
794
797
|
.build() {
|
|
795
798
|
}
|
|
796
799
|
|
|
797
|
-
class ListGeoLocationsCommand extends
|
|
800
|
+
class ListGeoLocationsCommand extends Command
|
|
798
801
|
.classBuilder()
|
|
799
802
|
.ep(commonParams)
|
|
800
803
|
.m(function (Command, cs, config, o) {
|
|
801
|
-
return [
|
|
804
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
802
805
|
})
|
|
803
806
|
.s("AWSDnsV20130401", "ListGeoLocations", {})
|
|
804
807
|
.n("Route53Client", "ListGeoLocationsCommand")
|
|
805
|
-
.sc(
|
|
808
|
+
.sc(ListGeoLocations$)
|
|
806
809
|
.build() {
|
|
807
810
|
}
|
|
808
811
|
|
|
809
|
-
class ListHealthChecksCommand extends
|
|
812
|
+
class ListHealthChecksCommand extends Command
|
|
810
813
|
.classBuilder()
|
|
811
814
|
.ep(commonParams)
|
|
812
815
|
.m(function (Command, cs, config, o) {
|
|
813
|
-
return [
|
|
816
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
814
817
|
})
|
|
815
818
|
.s("AWSDnsV20130401", "ListHealthChecks", {})
|
|
816
819
|
.n("Route53Client", "ListHealthChecksCommand")
|
|
817
|
-
.sc(
|
|
820
|
+
.sc(ListHealthChecks$)
|
|
818
821
|
.build() {
|
|
819
822
|
}
|
|
820
823
|
|
|
821
|
-
class ListHostedZonesByNameCommand extends
|
|
824
|
+
class ListHostedZonesByNameCommand extends Command
|
|
822
825
|
.classBuilder()
|
|
823
826
|
.ep(commonParams)
|
|
824
827
|
.m(function (Command, cs, config, o) {
|
|
825
828
|
return [
|
|
826
|
-
|
|
827
|
-
|
|
829
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
830
|
+
getIdNormalizerPlugin(config),
|
|
828
831
|
];
|
|
829
832
|
})
|
|
830
833
|
.s("AWSDnsV20130401", "ListHostedZonesByName", {})
|
|
831
834
|
.n("Route53Client", "ListHostedZonesByNameCommand")
|
|
832
|
-
.sc(
|
|
835
|
+
.sc(ListHostedZonesByName$)
|
|
833
836
|
.build() {
|
|
834
837
|
}
|
|
835
838
|
|
|
836
|
-
class ListHostedZonesByVPCCommand extends
|
|
839
|
+
class ListHostedZonesByVPCCommand extends Command
|
|
837
840
|
.classBuilder()
|
|
838
841
|
.ep(commonParams)
|
|
839
842
|
.m(function (Command, cs, config, o) {
|
|
840
|
-
return [
|
|
843
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
841
844
|
})
|
|
842
845
|
.s("AWSDnsV20130401", "ListHostedZonesByVPC", {})
|
|
843
846
|
.n("Route53Client", "ListHostedZonesByVPCCommand")
|
|
844
|
-
.sc(
|
|
847
|
+
.sc(ListHostedZonesByVPC$)
|
|
845
848
|
.build() {
|
|
846
849
|
}
|
|
847
850
|
|
|
848
|
-
class ListHostedZonesCommand extends
|
|
851
|
+
class ListHostedZonesCommand extends Command
|
|
849
852
|
.classBuilder()
|
|
850
853
|
.ep(commonParams)
|
|
851
854
|
.m(function (Command, cs, config, o) {
|
|
852
855
|
return [
|
|
853
|
-
|
|
854
|
-
|
|
856
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
857
|
+
getIdNormalizerPlugin(config),
|
|
855
858
|
];
|
|
856
859
|
})
|
|
857
860
|
.s("AWSDnsV20130401", "ListHostedZones", {})
|
|
858
861
|
.n("Route53Client", "ListHostedZonesCommand")
|
|
859
|
-
.sc(
|
|
862
|
+
.sc(ListHostedZones$)
|
|
860
863
|
.build() {
|
|
861
864
|
}
|
|
862
865
|
|
|
863
|
-
class ListQueryLoggingConfigsCommand extends
|
|
866
|
+
class ListQueryLoggingConfigsCommand extends Command
|
|
864
867
|
.classBuilder()
|
|
865
868
|
.ep(commonParams)
|
|
866
869
|
.m(function (Command, cs, config, o) {
|
|
867
870
|
return [
|
|
868
|
-
|
|
869
|
-
|
|
871
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
872
|
+
getIdNormalizerPlugin(config),
|
|
870
873
|
];
|
|
871
874
|
})
|
|
872
875
|
.s("AWSDnsV20130401", "ListQueryLoggingConfigs", {})
|
|
873
876
|
.n("Route53Client", "ListQueryLoggingConfigsCommand")
|
|
874
|
-
.sc(
|
|
877
|
+
.sc(ListQueryLoggingConfigs$)
|
|
875
878
|
.build() {
|
|
876
879
|
}
|
|
877
880
|
|
|
878
|
-
class ListResourceRecordSetsCommand extends
|
|
881
|
+
class ListResourceRecordSetsCommand extends Command
|
|
879
882
|
.classBuilder()
|
|
880
883
|
.ep(commonParams)
|
|
881
884
|
.m(function (Command, cs, config, o) {
|
|
882
885
|
return [
|
|
883
|
-
|
|
884
|
-
|
|
886
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
887
|
+
getIdNormalizerPlugin(config),
|
|
885
888
|
];
|
|
886
889
|
})
|
|
887
890
|
.s("AWSDnsV20130401", "ListResourceRecordSets", {})
|
|
888
891
|
.n("Route53Client", "ListResourceRecordSetsCommand")
|
|
889
|
-
.sc(
|
|
892
|
+
.sc(ListResourceRecordSets$)
|
|
890
893
|
.build() {
|
|
891
894
|
}
|
|
892
895
|
|
|
893
|
-
class ListReusableDelegationSetsCommand extends
|
|
896
|
+
class ListReusableDelegationSetsCommand extends Command
|
|
894
897
|
.classBuilder()
|
|
895
898
|
.ep(commonParams)
|
|
896
899
|
.m(function (Command, cs, config, o) {
|
|
897
|
-
return [
|
|
900
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
898
901
|
})
|
|
899
902
|
.s("AWSDnsV20130401", "ListReusableDelegationSets", {})
|
|
900
903
|
.n("Route53Client", "ListReusableDelegationSetsCommand")
|
|
901
|
-
.sc(
|
|
904
|
+
.sc(ListReusableDelegationSets$)
|
|
902
905
|
.build() {
|
|
903
906
|
}
|
|
904
907
|
|
|
905
|
-
class ListTagsForResourceCommand extends
|
|
908
|
+
class ListTagsForResourceCommand extends Command
|
|
906
909
|
.classBuilder()
|
|
907
910
|
.ep(commonParams)
|
|
908
911
|
.m(function (Command, cs, config, o) {
|
|
909
|
-
return [
|
|
912
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
910
913
|
})
|
|
911
914
|
.s("AWSDnsV20130401", "ListTagsForResource", {})
|
|
912
915
|
.n("Route53Client", "ListTagsForResourceCommand")
|
|
913
|
-
.sc(
|
|
916
|
+
.sc(ListTagsForResource$)
|
|
914
917
|
.build() {
|
|
915
918
|
}
|
|
916
919
|
|
|
917
|
-
class ListTagsForResourcesCommand extends
|
|
920
|
+
class ListTagsForResourcesCommand extends Command
|
|
918
921
|
.classBuilder()
|
|
919
922
|
.ep(commonParams)
|
|
920
923
|
.m(function (Command, cs, config, o) {
|
|
921
|
-
return [
|
|
924
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
922
925
|
})
|
|
923
926
|
.s("AWSDnsV20130401", "ListTagsForResources", {})
|
|
924
927
|
.n("Route53Client", "ListTagsForResourcesCommand")
|
|
925
|
-
.sc(
|
|
928
|
+
.sc(ListTagsForResources$)
|
|
926
929
|
.build() {
|
|
927
930
|
}
|
|
928
931
|
|
|
929
|
-
class ListTrafficPoliciesCommand extends
|
|
932
|
+
class ListTrafficPoliciesCommand extends Command
|
|
930
933
|
.classBuilder()
|
|
931
934
|
.ep(commonParams)
|
|
932
935
|
.m(function (Command, cs, config, o) {
|
|
933
|
-
return [
|
|
936
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
934
937
|
})
|
|
935
938
|
.s("AWSDnsV20130401", "ListTrafficPolicies", {})
|
|
936
939
|
.n("Route53Client", "ListTrafficPoliciesCommand")
|
|
937
|
-
.sc(
|
|
940
|
+
.sc(ListTrafficPolicies$)
|
|
938
941
|
.build() {
|
|
939
942
|
}
|
|
940
943
|
|
|
941
|
-
class ListTrafficPolicyInstancesByHostedZoneCommand extends
|
|
944
|
+
class ListTrafficPolicyInstancesByHostedZoneCommand extends Command
|
|
942
945
|
.classBuilder()
|
|
943
946
|
.ep(commonParams)
|
|
944
947
|
.m(function (Command, cs, config, o) {
|
|
945
948
|
return [
|
|
946
|
-
|
|
947
|
-
|
|
949
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
950
|
+
getIdNormalizerPlugin(config),
|
|
948
951
|
];
|
|
949
952
|
})
|
|
950
953
|
.s("AWSDnsV20130401", "ListTrafficPolicyInstancesByHostedZone", {})
|
|
951
954
|
.n("Route53Client", "ListTrafficPolicyInstancesByHostedZoneCommand")
|
|
952
|
-
.sc(
|
|
955
|
+
.sc(ListTrafficPolicyInstancesByHostedZone$)
|
|
953
956
|
.build() {
|
|
954
957
|
}
|
|
955
958
|
|
|
956
|
-
class ListTrafficPolicyInstancesByPolicyCommand extends
|
|
959
|
+
class ListTrafficPolicyInstancesByPolicyCommand extends Command
|
|
957
960
|
.classBuilder()
|
|
958
961
|
.ep(commonParams)
|
|
959
962
|
.m(function (Command, cs, config, o) {
|
|
960
|
-
return [
|
|
963
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
961
964
|
})
|
|
962
965
|
.s("AWSDnsV20130401", "ListTrafficPolicyInstancesByPolicy", {})
|
|
963
966
|
.n("Route53Client", "ListTrafficPolicyInstancesByPolicyCommand")
|
|
964
|
-
.sc(
|
|
967
|
+
.sc(ListTrafficPolicyInstancesByPolicy$)
|
|
965
968
|
.build() {
|
|
966
969
|
}
|
|
967
970
|
|
|
968
|
-
class ListTrafficPolicyInstancesCommand extends
|
|
971
|
+
class ListTrafficPolicyInstancesCommand extends Command
|
|
969
972
|
.classBuilder()
|
|
970
973
|
.ep(commonParams)
|
|
971
974
|
.m(function (Command, cs, config, o) {
|
|
972
|
-
return [
|
|
975
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
973
976
|
})
|
|
974
977
|
.s("AWSDnsV20130401", "ListTrafficPolicyInstances", {})
|
|
975
978
|
.n("Route53Client", "ListTrafficPolicyInstancesCommand")
|
|
976
|
-
.sc(
|
|
979
|
+
.sc(ListTrafficPolicyInstances$)
|
|
977
980
|
.build() {
|
|
978
981
|
}
|
|
979
982
|
|
|
980
|
-
class ListTrafficPolicyVersionsCommand extends
|
|
983
|
+
class ListTrafficPolicyVersionsCommand extends Command
|
|
981
984
|
.classBuilder()
|
|
982
985
|
.ep(commonParams)
|
|
983
986
|
.m(function (Command, cs, config, o) {
|
|
984
987
|
return [
|
|
985
|
-
|
|
986
|
-
|
|
988
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
989
|
+
getIdNormalizerPlugin(config),
|
|
987
990
|
];
|
|
988
991
|
})
|
|
989
992
|
.s("AWSDnsV20130401", "ListTrafficPolicyVersions", {})
|
|
990
993
|
.n("Route53Client", "ListTrafficPolicyVersionsCommand")
|
|
991
|
-
.sc(
|
|
994
|
+
.sc(ListTrafficPolicyVersions$)
|
|
992
995
|
.build() {
|
|
993
996
|
}
|
|
994
997
|
|
|
995
|
-
class ListVPCAssociationAuthorizationsCommand extends
|
|
998
|
+
class ListVPCAssociationAuthorizationsCommand extends Command
|
|
996
999
|
.classBuilder()
|
|
997
1000
|
.ep(commonParams)
|
|
998
1001
|
.m(function (Command, cs, config, o) {
|
|
999
1002
|
return [
|
|
1000
|
-
|
|
1001
|
-
|
|
1003
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1004
|
+
getIdNormalizerPlugin(config),
|
|
1002
1005
|
];
|
|
1003
1006
|
})
|
|
1004
1007
|
.s("AWSDnsV20130401", "ListVPCAssociationAuthorizations", {})
|
|
1005
1008
|
.n("Route53Client", "ListVPCAssociationAuthorizationsCommand")
|
|
1006
|
-
.sc(
|
|
1009
|
+
.sc(ListVPCAssociationAuthorizations$)
|
|
1007
1010
|
.build() {
|
|
1008
1011
|
}
|
|
1009
1012
|
|
|
1010
|
-
class TestDNSAnswerCommand extends
|
|
1013
|
+
class TestDNSAnswerCommand extends Command
|
|
1011
1014
|
.classBuilder()
|
|
1012
1015
|
.ep(commonParams)
|
|
1013
1016
|
.m(function (Command, cs, config, o) {
|
|
1014
1017
|
return [
|
|
1015
|
-
|
|
1016
|
-
|
|
1018
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1019
|
+
getIdNormalizerPlugin(config),
|
|
1017
1020
|
];
|
|
1018
1021
|
})
|
|
1019
1022
|
.s("AWSDnsV20130401", "TestDNSAnswer", {})
|
|
1020
1023
|
.n("Route53Client", "TestDNSAnswerCommand")
|
|
1021
|
-
.sc(
|
|
1024
|
+
.sc(TestDNSAnswer$)
|
|
1022
1025
|
.build() {
|
|
1023
1026
|
}
|
|
1024
1027
|
|
|
1025
|
-
class UpdateHealthCheckCommand extends
|
|
1028
|
+
class UpdateHealthCheckCommand extends Command
|
|
1026
1029
|
.classBuilder()
|
|
1027
1030
|
.ep(commonParams)
|
|
1028
1031
|
.m(function (Command, cs, config, o) {
|
|
1029
|
-
return [
|
|
1032
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1030
1033
|
})
|
|
1031
1034
|
.s("AWSDnsV20130401", "UpdateHealthCheck", {})
|
|
1032
1035
|
.n("Route53Client", "UpdateHealthCheckCommand")
|
|
1033
|
-
.sc(
|
|
1036
|
+
.sc(UpdateHealthCheck$)
|
|
1034
1037
|
.build() {
|
|
1035
1038
|
}
|
|
1036
1039
|
|
|
1037
|
-
class UpdateHostedZoneCommentCommand extends
|
|
1040
|
+
class UpdateHostedZoneCommentCommand extends Command
|
|
1038
1041
|
.classBuilder()
|
|
1039
1042
|
.ep(commonParams)
|
|
1040
1043
|
.m(function (Command, cs, config, o) {
|
|
1041
1044
|
return [
|
|
1042
|
-
|
|
1043
|
-
|
|
1045
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1046
|
+
getIdNormalizerPlugin(config),
|
|
1044
1047
|
];
|
|
1045
1048
|
})
|
|
1046
1049
|
.s("AWSDnsV20130401", "UpdateHostedZoneComment", {})
|
|
1047
1050
|
.n("Route53Client", "UpdateHostedZoneCommentCommand")
|
|
1048
|
-
.sc(
|
|
1051
|
+
.sc(UpdateHostedZoneComment$)
|
|
1049
1052
|
.build() {
|
|
1050
1053
|
}
|
|
1051
1054
|
|
|
1052
|
-
class UpdateHostedZoneFeaturesCommand extends
|
|
1055
|
+
class UpdateHostedZoneFeaturesCommand extends Command
|
|
1053
1056
|
.classBuilder()
|
|
1054
1057
|
.ep(commonParams)
|
|
1055
1058
|
.m(function (Command, cs, config, o) {
|
|
1056
1059
|
return [
|
|
1057
|
-
|
|
1058
|
-
|
|
1060
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1061
|
+
getIdNormalizerPlugin(config),
|
|
1059
1062
|
];
|
|
1060
1063
|
})
|
|
1061
1064
|
.s("AWSDnsV20130401", "UpdateHostedZoneFeatures", {})
|
|
1062
1065
|
.n("Route53Client", "UpdateHostedZoneFeaturesCommand")
|
|
1063
|
-
.sc(
|
|
1066
|
+
.sc(UpdateHostedZoneFeatures$)
|
|
1064
1067
|
.build() {
|
|
1065
1068
|
}
|
|
1066
1069
|
|
|
1067
|
-
class UpdateTrafficPolicyCommentCommand extends
|
|
1070
|
+
class UpdateTrafficPolicyCommentCommand extends Command
|
|
1068
1071
|
.classBuilder()
|
|
1069
1072
|
.ep(commonParams)
|
|
1070
1073
|
.m(function (Command, cs, config, o) {
|
|
1071
1074
|
return [
|
|
1072
|
-
|
|
1073
|
-
|
|
1075
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1076
|
+
getIdNormalizerPlugin(config),
|
|
1074
1077
|
];
|
|
1075
1078
|
})
|
|
1076
1079
|
.s("AWSDnsV20130401", "UpdateTrafficPolicyComment", {})
|
|
1077
1080
|
.n("Route53Client", "UpdateTrafficPolicyCommentCommand")
|
|
1078
|
-
.sc(
|
|
1081
|
+
.sc(UpdateTrafficPolicyComment$)
|
|
1079
1082
|
.build() {
|
|
1080
1083
|
}
|
|
1081
1084
|
|
|
1082
|
-
class UpdateTrafficPolicyInstanceCommand extends
|
|
1085
|
+
class UpdateTrafficPolicyInstanceCommand extends Command
|
|
1083
1086
|
.classBuilder()
|
|
1084
1087
|
.ep(commonParams)
|
|
1085
1088
|
.m(function (Command, cs, config, o) {
|
|
1086
1089
|
return [
|
|
1087
|
-
|
|
1088
|
-
|
|
1090
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1091
|
+
getIdNormalizerPlugin(config),
|
|
1089
1092
|
];
|
|
1090
1093
|
})
|
|
1091
1094
|
.s("AWSDnsV20130401", "UpdateTrafficPolicyInstance", {})
|
|
1092
1095
|
.n("Route53Client", "UpdateTrafficPolicyInstanceCommand")
|
|
1093
|
-
.sc(
|
|
1096
|
+
.sc(UpdateTrafficPolicyInstance$)
|
|
1094
1097
|
.build() {
|
|
1095
1098
|
}
|
|
1096
1099
|
|
|
1097
|
-
const paginateListCidrBlocks =
|
|
1100
|
+
const paginateListCidrBlocks = createPaginator(Route53Client, ListCidrBlocksCommand, "NextToken", "NextToken", "MaxResults");
|
|
1098
1101
|
|
|
1099
|
-
const paginateListCidrCollections =
|
|
1102
|
+
const paginateListCidrCollections = createPaginator(Route53Client, ListCidrCollectionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1100
1103
|
|
|
1101
|
-
const paginateListCidrLocations =
|
|
1104
|
+
const paginateListCidrLocations = createPaginator(Route53Client, ListCidrLocationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1102
1105
|
|
|
1103
|
-
const paginateListHealthChecks =
|
|
1106
|
+
const paginateListHealthChecks = createPaginator(Route53Client, ListHealthChecksCommand, "Marker", "NextMarker", "MaxItems");
|
|
1104
1107
|
|
|
1105
|
-
const paginateListHostedZones =
|
|
1108
|
+
const paginateListHostedZones = createPaginator(Route53Client, ListHostedZonesCommand, "Marker", "NextMarker", "MaxItems");
|
|
1106
1109
|
|
|
1107
|
-
const paginateListQueryLoggingConfigs =
|
|
1110
|
+
const paginateListQueryLoggingConfigs = createPaginator(Route53Client, ListQueryLoggingConfigsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1108
1111
|
|
|
1109
|
-
const checkState = async (client
|
|
1112
|
+
const checkState = async (client, input) => {
|
|
1110
1113
|
let reason;
|
|
1111
1114
|
try {
|
|
1112
|
-
let result = await client
|
|
1115
|
+
let result = await client.send(new GetChangeCommand(input));
|
|
1113
1116
|
reason = result;
|
|
1114
1117
|
try {
|
|
1115
1118
|
const returnComparator = () => {
|
|
1116
1119
|
return result.ChangeInfo.Status;
|
|
1117
1120
|
};
|
|
1118
1121
|
if (returnComparator() === "INSYNC") {
|
|
1119
|
-
return { state:
|
|
1122
|
+
return { state: WaiterState.SUCCESS, reason };
|
|
1120
1123
|
}
|
|
1121
1124
|
}
|
|
1122
1125
|
catch (e) { }
|
|
@@ -1124,16 +1127,16 @@ const checkState = async (client$1, input) => {
|
|
|
1124
1127
|
catch (exception) {
|
|
1125
1128
|
reason = exception;
|
|
1126
1129
|
}
|
|
1127
|
-
return { state:
|
|
1130
|
+
return { state: WaiterState.RETRY, reason };
|
|
1128
1131
|
};
|
|
1129
1132
|
const waitForResourceRecordSetsChanged = async (params, input) => {
|
|
1130
1133
|
const serviceDefaults = { minDelay: 30, maxDelay: 120 };
|
|
1131
|
-
return
|
|
1134
|
+
return createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
1132
1135
|
};
|
|
1133
1136
|
const waitUntilResourceRecordSetsChanged = async (params, input) => {
|
|
1134
1137
|
const serviceDefaults = { minDelay: 30, maxDelay: 120 };
|
|
1135
|
-
const result = await
|
|
1136
|
-
return
|
|
1138
|
+
const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
1139
|
+
return checkExceptions(result);
|
|
1137
1140
|
};
|
|
1138
1141
|
|
|
1139
1142
|
const commands = {
|
|
@@ -1222,7 +1225,7 @@ const waiters = {
|
|
|
1222
1225
|
};
|
|
1223
1226
|
class Route53 extends Route53Client {
|
|
1224
1227
|
}
|
|
1225
|
-
|
|
1228
|
+
createAggregatedClient(commands, Route53, { paginators, waiters });
|
|
1226
1229
|
|
|
1227
1230
|
const AcceleratedRecoveryStatus = {
|
|
1228
1231
|
DISABLED: "DISABLED",
|
|
@@ -1473,9 +1476,6 @@ const ResettableElementName = {
|
|
|
1473
1476
|
ResourcePath: "ResourcePath",
|
|
1474
1477
|
};
|
|
1475
1478
|
|
|
1476
|
-
exports.$Command = client.Command;
|
|
1477
|
-
exports.__Client = client.Client;
|
|
1478
|
-
exports.Route53ServiceException = Route53ServiceException.Route53ServiceException;
|
|
1479
1479
|
exports.AcceleratedRecoveryStatus = AcceleratedRecoveryStatus;
|
|
1480
1480
|
exports.AccountLimitType = AccountLimitType;
|
|
1481
1481
|
exports.ActivateKeySigningKeyCommand = ActivateKeySigningKeyCommand;
|
|
@@ -1577,23 +1577,3 @@ exports.paginateListHostedZones = paginateListHostedZones;
|
|
|
1577
1577
|
exports.paginateListQueryLoggingConfigs = paginateListQueryLoggingConfigs;
|
|
1578
1578
|
exports.waitForResourceRecordSetsChanged = waitForResourceRecordSetsChanged;
|
|
1579
1579
|
exports.waitUntilResourceRecordSetsChanged = waitUntilResourceRecordSetsChanged;
|
|
1580
|
-
Object.prototype.hasOwnProperty.call(schemas_0, '__proto__') &&
|
|
1581
|
-
!Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
|
|
1582
|
-
Object.defineProperty(exports, '__proto__', {
|
|
1583
|
-
enumerable: true,
|
|
1584
|
-
value: schemas_0['__proto__']
|
|
1585
|
-
});
|
|
1586
|
-
|
|
1587
|
-
Object.keys(schemas_0).forEach(function (k) {
|
|
1588
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = schemas_0[k];
|
|
1589
|
-
});
|
|
1590
|
-
Object.prototype.hasOwnProperty.call(errors, '__proto__') &&
|
|
1591
|
-
!Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
|
|
1592
|
-
Object.defineProperty(exports, '__proto__', {
|
|
1593
|
-
enumerable: true,
|
|
1594
|
-
value: errors['__proto__']
|
|
1595
|
-
});
|
|
1596
|
-
|
|
1597
|
-
Object.keys(errors).forEach(function (k) {
|
|
1598
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = errors[k];
|
|
1599
|
-
});
|