@aws-sdk/client-rbin 3.952.0 → 3.954.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 +183 -109
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/CreateRuleCommand.js +2 -2
- package/dist-es/commands/DeleteRuleCommand.js +2 -2
- package/dist-es/commands/GetRuleCommand.js +2 -2
- package/dist-es/commands/ListRulesCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/LockRuleCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UnlockRuleCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateRuleCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +116 -84
- package/dist-types/RbinClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +43 -48
- package/dist-types/ts3.4/RbinClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +42 -48
- package/package.json +34 -34
package/dist-cjs/index.js
CHANGED
|
@@ -110,14 +110,14 @@ class RbinClient extends smithyClient.Client {
|
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
-
|
|
113
|
+
class RbinServiceException extends smithyClient.ServiceException {
|
|
114
114
|
constructor(options) {
|
|
115
115
|
super(options);
|
|
116
116
|
Object.setPrototypeOf(this, RbinServiceException.prototype);
|
|
117
117
|
}
|
|
118
|
-
}
|
|
118
|
+
}
|
|
119
119
|
|
|
120
|
-
|
|
120
|
+
class InternalServerException extends RbinServiceException {
|
|
121
121
|
name = "InternalServerException";
|
|
122
122
|
$fault = "server";
|
|
123
123
|
Message;
|
|
@@ -130,8 +130,8 @@ let InternalServerException$1 = class InternalServerException extends RbinServic
|
|
|
130
130
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
131
131
|
this.Message = opts.Message;
|
|
132
132
|
}
|
|
133
|
-
}
|
|
134
|
-
|
|
133
|
+
}
|
|
134
|
+
class ServiceQuotaExceededException extends RbinServiceException {
|
|
135
135
|
name = "ServiceQuotaExceededException";
|
|
136
136
|
$fault = "client";
|
|
137
137
|
Message;
|
|
@@ -146,8 +146,8 @@ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extend
|
|
|
146
146
|
this.Message = opts.Message;
|
|
147
147
|
this.Reason = opts.Reason;
|
|
148
148
|
}
|
|
149
|
-
}
|
|
150
|
-
|
|
149
|
+
}
|
|
150
|
+
class ValidationException extends RbinServiceException {
|
|
151
151
|
name = "ValidationException";
|
|
152
152
|
$fault = "client";
|
|
153
153
|
Message;
|
|
@@ -162,8 +162,8 @@ let ValidationException$1 = class ValidationException extends RbinServiceExcepti
|
|
|
162
162
|
this.Message = opts.Message;
|
|
163
163
|
this.Reason = opts.Reason;
|
|
164
164
|
}
|
|
165
|
-
}
|
|
166
|
-
|
|
165
|
+
}
|
|
166
|
+
class ConflictException extends RbinServiceException {
|
|
167
167
|
name = "ConflictException";
|
|
168
168
|
$fault = "client";
|
|
169
169
|
Message;
|
|
@@ -178,8 +178,8 @@ let ConflictException$1 = class ConflictException extends RbinServiceException$1
|
|
|
178
178
|
this.Message = opts.Message;
|
|
179
179
|
this.Reason = opts.Reason;
|
|
180
180
|
}
|
|
181
|
-
}
|
|
182
|
-
|
|
181
|
+
}
|
|
182
|
+
class ResourceNotFoundException extends RbinServiceException {
|
|
183
183
|
name = "ResourceNotFoundException";
|
|
184
184
|
$fault = "client";
|
|
185
185
|
Message;
|
|
@@ -194,7 +194,7 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends RbinSe
|
|
|
194
194
|
this.Message = opts.Message;
|
|
195
195
|
this.Reason = opts.Reason;
|
|
196
196
|
}
|
|
197
|
-
}
|
|
197
|
+
}
|
|
198
198
|
|
|
199
199
|
const _CE = "ConflictException";
|
|
200
200
|
const _CR = "CreateRule";
|
|
@@ -273,17 +273,25 @@ const _s = "server";
|
|
|
273
273
|
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.rbin";
|
|
274
274
|
const _tK = "tagKeys";
|
|
275
275
|
const n0 = "com.amazonaws.rbin";
|
|
276
|
-
var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_M, _R], [0, 0]];
|
|
277
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException
|
|
278
|
-
var CreateRuleRequest = [
|
|
276
|
+
var ConflictException$ = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_M, _R], [0, 0]];
|
|
277
|
+
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
278
|
+
var CreateRuleRequest$ = [
|
|
279
279
|
3,
|
|
280
280
|
n0,
|
|
281
281
|
_CRR,
|
|
282
282
|
0,
|
|
283
283
|
[_RP, _D, _T, _RT, _RTe, _LC, _ERT],
|
|
284
|
-
[
|
|
284
|
+
[
|
|
285
|
+
() => RetentionPeriod$,
|
|
286
|
+
0,
|
|
287
|
+
() => TagList,
|
|
288
|
+
0,
|
|
289
|
+
() => ResourceTags,
|
|
290
|
+
() => LockConfiguration$,
|
|
291
|
+
() => ExcludeResourceTags,
|
|
292
|
+
],
|
|
285
293
|
];
|
|
286
|
-
var CreateRuleResponse = [
|
|
294
|
+
var CreateRuleResponse$ = [
|
|
287
295
|
3,
|
|
288
296
|
n0,
|
|
289
297
|
_CRRr,
|
|
@@ -291,32 +299,44 @@ var CreateRuleResponse = [
|
|
|
291
299
|
[_I, _RP, _D, _T, _RT, _RTe, _S, _LC, _LS, _RA, _ERT],
|
|
292
300
|
[
|
|
293
301
|
0,
|
|
294
|
-
() => RetentionPeriod
|
|
302
|
+
() => RetentionPeriod$,
|
|
295
303
|
0,
|
|
296
304
|
() => TagList,
|
|
297
305
|
0,
|
|
298
306
|
() => ResourceTags,
|
|
299
307
|
0,
|
|
300
|
-
() => LockConfiguration
|
|
308
|
+
() => LockConfiguration$,
|
|
301
309
|
0,
|
|
302
310
|
0,
|
|
303
311
|
() => ExcludeResourceTags,
|
|
304
312
|
],
|
|
305
313
|
];
|
|
306
|
-
var DeleteRuleRequest = [3, n0, _DRR, 0, [_I], [[0, 1]]];
|
|
307
|
-
var DeleteRuleResponse = [3, n0, _DRRe, 0, [], []];
|
|
308
|
-
var GetRuleRequest = [3, n0, _GRR, 0, [_I], [[0, 1]]];
|
|
309
|
-
var GetRuleResponse = [
|
|
314
|
+
var DeleteRuleRequest$ = [3, n0, _DRR, 0, [_I], [[0, 1]]];
|
|
315
|
+
var DeleteRuleResponse$ = [3, n0, _DRRe, 0, [], []];
|
|
316
|
+
var GetRuleRequest$ = [3, n0, _GRR, 0, [_I], [[0, 1]]];
|
|
317
|
+
var GetRuleResponse$ = [
|
|
310
318
|
3,
|
|
311
319
|
n0,
|
|
312
320
|
_GRRe,
|
|
313
321
|
0,
|
|
314
322
|
[_I, _D, _RT, _RP, _RTe, _S, _LC, _LS, _LET, _RA, _ERT],
|
|
315
|
-
[
|
|
323
|
+
[
|
|
324
|
+
0,
|
|
325
|
+
0,
|
|
326
|
+
0,
|
|
327
|
+
() => RetentionPeriod$,
|
|
328
|
+
() => ResourceTags,
|
|
329
|
+
0,
|
|
330
|
+
() => LockConfiguration$,
|
|
331
|
+
0,
|
|
332
|
+
4,
|
|
333
|
+
0,
|
|
334
|
+
() => ExcludeResourceTags,
|
|
335
|
+
],
|
|
316
336
|
];
|
|
317
|
-
var InternalServerException = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_M], [0]];
|
|
318
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException
|
|
319
|
-
var ListRulesRequest = [
|
|
337
|
+
var InternalServerException$ = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_M], [0]];
|
|
338
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
339
|
+
var ListRulesRequest$ = [
|
|
320
340
|
3,
|
|
321
341
|
n0,
|
|
322
342
|
_LRR,
|
|
@@ -324,32 +344,32 @@ var ListRulesRequest = [
|
|
|
324
344
|
[_MR, _NT, _RT, _RTe, _LS, _ERT],
|
|
325
345
|
[1, 0, 0, () => ResourceTags, 0, () => ExcludeResourceTags],
|
|
326
346
|
];
|
|
327
|
-
var ListRulesResponse = [3, n0, _LRRi, 0, [_Ru, _NT], [() => RuleSummaryList, 0]];
|
|
328
|
-
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_RAe], [[0, 1]]];
|
|
329
|
-
var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_T], [() => TagList]];
|
|
330
|
-
var LockConfiguration = [3, n0, _LC, 0, [_UD], [() => UnlockDelay]];
|
|
331
|
-
var LockRuleRequest = [3, n0, _LRRo, 0, [_I, _LC], [[0, 1], () => LockConfiguration]];
|
|
332
|
-
var LockRuleResponse = [
|
|
347
|
+
var ListRulesResponse$ = [3, n0, _LRRi, 0, [_Ru, _NT], [() => RuleSummaryList, 0]];
|
|
348
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_RAe], [[0, 1]]];
|
|
349
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_T], [() => TagList]];
|
|
350
|
+
var LockConfiguration$ = [3, n0, _LC, 0, [_UD], [() => UnlockDelay$]];
|
|
351
|
+
var LockRuleRequest$ = [3, n0, _LRRo, 0, [_I, _LC], [[0, 1], () => LockConfiguration$]];
|
|
352
|
+
var LockRuleResponse$ = [
|
|
333
353
|
3,
|
|
334
354
|
n0,
|
|
335
355
|
_LRRoc,
|
|
336
356
|
0,
|
|
337
357
|
[_I, _D, _RT, _RP, _RTe, _S, _LC, _LS, _RA, _ERT],
|
|
338
|
-
[0, 0, 0, () => RetentionPeriod
|
|
358
|
+
[0, 0, 0, () => RetentionPeriod$, () => ResourceTags, 0, () => LockConfiguration$, 0, 0, () => ExcludeResourceTags],
|
|
339
359
|
];
|
|
340
|
-
var ResourceNotFoundException = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_M, _R], [0, 0]];
|
|
341
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException
|
|
342
|
-
var ResourceTag = [3, n0, _RTes, 0, [_RTK, _RTV], [0, 0]];
|
|
343
|
-
var RetentionPeriod = [3, n0, _RP, 0, [_RPV, _RPU], [1, 0]];
|
|
344
|
-
var RuleSummary = [
|
|
360
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_M, _R], [0, 0]];
|
|
361
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
362
|
+
var ResourceTag$ = [3, n0, _RTes, 0, [_RTK, _RTV], [0, 0]];
|
|
363
|
+
var RetentionPeriod$ = [3, n0, _RP, 0, [_RPV, _RPU], [1, 0]];
|
|
364
|
+
var RuleSummary$ = [
|
|
345
365
|
3,
|
|
346
366
|
n0,
|
|
347
367
|
_RS,
|
|
348
368
|
0,
|
|
349
369
|
[_I, _D, _RP, _LS, _RA],
|
|
350
|
-
[0, 0, () => RetentionPeriod
|
|
370
|
+
[0, 0, () => RetentionPeriod$, 0, 0],
|
|
351
371
|
];
|
|
352
|
-
var ServiceQuotaExceededException = [
|
|
372
|
+
var ServiceQuotaExceededException$ = [
|
|
353
373
|
-3,
|
|
354
374
|
n0,
|
|
355
375
|
_SQEE,
|
|
@@ -357,21 +377,33 @@ var ServiceQuotaExceededException = [
|
|
|
357
377
|
[_M, _R],
|
|
358
378
|
[0, 0],
|
|
359
379
|
];
|
|
360
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException
|
|
361
|
-
var Tag = [3, n0, _Ta, 0, [_K, _V], [0, 0]];
|
|
362
|
-
var TagResourceRequest = [3, n0, _TRR, 0, [_RAe, _T], [[0, 1], () => TagList]];
|
|
363
|
-
var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
|
|
364
|
-
var UnlockDelay = [3, n0, _UD, 0, [_UDV, _UDU], [1, 0]];
|
|
365
|
-
var UnlockRuleRequest = [3, n0, _URR, 0, [_I], [[0, 1]]];
|
|
366
|
-
var UnlockRuleResponse = [
|
|
380
|
+
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
381
|
+
var Tag$ = [3, n0, _Ta, 0, [_K, _V], [0, 0]];
|
|
382
|
+
var TagResourceRequest$ = [3, n0, _TRR, 0, [_RAe, _T], [[0, 1], () => TagList]];
|
|
383
|
+
var TagResourceResponse$ = [3, n0, _TRRa, 0, [], []];
|
|
384
|
+
var UnlockDelay$ = [3, n0, _UD, 0, [_UDV, _UDU], [1, 0]];
|
|
385
|
+
var UnlockRuleRequest$ = [3, n0, _URR, 0, [_I], [[0, 1]]];
|
|
386
|
+
var UnlockRuleResponse$ = [
|
|
367
387
|
3,
|
|
368
388
|
n0,
|
|
369
389
|
_URRn,
|
|
370
390
|
0,
|
|
371
391
|
[_I, _D, _RT, _RP, _RTe, _S, _LC, _LS, _LET, _RA, _ERT],
|
|
372
|
-
[
|
|
392
|
+
[
|
|
393
|
+
0,
|
|
394
|
+
0,
|
|
395
|
+
0,
|
|
396
|
+
() => RetentionPeriod$,
|
|
397
|
+
() => ResourceTags,
|
|
398
|
+
0,
|
|
399
|
+
() => LockConfiguration$,
|
|
400
|
+
0,
|
|
401
|
+
4,
|
|
402
|
+
0,
|
|
403
|
+
() => ExcludeResourceTags,
|
|
404
|
+
],
|
|
373
405
|
];
|
|
374
|
-
var UntagResourceRequest = [
|
|
406
|
+
var UntagResourceRequest$ = [
|
|
375
407
|
3,
|
|
376
408
|
n0,
|
|
377
409
|
_URRnt,
|
|
@@ -382,110 +414,110 @@ var UntagResourceRequest = [
|
|
|
382
414
|
[64 | 0, { [_hQ]: _tK }],
|
|
383
415
|
],
|
|
384
416
|
];
|
|
385
|
-
var UntagResourceResponse = [3, n0, _URRnta, 0, [], []];
|
|
386
|
-
var UpdateRuleRequest = [
|
|
417
|
+
var UntagResourceResponse$ = [3, n0, _URRnta, 0, [], []];
|
|
418
|
+
var UpdateRuleRequest$ = [
|
|
387
419
|
3,
|
|
388
420
|
n0,
|
|
389
421
|
_URRp,
|
|
390
422
|
0,
|
|
391
423
|
[_I, _RP, _D, _RT, _RTe, _ERT],
|
|
392
|
-
[[0, 1], () => RetentionPeriod
|
|
424
|
+
[[0, 1], () => RetentionPeriod$, 0, 0, () => ResourceTags, () => ExcludeResourceTags],
|
|
393
425
|
];
|
|
394
|
-
var UpdateRuleResponse = [
|
|
426
|
+
var UpdateRuleResponse$ = [
|
|
395
427
|
3,
|
|
396
428
|
n0,
|
|
397
429
|
_URRpd,
|
|
398
430
|
0,
|
|
399
431
|
[_I, _RP, _D, _RT, _RTe, _S, _LS, _LET, _RA, _ERT],
|
|
400
|
-
[0, () => RetentionPeriod
|
|
432
|
+
[0, () => RetentionPeriod$, 0, 0, () => ResourceTags, 0, 0, 4, 0, () => ExcludeResourceTags],
|
|
401
433
|
];
|
|
402
|
-
var ValidationException = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_M, _R], [0, 0]];
|
|
403
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException
|
|
404
|
-
var RbinServiceException = [-3, _sm, "RbinServiceException", 0, [], []];
|
|
405
|
-
schema.TypeRegistry.for(_sm).registerError(RbinServiceException
|
|
406
|
-
var ExcludeResourceTags = [1, n0, _ERT, 0, () => ResourceTag];
|
|
407
|
-
var ResourceTags = [1, n0, _RTe, 0, () => ResourceTag];
|
|
408
|
-
var RuleSummaryList = [1, n0, _RSL, 0, () => RuleSummary];
|
|
409
|
-
var TagList = [1, n0, _TL, 0, () => Tag];
|
|
410
|
-
var CreateRule = [
|
|
434
|
+
var ValidationException$ = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_M, _R], [0, 0]];
|
|
435
|
+
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
436
|
+
var RbinServiceException$ = [-3, _sm, "RbinServiceException", 0, [], []];
|
|
437
|
+
schema.TypeRegistry.for(_sm).registerError(RbinServiceException$, RbinServiceException);
|
|
438
|
+
var ExcludeResourceTags = [1, n0, _ERT, 0, () => ResourceTag$];
|
|
439
|
+
var ResourceTags = [1, n0, _RTe, 0, () => ResourceTag$];
|
|
440
|
+
var RuleSummaryList = [1, n0, _RSL, 0, () => RuleSummary$];
|
|
441
|
+
var TagList = [1, n0, _TL, 0, () => Tag$];
|
|
442
|
+
var CreateRule$ = [
|
|
411
443
|
9,
|
|
412
444
|
n0,
|
|
413
445
|
_CR,
|
|
414
446
|
{ [_h]: ["POST", "/rules", 201] },
|
|
415
|
-
() => CreateRuleRequest
|
|
416
|
-
() => CreateRuleResponse
|
|
447
|
+
() => CreateRuleRequest$,
|
|
448
|
+
() => CreateRuleResponse$,
|
|
417
449
|
];
|
|
418
|
-
var DeleteRule = [
|
|
450
|
+
var DeleteRule$ = [
|
|
419
451
|
9,
|
|
420
452
|
n0,
|
|
421
453
|
_DR,
|
|
422
454
|
{ [_h]: ["DELETE", "/rules/{Identifier}", 204] },
|
|
423
|
-
() => DeleteRuleRequest
|
|
424
|
-
() => DeleteRuleResponse
|
|
455
|
+
() => DeleteRuleRequest$,
|
|
456
|
+
() => DeleteRuleResponse$,
|
|
425
457
|
];
|
|
426
|
-
var GetRule = [
|
|
458
|
+
var GetRule$ = [
|
|
427
459
|
9,
|
|
428
460
|
n0,
|
|
429
461
|
_GR,
|
|
430
462
|
{ [_h]: ["GET", "/rules/{Identifier}", 200] },
|
|
431
|
-
() => GetRuleRequest
|
|
432
|
-
() => GetRuleResponse
|
|
463
|
+
() => GetRuleRequest$,
|
|
464
|
+
() => GetRuleResponse$,
|
|
433
465
|
];
|
|
434
|
-
var ListRules = [
|
|
466
|
+
var ListRules$ = [
|
|
435
467
|
9,
|
|
436
468
|
n0,
|
|
437
469
|
_LR,
|
|
438
470
|
{ [_h]: ["POST", "/list-rules", 200] },
|
|
439
|
-
() => ListRulesRequest
|
|
440
|
-
() => ListRulesResponse
|
|
471
|
+
() => ListRulesRequest$,
|
|
472
|
+
() => ListRulesResponse$,
|
|
441
473
|
];
|
|
442
|
-
var ListTagsForResource = [
|
|
474
|
+
var ListTagsForResource$ = [
|
|
443
475
|
9,
|
|
444
476
|
n0,
|
|
445
477
|
_LTFR,
|
|
446
478
|
{ [_h]: ["GET", "/tags/{ResourceArn}", 200] },
|
|
447
|
-
() => ListTagsForResourceRequest
|
|
448
|
-
() => ListTagsForResourceResponse
|
|
479
|
+
() => ListTagsForResourceRequest$,
|
|
480
|
+
() => ListTagsForResourceResponse$,
|
|
449
481
|
];
|
|
450
|
-
var LockRule = [
|
|
482
|
+
var LockRule$ = [
|
|
451
483
|
9,
|
|
452
484
|
n0,
|
|
453
485
|
_LRo,
|
|
454
486
|
{ [_h]: ["PATCH", "/rules/{Identifier}/lock", 200] },
|
|
455
|
-
() => LockRuleRequest
|
|
456
|
-
() => LockRuleResponse
|
|
487
|
+
() => LockRuleRequest$,
|
|
488
|
+
() => LockRuleResponse$,
|
|
457
489
|
];
|
|
458
|
-
var TagResource = [
|
|
490
|
+
var TagResource$ = [
|
|
459
491
|
9,
|
|
460
492
|
n0,
|
|
461
493
|
_TR,
|
|
462
494
|
{ [_h]: ["POST", "/tags/{ResourceArn}", 201] },
|
|
463
|
-
() => TagResourceRequest
|
|
464
|
-
() => TagResourceResponse
|
|
495
|
+
() => TagResourceRequest$,
|
|
496
|
+
() => TagResourceResponse$,
|
|
465
497
|
];
|
|
466
|
-
var UnlockRule = [
|
|
498
|
+
var UnlockRule$ = [
|
|
467
499
|
9,
|
|
468
500
|
n0,
|
|
469
501
|
_UR,
|
|
470
502
|
{ [_h]: ["PATCH", "/rules/{Identifier}/unlock", 200] },
|
|
471
|
-
() => UnlockRuleRequest
|
|
472
|
-
() => UnlockRuleResponse
|
|
503
|
+
() => UnlockRuleRequest$,
|
|
504
|
+
() => UnlockRuleResponse$,
|
|
473
505
|
];
|
|
474
|
-
var UntagResource = [
|
|
506
|
+
var UntagResource$ = [
|
|
475
507
|
9,
|
|
476
508
|
n0,
|
|
477
509
|
_URn,
|
|
478
510
|
{ [_h]: ["DELETE", "/tags/{ResourceArn}", 204] },
|
|
479
|
-
() => UntagResourceRequest
|
|
480
|
-
() => UntagResourceResponse
|
|
511
|
+
() => UntagResourceRequest$,
|
|
512
|
+
() => UntagResourceResponse$,
|
|
481
513
|
];
|
|
482
|
-
var UpdateRule = [
|
|
514
|
+
var UpdateRule$ = [
|
|
483
515
|
9,
|
|
484
516
|
n0,
|
|
485
517
|
_URp,
|
|
486
518
|
{ [_h]: ["PATCH", "/rules/{Identifier}", 200] },
|
|
487
|
-
() => UpdateRuleRequest
|
|
488
|
-
() => UpdateRuleResponse
|
|
519
|
+
() => UpdateRuleRequest$,
|
|
520
|
+
() => UpdateRuleResponse$,
|
|
489
521
|
];
|
|
490
522
|
|
|
491
523
|
class CreateRuleCommand extends smithyClient.Command
|
|
@@ -496,7 +528,7 @@ class CreateRuleCommand extends smithyClient.Command
|
|
|
496
528
|
})
|
|
497
529
|
.s("AmazonRecycleBin", "CreateRule", {})
|
|
498
530
|
.n("RbinClient", "CreateRuleCommand")
|
|
499
|
-
.sc(CreateRule)
|
|
531
|
+
.sc(CreateRule$)
|
|
500
532
|
.build() {
|
|
501
533
|
}
|
|
502
534
|
|
|
@@ -508,7 +540,7 @@ class DeleteRuleCommand extends smithyClient.Command
|
|
|
508
540
|
})
|
|
509
541
|
.s("AmazonRecycleBin", "DeleteRule", {})
|
|
510
542
|
.n("RbinClient", "DeleteRuleCommand")
|
|
511
|
-
.sc(DeleteRule)
|
|
543
|
+
.sc(DeleteRule$)
|
|
512
544
|
.build() {
|
|
513
545
|
}
|
|
514
546
|
|
|
@@ -520,7 +552,7 @@ class GetRuleCommand extends smithyClient.Command
|
|
|
520
552
|
})
|
|
521
553
|
.s("AmazonRecycleBin", "GetRule", {})
|
|
522
554
|
.n("RbinClient", "GetRuleCommand")
|
|
523
|
-
.sc(GetRule)
|
|
555
|
+
.sc(GetRule$)
|
|
524
556
|
.build() {
|
|
525
557
|
}
|
|
526
558
|
|
|
@@ -532,7 +564,7 @@ class ListRulesCommand extends smithyClient.Command
|
|
|
532
564
|
})
|
|
533
565
|
.s("AmazonRecycleBin", "ListRules", {})
|
|
534
566
|
.n("RbinClient", "ListRulesCommand")
|
|
535
|
-
.sc(ListRules)
|
|
567
|
+
.sc(ListRules$)
|
|
536
568
|
.build() {
|
|
537
569
|
}
|
|
538
570
|
|
|
@@ -544,7 +576,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
544
576
|
})
|
|
545
577
|
.s("AmazonRecycleBin", "ListTagsForResource", {})
|
|
546
578
|
.n("RbinClient", "ListTagsForResourceCommand")
|
|
547
|
-
.sc(ListTagsForResource)
|
|
579
|
+
.sc(ListTagsForResource$)
|
|
548
580
|
.build() {
|
|
549
581
|
}
|
|
550
582
|
|
|
@@ -556,7 +588,7 @@ class LockRuleCommand extends smithyClient.Command
|
|
|
556
588
|
})
|
|
557
589
|
.s("AmazonRecycleBin", "LockRule", {})
|
|
558
590
|
.n("RbinClient", "LockRuleCommand")
|
|
559
|
-
.sc(LockRule)
|
|
591
|
+
.sc(LockRule$)
|
|
560
592
|
.build() {
|
|
561
593
|
}
|
|
562
594
|
|
|
@@ -568,7 +600,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
568
600
|
})
|
|
569
601
|
.s("AmazonRecycleBin", "TagResource", {})
|
|
570
602
|
.n("RbinClient", "TagResourceCommand")
|
|
571
|
-
.sc(TagResource)
|
|
603
|
+
.sc(TagResource$)
|
|
572
604
|
.build() {
|
|
573
605
|
}
|
|
574
606
|
|
|
@@ -580,7 +612,7 @@ class UnlockRuleCommand extends smithyClient.Command
|
|
|
580
612
|
})
|
|
581
613
|
.s("AmazonRecycleBin", "UnlockRule", {})
|
|
582
614
|
.n("RbinClient", "UnlockRuleCommand")
|
|
583
|
-
.sc(UnlockRule)
|
|
615
|
+
.sc(UnlockRule$)
|
|
584
616
|
.build() {
|
|
585
617
|
}
|
|
586
618
|
|
|
@@ -592,7 +624,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
592
624
|
})
|
|
593
625
|
.s("AmazonRecycleBin", "UntagResource", {})
|
|
594
626
|
.n("RbinClient", "UntagResourceCommand")
|
|
595
|
-
.sc(UntagResource)
|
|
627
|
+
.sc(UntagResource$)
|
|
596
628
|
.build() {
|
|
597
629
|
}
|
|
598
630
|
|
|
@@ -604,7 +636,7 @@ class UpdateRuleCommand extends smithyClient.Command
|
|
|
604
636
|
})
|
|
605
637
|
.s("AmazonRecycleBin", "UpdateRule", {})
|
|
606
638
|
.n("RbinClient", "UpdateRuleCommand")
|
|
607
|
-
.sc(UpdateRule)
|
|
639
|
+
.sc(UpdateRule$)
|
|
608
640
|
.build() {
|
|
609
641
|
}
|
|
610
642
|
|
|
@@ -668,31 +700,73 @@ Object.defineProperty(exports, "__Client", {
|
|
|
668
700
|
enumerable: true,
|
|
669
701
|
get: function () { return smithyClient.Client; }
|
|
670
702
|
});
|
|
671
|
-
exports.ConflictException = ConflictException
|
|
703
|
+
exports.ConflictException = ConflictException;
|
|
704
|
+
exports.ConflictException$ = ConflictException$;
|
|
672
705
|
exports.ConflictExceptionReason = ConflictExceptionReason;
|
|
706
|
+
exports.CreateRule$ = CreateRule$;
|
|
673
707
|
exports.CreateRuleCommand = CreateRuleCommand;
|
|
708
|
+
exports.CreateRuleRequest$ = CreateRuleRequest$;
|
|
709
|
+
exports.CreateRuleResponse$ = CreateRuleResponse$;
|
|
710
|
+
exports.DeleteRule$ = DeleteRule$;
|
|
674
711
|
exports.DeleteRuleCommand = DeleteRuleCommand;
|
|
712
|
+
exports.DeleteRuleRequest$ = DeleteRuleRequest$;
|
|
713
|
+
exports.DeleteRuleResponse$ = DeleteRuleResponse$;
|
|
714
|
+
exports.GetRule$ = GetRule$;
|
|
675
715
|
exports.GetRuleCommand = GetRuleCommand;
|
|
676
|
-
exports.
|
|
716
|
+
exports.GetRuleRequest$ = GetRuleRequest$;
|
|
717
|
+
exports.GetRuleResponse$ = GetRuleResponse$;
|
|
718
|
+
exports.InternalServerException = InternalServerException;
|
|
719
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
720
|
+
exports.ListRules$ = ListRules$;
|
|
677
721
|
exports.ListRulesCommand = ListRulesCommand;
|
|
722
|
+
exports.ListRulesRequest$ = ListRulesRequest$;
|
|
723
|
+
exports.ListRulesResponse$ = ListRulesResponse$;
|
|
724
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
678
725
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
726
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
727
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
728
|
+
exports.LockConfiguration$ = LockConfiguration$;
|
|
729
|
+
exports.LockRule$ = LockRule$;
|
|
679
730
|
exports.LockRuleCommand = LockRuleCommand;
|
|
731
|
+
exports.LockRuleRequest$ = LockRuleRequest$;
|
|
732
|
+
exports.LockRuleResponse$ = LockRuleResponse$;
|
|
680
733
|
exports.LockState = LockState;
|
|
681
734
|
exports.Rbin = Rbin;
|
|
682
735
|
exports.RbinClient = RbinClient;
|
|
683
|
-
exports.RbinServiceException = RbinServiceException
|
|
684
|
-
exports.
|
|
736
|
+
exports.RbinServiceException = RbinServiceException;
|
|
737
|
+
exports.RbinServiceException$ = RbinServiceException$;
|
|
738
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
739
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
685
740
|
exports.ResourceNotFoundExceptionReason = ResourceNotFoundExceptionReason;
|
|
741
|
+
exports.ResourceTag$ = ResourceTag$;
|
|
686
742
|
exports.ResourceType = ResourceType;
|
|
743
|
+
exports.RetentionPeriod$ = RetentionPeriod$;
|
|
687
744
|
exports.RetentionPeriodUnit = RetentionPeriodUnit;
|
|
688
745
|
exports.RuleStatus = RuleStatus;
|
|
689
|
-
exports.
|
|
746
|
+
exports.RuleSummary$ = RuleSummary$;
|
|
747
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
748
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
690
749
|
exports.ServiceQuotaExceededExceptionReason = ServiceQuotaExceededExceptionReason;
|
|
750
|
+
exports.Tag$ = Tag$;
|
|
751
|
+
exports.TagResource$ = TagResource$;
|
|
691
752
|
exports.TagResourceCommand = TagResourceCommand;
|
|
753
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
754
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
755
|
+
exports.UnlockDelay$ = UnlockDelay$;
|
|
692
756
|
exports.UnlockDelayUnit = UnlockDelayUnit;
|
|
757
|
+
exports.UnlockRule$ = UnlockRule$;
|
|
693
758
|
exports.UnlockRuleCommand = UnlockRuleCommand;
|
|
759
|
+
exports.UnlockRuleRequest$ = UnlockRuleRequest$;
|
|
760
|
+
exports.UnlockRuleResponse$ = UnlockRuleResponse$;
|
|
761
|
+
exports.UntagResource$ = UntagResource$;
|
|
694
762
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
763
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
764
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
765
|
+
exports.UpdateRule$ = UpdateRule$;
|
|
695
766
|
exports.UpdateRuleCommand = UpdateRuleCommand;
|
|
696
|
-
exports.
|
|
767
|
+
exports.UpdateRuleRequest$ = UpdateRuleRequest$;
|
|
768
|
+
exports.UpdateRuleResponse$ = UpdateRuleResponse$;
|
|
769
|
+
exports.ValidationException = ValidationException;
|
|
770
|
+
exports.ValidationException$ = ValidationException$;
|
|
697
771
|
exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
698
772
|
exports.paginateListRules = paginateListRules;
|
|
@@ -26,7 +26,12 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.rbin",
|
|
32
|
+
version: "2021-06-15",
|
|
33
|
+
serviceTarget: "AmazonRecycleBin",
|
|
34
|
+
},
|
|
30
35
|
serviceId: config?.serviceId ?? "rbin",
|
|
31
36
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
32
37
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateRule } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateRule$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateRuleCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateRuleCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonRecycleBin", "CreateRule", {})
|
|
13
13
|
.n("RbinClient", "CreateRuleCommand")
|
|
14
|
-
.sc(CreateRule)
|
|
14
|
+
.sc(CreateRule$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteRule } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteRule$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteRuleCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteRuleCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonRecycleBin", "DeleteRule", {})
|
|
13
13
|
.n("RbinClient", "DeleteRuleCommand")
|
|
14
|
-
.sc(DeleteRule)
|
|
14
|
+
.sc(DeleteRule$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetRule } from "../schemas/schemas_0";
|
|
4
|
+
import { GetRule$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetRuleCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetRuleCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonRecycleBin", "GetRule", {})
|
|
13
13
|
.n("RbinClient", "GetRuleCommand")
|
|
14
|
-
.sc(GetRule)
|
|
14
|
+
.sc(GetRule$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListRules } from "../schemas/schemas_0";
|
|
4
|
+
import { ListRules$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListRulesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListRulesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonRecycleBin", "ListRules", {})
|
|
13
13
|
.n("RbinClient", "ListRulesCommand")
|
|
14
|
-
.sc(ListRules)
|
|
14
|
+
.sc(ListRules$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonRecycleBin", "ListTagsForResource", {})
|
|
13
13
|
.n("RbinClient", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource)
|
|
14
|
+
.sc(ListTagsForResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|