@aws-sdk/client-service-quotas 3.901.0 → 3.906.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 (36) hide show
  1. package/README.md +32 -0
  2. package/dist-cjs/endpoint/ruleset.js +1 -1
  3. package/dist-cjs/index.js +1704 -1740
  4. package/dist-es/ServiceQuotas.js +8 -0
  5. package/dist-es/commands/GetAutoManagementConfigurationCommand.js +22 -0
  6. package/dist-es/commands/StartAutoManagementCommand.js +22 -0
  7. package/dist-es/commands/StopAutoManagementCommand.js +22 -0
  8. package/dist-es/commands/UpdateAutoManagementCommand.js +22 -0
  9. package/dist-es/commands/index.js +4 -0
  10. package/dist-es/endpoint/ruleset.js +1 -1
  11. package/dist-es/models/models_0.js +11 -0
  12. package/dist-es/protocols/Aws_json1_1.js +76 -0
  13. package/dist-types/ServiceQuotas.d.ts +31 -0
  14. package/dist-types/ServiceQuotasClient.d.ts +6 -2
  15. package/dist-types/commands/GetAutoManagementConfigurationCommand.d.ts +100 -0
  16. package/dist-types/commands/GetServiceQuotaCommand.d.ts +3 -3
  17. package/dist-types/commands/ListRequestedServiceQuotaChangeHistoryByQuotaCommand.d.ts +2 -2
  18. package/dist-types/commands/ListRequestedServiceQuotaChangeHistoryCommand.d.ts +3 -2
  19. package/dist-types/commands/ListServiceQuotasCommand.d.ts +2 -2
  20. package/dist-types/commands/RequestServiceQuotaIncreaseCommand.d.ts +2 -1
  21. package/dist-types/commands/StartAutoManagementCommand.d.ts +97 -0
  22. package/dist-types/commands/StopAutoManagementCommand.d.ts +88 -0
  23. package/dist-types/commands/UpdateAutoManagementCommand.d.ts +96 -0
  24. package/dist-types/commands/index.d.ts +4 -0
  25. package/dist-types/models/models_0.d.ts +167 -1
  26. package/dist-types/protocols/Aws_json1_1.d.ts +36 -0
  27. package/dist-types/ts3.4/ServiceQuotas.d.ts +71 -0
  28. package/dist-types/ts3.4/ServiceQuotasClient.d.ts +26 -2
  29. package/dist-types/ts3.4/commands/GetAutoManagementConfigurationCommand.d.ts +51 -0
  30. package/dist-types/ts3.4/commands/StartAutoManagementCommand.d.ts +51 -0
  31. package/dist-types/ts3.4/commands/StopAutoManagementCommand.d.ts +51 -0
  32. package/dist-types/ts3.4/commands/UpdateAutoManagementCommand.d.ts +51 -0
  33. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  34. package/dist-types/ts3.4/models/models_0.d.ts +41 -0
  35. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +48 -0
  36. package/package.json +5 -5
@@ -19,6 +19,10 @@ import {
19
19
  GetAssociationForServiceQuotaTemplateCommandInput,
20
20
  GetAssociationForServiceQuotaTemplateCommandOutput,
21
21
  } from "./commands/GetAssociationForServiceQuotaTemplateCommand";
22
+ import {
23
+ GetAutoManagementConfigurationCommandInput,
24
+ GetAutoManagementConfigurationCommandOutput,
25
+ } from "./commands/GetAutoManagementConfigurationCommand";
22
26
  import {
23
27
  GetAWSDefaultServiceQuotaCommandInput,
24
28
  GetAWSDefaultServiceQuotaCommandOutput,
@@ -71,6 +75,14 @@ import {
71
75
  RequestServiceQuotaIncreaseCommandInput,
72
76
  RequestServiceQuotaIncreaseCommandOutput,
73
77
  } from "./commands/RequestServiceQuotaIncreaseCommand";
78
+ import {
79
+ StartAutoManagementCommandInput,
80
+ StartAutoManagementCommandOutput,
81
+ } from "./commands/StartAutoManagementCommand";
82
+ import {
83
+ StopAutoManagementCommandInput,
84
+ StopAutoManagementCommandOutput,
85
+ } from "./commands/StopAutoManagementCommand";
74
86
  import {
75
87
  TagResourceCommandInput,
76
88
  TagResourceCommandOutput,
@@ -79,6 +91,10 @@ import {
79
91
  UntagResourceCommandInput,
80
92
  UntagResourceCommandOutput,
81
93
  } from "./commands/UntagResourceCommand";
94
+ import {
95
+ UpdateAutoManagementCommandInput,
96
+ UpdateAutoManagementCommandOutput,
97
+ } from "./commands/UpdateAutoManagementCommand";
82
98
  import { ServiceQuotasClient } from "./ServiceQuotasClient";
83
99
  export interface ServiceQuotas {
84
100
  associateServiceQuotaTemplate(): Promise<AssociateServiceQuotaTemplateCommandOutput>;
@@ -161,6 +177,20 @@ export interface ServiceQuotas {
161
177
  data?: GetAssociationForServiceQuotaTemplateCommandOutput
162
178
  ) => void
163
179
  ): void;
180
+ getAutoManagementConfiguration(): Promise<GetAutoManagementConfigurationCommandOutput>;
181
+ getAutoManagementConfiguration(
182
+ args: GetAutoManagementConfigurationCommandInput,
183
+ options?: __HttpHandlerOptions
184
+ ): Promise<GetAutoManagementConfigurationCommandOutput>;
185
+ getAutoManagementConfiguration(
186
+ args: GetAutoManagementConfigurationCommandInput,
187
+ cb: (err: any, data?: GetAutoManagementConfigurationCommandOutput) => void
188
+ ): void;
189
+ getAutoManagementConfiguration(
190
+ args: GetAutoManagementConfigurationCommandInput,
191
+ options: __HttpHandlerOptions,
192
+ cb: (err: any, data?: GetAutoManagementConfigurationCommandOutput) => void
193
+ ): void;
164
194
  getAWSDefaultServiceQuota(
165
195
  args: GetAWSDefaultServiceQuotaCommandInput,
166
196
  options?: __HttpHandlerOptions
@@ -363,6 +393,33 @@ export interface ServiceQuotas {
363
393
  options: __HttpHandlerOptions,
364
394
  cb: (err: any, data?: RequestServiceQuotaIncreaseCommandOutput) => void
365
395
  ): void;
396
+ startAutoManagement(
397
+ args: StartAutoManagementCommandInput,
398
+ options?: __HttpHandlerOptions
399
+ ): Promise<StartAutoManagementCommandOutput>;
400
+ startAutoManagement(
401
+ args: StartAutoManagementCommandInput,
402
+ cb: (err: any, data?: StartAutoManagementCommandOutput) => void
403
+ ): void;
404
+ startAutoManagement(
405
+ args: StartAutoManagementCommandInput,
406
+ options: __HttpHandlerOptions,
407
+ cb: (err: any, data?: StartAutoManagementCommandOutput) => void
408
+ ): void;
409
+ stopAutoManagement(): Promise<StopAutoManagementCommandOutput>;
410
+ stopAutoManagement(
411
+ args: StopAutoManagementCommandInput,
412
+ options?: __HttpHandlerOptions
413
+ ): Promise<StopAutoManagementCommandOutput>;
414
+ stopAutoManagement(
415
+ args: StopAutoManagementCommandInput,
416
+ cb: (err: any, data?: StopAutoManagementCommandOutput) => void
417
+ ): void;
418
+ stopAutoManagement(
419
+ args: StopAutoManagementCommandInput,
420
+ options: __HttpHandlerOptions,
421
+ cb: (err: any, data?: StopAutoManagementCommandOutput) => void
422
+ ): void;
366
423
  tagResource(
367
424
  args: TagResourceCommandInput,
368
425
  options?: __HttpHandlerOptions
@@ -389,6 +446,20 @@ export interface ServiceQuotas {
389
446
  options: __HttpHandlerOptions,
390
447
  cb: (err: any, data?: UntagResourceCommandOutput) => void
391
448
  ): void;
449
+ updateAutoManagement(): Promise<UpdateAutoManagementCommandOutput>;
450
+ updateAutoManagement(
451
+ args: UpdateAutoManagementCommandInput,
452
+ options?: __HttpHandlerOptions
453
+ ): Promise<UpdateAutoManagementCommandOutput>;
454
+ updateAutoManagement(
455
+ args: UpdateAutoManagementCommandInput,
456
+ cb: (err: any, data?: UpdateAutoManagementCommandOutput) => void
457
+ ): void;
458
+ updateAutoManagement(
459
+ args: UpdateAutoManagementCommandInput,
460
+ options: __HttpHandlerOptions,
461
+ cb: (err: any, data?: UpdateAutoManagementCommandOutput) => void
462
+ ): void;
392
463
  }
393
464
  export declare class ServiceQuotas
394
465
  extends ServiceQuotasClient
@@ -65,6 +65,10 @@ import {
65
65
  GetAssociationForServiceQuotaTemplateCommandInput,
66
66
  GetAssociationForServiceQuotaTemplateCommandOutput,
67
67
  } from "./commands/GetAssociationForServiceQuotaTemplateCommand";
68
+ import {
69
+ GetAutoManagementConfigurationCommandInput,
70
+ GetAutoManagementConfigurationCommandOutput,
71
+ } from "./commands/GetAutoManagementConfigurationCommand";
68
72
  import {
69
73
  GetAWSDefaultServiceQuotaCommandInput,
70
74
  GetAWSDefaultServiceQuotaCommandOutput,
@@ -117,6 +121,14 @@ import {
117
121
  RequestServiceQuotaIncreaseCommandInput,
118
122
  RequestServiceQuotaIncreaseCommandOutput,
119
123
  } from "./commands/RequestServiceQuotaIncreaseCommand";
124
+ import {
125
+ StartAutoManagementCommandInput,
126
+ StartAutoManagementCommandOutput,
127
+ } from "./commands/StartAutoManagementCommand";
128
+ import {
129
+ StopAutoManagementCommandInput,
130
+ StopAutoManagementCommandOutput,
131
+ } from "./commands/StopAutoManagementCommand";
120
132
  import {
121
133
  TagResourceCommandInput,
122
134
  TagResourceCommandOutput,
@@ -125,6 +137,10 @@ import {
125
137
  UntagResourceCommandInput,
126
138
  UntagResourceCommandOutput,
127
139
  } from "./commands/UntagResourceCommand";
140
+ import {
141
+ UpdateAutoManagementCommandInput,
142
+ UpdateAutoManagementCommandOutput,
143
+ } from "./commands/UpdateAutoManagementCommand";
128
144
  import {
129
145
  ClientInputEndpointParameters,
130
146
  ClientResolvedEndpointParameters,
@@ -139,6 +155,7 @@ export type ServiceInputTypes =
139
155
  | DisassociateServiceQuotaTemplateCommandInput
140
156
  | GetAWSDefaultServiceQuotaCommandInput
141
157
  | GetAssociationForServiceQuotaTemplateCommandInput
158
+ | GetAutoManagementConfigurationCommandInput
142
159
  | GetRequestedServiceQuotaChangeCommandInput
143
160
  | GetServiceQuotaCommandInput
144
161
  | GetServiceQuotaIncreaseRequestFromTemplateCommandInput
@@ -151,8 +168,11 @@ export type ServiceInputTypes =
151
168
  | ListTagsForResourceCommandInput
152
169
  | PutServiceQuotaIncreaseRequestIntoTemplateCommandInput
153
170
  | RequestServiceQuotaIncreaseCommandInput
171
+ | StartAutoManagementCommandInput
172
+ | StopAutoManagementCommandInput
154
173
  | TagResourceCommandInput
155
- | UntagResourceCommandInput;
174
+ | UntagResourceCommandInput
175
+ | UpdateAutoManagementCommandInput;
156
176
  export type ServiceOutputTypes =
157
177
  | AssociateServiceQuotaTemplateCommandOutput
158
178
  | CreateSupportCaseCommandOutput
@@ -160,6 +180,7 @@ export type ServiceOutputTypes =
160
180
  | DisassociateServiceQuotaTemplateCommandOutput
161
181
  | GetAWSDefaultServiceQuotaCommandOutput
162
182
  | GetAssociationForServiceQuotaTemplateCommandOutput
183
+ | GetAutoManagementConfigurationCommandOutput
163
184
  | GetRequestedServiceQuotaChangeCommandOutput
164
185
  | GetServiceQuotaCommandOutput
165
186
  | GetServiceQuotaIncreaseRequestFromTemplateCommandOutput
@@ -172,8 +193,11 @@ export type ServiceOutputTypes =
172
193
  | ListTagsForResourceCommandOutput
173
194
  | PutServiceQuotaIncreaseRequestIntoTemplateCommandOutput
174
195
  | RequestServiceQuotaIncreaseCommandOutput
196
+ | StartAutoManagementCommandOutput
197
+ | StopAutoManagementCommandOutput
175
198
  | TagResourceCommandOutput
176
- | UntagResourceCommandOutput;
199
+ | UntagResourceCommandOutput
200
+ | UpdateAutoManagementCommandOutput;
177
201
  export interface ClientDefaults
178
202
  extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
179
203
  requestHandler?: __HttpHandlerUserInput;
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ GetAutoManagementConfigurationRequest,
5
+ GetAutoManagementConfigurationResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ ServiceInputTypes,
9
+ ServiceOutputTypes,
10
+ ServiceQuotasClientResolvedConfig,
11
+ } from "../ServiceQuotasClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetAutoManagementConfigurationCommandInput
15
+ extends GetAutoManagementConfigurationRequest {}
16
+ export interface GetAutoManagementConfigurationCommandOutput
17
+ extends GetAutoManagementConfigurationResponse,
18
+ __MetadataBearer {}
19
+ declare const GetAutoManagementConfigurationCommand_base: {
20
+ new (
21
+ input: GetAutoManagementConfigurationCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetAutoManagementConfigurationCommandInput,
24
+ GetAutoManagementConfigurationCommandOutput,
25
+ ServiceQuotasClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: [] | [GetAutoManagementConfigurationCommandInput]
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetAutoManagementConfigurationCommandInput,
33
+ GetAutoManagementConfigurationCommandOutput,
34
+ ServiceQuotasClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetAutoManagementConfigurationCommand extends GetAutoManagementConfigurationCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: {};
44
+ output: GetAutoManagementConfigurationResponse;
45
+ };
46
+ sdk: {
47
+ input: GetAutoManagementConfigurationCommandInput;
48
+ output: GetAutoManagementConfigurationCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ StartAutoManagementRequest,
5
+ StartAutoManagementResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ ServiceInputTypes,
9
+ ServiceOutputTypes,
10
+ ServiceQuotasClientResolvedConfig,
11
+ } from "../ServiceQuotasClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface StartAutoManagementCommandInput
15
+ extends StartAutoManagementRequest {}
16
+ export interface StartAutoManagementCommandOutput
17
+ extends StartAutoManagementResponse,
18
+ __MetadataBearer {}
19
+ declare const StartAutoManagementCommand_base: {
20
+ new (
21
+ input: StartAutoManagementCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ StartAutoManagementCommandInput,
24
+ StartAutoManagementCommandOutput,
25
+ ServiceQuotasClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: StartAutoManagementCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ StartAutoManagementCommandInput,
33
+ StartAutoManagementCommandOutput,
34
+ ServiceQuotasClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class StartAutoManagementCommand extends StartAutoManagementCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: StartAutoManagementRequest;
44
+ output: {};
45
+ };
46
+ sdk: {
47
+ input: StartAutoManagementCommandInput;
48
+ output: StartAutoManagementCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ StopAutoManagementRequest,
5
+ StopAutoManagementResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ ServiceInputTypes,
9
+ ServiceOutputTypes,
10
+ ServiceQuotasClientResolvedConfig,
11
+ } from "../ServiceQuotasClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface StopAutoManagementCommandInput
15
+ extends StopAutoManagementRequest {}
16
+ export interface StopAutoManagementCommandOutput
17
+ extends StopAutoManagementResponse,
18
+ __MetadataBearer {}
19
+ declare const StopAutoManagementCommand_base: {
20
+ new (
21
+ input: StopAutoManagementCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ StopAutoManagementCommandInput,
24
+ StopAutoManagementCommandOutput,
25
+ ServiceQuotasClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: [] | [StopAutoManagementCommandInput]
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ StopAutoManagementCommandInput,
33
+ StopAutoManagementCommandOutput,
34
+ ServiceQuotasClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class StopAutoManagementCommand extends StopAutoManagementCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: {};
44
+ output: {};
45
+ };
46
+ sdk: {
47
+ input: StopAutoManagementCommandInput;
48
+ output: StopAutoManagementCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ UpdateAutoManagementRequest,
5
+ UpdateAutoManagementResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ ServiceInputTypes,
9
+ ServiceOutputTypes,
10
+ ServiceQuotasClientResolvedConfig,
11
+ } from "../ServiceQuotasClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface UpdateAutoManagementCommandInput
15
+ extends UpdateAutoManagementRequest {}
16
+ export interface UpdateAutoManagementCommandOutput
17
+ extends UpdateAutoManagementResponse,
18
+ __MetadataBearer {}
19
+ declare const UpdateAutoManagementCommand_base: {
20
+ new (
21
+ input: UpdateAutoManagementCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ UpdateAutoManagementCommandInput,
24
+ UpdateAutoManagementCommandOutput,
25
+ ServiceQuotasClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: [] | [UpdateAutoManagementCommandInput]
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ UpdateAutoManagementCommandInput,
33
+ UpdateAutoManagementCommandOutput,
34
+ ServiceQuotasClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class UpdateAutoManagementCommand extends UpdateAutoManagementCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: UpdateAutoManagementRequest;
44
+ output: {};
45
+ };
46
+ sdk: {
47
+ input: UpdateAutoManagementCommandInput;
48
+ output: UpdateAutoManagementCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -4,6 +4,7 @@ export * from "./DeleteServiceQuotaIncreaseRequestFromTemplateCommand";
4
4
  export * from "./DisassociateServiceQuotaTemplateCommand";
5
5
  export * from "./GetAWSDefaultServiceQuotaCommand";
6
6
  export * from "./GetAssociationForServiceQuotaTemplateCommand";
7
+ export * from "./GetAutoManagementConfigurationCommand";
7
8
  export * from "./GetRequestedServiceQuotaChangeCommand";
8
9
  export * from "./GetServiceQuotaCommand";
9
10
  export * from "./GetServiceQuotaIncreaseRequestFromTemplateCommand";
@@ -16,5 +17,8 @@ export * from "./ListServicesCommand";
16
17
  export * from "./ListTagsForResourceCommand";
17
18
  export * from "./PutServiceQuotaIncreaseRequestIntoTemplateCommand";
18
19
  export * from "./RequestServiceQuotaIncreaseCommand";
20
+ export * from "./StartAutoManagementCommand";
21
+ export * from "./StopAutoManagementCommand";
19
22
  export * from "./TagResourceCommand";
20
23
  export * from "./UntagResourceCommand";
24
+ export * from "./UpdateAutoManagementCommand";
@@ -152,6 +152,10 @@ export interface ErrorReason {
152
152
  ErrorCode?: ErrorCode | undefined;
153
153
  ErrorMessage?: string | undefined;
154
154
  }
155
+ export interface QuotaInfo {
156
+ QuotaCode?: string | undefined;
157
+ QuotaName?: string | undefined;
158
+ }
155
159
  export interface GetAssociationForServiceQuotaTemplateRequest {}
156
160
  export declare const ServiceQuotaTemplateAssociationStatus: {
157
161
  readonly ASSOCIATED: "ASSOCIATED";
@@ -164,6 +168,28 @@ export interface GetAssociationForServiceQuotaTemplateResponse {
164
168
  | ServiceQuotaTemplateAssociationStatus
165
169
  | undefined;
166
170
  }
171
+ export interface GetAutoManagementConfigurationRequest {}
172
+ export declare const OptInLevel: {
173
+ readonly ACCOUNT: "ACCOUNT";
174
+ };
175
+ export type OptInLevel = (typeof OptInLevel)[keyof typeof OptInLevel];
176
+ export declare const OptInStatus: {
177
+ readonly DISABLED: "DISABLED";
178
+ readonly ENABLED: "ENABLED";
179
+ };
180
+ export type OptInStatus = (typeof OptInStatus)[keyof typeof OptInStatus];
181
+ export declare const OptInType: {
182
+ readonly NotifyAndAdjust: "NotifyAndAdjust";
183
+ readonly NotifyOnly: "NotifyOnly";
184
+ };
185
+ export type OptInType = (typeof OptInType)[keyof typeof OptInType];
186
+ export interface GetAutoManagementConfigurationResponse {
187
+ OptInLevel?: OptInLevel | undefined;
188
+ OptInType?: OptInType | undefined;
189
+ NotificationArn?: string | undefined;
190
+ OptInStatus?: OptInStatus | undefined;
191
+ ExclusionList?: Record<string, QuotaInfo[]> | undefined;
192
+ }
167
193
  export interface GetAWSDefaultServiceQuotaRequest {
168
194
  ServiceCode: string | undefined;
169
195
  QuotaCode: string | undefined;
@@ -398,6 +424,15 @@ export interface RequestServiceQuotaIncreaseRequest {
398
424
  export interface RequestServiceQuotaIncreaseResponse {
399
425
  RequestedQuota?: RequestedServiceQuotaChange | undefined;
400
426
  }
427
+ export interface StartAutoManagementRequest {
428
+ OptInLevel: OptInLevel | undefined;
429
+ OptInType: OptInType | undefined;
430
+ NotificationArn?: string | undefined;
431
+ ExclusionList?: Record<string, string[]> | undefined;
432
+ }
433
+ export interface StartAutoManagementResponse {}
434
+ export interface StopAutoManagementRequest {}
435
+ export interface StopAutoManagementResponse {}
401
436
  export declare class TagPolicyViolationException extends __BaseException {
402
437
  readonly name: "TagPolicyViolationException";
403
438
  readonly $fault: "client";
@@ -424,3 +459,9 @@ export interface UntagResourceRequest {
424
459
  TagKeys: string[] | undefined;
425
460
  }
426
461
  export interface UntagResourceResponse {}
462
+ export interface UpdateAutoManagementRequest {
463
+ OptInType?: OptInType | undefined;
464
+ NotificationArn?: string | undefined;
465
+ ExclusionList?: Record<string, string[]> | undefined;
466
+ }
467
+ export interface UpdateAutoManagementResponse {}
@@ -23,6 +23,10 @@ import {
23
23
  GetAssociationForServiceQuotaTemplateCommandInput,
24
24
  GetAssociationForServiceQuotaTemplateCommandOutput,
25
25
  } from "../commands/GetAssociationForServiceQuotaTemplateCommand";
26
+ import {
27
+ GetAutoManagementConfigurationCommandInput,
28
+ GetAutoManagementConfigurationCommandOutput,
29
+ } from "../commands/GetAutoManagementConfigurationCommand";
26
30
  import {
27
31
  GetAWSDefaultServiceQuotaCommandInput,
28
32
  GetAWSDefaultServiceQuotaCommandOutput,
@@ -75,6 +79,14 @@ import {
75
79
  RequestServiceQuotaIncreaseCommandInput,
76
80
  RequestServiceQuotaIncreaseCommandOutput,
77
81
  } from "../commands/RequestServiceQuotaIncreaseCommand";
82
+ import {
83
+ StartAutoManagementCommandInput,
84
+ StartAutoManagementCommandOutput,
85
+ } from "../commands/StartAutoManagementCommand";
86
+ import {
87
+ StopAutoManagementCommandInput,
88
+ StopAutoManagementCommandOutput,
89
+ } from "../commands/StopAutoManagementCommand";
78
90
  import {
79
91
  TagResourceCommandInput,
80
92
  TagResourceCommandOutput,
@@ -83,6 +95,10 @@ import {
83
95
  UntagResourceCommandInput,
84
96
  UntagResourceCommandOutput,
85
97
  } from "../commands/UntagResourceCommand";
98
+ import {
99
+ UpdateAutoManagementCommandInput,
100
+ UpdateAutoManagementCommandOutput,
101
+ } from "../commands/UpdateAutoManagementCommand";
86
102
  export declare const se_AssociateServiceQuotaTemplateCommand: (
87
103
  input: AssociateServiceQuotaTemplateCommandInput,
88
104
  context: __SerdeContext
@@ -103,6 +119,10 @@ export declare const se_GetAssociationForServiceQuotaTemplateCommand: (
103
119
  input: GetAssociationForServiceQuotaTemplateCommandInput,
104
120
  context: __SerdeContext
105
121
  ) => Promise<__HttpRequest>;
122
+ export declare const se_GetAutoManagementConfigurationCommand: (
123
+ input: GetAutoManagementConfigurationCommandInput,
124
+ context: __SerdeContext
125
+ ) => Promise<__HttpRequest>;
106
126
  export declare const se_GetAWSDefaultServiceQuotaCommand: (
107
127
  input: GetAWSDefaultServiceQuotaCommandInput,
108
128
  context: __SerdeContext
@@ -155,6 +175,14 @@ export declare const se_RequestServiceQuotaIncreaseCommand: (
155
175
  input: RequestServiceQuotaIncreaseCommandInput,
156
176
  context: __SerdeContext
157
177
  ) => Promise<__HttpRequest>;
178
+ export declare const se_StartAutoManagementCommand: (
179
+ input: StartAutoManagementCommandInput,
180
+ context: __SerdeContext
181
+ ) => Promise<__HttpRequest>;
182
+ export declare const se_StopAutoManagementCommand: (
183
+ input: StopAutoManagementCommandInput,
184
+ context: __SerdeContext
185
+ ) => Promise<__HttpRequest>;
158
186
  export declare const se_TagResourceCommand: (
159
187
  input: TagResourceCommandInput,
160
188
  context: __SerdeContext
@@ -163,6 +191,10 @@ export declare const se_UntagResourceCommand: (
163
191
  input: UntagResourceCommandInput,
164
192
  context: __SerdeContext
165
193
  ) => Promise<__HttpRequest>;
194
+ export declare const se_UpdateAutoManagementCommand: (
195
+ input: UpdateAutoManagementCommandInput,
196
+ context: __SerdeContext
197
+ ) => Promise<__HttpRequest>;
166
198
  export declare const de_AssociateServiceQuotaTemplateCommand: (
167
199
  output: __HttpResponse,
168
200
  context: __SerdeContext
@@ -183,6 +215,10 @@ export declare const de_GetAssociationForServiceQuotaTemplateCommand: (
183
215
  output: __HttpResponse,
184
216
  context: __SerdeContext
185
217
  ) => Promise<GetAssociationForServiceQuotaTemplateCommandOutput>;
218
+ export declare const de_GetAutoManagementConfigurationCommand: (
219
+ output: __HttpResponse,
220
+ context: __SerdeContext
221
+ ) => Promise<GetAutoManagementConfigurationCommandOutput>;
186
222
  export declare const de_GetAWSDefaultServiceQuotaCommand: (
187
223
  output: __HttpResponse,
188
224
  context: __SerdeContext
@@ -235,6 +271,14 @@ export declare const de_RequestServiceQuotaIncreaseCommand: (
235
271
  output: __HttpResponse,
236
272
  context: __SerdeContext
237
273
  ) => Promise<RequestServiceQuotaIncreaseCommandOutput>;
274
+ export declare const de_StartAutoManagementCommand: (
275
+ output: __HttpResponse,
276
+ context: __SerdeContext
277
+ ) => Promise<StartAutoManagementCommandOutput>;
278
+ export declare const de_StopAutoManagementCommand: (
279
+ output: __HttpResponse,
280
+ context: __SerdeContext
281
+ ) => Promise<StopAutoManagementCommandOutput>;
238
282
  export declare const de_TagResourceCommand: (
239
283
  output: __HttpResponse,
240
284
  context: __SerdeContext
@@ -243,3 +287,7 @@ export declare const de_UntagResourceCommand: (
243
287
  output: __HttpResponse,
244
288
  context: __SerdeContext
245
289
  ) => Promise<UntagResourceCommandOutput>;
290
+ export declare const de_UpdateAutoManagementCommand: (
291
+ output: __HttpResponse,
292
+ context: __SerdeContext
293
+ ) => Promise<UpdateAutoManagementCommandOutput>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-service-quotas",
3
3
  "description": "AWS SDK for JavaScript Service Quotas Client for Node.js, Browser and React Native",
4
- "version": "3.901.0",
4
+ "version": "3.906.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-service-quotas",
@@ -20,17 +20,17 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.901.0",
24
- "@aws-sdk/credential-provider-node": "3.901.0",
23
+ "@aws-sdk/core": "3.906.0",
24
+ "@aws-sdk/credential-provider-node": "3.906.0",
25
25
  "@aws-sdk/middleware-host-header": "3.901.0",
26
26
  "@aws-sdk/middleware-logger": "3.901.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.901.0",
28
- "@aws-sdk/middleware-user-agent": "3.901.0",
28
+ "@aws-sdk/middleware-user-agent": "3.906.0",
29
29
  "@aws-sdk/region-config-resolver": "3.901.0",
30
30
  "@aws-sdk/types": "3.901.0",
31
31
  "@aws-sdk/util-endpoints": "3.901.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.901.0",
33
- "@aws-sdk/util-user-agent-node": "3.901.0",
33
+ "@aws-sdk/util-user-agent-node": "3.906.0",
34
34
  "@smithy/config-resolver": "^4.3.0",
35
35
  "@smithy/core": "^3.14.0",
36
36
  "@smithy/fetch-http-handler": "^5.3.0",