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