@aws-sdk/client-service-quotas 3.169.0 → 3.171.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.
Files changed (42) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/ServiceQuotas.d.ts +369 -100
  3. package/dist-types/ts3.4/ServiceQuotasClient.d.ts +219 -92
  4. package/dist-types/ts3.4/commands/AssociateServiceQuotaTemplateCommand.d.ts +39 -17
  5. package/dist-types/ts3.4/commands/DeleteServiceQuotaIncreaseRequestFromTemplateCommand.d.ts +39 -17
  6. package/dist-types/ts3.4/commands/DisassociateServiceQuotaTemplateCommand.d.ts +39 -17
  7. package/dist-types/ts3.4/commands/GetAWSDefaultServiceQuotaCommand.d.ts +39 -17
  8. package/dist-types/ts3.4/commands/GetAssociationForServiceQuotaTemplateCommand.d.ts +39 -17
  9. package/dist-types/ts3.4/commands/GetRequestedServiceQuotaChangeCommand.d.ts +39 -17
  10. package/dist-types/ts3.4/commands/GetServiceQuotaCommand.d.ts +35 -17
  11. package/dist-types/ts3.4/commands/GetServiceQuotaIncreaseRequestFromTemplateCommand.d.ts +39 -17
  12. package/dist-types/ts3.4/commands/ListAWSDefaultServiceQuotasCommand.d.ts +39 -17
  13. package/dist-types/ts3.4/commands/ListRequestedServiceQuotaChangeHistoryByQuotaCommand.d.ts +39 -17
  14. package/dist-types/ts3.4/commands/ListRequestedServiceQuotaChangeHistoryCommand.d.ts +39 -17
  15. package/dist-types/ts3.4/commands/ListServiceQuotaIncreaseRequestsInTemplateCommand.d.ts +39 -17
  16. package/dist-types/ts3.4/commands/ListServiceQuotasCommand.d.ts +36 -17
  17. package/dist-types/ts3.4/commands/ListServicesCommand.d.ts +32 -17
  18. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  19. package/dist-types/ts3.4/commands/PutServiceQuotaIncreaseRequestIntoTemplateCommand.d.ts +39 -17
  20. package/dist-types/ts3.4/commands/RequestServiceQuotaIncreaseCommand.d.ts +39 -17
  21. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  22. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
  23. package/dist-types/ts3.4/commands/index.d.ts +19 -19
  24. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  25. package/dist-types/ts3.4/index.d.ts +6 -6
  26. package/dist-types/ts3.4/models/ServiceQuotasServiceException.d.ts +7 -6
  27. package/dist-types/ts3.4/models/index.d.ts +1 -1
  28. package/dist-types/ts3.4/models/models_0.d.ts +505 -576
  29. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  30. package/dist-types/ts3.4/pagination/ListAWSDefaultServiceQuotasPaginator.d.ts +11 -4
  31. package/dist-types/ts3.4/pagination/ListRequestedServiceQuotaChangeHistoryByQuotaPaginator.d.ts +11 -4
  32. package/dist-types/ts3.4/pagination/ListRequestedServiceQuotaChangeHistoryPaginator.d.ts +11 -4
  33. package/dist-types/ts3.4/pagination/ListServiceQuotaIncreaseRequestsInTemplatePaginator.d.ts +11 -4
  34. package/dist-types/ts3.4/pagination/ListServiceQuotasPaginator.d.ts +11 -4
  35. package/dist-types/ts3.4/pagination/ListServicesPaginator.d.ts +11 -4
  36. package/dist-types/ts3.4/pagination/index.d.ts +7 -7
  37. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +233 -59
  38. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
  39. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  40. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  41. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  42. package/package.json +34 -34
@@ -1,576 +1,505 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
- import { ServiceQuotasServiceException as __BaseException } from "./ServiceQuotasServiceException";
3
-
4
- export declare class AccessDeniedException extends __BaseException {
5
- readonly name: "AccessDeniedException";
6
- readonly $fault: "client";
7
- Message?: string;
8
-
9
- constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
10
- }
11
- export interface AssociateServiceQuotaTemplateRequest {
12
- }
13
- export interface AssociateServiceQuotaTemplateResponse {
14
- }
15
-
16
- export declare class AWSServiceAccessNotEnabledException extends __BaseException {
17
- readonly name: "AWSServiceAccessNotEnabledException";
18
- readonly $fault: "client";
19
- Message?: string;
20
-
21
- constructor(opts: __ExceptionOptionType<AWSServiceAccessNotEnabledException, __BaseException>);
22
- }
23
-
24
- export declare class DependencyAccessDeniedException extends __BaseException {
25
- readonly name: "DependencyAccessDeniedException";
26
- readonly $fault: "client";
27
- Message?: string;
28
-
29
- constructor(opts: __ExceptionOptionType<DependencyAccessDeniedException, __BaseException>);
30
- }
31
-
32
- export declare class NoAvailableOrganizationException extends __BaseException {
33
- readonly name: "NoAvailableOrganizationException";
34
- readonly $fault: "client";
35
- Message?: string;
36
-
37
- constructor(opts: __ExceptionOptionType<NoAvailableOrganizationException, __BaseException>);
38
- }
39
-
40
- export declare class OrganizationNotInAllFeaturesModeException extends __BaseException {
41
- readonly name: "OrganizationNotInAllFeaturesModeException";
42
- readonly $fault: "client";
43
- Message?: string;
44
-
45
- constructor(opts: __ExceptionOptionType<OrganizationNotInAllFeaturesModeException, __BaseException>);
46
- }
47
-
48
- export declare class ServiceException extends __BaseException {
49
- readonly name: "ServiceException";
50
- readonly $fault: "server";
51
- Message?: string;
52
-
53
- constructor(opts: __ExceptionOptionType<ServiceException, __BaseException>);
54
- }
55
-
56
- export declare class TemplatesNotAvailableInRegionException extends __BaseException {
57
- readonly name: "TemplatesNotAvailableInRegionException";
58
- readonly $fault: "client";
59
- Message?: string;
60
-
61
- constructor(opts: __ExceptionOptionType<TemplatesNotAvailableInRegionException, __BaseException>);
62
- }
63
-
64
- export declare class TooManyRequestsException extends __BaseException {
65
- readonly name: "TooManyRequestsException";
66
- readonly $fault: "client";
67
- Message?: string;
68
-
69
- constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
70
- }
71
- export interface DeleteServiceQuotaIncreaseRequestFromTemplateRequest {
72
-
73
- ServiceCode: string | undefined;
74
-
75
- QuotaCode: string | undefined;
76
-
77
- AwsRegion: string | undefined;
78
- }
79
- export interface DeleteServiceQuotaIncreaseRequestFromTemplateResponse {
80
- }
81
-
82
- export declare class IllegalArgumentException extends __BaseException {
83
- readonly name: "IllegalArgumentException";
84
- readonly $fault: "client";
85
- Message?: string;
86
-
87
- constructor(opts: __ExceptionOptionType<IllegalArgumentException, __BaseException>);
88
- }
89
-
90
- export declare class NoSuchResourceException extends __BaseException {
91
- readonly name: "NoSuchResourceException";
92
- readonly $fault: "client";
93
- Message?: string;
94
-
95
- constructor(opts: __ExceptionOptionType<NoSuchResourceException, __BaseException>);
96
- }
97
- export interface DisassociateServiceQuotaTemplateRequest {
98
- }
99
- export interface DisassociateServiceQuotaTemplateResponse {
100
- }
101
-
102
- export declare class ServiceQuotaTemplateNotInUseException extends __BaseException {
103
- readonly name: "ServiceQuotaTemplateNotInUseException";
104
- readonly $fault: "client";
105
- Message?: string;
106
-
107
- constructor(opts: __ExceptionOptionType<ServiceQuotaTemplateNotInUseException, __BaseException>);
108
- }
109
- export declare enum ErrorCode {
110
- DEPENDENCY_ACCESS_DENIED_ERROR = "DEPENDENCY_ACCESS_DENIED_ERROR",
111
- DEPENDENCY_SERVICE_ERROR = "DEPENDENCY_SERVICE_ERROR",
112
- DEPENDENCY_THROTTLING_ERROR = "DEPENDENCY_THROTTLING_ERROR",
113
- SERVICE_QUOTA_NOT_AVAILABLE_ERROR = "SERVICE_QUOTA_NOT_AVAILABLE_ERROR"
114
- }
115
-
116
- export interface ErrorReason {
117
-
118
- ErrorCode?: ErrorCode | string;
119
-
120
- ErrorMessage?: string;
121
- }
122
- export interface GetAssociationForServiceQuotaTemplateRequest {
123
- }
124
- export declare enum ServiceQuotaTemplateAssociationStatus {
125
- ASSOCIATED = "ASSOCIATED",
126
- DISASSOCIATED = "DISASSOCIATED"
127
- }
128
- export interface GetAssociationForServiceQuotaTemplateResponse {
129
-
130
- ServiceQuotaTemplateAssociationStatus?: ServiceQuotaTemplateAssociationStatus | string;
131
- }
132
- export interface GetAWSDefaultServiceQuotaRequest {
133
-
134
- ServiceCode: string | undefined;
135
-
136
- QuotaCode: string | undefined;
137
- }
138
- export declare enum PeriodUnit {
139
- DAY = "DAY",
140
- HOUR = "HOUR",
141
- MICROSECOND = "MICROSECOND",
142
- MILLISECOND = "MILLISECOND",
143
- MINUTE = "MINUTE",
144
- SECOND = "SECOND",
145
- WEEK = "WEEK"
146
- }
147
-
148
- export interface QuotaPeriod {
149
-
150
- PeriodValue?: number;
151
-
152
- PeriodUnit?: PeriodUnit | string;
153
- }
154
-
155
- export interface MetricInfo {
156
-
157
- MetricNamespace?: string;
158
-
159
- MetricName?: string;
160
-
161
- MetricDimensions?: Record<string, string>;
162
-
163
- MetricStatisticRecommendation?: string;
164
- }
165
-
166
- export interface ServiceQuota {
167
-
168
- ServiceCode?: string;
169
-
170
- ServiceName?: string;
171
-
172
- QuotaArn?: string;
173
-
174
- QuotaCode?: string;
175
-
176
- QuotaName?: string;
177
-
178
- Value?: number;
179
-
180
- Unit?: string;
181
-
182
- Adjustable?: boolean;
183
-
184
- GlobalQuota?: boolean;
185
-
186
- UsageMetric?: MetricInfo;
187
-
188
- Period?: QuotaPeriod;
189
-
190
- ErrorReason?: ErrorReason;
191
- }
192
- export interface GetAWSDefaultServiceQuotaResponse {
193
-
194
- Quota?: ServiceQuota;
195
- }
196
- export interface GetRequestedServiceQuotaChangeRequest {
197
-
198
- RequestId: string | undefined;
199
- }
200
- export declare enum RequestStatus {
201
- APPROVED = "APPROVED",
202
- CASE_CLOSED = "CASE_CLOSED",
203
- CASE_OPENED = "CASE_OPENED",
204
- DENIED = "DENIED",
205
- PENDING = "PENDING"
206
- }
207
-
208
- export interface RequestedServiceQuotaChange {
209
-
210
- Id?: string;
211
-
212
- CaseId?: string;
213
-
214
- ServiceCode?: string;
215
-
216
- ServiceName?: string;
217
-
218
- QuotaCode?: string;
219
-
220
- QuotaName?: string;
221
-
222
- DesiredValue?: number;
223
-
224
- Status?: RequestStatus | string;
225
-
226
- Created?: Date;
227
-
228
- LastUpdated?: Date;
229
-
230
- Requester?: string;
231
-
232
- QuotaArn?: string;
233
-
234
- GlobalQuota?: boolean;
235
-
236
- Unit?: string;
237
- }
238
- export interface GetRequestedServiceQuotaChangeResponse {
239
-
240
- RequestedQuota?: RequestedServiceQuotaChange;
241
- }
242
- export interface GetServiceQuotaRequest {
243
-
244
- ServiceCode: string | undefined;
245
-
246
- QuotaCode: string | undefined;
247
- }
248
- export interface GetServiceQuotaResponse {
249
-
250
- Quota?: ServiceQuota;
251
- }
252
- export interface GetServiceQuotaIncreaseRequestFromTemplateRequest {
253
-
254
- ServiceCode: string | undefined;
255
-
256
- QuotaCode: string | undefined;
257
-
258
- AwsRegion: string | undefined;
259
- }
260
-
261
- export interface ServiceQuotaIncreaseRequestInTemplate {
262
-
263
- ServiceCode?: string;
264
-
265
- ServiceName?: string;
266
-
267
- QuotaCode?: string;
268
-
269
- QuotaName?: string;
270
-
271
- DesiredValue?: number;
272
-
273
- AwsRegion?: string;
274
-
275
- Unit?: string;
276
-
277
- GlobalQuota?: boolean;
278
- }
279
- export interface GetServiceQuotaIncreaseRequestFromTemplateResponse {
280
-
281
- ServiceQuotaIncreaseRequestInTemplate?: ServiceQuotaIncreaseRequestInTemplate;
282
- }
283
-
284
- export interface Tag {
285
-
286
- Key: string | undefined;
287
-
288
- Value: string | undefined;
289
- }
290
-
291
- export declare class InvalidPaginationTokenException extends __BaseException {
292
- readonly name: "InvalidPaginationTokenException";
293
- readonly $fault: "client";
294
- Message?: string;
295
-
296
- constructor(opts: __ExceptionOptionType<InvalidPaginationTokenException, __BaseException>);
297
- }
298
-
299
- export declare class InvalidResourceStateException extends __BaseException {
300
- readonly name: "InvalidResourceStateException";
301
- readonly $fault: "client";
302
- Message?: string;
303
-
304
- constructor(opts: __ExceptionOptionType<InvalidResourceStateException, __BaseException>);
305
- }
306
- export interface ListAWSDefaultServiceQuotasRequest {
307
-
308
- ServiceCode: string | undefined;
309
-
310
- NextToken?: string;
311
-
312
- MaxResults?: number;
313
- }
314
- export interface ListAWSDefaultServiceQuotasResponse {
315
-
316
- NextToken?: string;
317
-
318
- Quotas?: ServiceQuota[];
319
- }
320
- export interface ListRequestedServiceQuotaChangeHistoryRequest {
321
-
322
- ServiceCode?: string;
323
-
324
- Status?: RequestStatus | string;
325
-
326
- NextToken?: string;
327
-
328
- MaxResults?: number;
329
- }
330
- export interface ListRequestedServiceQuotaChangeHistoryResponse {
331
-
332
- NextToken?: string;
333
-
334
- RequestedQuotas?: RequestedServiceQuotaChange[];
335
- }
336
- export interface ListRequestedServiceQuotaChangeHistoryByQuotaRequest {
337
-
338
- ServiceCode: string | undefined;
339
-
340
- QuotaCode: string | undefined;
341
-
342
- Status?: RequestStatus | string;
343
-
344
- NextToken?: string;
345
-
346
- MaxResults?: number;
347
- }
348
- export interface ListRequestedServiceQuotaChangeHistoryByQuotaResponse {
349
-
350
- NextToken?: string;
351
-
352
- RequestedQuotas?: RequestedServiceQuotaChange[];
353
- }
354
- export interface ListServiceQuotaIncreaseRequestsInTemplateRequest {
355
-
356
- ServiceCode?: string;
357
-
358
- AwsRegion?: string;
359
-
360
- NextToken?: string;
361
-
362
- MaxResults?: number;
363
- }
364
- export interface ListServiceQuotaIncreaseRequestsInTemplateResponse {
365
-
366
- ServiceQuotaIncreaseRequestInTemplateList?: ServiceQuotaIncreaseRequestInTemplate[];
367
-
368
- NextToken?: string;
369
- }
370
- export interface ListServiceQuotasRequest {
371
-
372
- ServiceCode: string | undefined;
373
-
374
- NextToken?: string;
375
-
376
- MaxResults?: number;
377
- }
378
- export interface ListServiceQuotasResponse {
379
-
380
- NextToken?: string;
381
-
382
- Quotas?: ServiceQuota[];
383
- }
384
- export interface ListServicesRequest {
385
-
386
- NextToken?: string;
387
-
388
- MaxResults?: number;
389
- }
390
-
391
- export interface ServiceInfo {
392
-
393
- ServiceCode?: string;
394
-
395
- ServiceName?: string;
396
- }
397
- export interface ListServicesResponse {
398
-
399
- NextToken?: string;
400
-
401
- Services?: ServiceInfo[];
402
- }
403
- export interface ListTagsForResourceRequest {
404
-
405
- ResourceARN: string | undefined;
406
- }
407
- export interface ListTagsForResourceResponse {
408
-
409
- Tags?: Tag[];
410
- }
411
- export interface PutServiceQuotaIncreaseRequestIntoTemplateRequest {
412
-
413
- QuotaCode: string | undefined;
414
-
415
- ServiceCode: string | undefined;
416
-
417
- AwsRegion: string | undefined;
418
-
419
- DesiredValue: number | undefined;
420
- }
421
- export interface PutServiceQuotaIncreaseRequestIntoTemplateResponse {
422
-
423
- ServiceQuotaIncreaseRequestInTemplate?: ServiceQuotaIncreaseRequestInTemplate;
424
- }
425
-
426
- export declare class QuotaExceededException extends __BaseException {
427
- readonly name: "QuotaExceededException";
428
- readonly $fault: "client";
429
- Message?: string;
430
-
431
- constructor(opts: __ExceptionOptionType<QuotaExceededException, __BaseException>);
432
- }
433
- export interface RequestServiceQuotaIncreaseRequest {
434
-
435
- ServiceCode: string | undefined;
436
-
437
- QuotaCode: string | undefined;
438
-
439
- DesiredValue: number | undefined;
440
- }
441
- export interface RequestServiceQuotaIncreaseResponse {
442
-
443
- RequestedQuota?: RequestedServiceQuotaChange;
444
- }
445
-
446
- export declare class ResourceAlreadyExistsException extends __BaseException {
447
- readonly name: "ResourceAlreadyExistsException";
448
- readonly $fault: "client";
449
- Message?: string;
450
-
451
- constructor(opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>);
452
- }
453
-
454
- export declare class TagPolicyViolationException extends __BaseException {
455
- readonly name: "TagPolicyViolationException";
456
- readonly $fault: "client";
457
- Message?: string;
458
-
459
- constructor(opts: __ExceptionOptionType<TagPolicyViolationException, __BaseException>);
460
- }
461
- export interface TagResourceRequest {
462
-
463
- ResourceARN: string | undefined;
464
-
465
- Tags: Tag[] | undefined;
466
- }
467
- export interface TagResourceResponse {
468
- }
469
-
470
- export declare class TooManyTagsException extends __BaseException {
471
- readonly name: "TooManyTagsException";
472
- readonly $fault: "client";
473
- Message?: string;
474
-
475
- constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
476
- }
477
- export interface UntagResourceRequest {
478
-
479
- ResourceARN: string | undefined;
480
-
481
- TagKeys: string[] | undefined;
482
- }
483
- export interface UntagResourceResponse {
484
- }
485
-
486
- export declare const AssociateServiceQuotaTemplateRequestFilterSensitiveLog: (obj: AssociateServiceQuotaTemplateRequest) => any;
487
-
488
- export declare const AssociateServiceQuotaTemplateResponseFilterSensitiveLog: (obj: AssociateServiceQuotaTemplateResponse) => any;
489
-
490
- export declare const DeleteServiceQuotaIncreaseRequestFromTemplateRequestFilterSensitiveLog: (obj: DeleteServiceQuotaIncreaseRequestFromTemplateRequest) => any;
491
-
492
- export declare const DeleteServiceQuotaIncreaseRequestFromTemplateResponseFilterSensitiveLog: (obj: DeleteServiceQuotaIncreaseRequestFromTemplateResponse) => any;
493
-
494
- export declare const DisassociateServiceQuotaTemplateRequestFilterSensitiveLog: (obj: DisassociateServiceQuotaTemplateRequest) => any;
495
-
496
- export declare const DisassociateServiceQuotaTemplateResponseFilterSensitiveLog: (obj: DisassociateServiceQuotaTemplateResponse) => any;
497
-
498
- export declare const ErrorReasonFilterSensitiveLog: (obj: ErrorReason) => any;
499
-
500
- export declare const GetAssociationForServiceQuotaTemplateRequestFilterSensitiveLog: (obj: GetAssociationForServiceQuotaTemplateRequest) => any;
501
-
502
- export declare const GetAssociationForServiceQuotaTemplateResponseFilterSensitiveLog: (obj: GetAssociationForServiceQuotaTemplateResponse) => any;
503
-
504
- export declare const GetAWSDefaultServiceQuotaRequestFilterSensitiveLog: (obj: GetAWSDefaultServiceQuotaRequest) => any;
505
-
506
- export declare const QuotaPeriodFilterSensitiveLog: (obj: QuotaPeriod) => any;
507
-
508
- export declare const MetricInfoFilterSensitiveLog: (obj: MetricInfo) => any;
509
-
510
- export declare const ServiceQuotaFilterSensitiveLog: (obj: ServiceQuota) => any;
511
-
512
- export declare const GetAWSDefaultServiceQuotaResponseFilterSensitiveLog: (obj: GetAWSDefaultServiceQuotaResponse) => any;
513
-
514
- export declare const GetRequestedServiceQuotaChangeRequestFilterSensitiveLog: (obj: GetRequestedServiceQuotaChangeRequest) => any;
515
-
516
- export declare const RequestedServiceQuotaChangeFilterSensitiveLog: (obj: RequestedServiceQuotaChange) => any;
517
-
518
- export declare const GetRequestedServiceQuotaChangeResponseFilterSensitiveLog: (obj: GetRequestedServiceQuotaChangeResponse) => any;
519
-
520
- export declare const GetServiceQuotaRequestFilterSensitiveLog: (obj: GetServiceQuotaRequest) => any;
521
-
522
- export declare const GetServiceQuotaResponseFilterSensitiveLog: (obj: GetServiceQuotaResponse) => any;
523
-
524
- export declare const GetServiceQuotaIncreaseRequestFromTemplateRequestFilterSensitiveLog: (obj: GetServiceQuotaIncreaseRequestFromTemplateRequest) => any;
525
-
526
- export declare const ServiceQuotaIncreaseRequestInTemplateFilterSensitiveLog: (obj: ServiceQuotaIncreaseRequestInTemplate) => any;
527
-
528
- export declare const GetServiceQuotaIncreaseRequestFromTemplateResponseFilterSensitiveLog: (obj: GetServiceQuotaIncreaseRequestFromTemplateResponse) => any;
529
-
530
- export declare const TagFilterSensitiveLog: (obj: Tag) => any;
531
-
532
- export declare const ListAWSDefaultServiceQuotasRequestFilterSensitiveLog: (obj: ListAWSDefaultServiceQuotasRequest) => any;
533
-
534
- export declare const ListAWSDefaultServiceQuotasResponseFilterSensitiveLog: (obj: ListAWSDefaultServiceQuotasResponse) => any;
535
-
536
- export declare const ListRequestedServiceQuotaChangeHistoryRequestFilterSensitiveLog: (obj: ListRequestedServiceQuotaChangeHistoryRequest) => any;
537
-
538
- export declare const ListRequestedServiceQuotaChangeHistoryResponseFilterSensitiveLog: (obj: ListRequestedServiceQuotaChangeHistoryResponse) => any;
539
-
540
- export declare const ListRequestedServiceQuotaChangeHistoryByQuotaRequestFilterSensitiveLog: (obj: ListRequestedServiceQuotaChangeHistoryByQuotaRequest) => any;
541
-
542
- export declare const ListRequestedServiceQuotaChangeHistoryByQuotaResponseFilterSensitiveLog: (obj: ListRequestedServiceQuotaChangeHistoryByQuotaResponse) => any;
543
-
544
- export declare const ListServiceQuotaIncreaseRequestsInTemplateRequestFilterSensitiveLog: (obj: ListServiceQuotaIncreaseRequestsInTemplateRequest) => any;
545
-
546
- export declare const ListServiceQuotaIncreaseRequestsInTemplateResponseFilterSensitiveLog: (obj: ListServiceQuotaIncreaseRequestsInTemplateResponse) => any;
547
-
548
- export declare const ListServiceQuotasRequestFilterSensitiveLog: (obj: ListServiceQuotasRequest) => any;
549
-
550
- export declare const ListServiceQuotasResponseFilterSensitiveLog: (obj: ListServiceQuotasResponse) => any;
551
-
552
- export declare const ListServicesRequestFilterSensitiveLog: (obj: ListServicesRequest) => any;
553
-
554
- export declare const ServiceInfoFilterSensitiveLog: (obj: ServiceInfo) => any;
555
-
556
- export declare const ListServicesResponseFilterSensitiveLog: (obj: ListServicesResponse) => any;
557
-
558
- export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
559
-
560
- export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
561
-
562
- export declare const PutServiceQuotaIncreaseRequestIntoTemplateRequestFilterSensitiveLog: (obj: PutServiceQuotaIncreaseRequestIntoTemplateRequest) => any;
563
-
564
- export declare const PutServiceQuotaIncreaseRequestIntoTemplateResponseFilterSensitiveLog: (obj: PutServiceQuotaIncreaseRequestIntoTemplateResponse) => any;
565
-
566
- export declare const RequestServiceQuotaIncreaseRequestFilterSensitiveLog: (obj: RequestServiceQuotaIncreaseRequest) => any;
567
-
568
- export declare const RequestServiceQuotaIncreaseResponseFilterSensitiveLog: (obj: RequestServiceQuotaIncreaseResponse) => any;
569
-
570
- export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
571
-
572
- export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
573
-
574
- export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
575
-
576
- export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { ServiceQuotasServiceException as __BaseException } from "./ServiceQuotasServiceException";
3
+ export declare class AccessDeniedException extends __BaseException {
4
+ readonly name: "AccessDeniedException";
5
+ readonly $fault: "client";
6
+ Message?: string;
7
+ constructor(
8
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
9
+ );
10
+ }
11
+ export interface AssociateServiceQuotaTemplateRequest {}
12
+ export interface AssociateServiceQuotaTemplateResponse {}
13
+ export declare class AWSServiceAccessNotEnabledException extends __BaseException {
14
+ readonly name: "AWSServiceAccessNotEnabledException";
15
+ readonly $fault: "client";
16
+ Message?: string;
17
+ constructor(
18
+ opts: __ExceptionOptionType<
19
+ AWSServiceAccessNotEnabledException,
20
+ __BaseException
21
+ >
22
+ );
23
+ }
24
+ export declare class DependencyAccessDeniedException extends __BaseException {
25
+ readonly name: "DependencyAccessDeniedException";
26
+ readonly $fault: "client";
27
+ Message?: string;
28
+ constructor(
29
+ opts: __ExceptionOptionType<
30
+ DependencyAccessDeniedException,
31
+ __BaseException
32
+ >
33
+ );
34
+ }
35
+ export declare class NoAvailableOrganizationException extends __BaseException {
36
+ readonly name: "NoAvailableOrganizationException";
37
+ readonly $fault: "client";
38
+ Message?: string;
39
+ constructor(
40
+ opts: __ExceptionOptionType<
41
+ NoAvailableOrganizationException,
42
+ __BaseException
43
+ >
44
+ );
45
+ }
46
+ export declare class OrganizationNotInAllFeaturesModeException extends __BaseException {
47
+ readonly name: "OrganizationNotInAllFeaturesModeException";
48
+ readonly $fault: "client";
49
+ Message?: string;
50
+ constructor(
51
+ opts: __ExceptionOptionType<
52
+ OrganizationNotInAllFeaturesModeException,
53
+ __BaseException
54
+ >
55
+ );
56
+ }
57
+ export declare class ServiceException extends __BaseException {
58
+ readonly name: "ServiceException";
59
+ readonly $fault: "server";
60
+ Message?: string;
61
+ constructor(opts: __ExceptionOptionType<ServiceException, __BaseException>);
62
+ }
63
+ export declare class TemplatesNotAvailableInRegionException extends __BaseException {
64
+ readonly name: "TemplatesNotAvailableInRegionException";
65
+ readonly $fault: "client";
66
+ Message?: string;
67
+ constructor(
68
+ opts: __ExceptionOptionType<
69
+ TemplatesNotAvailableInRegionException,
70
+ __BaseException
71
+ >
72
+ );
73
+ }
74
+ export declare class TooManyRequestsException extends __BaseException {
75
+ readonly name: "TooManyRequestsException";
76
+ readonly $fault: "client";
77
+ Message?: string;
78
+ constructor(
79
+ opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
80
+ );
81
+ }
82
+ export interface DeleteServiceQuotaIncreaseRequestFromTemplateRequest {
83
+ ServiceCode: string | undefined;
84
+ QuotaCode: string | undefined;
85
+ AwsRegion: string | undefined;
86
+ }
87
+ export interface DeleteServiceQuotaIncreaseRequestFromTemplateResponse {}
88
+ export declare class IllegalArgumentException extends __BaseException {
89
+ readonly name: "IllegalArgumentException";
90
+ readonly $fault: "client";
91
+ Message?: string;
92
+ constructor(
93
+ opts: __ExceptionOptionType<IllegalArgumentException, __BaseException>
94
+ );
95
+ }
96
+ export declare class NoSuchResourceException extends __BaseException {
97
+ readonly name: "NoSuchResourceException";
98
+ readonly $fault: "client";
99
+ Message?: string;
100
+ constructor(
101
+ opts: __ExceptionOptionType<NoSuchResourceException, __BaseException>
102
+ );
103
+ }
104
+ export interface DisassociateServiceQuotaTemplateRequest {}
105
+ export interface DisassociateServiceQuotaTemplateResponse {}
106
+ export declare class ServiceQuotaTemplateNotInUseException extends __BaseException {
107
+ readonly name: "ServiceQuotaTemplateNotInUseException";
108
+ readonly $fault: "client";
109
+ Message?: string;
110
+ constructor(
111
+ opts: __ExceptionOptionType<
112
+ ServiceQuotaTemplateNotInUseException,
113
+ __BaseException
114
+ >
115
+ );
116
+ }
117
+ export declare enum ErrorCode {
118
+ DEPENDENCY_ACCESS_DENIED_ERROR = "DEPENDENCY_ACCESS_DENIED_ERROR",
119
+ DEPENDENCY_SERVICE_ERROR = "DEPENDENCY_SERVICE_ERROR",
120
+ DEPENDENCY_THROTTLING_ERROR = "DEPENDENCY_THROTTLING_ERROR",
121
+ SERVICE_QUOTA_NOT_AVAILABLE_ERROR = "SERVICE_QUOTA_NOT_AVAILABLE_ERROR",
122
+ }
123
+ export interface ErrorReason {
124
+ ErrorCode?: ErrorCode | string;
125
+ ErrorMessage?: string;
126
+ }
127
+ export interface GetAssociationForServiceQuotaTemplateRequest {}
128
+ export declare enum ServiceQuotaTemplateAssociationStatus {
129
+ ASSOCIATED = "ASSOCIATED",
130
+ DISASSOCIATED = "DISASSOCIATED",
131
+ }
132
+ export interface GetAssociationForServiceQuotaTemplateResponse {
133
+ ServiceQuotaTemplateAssociationStatus?:
134
+ | ServiceQuotaTemplateAssociationStatus
135
+ | string;
136
+ }
137
+ export interface GetAWSDefaultServiceQuotaRequest {
138
+ ServiceCode: string | undefined;
139
+ QuotaCode: string | undefined;
140
+ }
141
+ export declare enum PeriodUnit {
142
+ DAY = "DAY",
143
+ HOUR = "HOUR",
144
+ MICROSECOND = "MICROSECOND",
145
+ MILLISECOND = "MILLISECOND",
146
+ MINUTE = "MINUTE",
147
+ SECOND = "SECOND",
148
+ WEEK = "WEEK",
149
+ }
150
+ export interface QuotaPeriod {
151
+ PeriodValue?: number;
152
+ PeriodUnit?: PeriodUnit | string;
153
+ }
154
+ export interface MetricInfo {
155
+ MetricNamespace?: string;
156
+ MetricName?: string;
157
+ MetricDimensions?: Record<string, string>;
158
+ MetricStatisticRecommendation?: string;
159
+ }
160
+ export interface ServiceQuota {
161
+ ServiceCode?: string;
162
+ ServiceName?: string;
163
+ QuotaArn?: string;
164
+ QuotaCode?: string;
165
+ QuotaName?: string;
166
+ Value?: number;
167
+ Unit?: string;
168
+ Adjustable?: boolean;
169
+ GlobalQuota?: boolean;
170
+ UsageMetric?: MetricInfo;
171
+ Period?: QuotaPeriod;
172
+ ErrorReason?: ErrorReason;
173
+ }
174
+ export interface GetAWSDefaultServiceQuotaResponse {
175
+ Quota?: ServiceQuota;
176
+ }
177
+ export interface GetRequestedServiceQuotaChangeRequest {
178
+ RequestId: string | undefined;
179
+ }
180
+ export declare enum RequestStatus {
181
+ APPROVED = "APPROVED",
182
+ CASE_CLOSED = "CASE_CLOSED",
183
+ CASE_OPENED = "CASE_OPENED",
184
+ DENIED = "DENIED",
185
+ PENDING = "PENDING",
186
+ }
187
+ export interface RequestedServiceQuotaChange {
188
+ Id?: string;
189
+ CaseId?: string;
190
+ ServiceCode?: string;
191
+ ServiceName?: string;
192
+ QuotaCode?: string;
193
+ QuotaName?: string;
194
+ DesiredValue?: number;
195
+ Status?: RequestStatus | string;
196
+ Created?: Date;
197
+ LastUpdated?: Date;
198
+ Requester?: string;
199
+ QuotaArn?: string;
200
+ GlobalQuota?: boolean;
201
+ Unit?: string;
202
+ }
203
+ export interface GetRequestedServiceQuotaChangeResponse {
204
+ RequestedQuota?: RequestedServiceQuotaChange;
205
+ }
206
+ export interface GetServiceQuotaRequest {
207
+ ServiceCode: string | undefined;
208
+ QuotaCode: string | undefined;
209
+ }
210
+ export interface GetServiceQuotaResponse {
211
+ Quota?: ServiceQuota;
212
+ }
213
+ export interface GetServiceQuotaIncreaseRequestFromTemplateRequest {
214
+ ServiceCode: string | undefined;
215
+ QuotaCode: string | undefined;
216
+ AwsRegion: string | undefined;
217
+ }
218
+ export interface ServiceQuotaIncreaseRequestInTemplate {
219
+ ServiceCode?: string;
220
+ ServiceName?: string;
221
+ QuotaCode?: string;
222
+ QuotaName?: string;
223
+ DesiredValue?: number;
224
+ AwsRegion?: string;
225
+ Unit?: string;
226
+ GlobalQuota?: boolean;
227
+ }
228
+ export interface GetServiceQuotaIncreaseRequestFromTemplateResponse {
229
+ ServiceQuotaIncreaseRequestInTemplate?: ServiceQuotaIncreaseRequestInTemplate;
230
+ }
231
+ export interface Tag {
232
+ Key: string | undefined;
233
+ Value: string | undefined;
234
+ }
235
+ export declare class InvalidPaginationTokenException extends __BaseException {
236
+ readonly name: "InvalidPaginationTokenException";
237
+ readonly $fault: "client";
238
+ Message?: string;
239
+ constructor(
240
+ opts: __ExceptionOptionType<
241
+ InvalidPaginationTokenException,
242
+ __BaseException
243
+ >
244
+ );
245
+ }
246
+ export declare class InvalidResourceStateException extends __BaseException {
247
+ readonly name: "InvalidResourceStateException";
248
+ readonly $fault: "client";
249
+ Message?: string;
250
+ constructor(
251
+ opts: __ExceptionOptionType<InvalidResourceStateException, __BaseException>
252
+ );
253
+ }
254
+ export interface ListAWSDefaultServiceQuotasRequest {
255
+ ServiceCode: string | undefined;
256
+ NextToken?: string;
257
+ MaxResults?: number;
258
+ }
259
+ export interface ListAWSDefaultServiceQuotasResponse {
260
+ NextToken?: string;
261
+ Quotas?: ServiceQuota[];
262
+ }
263
+ export interface ListRequestedServiceQuotaChangeHistoryRequest {
264
+ ServiceCode?: string;
265
+ Status?: RequestStatus | string;
266
+ NextToken?: string;
267
+ MaxResults?: number;
268
+ }
269
+ export interface ListRequestedServiceQuotaChangeHistoryResponse {
270
+ NextToken?: string;
271
+ RequestedQuotas?: RequestedServiceQuotaChange[];
272
+ }
273
+ export interface ListRequestedServiceQuotaChangeHistoryByQuotaRequest {
274
+ ServiceCode: string | undefined;
275
+ QuotaCode: string | undefined;
276
+ Status?: RequestStatus | string;
277
+ NextToken?: string;
278
+ MaxResults?: number;
279
+ }
280
+ export interface ListRequestedServiceQuotaChangeHistoryByQuotaResponse {
281
+ NextToken?: string;
282
+ RequestedQuotas?: RequestedServiceQuotaChange[];
283
+ }
284
+ export interface ListServiceQuotaIncreaseRequestsInTemplateRequest {
285
+ ServiceCode?: string;
286
+ AwsRegion?: string;
287
+ NextToken?: string;
288
+ MaxResults?: number;
289
+ }
290
+ export interface ListServiceQuotaIncreaseRequestsInTemplateResponse {
291
+ ServiceQuotaIncreaseRequestInTemplateList?: ServiceQuotaIncreaseRequestInTemplate[];
292
+ NextToken?: string;
293
+ }
294
+ export interface ListServiceQuotasRequest {
295
+ ServiceCode: string | undefined;
296
+ NextToken?: string;
297
+ MaxResults?: number;
298
+ }
299
+ export interface ListServiceQuotasResponse {
300
+ NextToken?: string;
301
+ Quotas?: ServiceQuota[];
302
+ }
303
+ export interface ListServicesRequest {
304
+ NextToken?: string;
305
+ MaxResults?: number;
306
+ }
307
+ export interface ServiceInfo {
308
+ ServiceCode?: string;
309
+ ServiceName?: string;
310
+ }
311
+ export interface ListServicesResponse {
312
+ NextToken?: string;
313
+ Services?: ServiceInfo[];
314
+ }
315
+ export interface ListTagsForResourceRequest {
316
+ ResourceARN: string | undefined;
317
+ }
318
+ export interface ListTagsForResourceResponse {
319
+ Tags?: Tag[];
320
+ }
321
+ export interface PutServiceQuotaIncreaseRequestIntoTemplateRequest {
322
+ QuotaCode: string | undefined;
323
+ ServiceCode: string | undefined;
324
+ AwsRegion: string | undefined;
325
+ DesiredValue: number | undefined;
326
+ }
327
+ export interface PutServiceQuotaIncreaseRequestIntoTemplateResponse {
328
+ ServiceQuotaIncreaseRequestInTemplate?: ServiceQuotaIncreaseRequestInTemplate;
329
+ }
330
+ export declare class QuotaExceededException extends __BaseException {
331
+ readonly name: "QuotaExceededException";
332
+ readonly $fault: "client";
333
+ Message?: string;
334
+ constructor(
335
+ opts: __ExceptionOptionType<QuotaExceededException, __BaseException>
336
+ );
337
+ }
338
+ export interface RequestServiceQuotaIncreaseRequest {
339
+ ServiceCode: string | undefined;
340
+ QuotaCode: string | undefined;
341
+ DesiredValue: number | undefined;
342
+ }
343
+ export interface RequestServiceQuotaIncreaseResponse {
344
+ RequestedQuota?: RequestedServiceQuotaChange;
345
+ }
346
+ export declare class ResourceAlreadyExistsException extends __BaseException {
347
+ readonly name: "ResourceAlreadyExistsException";
348
+ readonly $fault: "client";
349
+ Message?: string;
350
+ constructor(
351
+ opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>
352
+ );
353
+ }
354
+ export declare class TagPolicyViolationException extends __BaseException {
355
+ readonly name: "TagPolicyViolationException";
356
+ readonly $fault: "client";
357
+ Message?: string;
358
+ constructor(
359
+ opts: __ExceptionOptionType<TagPolicyViolationException, __BaseException>
360
+ );
361
+ }
362
+ export interface TagResourceRequest {
363
+ ResourceARN: string | undefined;
364
+ Tags: Tag[] | undefined;
365
+ }
366
+ export interface TagResourceResponse {}
367
+ export declare class TooManyTagsException extends __BaseException {
368
+ readonly name: "TooManyTagsException";
369
+ readonly $fault: "client";
370
+ Message?: string;
371
+ constructor(
372
+ opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
373
+ );
374
+ }
375
+ export interface UntagResourceRequest {
376
+ ResourceARN: string | undefined;
377
+ TagKeys: string[] | undefined;
378
+ }
379
+ export interface UntagResourceResponse {}
380
+ export declare const AssociateServiceQuotaTemplateRequestFilterSensitiveLog: (
381
+ obj: AssociateServiceQuotaTemplateRequest
382
+ ) => any;
383
+ export declare const AssociateServiceQuotaTemplateResponseFilterSensitiveLog: (
384
+ obj: AssociateServiceQuotaTemplateResponse
385
+ ) => any;
386
+ export declare const DeleteServiceQuotaIncreaseRequestFromTemplateRequestFilterSensitiveLog: (
387
+ obj: DeleteServiceQuotaIncreaseRequestFromTemplateRequest
388
+ ) => any;
389
+ export declare const DeleteServiceQuotaIncreaseRequestFromTemplateResponseFilterSensitiveLog: (
390
+ obj: DeleteServiceQuotaIncreaseRequestFromTemplateResponse
391
+ ) => any;
392
+ export declare const DisassociateServiceQuotaTemplateRequestFilterSensitiveLog: (
393
+ obj: DisassociateServiceQuotaTemplateRequest
394
+ ) => any;
395
+ export declare const DisassociateServiceQuotaTemplateResponseFilterSensitiveLog: (
396
+ obj: DisassociateServiceQuotaTemplateResponse
397
+ ) => any;
398
+ export declare const ErrorReasonFilterSensitiveLog: (obj: ErrorReason) => any;
399
+ export declare const GetAssociationForServiceQuotaTemplateRequestFilterSensitiveLog: (
400
+ obj: GetAssociationForServiceQuotaTemplateRequest
401
+ ) => any;
402
+ export declare const GetAssociationForServiceQuotaTemplateResponseFilterSensitiveLog: (
403
+ obj: GetAssociationForServiceQuotaTemplateResponse
404
+ ) => any;
405
+ export declare const GetAWSDefaultServiceQuotaRequestFilterSensitiveLog: (
406
+ obj: GetAWSDefaultServiceQuotaRequest
407
+ ) => any;
408
+ export declare const QuotaPeriodFilterSensitiveLog: (obj: QuotaPeriod) => any;
409
+ export declare const MetricInfoFilterSensitiveLog: (obj: MetricInfo) => any;
410
+ export declare const ServiceQuotaFilterSensitiveLog: (obj: ServiceQuota) => any;
411
+ export declare const GetAWSDefaultServiceQuotaResponseFilterSensitiveLog: (
412
+ obj: GetAWSDefaultServiceQuotaResponse
413
+ ) => any;
414
+ export declare const GetRequestedServiceQuotaChangeRequestFilterSensitiveLog: (
415
+ obj: GetRequestedServiceQuotaChangeRequest
416
+ ) => any;
417
+ export declare const RequestedServiceQuotaChangeFilterSensitiveLog: (
418
+ obj: RequestedServiceQuotaChange
419
+ ) => any;
420
+ export declare const GetRequestedServiceQuotaChangeResponseFilterSensitiveLog: (
421
+ obj: GetRequestedServiceQuotaChangeResponse
422
+ ) => any;
423
+ export declare const GetServiceQuotaRequestFilterSensitiveLog: (
424
+ obj: GetServiceQuotaRequest
425
+ ) => any;
426
+ export declare const GetServiceQuotaResponseFilterSensitiveLog: (
427
+ obj: GetServiceQuotaResponse
428
+ ) => any;
429
+ export declare const GetServiceQuotaIncreaseRequestFromTemplateRequestFilterSensitiveLog: (
430
+ obj: GetServiceQuotaIncreaseRequestFromTemplateRequest
431
+ ) => any;
432
+ export declare const ServiceQuotaIncreaseRequestInTemplateFilterSensitiveLog: (
433
+ obj: ServiceQuotaIncreaseRequestInTemplate
434
+ ) => any;
435
+ export declare const GetServiceQuotaIncreaseRequestFromTemplateResponseFilterSensitiveLog: (
436
+ obj: GetServiceQuotaIncreaseRequestFromTemplateResponse
437
+ ) => any;
438
+ export declare const TagFilterSensitiveLog: (obj: Tag) => any;
439
+ export declare const ListAWSDefaultServiceQuotasRequestFilterSensitiveLog: (
440
+ obj: ListAWSDefaultServiceQuotasRequest
441
+ ) => any;
442
+ export declare const ListAWSDefaultServiceQuotasResponseFilterSensitiveLog: (
443
+ obj: ListAWSDefaultServiceQuotasResponse
444
+ ) => any;
445
+ export declare const ListRequestedServiceQuotaChangeHistoryRequestFilterSensitiveLog: (
446
+ obj: ListRequestedServiceQuotaChangeHistoryRequest
447
+ ) => any;
448
+ export declare const ListRequestedServiceQuotaChangeHistoryResponseFilterSensitiveLog: (
449
+ obj: ListRequestedServiceQuotaChangeHistoryResponse
450
+ ) => any;
451
+ export declare const ListRequestedServiceQuotaChangeHistoryByQuotaRequestFilterSensitiveLog: (
452
+ obj: ListRequestedServiceQuotaChangeHistoryByQuotaRequest
453
+ ) => any;
454
+ export declare const ListRequestedServiceQuotaChangeHistoryByQuotaResponseFilterSensitiveLog: (
455
+ obj: ListRequestedServiceQuotaChangeHistoryByQuotaResponse
456
+ ) => any;
457
+ export declare const ListServiceQuotaIncreaseRequestsInTemplateRequestFilterSensitiveLog: (
458
+ obj: ListServiceQuotaIncreaseRequestsInTemplateRequest
459
+ ) => any;
460
+ export declare const ListServiceQuotaIncreaseRequestsInTemplateResponseFilterSensitiveLog: (
461
+ obj: ListServiceQuotaIncreaseRequestsInTemplateResponse
462
+ ) => any;
463
+ export declare const ListServiceQuotasRequestFilterSensitiveLog: (
464
+ obj: ListServiceQuotasRequest
465
+ ) => any;
466
+ export declare const ListServiceQuotasResponseFilterSensitiveLog: (
467
+ obj: ListServiceQuotasResponse
468
+ ) => any;
469
+ export declare const ListServicesRequestFilterSensitiveLog: (
470
+ obj: ListServicesRequest
471
+ ) => any;
472
+ export declare const ServiceInfoFilterSensitiveLog: (obj: ServiceInfo) => any;
473
+ export declare const ListServicesResponseFilterSensitiveLog: (
474
+ obj: ListServicesResponse
475
+ ) => any;
476
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (
477
+ obj: ListTagsForResourceRequest
478
+ ) => any;
479
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (
480
+ obj: ListTagsForResourceResponse
481
+ ) => any;
482
+ export declare const PutServiceQuotaIncreaseRequestIntoTemplateRequestFilterSensitiveLog: (
483
+ obj: PutServiceQuotaIncreaseRequestIntoTemplateRequest
484
+ ) => any;
485
+ export declare const PutServiceQuotaIncreaseRequestIntoTemplateResponseFilterSensitiveLog: (
486
+ obj: PutServiceQuotaIncreaseRequestIntoTemplateResponse
487
+ ) => any;
488
+ export declare const RequestServiceQuotaIncreaseRequestFilterSensitiveLog: (
489
+ obj: RequestServiceQuotaIncreaseRequest
490
+ ) => any;
491
+ export declare const RequestServiceQuotaIncreaseResponseFilterSensitiveLog: (
492
+ obj: RequestServiceQuotaIncreaseResponse
493
+ ) => any;
494
+ export declare const TagResourceRequestFilterSensitiveLog: (
495
+ obj: TagResourceRequest
496
+ ) => any;
497
+ export declare const TagResourceResponseFilterSensitiveLog: (
498
+ obj: TagResourceResponse
499
+ ) => any;
500
+ export declare const UntagResourceRequestFilterSensitiveLog: (
501
+ obj: UntagResourceRequest
502
+ ) => any;
503
+ export declare const UntagResourceResponseFilterSensitiveLog: (
504
+ obj: UntagResourceResponse
505
+ ) => any;