@aws-sdk/client-route53profiles 3.987.0 → 3.988.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +35 -660
- package/dist-cjs/models/Route53ProfilesServiceException.js +12 -0
- package/dist-cjs/models/errors.js +162 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +427 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +63 -57
- package/dist-types/schemas/schemas_0.d.ts +17 -10
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +12 -10
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var Route53ProfilesServiceException = require('./models/Route53ProfilesServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,575 +113,6 @@ class Route53ProfilesClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class Route53ProfilesServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, Route53ProfilesServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class AccessDeniedException extends Route53ProfilesServiceException {
|
|
121
|
-
name = "AccessDeniedException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
Message;
|
|
124
|
-
constructor(opts) {
|
|
125
|
-
super({
|
|
126
|
-
name: "AccessDeniedException",
|
|
127
|
-
$fault: "client",
|
|
128
|
-
...opts,
|
|
129
|
-
});
|
|
130
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
131
|
-
this.Message = opts.Message;
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
class ConflictException extends Route53ProfilesServiceException {
|
|
135
|
-
name = "ConflictException";
|
|
136
|
-
$fault = "client";
|
|
137
|
-
Message;
|
|
138
|
-
constructor(opts) {
|
|
139
|
-
super({
|
|
140
|
-
name: "ConflictException",
|
|
141
|
-
$fault: "client",
|
|
142
|
-
...opts,
|
|
143
|
-
});
|
|
144
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
145
|
-
this.Message = opts.Message;
|
|
146
|
-
}
|
|
147
|
-
}
|
|
148
|
-
class InvalidParameterException extends Route53ProfilesServiceException {
|
|
149
|
-
name = "InvalidParameterException";
|
|
150
|
-
$fault = "client";
|
|
151
|
-
Message;
|
|
152
|
-
FieldName;
|
|
153
|
-
constructor(opts) {
|
|
154
|
-
super({
|
|
155
|
-
name: "InvalidParameterException",
|
|
156
|
-
$fault: "client",
|
|
157
|
-
...opts,
|
|
158
|
-
});
|
|
159
|
-
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
160
|
-
this.Message = opts.Message;
|
|
161
|
-
this.FieldName = opts.FieldName;
|
|
162
|
-
}
|
|
163
|
-
}
|
|
164
|
-
class LimitExceededException extends Route53ProfilesServiceException {
|
|
165
|
-
name = "LimitExceededException";
|
|
166
|
-
$fault = "client";
|
|
167
|
-
Message;
|
|
168
|
-
ResourceType;
|
|
169
|
-
constructor(opts) {
|
|
170
|
-
super({
|
|
171
|
-
name: "LimitExceededException",
|
|
172
|
-
$fault: "client",
|
|
173
|
-
...opts,
|
|
174
|
-
});
|
|
175
|
-
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
176
|
-
this.Message = opts.Message;
|
|
177
|
-
this.ResourceType = opts.ResourceType;
|
|
178
|
-
}
|
|
179
|
-
}
|
|
180
|
-
class ResourceExistsException extends Route53ProfilesServiceException {
|
|
181
|
-
name = "ResourceExistsException";
|
|
182
|
-
$fault = "client";
|
|
183
|
-
Message;
|
|
184
|
-
ResourceType;
|
|
185
|
-
constructor(opts) {
|
|
186
|
-
super({
|
|
187
|
-
name: "ResourceExistsException",
|
|
188
|
-
$fault: "client",
|
|
189
|
-
...opts,
|
|
190
|
-
});
|
|
191
|
-
Object.setPrototypeOf(this, ResourceExistsException.prototype);
|
|
192
|
-
this.Message = opts.Message;
|
|
193
|
-
this.ResourceType = opts.ResourceType;
|
|
194
|
-
}
|
|
195
|
-
}
|
|
196
|
-
class ResourceNotFoundException extends Route53ProfilesServiceException {
|
|
197
|
-
name = "ResourceNotFoundException";
|
|
198
|
-
$fault = "client";
|
|
199
|
-
Message;
|
|
200
|
-
ResourceType;
|
|
201
|
-
constructor(opts) {
|
|
202
|
-
super({
|
|
203
|
-
name: "ResourceNotFoundException",
|
|
204
|
-
$fault: "client",
|
|
205
|
-
...opts,
|
|
206
|
-
});
|
|
207
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
208
|
-
this.Message = opts.Message;
|
|
209
|
-
this.ResourceType = opts.ResourceType;
|
|
210
|
-
}
|
|
211
|
-
}
|
|
212
|
-
class ThrottlingException extends Route53ProfilesServiceException {
|
|
213
|
-
name = "ThrottlingException";
|
|
214
|
-
$fault = "client";
|
|
215
|
-
Message;
|
|
216
|
-
constructor(opts) {
|
|
217
|
-
super({
|
|
218
|
-
name: "ThrottlingException",
|
|
219
|
-
$fault: "client",
|
|
220
|
-
...opts,
|
|
221
|
-
});
|
|
222
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
223
|
-
this.Message = opts.Message;
|
|
224
|
-
}
|
|
225
|
-
}
|
|
226
|
-
class ValidationException extends Route53ProfilesServiceException {
|
|
227
|
-
name = "ValidationException";
|
|
228
|
-
$fault = "client";
|
|
229
|
-
Message;
|
|
230
|
-
constructor(opts) {
|
|
231
|
-
super({
|
|
232
|
-
name: "ValidationException",
|
|
233
|
-
$fault: "client",
|
|
234
|
-
...opts,
|
|
235
|
-
});
|
|
236
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
237
|
-
this.Message = opts.Message;
|
|
238
|
-
}
|
|
239
|
-
}
|
|
240
|
-
class InternalServiceErrorException extends Route53ProfilesServiceException {
|
|
241
|
-
name = "InternalServiceErrorException";
|
|
242
|
-
$fault = "client";
|
|
243
|
-
Message;
|
|
244
|
-
constructor(opts) {
|
|
245
|
-
super({
|
|
246
|
-
name: "InternalServiceErrorException",
|
|
247
|
-
$fault: "client",
|
|
248
|
-
...opts,
|
|
249
|
-
});
|
|
250
|
-
Object.setPrototypeOf(this, InternalServiceErrorException.prototype);
|
|
251
|
-
this.Message = opts.Message;
|
|
252
|
-
}
|
|
253
|
-
}
|
|
254
|
-
class InvalidNextTokenException extends Route53ProfilesServiceException {
|
|
255
|
-
name = "InvalidNextTokenException";
|
|
256
|
-
$fault = "client";
|
|
257
|
-
Message;
|
|
258
|
-
constructor(opts) {
|
|
259
|
-
super({
|
|
260
|
-
name: "InvalidNextTokenException",
|
|
261
|
-
$fault: "client",
|
|
262
|
-
...opts,
|
|
263
|
-
});
|
|
264
|
-
Object.setPrototypeOf(this, InvalidNextTokenException.prototype);
|
|
265
|
-
this.Message = opts.Message;
|
|
266
|
-
}
|
|
267
|
-
}
|
|
268
|
-
|
|
269
|
-
const _A = "Arn";
|
|
270
|
-
const _ADE = "AccessDeniedException";
|
|
271
|
-
const _AP = "AssociateProfile";
|
|
272
|
-
const _APR = "AssociateProfileRequest";
|
|
273
|
-
const _APRs = "AssociateProfileResponse";
|
|
274
|
-
const _ARTP = "AssociateResourceToProfile";
|
|
275
|
-
const _ARTPR = "AssociateResourceToProfileRequest";
|
|
276
|
-
const _ARTPRs = "AssociateResourceToProfileResponse";
|
|
277
|
-
const _CE = "ConflictException";
|
|
278
|
-
const _CP = "CreateProfile";
|
|
279
|
-
const _CPR = "CreateProfileRequest";
|
|
280
|
-
const _CPRr = "CreateProfileResponse";
|
|
281
|
-
const _CT = "ClientToken";
|
|
282
|
-
const _CTr = "CreationTime";
|
|
283
|
-
const _DP = "DeleteProfile";
|
|
284
|
-
const _DPR = "DeleteProfileRequest";
|
|
285
|
-
const _DPRe = "DeleteProfileResponse";
|
|
286
|
-
const _DPRi = "DisassociateProfileRequest";
|
|
287
|
-
const _DPRis = "DisassociateProfileResponse";
|
|
288
|
-
const _DPi = "DisassociateProfile";
|
|
289
|
-
const _DRFP = "DisassociateResourceFromProfile";
|
|
290
|
-
const _DRFPR = "DisassociateResourceFromProfileRequest";
|
|
291
|
-
const _DRFPRi = "DisassociateResourceFromProfileResponse";
|
|
292
|
-
const _FN = "FieldName";
|
|
293
|
-
const _GP = "GetProfile";
|
|
294
|
-
const _GPA = "GetProfileAssociation";
|
|
295
|
-
const _GPAR = "GetProfileAssociationRequest";
|
|
296
|
-
const _GPARe = "GetProfileAssociationResponse";
|
|
297
|
-
const _GPR = "GetProfileRequest";
|
|
298
|
-
const _GPRA = "GetProfileResourceAssociation";
|
|
299
|
-
const _GPRAR = "GetProfileResourceAssociationRequest";
|
|
300
|
-
const _GPRARe = "GetProfileResourceAssociationResponse";
|
|
301
|
-
const _GPRe = "GetProfileResponse";
|
|
302
|
-
const _I = "Id";
|
|
303
|
-
const _INTE = "InvalidNextTokenException";
|
|
304
|
-
const _IPE = "InvalidParameterException";
|
|
305
|
-
const _ISEE = "InternalServiceErrorException";
|
|
306
|
-
const _K = "Key";
|
|
307
|
-
const _LEE = "LimitExceededException";
|
|
308
|
-
const _LP = "ListProfiles";
|
|
309
|
-
const _LPA = "ListProfileAssociations";
|
|
310
|
-
const _LPAR = "ListProfileAssociationsRequest";
|
|
311
|
-
const _LPARi = "ListProfileAssociationsResponse";
|
|
312
|
-
const _LPR = "ListProfilesRequest";
|
|
313
|
-
const _LPRA = "ListProfileResourceAssociations";
|
|
314
|
-
const _LPRAR = "ListProfileResourceAssociationsRequest";
|
|
315
|
-
const _LPRARi = "ListProfileResourceAssociationsResponse";
|
|
316
|
-
const _LPRi = "ListProfilesResponse";
|
|
317
|
-
const _LTFR = "ListTagsForResource";
|
|
318
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
319
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
320
|
-
const _M = "Message";
|
|
321
|
-
const _MR = "MaxResults";
|
|
322
|
-
const _MT = "ModificationTime";
|
|
323
|
-
const _N = "Name";
|
|
324
|
-
const _NT = "NextToken";
|
|
325
|
-
const _OI = "OwnerId";
|
|
326
|
-
const _P = "Profile";
|
|
327
|
-
const _PA = "ProfileAssociation";
|
|
328
|
-
const _PAI = "ProfileAssociationId";
|
|
329
|
-
const _PAr = "ProfileAssociations";
|
|
330
|
-
const _PI = "ProfileId";
|
|
331
|
-
const _PRA = "ProfileResourceAssociation";
|
|
332
|
-
const _PRAI = "ProfileResourceAssociationId";
|
|
333
|
-
const _PRAr = "ProfileResourceAssociations";
|
|
334
|
-
const _PS = "ProfileSummaries";
|
|
335
|
-
const _PSL = "ProfileSummaryList";
|
|
336
|
-
const _PSr = "ProfileSummary";
|
|
337
|
-
const _RA = "ResourceArn";
|
|
338
|
-
const _REE = "ResourceExistsException";
|
|
339
|
-
const _RI = "ResourceId";
|
|
340
|
-
const _RNFE = "ResourceNotFoundException";
|
|
341
|
-
const _RP = "ResourceProperties";
|
|
342
|
-
const _RT = "ResourceType";
|
|
343
|
-
const _S = "Status";
|
|
344
|
-
const _SM = "StatusMessage";
|
|
345
|
-
const _SS = "ShareStatus";
|
|
346
|
-
const _T = "Tags";
|
|
347
|
-
const _TE = "ThrottlingException";
|
|
348
|
-
const _TK = "TagKeys";
|
|
349
|
-
const _TL = "TagList";
|
|
350
|
-
const _TR = "TagResource";
|
|
351
|
-
const _TRR = "TagResourceRequest";
|
|
352
|
-
const _TRRa = "TagResourceResponse";
|
|
353
|
-
const _Ta = "Tag";
|
|
354
|
-
const _UPRA = "UpdateProfileResourceAssociation";
|
|
355
|
-
const _UPRAR = "UpdateProfileResourceAssociationRequest";
|
|
356
|
-
const _UPRARp = "UpdateProfileResourceAssociationResponse";
|
|
357
|
-
const _UR = "UntagResource";
|
|
358
|
-
const _URR = "UntagResourceRequest";
|
|
359
|
-
const _URRn = "UntagResourceResponse";
|
|
360
|
-
const _V = "Value";
|
|
361
|
-
const _VE = "ValidationException";
|
|
362
|
-
const _c = "client";
|
|
363
|
-
const _e = "error";
|
|
364
|
-
const _h = "http";
|
|
365
|
-
const _hQ = "httpQuery";
|
|
366
|
-
const _mR = "maxResults";
|
|
367
|
-
const _nT = "nextToken";
|
|
368
|
-
const _pI = "profileId";
|
|
369
|
-
const _rI = "resourceId";
|
|
370
|
-
const _rT = "resourceType";
|
|
371
|
-
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.route53profiles";
|
|
372
|
-
const _tK = "tagKeys";
|
|
373
|
-
const n0 = "com.amazonaws.route53profiles";
|
|
374
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
375
|
-
{ [_e]: _c },
|
|
376
|
-
[_M],
|
|
377
|
-
[0]
|
|
378
|
-
];
|
|
379
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
380
|
-
var AssociateProfileRequest$ = [3, n0, _APR,
|
|
381
|
-
0,
|
|
382
|
-
[_PI, _RI, _N, _T],
|
|
383
|
-
[0, 0, 0, () => TagList], 3
|
|
384
|
-
];
|
|
385
|
-
var AssociateProfileResponse$ = [3, n0, _APRs,
|
|
386
|
-
0,
|
|
387
|
-
[_PA],
|
|
388
|
-
[() => ProfileAssociation$]
|
|
389
|
-
];
|
|
390
|
-
var AssociateResourceToProfileRequest$ = [3, n0, _ARTPR,
|
|
391
|
-
0,
|
|
392
|
-
[_PI, _RA, _N, _RP],
|
|
393
|
-
[0, 0, 0, 0], 3
|
|
394
|
-
];
|
|
395
|
-
var AssociateResourceToProfileResponse$ = [3, n0, _ARTPRs,
|
|
396
|
-
0,
|
|
397
|
-
[_PRA],
|
|
398
|
-
[() => ProfileResourceAssociation$]
|
|
399
|
-
];
|
|
400
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
401
|
-
{ [_e]: _c },
|
|
402
|
-
[_M],
|
|
403
|
-
[0]
|
|
404
|
-
];
|
|
405
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
406
|
-
var CreateProfileRequest$ = [3, n0, _CPR,
|
|
407
|
-
0,
|
|
408
|
-
[_N, _CT, _T],
|
|
409
|
-
[0, [0, 4], () => TagList], 1
|
|
410
|
-
];
|
|
411
|
-
var CreateProfileResponse$ = [3, n0, _CPRr,
|
|
412
|
-
0,
|
|
413
|
-
[_P],
|
|
414
|
-
[() => Profile$]
|
|
415
|
-
];
|
|
416
|
-
var DeleteProfileRequest$ = [3, n0, _DPR,
|
|
417
|
-
0,
|
|
418
|
-
[_PI],
|
|
419
|
-
[[0, 1]], 1
|
|
420
|
-
];
|
|
421
|
-
var DeleteProfileResponse$ = [3, n0, _DPRe,
|
|
422
|
-
0,
|
|
423
|
-
[_P],
|
|
424
|
-
[() => Profile$]
|
|
425
|
-
];
|
|
426
|
-
var DisassociateProfileRequest$ = [3, n0, _DPRi,
|
|
427
|
-
0,
|
|
428
|
-
[_PI, _RI],
|
|
429
|
-
[[0, 1], [0, 1]], 2
|
|
430
|
-
];
|
|
431
|
-
var DisassociateProfileResponse$ = [3, n0, _DPRis,
|
|
432
|
-
0,
|
|
433
|
-
[_PA],
|
|
434
|
-
[() => ProfileAssociation$]
|
|
435
|
-
];
|
|
436
|
-
var DisassociateResourceFromProfileRequest$ = [3, n0, _DRFPR,
|
|
437
|
-
0,
|
|
438
|
-
[_PI, _RA],
|
|
439
|
-
[[0, 1], [0, 1]], 2
|
|
440
|
-
];
|
|
441
|
-
var DisassociateResourceFromProfileResponse$ = [3, n0, _DRFPRi,
|
|
442
|
-
0,
|
|
443
|
-
[_PRA],
|
|
444
|
-
[() => ProfileResourceAssociation$]
|
|
445
|
-
];
|
|
446
|
-
var GetProfileAssociationRequest$ = [3, n0, _GPAR,
|
|
447
|
-
0,
|
|
448
|
-
[_PAI],
|
|
449
|
-
[[0, 1]], 1
|
|
450
|
-
];
|
|
451
|
-
var GetProfileAssociationResponse$ = [3, n0, _GPARe,
|
|
452
|
-
0,
|
|
453
|
-
[_PA],
|
|
454
|
-
[() => ProfileAssociation$]
|
|
455
|
-
];
|
|
456
|
-
var GetProfileRequest$ = [3, n0, _GPR,
|
|
457
|
-
0,
|
|
458
|
-
[_PI],
|
|
459
|
-
[[0, 1]], 1
|
|
460
|
-
];
|
|
461
|
-
var GetProfileResourceAssociationRequest$ = [3, n0, _GPRAR,
|
|
462
|
-
0,
|
|
463
|
-
[_PRAI],
|
|
464
|
-
[[0, 1]], 1
|
|
465
|
-
];
|
|
466
|
-
var GetProfileResourceAssociationResponse$ = [3, n0, _GPRARe,
|
|
467
|
-
0,
|
|
468
|
-
[_PRA],
|
|
469
|
-
[() => ProfileResourceAssociation$]
|
|
470
|
-
];
|
|
471
|
-
var GetProfileResponse$ = [3, n0, _GPRe,
|
|
472
|
-
0,
|
|
473
|
-
[_P],
|
|
474
|
-
[() => Profile$]
|
|
475
|
-
];
|
|
476
|
-
var InternalServiceErrorException$ = [-3, n0, _ISEE,
|
|
477
|
-
{ [_e]: _c },
|
|
478
|
-
[_M],
|
|
479
|
-
[0]
|
|
480
|
-
];
|
|
481
|
-
schema.TypeRegistry.for(n0).registerError(InternalServiceErrorException$, InternalServiceErrorException);
|
|
482
|
-
var InvalidNextTokenException$ = [-3, n0, _INTE,
|
|
483
|
-
{ [_e]: _c },
|
|
484
|
-
[_M],
|
|
485
|
-
[0]
|
|
486
|
-
];
|
|
487
|
-
schema.TypeRegistry.for(n0).registerError(InvalidNextTokenException$, InvalidNextTokenException);
|
|
488
|
-
var InvalidParameterException$ = [-3, n0, _IPE,
|
|
489
|
-
{ [_e]: _c },
|
|
490
|
-
[_M, _FN],
|
|
491
|
-
[0, 0], 1
|
|
492
|
-
];
|
|
493
|
-
schema.TypeRegistry.for(n0).registerError(InvalidParameterException$, InvalidParameterException);
|
|
494
|
-
var LimitExceededException$ = [-3, n0, _LEE,
|
|
495
|
-
{ [_e]: _c },
|
|
496
|
-
[_M, _RT],
|
|
497
|
-
[0, 0]
|
|
498
|
-
];
|
|
499
|
-
schema.TypeRegistry.for(n0).registerError(LimitExceededException$, LimitExceededException);
|
|
500
|
-
var ListProfileAssociationsRequest$ = [3, n0, _LPAR,
|
|
501
|
-
0,
|
|
502
|
-
[_RI, _PI, _MR, _NT],
|
|
503
|
-
[[0, { [_hQ]: _rI }], [0, { [_hQ]: _pI }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
504
|
-
];
|
|
505
|
-
var ListProfileAssociationsResponse$ = [3, n0, _LPARi,
|
|
506
|
-
0,
|
|
507
|
-
[_PAr, _NT],
|
|
508
|
-
[() => ProfileAssociations, 0]
|
|
509
|
-
];
|
|
510
|
-
var ListProfileResourceAssociationsRequest$ = [3, n0, _LPRAR,
|
|
511
|
-
0,
|
|
512
|
-
[_PI, _RT, _MR, _NT],
|
|
513
|
-
[[0, 1], [0, { [_hQ]: _rT }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
|
|
514
|
-
];
|
|
515
|
-
var ListProfileResourceAssociationsResponse$ = [3, n0, _LPRARi,
|
|
516
|
-
0,
|
|
517
|
-
[_PRAr, _NT],
|
|
518
|
-
[() => ProfileResourceAssociations, 0]
|
|
519
|
-
];
|
|
520
|
-
var ListProfilesRequest$ = [3, n0, _LPR,
|
|
521
|
-
0,
|
|
522
|
-
[_MR, _NT],
|
|
523
|
-
[[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
524
|
-
];
|
|
525
|
-
var ListProfilesResponse$ = [3, n0, _LPRi,
|
|
526
|
-
0,
|
|
527
|
-
[_PS, _NT],
|
|
528
|
-
[() => ProfileSummaryList, 0]
|
|
529
|
-
];
|
|
530
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
531
|
-
0,
|
|
532
|
-
[_RA],
|
|
533
|
-
[[0, 1]], 1
|
|
534
|
-
];
|
|
535
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
536
|
-
0,
|
|
537
|
-
[_T],
|
|
538
|
-
[128 | 0], 1
|
|
539
|
-
];
|
|
540
|
-
var Profile$ = [3, n0, _P,
|
|
541
|
-
0,
|
|
542
|
-
[_I, _A, _N, _OI, _S, _SM, _SS, _CTr, _MT, _CT],
|
|
543
|
-
[0, 0, 0, 0, 0, 0, 0, 4, 4, 0]
|
|
544
|
-
];
|
|
545
|
-
var ProfileAssociation$ = [3, n0, _PA,
|
|
546
|
-
0,
|
|
547
|
-
[_I, _N, _OI, _PI, _RI, _S, _SM, _CTr, _MT],
|
|
548
|
-
[0, 0, 0, 0, 0, 0, 0, 4, 4]
|
|
549
|
-
];
|
|
550
|
-
var ProfileResourceAssociation$ = [3, n0, _PRA,
|
|
551
|
-
0,
|
|
552
|
-
[_I, _N, _OI, _PI, _RA, _RT, _RP, _S, _SM, _CTr, _MT],
|
|
553
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4]
|
|
554
|
-
];
|
|
555
|
-
var ProfileSummary$ = [3, n0, _PSr,
|
|
556
|
-
0,
|
|
557
|
-
[_I, _A, _N, _SS],
|
|
558
|
-
[0, 0, 0, 0]
|
|
559
|
-
];
|
|
560
|
-
var ResourceExistsException$ = [-3, n0, _REE,
|
|
561
|
-
{ [_e]: _c },
|
|
562
|
-
[_M, _RT],
|
|
563
|
-
[0, 0]
|
|
564
|
-
];
|
|
565
|
-
schema.TypeRegistry.for(n0).registerError(ResourceExistsException$, ResourceExistsException);
|
|
566
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
567
|
-
{ [_e]: _c },
|
|
568
|
-
[_M, _RT],
|
|
569
|
-
[0, 0]
|
|
570
|
-
];
|
|
571
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
572
|
-
var Tag$ = [3, n0, _Ta,
|
|
573
|
-
0,
|
|
574
|
-
[_K, _V],
|
|
575
|
-
[0, 0], 2
|
|
576
|
-
];
|
|
577
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
578
|
-
0,
|
|
579
|
-
[_RA, _T],
|
|
580
|
-
[[0, 1], 128 | 0], 2
|
|
581
|
-
];
|
|
582
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
583
|
-
0,
|
|
584
|
-
[],
|
|
585
|
-
[]
|
|
586
|
-
];
|
|
587
|
-
var ThrottlingException$ = [-3, n0, _TE,
|
|
588
|
-
{ [_e]: _c },
|
|
589
|
-
[_M],
|
|
590
|
-
[0]
|
|
591
|
-
];
|
|
592
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
593
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
594
|
-
0,
|
|
595
|
-
[_RA, _TK],
|
|
596
|
-
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
597
|
-
];
|
|
598
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
599
|
-
0,
|
|
600
|
-
[],
|
|
601
|
-
[]
|
|
602
|
-
];
|
|
603
|
-
var UpdateProfileResourceAssociationRequest$ = [3, n0, _UPRAR,
|
|
604
|
-
0,
|
|
605
|
-
[_PRAI, _N, _RP],
|
|
606
|
-
[[0, 1], 0, 0], 1
|
|
607
|
-
];
|
|
608
|
-
var UpdateProfileResourceAssociationResponse$ = [3, n0, _UPRARp,
|
|
609
|
-
0,
|
|
610
|
-
[_PRA],
|
|
611
|
-
[() => ProfileResourceAssociation$]
|
|
612
|
-
];
|
|
613
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
614
|
-
{ [_e]: _c },
|
|
615
|
-
[_M],
|
|
616
|
-
[0]
|
|
617
|
-
];
|
|
618
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
619
|
-
var Route53ProfilesServiceException$ = [-3, _s, "Route53ProfilesServiceException", 0, [], []];
|
|
620
|
-
schema.TypeRegistry.for(_s).registerError(Route53ProfilesServiceException$, Route53ProfilesServiceException);
|
|
621
|
-
var ProfileAssociations = [1, n0, _PAr,
|
|
622
|
-
0, () => ProfileAssociation$
|
|
623
|
-
];
|
|
624
|
-
var ProfileResourceAssociations = [1, n0, _PRAr,
|
|
625
|
-
0, () => ProfileResourceAssociation$
|
|
626
|
-
];
|
|
627
|
-
var ProfileSummaryList = [1, n0, _PSL,
|
|
628
|
-
0, () => ProfileSummary$
|
|
629
|
-
];
|
|
630
|
-
var TagList = [1, n0, _TL,
|
|
631
|
-
0, () => Tag$
|
|
632
|
-
];
|
|
633
|
-
var AssociateProfile$ = [9, n0, _AP,
|
|
634
|
-
{ [_h]: ["POST", "/profileassociation", 200] }, () => AssociateProfileRequest$, () => AssociateProfileResponse$
|
|
635
|
-
];
|
|
636
|
-
var AssociateResourceToProfile$ = [9, n0, _ARTP,
|
|
637
|
-
{ [_h]: ["POST", "/profileresourceassociation", 200] }, () => AssociateResourceToProfileRequest$, () => AssociateResourceToProfileResponse$
|
|
638
|
-
];
|
|
639
|
-
var CreateProfile$ = [9, n0, _CP,
|
|
640
|
-
{ [_h]: ["POST", "/profile", 200] }, () => CreateProfileRequest$, () => CreateProfileResponse$
|
|
641
|
-
];
|
|
642
|
-
var DeleteProfile$ = [9, n0, _DP,
|
|
643
|
-
{ [_h]: ["DELETE", "/profile/{ProfileId}", 200] }, () => DeleteProfileRequest$, () => DeleteProfileResponse$
|
|
644
|
-
];
|
|
645
|
-
var DisassociateProfile$ = [9, n0, _DPi,
|
|
646
|
-
{ [_h]: ["DELETE", "/profileassociation/Profileid/{ProfileId}/resourceid/{ResourceId}", 200] }, () => DisassociateProfileRequest$, () => DisassociateProfileResponse$
|
|
647
|
-
];
|
|
648
|
-
var DisassociateResourceFromProfile$ = [9, n0, _DRFP,
|
|
649
|
-
{ [_h]: ["DELETE", "/profileresourceassociation/profileid/{ProfileId}/resourcearn/{ResourceArn}", 200] }, () => DisassociateResourceFromProfileRequest$, () => DisassociateResourceFromProfileResponse$
|
|
650
|
-
];
|
|
651
|
-
var GetProfile$ = [9, n0, _GP,
|
|
652
|
-
{ [_h]: ["GET", "/profile/{ProfileId}", 200] }, () => GetProfileRequest$, () => GetProfileResponse$
|
|
653
|
-
];
|
|
654
|
-
var GetProfileAssociation$ = [9, n0, _GPA,
|
|
655
|
-
{ [_h]: ["GET", "/profileassociation/{ProfileAssociationId}", 200] }, () => GetProfileAssociationRequest$, () => GetProfileAssociationResponse$
|
|
656
|
-
];
|
|
657
|
-
var GetProfileResourceAssociation$ = [9, n0, _GPRA,
|
|
658
|
-
{ [_h]: ["GET", "/profileresourceassociation/{ProfileResourceAssociationId}", 200] }, () => GetProfileResourceAssociationRequest$, () => GetProfileResourceAssociationResponse$
|
|
659
|
-
];
|
|
660
|
-
var ListProfileAssociations$ = [9, n0, _LPA,
|
|
661
|
-
{ [_h]: ["GET", "/profileassociations", 200] }, () => ListProfileAssociationsRequest$, () => ListProfileAssociationsResponse$
|
|
662
|
-
];
|
|
663
|
-
var ListProfileResourceAssociations$ = [9, n0, _LPRA,
|
|
664
|
-
{ [_h]: ["GET", "/profileresourceassociations/profileid/{ProfileId}", 200] }, () => ListProfileResourceAssociationsRequest$, () => ListProfileResourceAssociationsResponse$
|
|
665
|
-
];
|
|
666
|
-
var ListProfiles$ = [9, n0, _LP,
|
|
667
|
-
{ [_h]: ["GET", "/profiles", 200] }, () => ListProfilesRequest$, () => ListProfilesResponse$
|
|
668
|
-
];
|
|
669
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
670
|
-
{ [_h]: ["GET", "/tags/{ResourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
671
|
-
];
|
|
672
|
-
var TagResource$ = [9, n0, _TR,
|
|
673
|
-
{ [_h]: ["POST", "/tags/{ResourceArn}", 204] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
674
|
-
];
|
|
675
|
-
var UntagResource$ = [9, n0, _UR,
|
|
676
|
-
{ [_h]: ["DELETE", "/tags/{ResourceArn}", 204] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
677
|
-
];
|
|
678
|
-
var UpdateProfileResourceAssociation$ = [9, n0, _UPRA,
|
|
679
|
-
{ [_h]: ["PATCH", "/profileresourceassociation/{ProfileResourceAssociationId}", 200] }, () => UpdateProfileResourceAssociationRequest$, () => UpdateProfileResourceAssociationResponse$
|
|
680
|
-
];
|
|
681
|
-
|
|
682
116
|
class AssociateProfileCommand extends smithyClient.Command
|
|
683
117
|
.classBuilder()
|
|
684
118
|
.ep(commonParams)
|
|
@@ -687,7 +121,7 @@ class AssociateProfileCommand extends smithyClient.Command
|
|
|
687
121
|
})
|
|
688
122
|
.s("Route53Profiles", "AssociateProfile", {})
|
|
689
123
|
.n("Route53ProfilesClient", "AssociateProfileCommand")
|
|
690
|
-
.sc(AssociateProfile$)
|
|
124
|
+
.sc(schemas_0.AssociateProfile$)
|
|
691
125
|
.build() {
|
|
692
126
|
}
|
|
693
127
|
|
|
@@ -699,7 +133,7 @@ class AssociateResourceToProfileCommand extends smithyClient.Command
|
|
|
699
133
|
})
|
|
700
134
|
.s("Route53Profiles", "AssociateResourceToProfile", {})
|
|
701
135
|
.n("Route53ProfilesClient", "AssociateResourceToProfileCommand")
|
|
702
|
-
.sc(AssociateResourceToProfile$)
|
|
136
|
+
.sc(schemas_0.AssociateResourceToProfile$)
|
|
703
137
|
.build() {
|
|
704
138
|
}
|
|
705
139
|
|
|
@@ -711,7 +145,7 @@ class CreateProfileCommand extends smithyClient.Command
|
|
|
711
145
|
})
|
|
712
146
|
.s("Route53Profiles", "CreateProfile", {})
|
|
713
147
|
.n("Route53ProfilesClient", "CreateProfileCommand")
|
|
714
|
-
.sc(CreateProfile$)
|
|
148
|
+
.sc(schemas_0.CreateProfile$)
|
|
715
149
|
.build() {
|
|
716
150
|
}
|
|
717
151
|
|
|
@@ -723,7 +157,7 @@ class DeleteProfileCommand extends smithyClient.Command
|
|
|
723
157
|
})
|
|
724
158
|
.s("Route53Profiles", "DeleteProfile", {})
|
|
725
159
|
.n("Route53ProfilesClient", "DeleteProfileCommand")
|
|
726
|
-
.sc(DeleteProfile$)
|
|
160
|
+
.sc(schemas_0.DeleteProfile$)
|
|
727
161
|
.build() {
|
|
728
162
|
}
|
|
729
163
|
|
|
@@ -735,7 +169,7 @@ class DisassociateProfileCommand extends smithyClient.Command
|
|
|
735
169
|
})
|
|
736
170
|
.s("Route53Profiles", "DisassociateProfile", {})
|
|
737
171
|
.n("Route53ProfilesClient", "DisassociateProfileCommand")
|
|
738
|
-
.sc(DisassociateProfile$)
|
|
172
|
+
.sc(schemas_0.DisassociateProfile$)
|
|
739
173
|
.build() {
|
|
740
174
|
}
|
|
741
175
|
|
|
@@ -747,7 +181,7 @@ class DisassociateResourceFromProfileCommand extends smithyClient.Command
|
|
|
747
181
|
})
|
|
748
182
|
.s("Route53Profiles", "DisassociateResourceFromProfile", {})
|
|
749
183
|
.n("Route53ProfilesClient", "DisassociateResourceFromProfileCommand")
|
|
750
|
-
.sc(DisassociateResourceFromProfile$)
|
|
184
|
+
.sc(schemas_0.DisassociateResourceFromProfile$)
|
|
751
185
|
.build() {
|
|
752
186
|
}
|
|
753
187
|
|
|
@@ -759,7 +193,7 @@ class GetProfileAssociationCommand extends smithyClient.Command
|
|
|
759
193
|
})
|
|
760
194
|
.s("Route53Profiles", "GetProfileAssociation", {})
|
|
761
195
|
.n("Route53ProfilesClient", "GetProfileAssociationCommand")
|
|
762
|
-
.sc(GetProfileAssociation$)
|
|
196
|
+
.sc(schemas_0.GetProfileAssociation$)
|
|
763
197
|
.build() {
|
|
764
198
|
}
|
|
765
199
|
|
|
@@ -771,7 +205,7 @@ class GetProfileCommand extends smithyClient.Command
|
|
|
771
205
|
})
|
|
772
206
|
.s("Route53Profiles", "GetProfile", {})
|
|
773
207
|
.n("Route53ProfilesClient", "GetProfileCommand")
|
|
774
|
-
.sc(GetProfile$)
|
|
208
|
+
.sc(schemas_0.GetProfile$)
|
|
775
209
|
.build() {
|
|
776
210
|
}
|
|
777
211
|
|
|
@@ -783,7 +217,7 @@ class GetProfileResourceAssociationCommand extends smithyClient.Command
|
|
|
783
217
|
})
|
|
784
218
|
.s("Route53Profiles", "GetProfileResourceAssociation", {})
|
|
785
219
|
.n("Route53ProfilesClient", "GetProfileResourceAssociationCommand")
|
|
786
|
-
.sc(GetProfileResourceAssociation$)
|
|
220
|
+
.sc(schemas_0.GetProfileResourceAssociation$)
|
|
787
221
|
.build() {
|
|
788
222
|
}
|
|
789
223
|
|
|
@@ -795,7 +229,7 @@ class ListProfileAssociationsCommand extends smithyClient.Command
|
|
|
795
229
|
})
|
|
796
230
|
.s("Route53Profiles", "ListProfileAssociations", {})
|
|
797
231
|
.n("Route53ProfilesClient", "ListProfileAssociationsCommand")
|
|
798
|
-
.sc(ListProfileAssociations$)
|
|
232
|
+
.sc(schemas_0.ListProfileAssociations$)
|
|
799
233
|
.build() {
|
|
800
234
|
}
|
|
801
235
|
|
|
@@ -807,7 +241,7 @@ class ListProfileResourceAssociationsCommand extends smithyClient.Command
|
|
|
807
241
|
})
|
|
808
242
|
.s("Route53Profiles", "ListProfileResourceAssociations", {})
|
|
809
243
|
.n("Route53ProfilesClient", "ListProfileResourceAssociationsCommand")
|
|
810
|
-
.sc(ListProfileResourceAssociations$)
|
|
244
|
+
.sc(schemas_0.ListProfileResourceAssociations$)
|
|
811
245
|
.build() {
|
|
812
246
|
}
|
|
813
247
|
|
|
@@ -819,7 +253,7 @@ class ListProfilesCommand extends smithyClient.Command
|
|
|
819
253
|
})
|
|
820
254
|
.s("Route53Profiles", "ListProfiles", {})
|
|
821
255
|
.n("Route53ProfilesClient", "ListProfilesCommand")
|
|
822
|
-
.sc(ListProfiles$)
|
|
256
|
+
.sc(schemas_0.ListProfiles$)
|
|
823
257
|
.build() {
|
|
824
258
|
}
|
|
825
259
|
|
|
@@ -831,7 +265,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
831
265
|
})
|
|
832
266
|
.s("Route53Profiles", "ListTagsForResource", {})
|
|
833
267
|
.n("Route53ProfilesClient", "ListTagsForResourceCommand")
|
|
834
|
-
.sc(ListTagsForResource$)
|
|
268
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
835
269
|
.build() {
|
|
836
270
|
}
|
|
837
271
|
|
|
@@ -843,7 +277,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
843
277
|
})
|
|
844
278
|
.s("Route53Profiles", "TagResource", {})
|
|
845
279
|
.n("Route53ProfilesClient", "TagResourceCommand")
|
|
846
|
-
.sc(TagResource$)
|
|
280
|
+
.sc(schemas_0.TagResource$)
|
|
847
281
|
.build() {
|
|
848
282
|
}
|
|
849
283
|
|
|
@@ -855,7 +289,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
855
289
|
})
|
|
856
290
|
.s("Route53Profiles", "UntagResource", {})
|
|
857
291
|
.n("Route53ProfilesClient", "UntagResourceCommand")
|
|
858
|
-
.sc(UntagResource$)
|
|
292
|
+
.sc(schemas_0.UntagResource$)
|
|
859
293
|
.build() {
|
|
860
294
|
}
|
|
861
295
|
|
|
@@ -867,7 +301,7 @@ class UpdateProfileResourceAssociationCommand extends smithyClient.Command
|
|
|
867
301
|
})
|
|
868
302
|
.s("Route53Profiles", "UpdateProfileResourceAssociation", {})
|
|
869
303
|
.n("Route53ProfilesClient", "UpdateProfileResourceAssociationCommand")
|
|
870
|
-
.sc(UpdateProfileResourceAssociation$)
|
|
304
|
+
.sc(schemas_0.UpdateProfileResourceAssociation$)
|
|
871
305
|
.build() {
|
|
872
306
|
}
|
|
873
307
|
|
|
@@ -926,101 +360,42 @@ Object.defineProperty(exports, "__Client", {
|
|
|
926
360
|
enumerable: true,
|
|
927
361
|
get: function () { return smithyClient.Client; }
|
|
928
362
|
});
|
|
929
|
-
exports
|
|
930
|
-
|
|
931
|
-
|
|
363
|
+
Object.defineProperty(exports, "Route53ProfilesServiceException", {
|
|
364
|
+
enumerable: true,
|
|
365
|
+
get: function () { return Route53ProfilesServiceException.Route53ProfilesServiceException; }
|
|
366
|
+
});
|
|
932
367
|
exports.AssociateProfileCommand = AssociateProfileCommand;
|
|
933
|
-
exports.AssociateProfileRequest$ = AssociateProfileRequest$;
|
|
934
|
-
exports.AssociateProfileResponse$ = AssociateProfileResponse$;
|
|
935
|
-
exports.AssociateResourceToProfile$ = AssociateResourceToProfile$;
|
|
936
368
|
exports.AssociateResourceToProfileCommand = AssociateResourceToProfileCommand;
|
|
937
|
-
exports.AssociateResourceToProfileRequest$ = AssociateResourceToProfileRequest$;
|
|
938
|
-
exports.AssociateResourceToProfileResponse$ = AssociateResourceToProfileResponse$;
|
|
939
|
-
exports.ConflictException = ConflictException;
|
|
940
|
-
exports.ConflictException$ = ConflictException$;
|
|
941
|
-
exports.CreateProfile$ = CreateProfile$;
|
|
942
369
|
exports.CreateProfileCommand = CreateProfileCommand;
|
|
943
|
-
exports.CreateProfileRequest$ = CreateProfileRequest$;
|
|
944
|
-
exports.CreateProfileResponse$ = CreateProfileResponse$;
|
|
945
|
-
exports.DeleteProfile$ = DeleteProfile$;
|
|
946
370
|
exports.DeleteProfileCommand = DeleteProfileCommand;
|
|
947
|
-
exports.DeleteProfileRequest$ = DeleteProfileRequest$;
|
|
948
|
-
exports.DeleteProfileResponse$ = DeleteProfileResponse$;
|
|
949
|
-
exports.DisassociateProfile$ = DisassociateProfile$;
|
|
950
371
|
exports.DisassociateProfileCommand = DisassociateProfileCommand;
|
|
951
|
-
exports.DisassociateProfileRequest$ = DisassociateProfileRequest$;
|
|
952
|
-
exports.DisassociateProfileResponse$ = DisassociateProfileResponse$;
|
|
953
|
-
exports.DisassociateResourceFromProfile$ = DisassociateResourceFromProfile$;
|
|
954
372
|
exports.DisassociateResourceFromProfileCommand = DisassociateResourceFromProfileCommand;
|
|
955
|
-
exports.DisassociateResourceFromProfileRequest$ = DisassociateResourceFromProfileRequest$;
|
|
956
|
-
exports.DisassociateResourceFromProfileResponse$ = DisassociateResourceFromProfileResponse$;
|
|
957
|
-
exports.GetProfile$ = GetProfile$;
|
|
958
|
-
exports.GetProfileAssociation$ = GetProfileAssociation$;
|
|
959
373
|
exports.GetProfileAssociationCommand = GetProfileAssociationCommand;
|
|
960
|
-
exports.GetProfileAssociationRequest$ = GetProfileAssociationRequest$;
|
|
961
|
-
exports.GetProfileAssociationResponse$ = GetProfileAssociationResponse$;
|
|
962
374
|
exports.GetProfileCommand = GetProfileCommand;
|
|
963
|
-
exports.GetProfileRequest$ = GetProfileRequest$;
|
|
964
|
-
exports.GetProfileResourceAssociation$ = GetProfileResourceAssociation$;
|
|
965
375
|
exports.GetProfileResourceAssociationCommand = GetProfileResourceAssociationCommand;
|
|
966
|
-
exports.GetProfileResourceAssociationRequest$ = GetProfileResourceAssociationRequest$;
|
|
967
|
-
exports.GetProfileResourceAssociationResponse$ = GetProfileResourceAssociationResponse$;
|
|
968
|
-
exports.GetProfileResponse$ = GetProfileResponse$;
|
|
969
|
-
exports.InternalServiceErrorException = InternalServiceErrorException;
|
|
970
|
-
exports.InternalServiceErrorException$ = InternalServiceErrorException$;
|
|
971
|
-
exports.InvalidNextTokenException = InvalidNextTokenException;
|
|
972
|
-
exports.InvalidNextTokenException$ = InvalidNextTokenException$;
|
|
973
|
-
exports.InvalidParameterException = InvalidParameterException;
|
|
974
|
-
exports.InvalidParameterException$ = InvalidParameterException$;
|
|
975
|
-
exports.LimitExceededException = LimitExceededException;
|
|
976
|
-
exports.LimitExceededException$ = LimitExceededException$;
|
|
977
|
-
exports.ListProfileAssociations$ = ListProfileAssociations$;
|
|
978
376
|
exports.ListProfileAssociationsCommand = ListProfileAssociationsCommand;
|
|
979
|
-
exports.ListProfileAssociationsRequest$ = ListProfileAssociationsRequest$;
|
|
980
|
-
exports.ListProfileAssociationsResponse$ = ListProfileAssociationsResponse$;
|
|
981
|
-
exports.ListProfileResourceAssociations$ = ListProfileResourceAssociations$;
|
|
982
377
|
exports.ListProfileResourceAssociationsCommand = ListProfileResourceAssociationsCommand;
|
|
983
|
-
exports.ListProfileResourceAssociationsRequest$ = ListProfileResourceAssociationsRequest$;
|
|
984
|
-
exports.ListProfileResourceAssociationsResponse$ = ListProfileResourceAssociationsResponse$;
|
|
985
|
-
exports.ListProfiles$ = ListProfiles$;
|
|
986
378
|
exports.ListProfilesCommand = ListProfilesCommand;
|
|
987
|
-
exports.ListProfilesRequest$ = ListProfilesRequest$;
|
|
988
|
-
exports.ListProfilesResponse$ = ListProfilesResponse$;
|
|
989
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
990
379
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
991
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
992
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
993
|
-
exports.Profile$ = Profile$;
|
|
994
|
-
exports.ProfileAssociation$ = ProfileAssociation$;
|
|
995
|
-
exports.ProfileResourceAssociation$ = ProfileResourceAssociation$;
|
|
996
380
|
exports.ProfileStatus = ProfileStatus;
|
|
997
|
-
exports.ProfileSummary$ = ProfileSummary$;
|
|
998
|
-
exports.ResourceExistsException = ResourceExistsException;
|
|
999
|
-
exports.ResourceExistsException$ = ResourceExistsException$;
|
|
1000
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1001
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1002
381
|
exports.Route53Profiles = Route53Profiles;
|
|
1003
382
|
exports.Route53ProfilesClient = Route53ProfilesClient;
|
|
1004
|
-
exports.Route53ProfilesServiceException = Route53ProfilesServiceException;
|
|
1005
|
-
exports.Route53ProfilesServiceException$ = Route53ProfilesServiceException$;
|
|
1006
383
|
exports.ShareStatus = ShareStatus;
|
|
1007
|
-
exports.Tag$ = Tag$;
|
|
1008
|
-
exports.TagResource$ = TagResource$;
|
|
1009
384
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1010
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1011
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1012
|
-
exports.ThrottlingException = ThrottlingException;
|
|
1013
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
1014
|
-
exports.UntagResource$ = UntagResource$;
|
|
1015
385
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1016
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1017
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1018
|
-
exports.UpdateProfileResourceAssociation$ = UpdateProfileResourceAssociation$;
|
|
1019
386
|
exports.UpdateProfileResourceAssociationCommand = UpdateProfileResourceAssociationCommand;
|
|
1020
|
-
exports.UpdateProfileResourceAssociationRequest$ = UpdateProfileResourceAssociationRequest$;
|
|
1021
|
-
exports.UpdateProfileResourceAssociationResponse$ = UpdateProfileResourceAssociationResponse$;
|
|
1022
|
-
exports.ValidationException = ValidationException;
|
|
1023
|
-
exports.ValidationException$ = ValidationException$;
|
|
1024
387
|
exports.paginateListProfileAssociations = paginateListProfileAssociations;
|
|
1025
388
|
exports.paginateListProfileResourceAssociations = paginateListProfileResourceAssociations;
|
|
1026
389
|
exports.paginateListProfiles = paginateListProfiles;
|
|
390
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
391
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
392
|
+
enumerable: true,
|
|
393
|
+
get: function () { return schemas_0[k]; }
|
|
394
|
+
});
|
|
395
|
+
});
|
|
396
|
+
Object.keys(errors).forEach(function (k) {
|
|
397
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
398
|
+
enumerable: true,
|
|
399
|
+
get: function () { return errors[k]; }
|
|
400
|
+
});
|
|
401
|
+
});
|