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