@aws-sdk/client-service-quotas 3.899.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.
- package/README.md +32 -0
- package/dist-cjs/endpoint/ruleset.js +1 -1
- package/dist-cjs/index.js +1704 -1740
- package/dist-es/ServiceQuotas.js +8 -0
- package/dist-es/commands/GetAutoManagementConfigurationCommand.js +22 -0
- package/dist-es/commands/StartAutoManagementCommand.js +22 -0
- package/dist-es/commands/StopAutoManagementCommand.js +22 -0
- package/dist-es/commands/UpdateAutoManagementCommand.js +22 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/endpoint/ruleset.js +1 -1
- package/dist-es/models/models_0.js +11 -0
- package/dist-es/protocols/Aws_json1_1.js +76 -0
- package/dist-types/ServiceQuotas.d.ts +31 -0
- package/dist-types/ServiceQuotasClient.d.ts +6 -2
- package/dist-types/commands/GetAutoManagementConfigurationCommand.d.ts +100 -0
- package/dist-types/commands/GetServiceQuotaCommand.d.ts +3 -3
- package/dist-types/commands/ListRequestedServiceQuotaChangeHistoryByQuotaCommand.d.ts +2 -2
- package/dist-types/commands/ListRequestedServiceQuotaChangeHistoryCommand.d.ts +3 -2
- package/dist-types/commands/ListServiceQuotasCommand.d.ts +2 -2
- package/dist-types/commands/RequestServiceQuotaIncreaseCommand.d.ts +2 -1
- package/dist-types/commands/StartAutoManagementCommand.d.ts +97 -0
- package/dist-types/commands/StopAutoManagementCommand.d.ts +88 -0
- package/dist-types/commands/UpdateAutoManagementCommand.d.ts +96 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +167 -1
- package/dist-types/protocols/Aws_json1_1.d.ts +36 -0
- package/dist-types/ts3.4/ServiceQuotas.d.ts +71 -0
- package/dist-types/ts3.4/ServiceQuotasClient.d.ts +26 -2
- package/dist-types/ts3.4/commands/GetAutoManagementConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartAutoManagementCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StopAutoManagementCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateAutoManagementCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +41 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +48 -0
- package/package.json +37 -37
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { StartAutoManagementRequest, StartAutoManagementResponse } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link StartAutoManagementCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface StartAutoManagementCommandInput extends StartAutoManagementRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link StartAutoManagementCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface StartAutoManagementCommandOutput extends StartAutoManagementResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const StartAutoManagementCommand_base: {
|
|
25
|
+
new (input: StartAutoManagementCommandInput): import("@smithy/smithy-client").CommandImpl<StartAutoManagementCommandInput, StartAutoManagementCommandOutput, ServiceQuotasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: StartAutoManagementCommandInput): import("@smithy/smithy-client").CommandImpl<StartAutoManagementCommandInput, StartAutoManagementCommandOutput, ServiceQuotasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Starts <a href="https://docs.aws.amazon.com/servicequotas/latest/userguide/automatic-management.html">Service Quotas Automatic Management</a> for an Amazon Web Services account, including notification preferences
|
|
31
|
+
* and excluded quotas configurations. Automatic Management monitors your Service Quotas utilization and notifies you before you
|
|
32
|
+
* run out of your allocated quotas.</p>
|
|
33
|
+
* @example
|
|
34
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
35
|
+
* ```javascript
|
|
36
|
+
* import { ServiceQuotasClient, StartAutoManagementCommand } from "@aws-sdk/client-service-quotas"; // ES Modules import
|
|
37
|
+
* // const { ServiceQuotasClient, StartAutoManagementCommand } = require("@aws-sdk/client-service-quotas"); // CommonJS import
|
|
38
|
+
* // import type { ServiceQuotasClientConfig } from "@aws-sdk/client-service-quotas";
|
|
39
|
+
* const config = {}; // type is ServiceQuotasClientConfig
|
|
40
|
+
* const client = new ServiceQuotasClient(config);
|
|
41
|
+
* const input = { // StartAutoManagementRequest
|
|
42
|
+
* OptInLevel: "ACCOUNT", // required
|
|
43
|
+
* OptInType: "NotifyOnly" || "NotifyAndAdjust", // required
|
|
44
|
+
* NotificationArn: "STRING_VALUE",
|
|
45
|
+
* ExclusionList: { // ExclusionList
|
|
46
|
+
* "<keys>": [ // ExcludedQuotaList
|
|
47
|
+
* "STRING_VALUE",
|
|
48
|
+
* ],
|
|
49
|
+
* },
|
|
50
|
+
* };
|
|
51
|
+
* const command = new StartAutoManagementCommand(input);
|
|
52
|
+
* const response = await client.send(command);
|
|
53
|
+
* // {};
|
|
54
|
+
*
|
|
55
|
+
* ```
|
|
56
|
+
*
|
|
57
|
+
* @param StartAutoManagementCommandInput - {@link StartAutoManagementCommandInput}
|
|
58
|
+
* @returns {@link StartAutoManagementCommandOutput}
|
|
59
|
+
* @see {@link StartAutoManagementCommandInput} for command's `input` shape.
|
|
60
|
+
* @see {@link StartAutoManagementCommandOutput} for command's `response` shape.
|
|
61
|
+
* @see {@link ServiceQuotasClientResolvedConfig | config} for ServiceQuotasClient's `config` shape.
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
64
|
+
* <p>You do not have sufficient permission to perform this action.</p>
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link IllegalArgumentException} (client fault)
|
|
67
|
+
* <p>Invalid input was provided.</p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link NoSuchResourceException} (client fault)
|
|
70
|
+
* <p>The specified resource does not exist.</p>
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link ServiceException} (server fault)
|
|
73
|
+
* <p>Something went wrong.</p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
76
|
+
* <p>Due to throttling, the request was denied. Slow down the rate of request calls, or
|
|
77
|
+
* request an increase for this quota.</p>
|
|
78
|
+
*
|
|
79
|
+
* @throws {@link ServiceQuotasServiceException}
|
|
80
|
+
* <p>Base exception class for all service exceptions from ServiceQuotas service.</p>
|
|
81
|
+
*
|
|
82
|
+
*
|
|
83
|
+
* @public
|
|
84
|
+
*/
|
|
85
|
+
export declare class StartAutoManagementCommand extends StartAutoManagementCommand_base {
|
|
86
|
+
/** @internal type navigation helper, not in runtime. */
|
|
87
|
+
protected static __types: {
|
|
88
|
+
api: {
|
|
89
|
+
input: StartAutoManagementRequest;
|
|
90
|
+
output: {};
|
|
91
|
+
};
|
|
92
|
+
sdk: {
|
|
93
|
+
input: StartAutoManagementCommandInput;
|
|
94
|
+
output: StartAutoManagementCommandOutput;
|
|
95
|
+
};
|
|
96
|
+
};
|
|
97
|
+
}
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { StopAutoManagementRequest, StopAutoManagementResponse } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link StopAutoManagementCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface StopAutoManagementCommandInput extends StopAutoManagementRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link StopAutoManagementCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface StopAutoManagementCommandOutput extends StopAutoManagementResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const StopAutoManagementCommand_base: {
|
|
25
|
+
new (input: StopAutoManagementCommandInput): import("@smithy/smithy-client").CommandImpl<StopAutoManagementCommandInput, StopAutoManagementCommandOutput, ServiceQuotasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (...[input]: [] | [StopAutoManagementCommandInput]): import("@smithy/smithy-client").CommandImpl<StopAutoManagementCommandInput, StopAutoManagementCommandOutput, ServiceQuotasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Stops <a href="https://docs.aws.amazon.com/servicequotas/latest/userguide/automatic-management.html">Service Quotas Automatic Management</a> for an Amazon Web Services account and removes all associated
|
|
31
|
+
* configurations. Automatic Management monitors your Service Quotas utilization and notifies you before you
|
|
32
|
+
* run out of your allocated quotas.</p>
|
|
33
|
+
* @example
|
|
34
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
35
|
+
* ```javascript
|
|
36
|
+
* import { ServiceQuotasClient, StopAutoManagementCommand } from "@aws-sdk/client-service-quotas"; // ES Modules import
|
|
37
|
+
* // const { ServiceQuotasClient, StopAutoManagementCommand } = require("@aws-sdk/client-service-quotas"); // CommonJS import
|
|
38
|
+
* // import type { ServiceQuotasClientConfig } from "@aws-sdk/client-service-quotas";
|
|
39
|
+
* const config = {}; // type is ServiceQuotasClientConfig
|
|
40
|
+
* const client = new ServiceQuotasClient(config);
|
|
41
|
+
* const input = {};
|
|
42
|
+
* const command = new StopAutoManagementCommand(input);
|
|
43
|
+
* const response = await client.send(command);
|
|
44
|
+
* // {};
|
|
45
|
+
*
|
|
46
|
+
* ```
|
|
47
|
+
*
|
|
48
|
+
* @param StopAutoManagementCommandInput - {@link StopAutoManagementCommandInput}
|
|
49
|
+
* @returns {@link StopAutoManagementCommandOutput}
|
|
50
|
+
* @see {@link StopAutoManagementCommandInput} for command's `input` shape.
|
|
51
|
+
* @see {@link StopAutoManagementCommandOutput} for command's `response` shape.
|
|
52
|
+
* @see {@link ServiceQuotasClientResolvedConfig | config} for ServiceQuotasClient's `config` shape.
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
55
|
+
* <p>You do not have sufficient permission to perform this action.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link IllegalArgumentException} (client fault)
|
|
58
|
+
* <p>Invalid input was provided.</p>
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link NoSuchResourceException} (client fault)
|
|
61
|
+
* <p>The specified resource does not exist.</p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link ServiceException} (server fault)
|
|
64
|
+
* <p>Something went wrong.</p>
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
67
|
+
* <p>Due to throttling, the request was denied. Slow down the rate of request calls, or
|
|
68
|
+
* request an increase for this quota.</p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link ServiceQuotasServiceException}
|
|
71
|
+
* <p>Base exception class for all service exceptions from ServiceQuotas service.</p>
|
|
72
|
+
*
|
|
73
|
+
*
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
76
|
+
export declare class StopAutoManagementCommand extends StopAutoManagementCommand_base {
|
|
77
|
+
/** @internal type navigation helper, not in runtime. */
|
|
78
|
+
protected static __types: {
|
|
79
|
+
api: {
|
|
80
|
+
input: {};
|
|
81
|
+
output: {};
|
|
82
|
+
};
|
|
83
|
+
sdk: {
|
|
84
|
+
input: StopAutoManagementCommandInput;
|
|
85
|
+
output: StopAutoManagementCommandOutput;
|
|
86
|
+
};
|
|
87
|
+
};
|
|
88
|
+
}
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { UpdateAutoManagementRequest, UpdateAutoManagementResponse } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link UpdateAutoManagementCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface UpdateAutoManagementCommandInput extends UpdateAutoManagementRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link UpdateAutoManagementCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateAutoManagementCommandOutput extends UpdateAutoManagementResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const UpdateAutoManagementCommand_base: {
|
|
25
|
+
new (input: UpdateAutoManagementCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateAutoManagementCommandInput, UpdateAutoManagementCommandOutput, ServiceQuotasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (...[input]: [] | [UpdateAutoManagementCommandInput]): import("@smithy/smithy-client").CommandImpl<UpdateAutoManagementCommandInput, UpdateAutoManagementCommandOutput, ServiceQuotasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Updates your <a href="https://docs.aws.amazon.com/servicequotas/latest/userguide/automatic-management.html">Service Quotas Automatic Management</a> configuration, including notification preferences and
|
|
31
|
+
* excluded quotas. Automatic Management monitors your Service Quotas utilization and notifies you before you
|
|
32
|
+
* run out of your allocated quotas.</p>
|
|
33
|
+
* @example
|
|
34
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
35
|
+
* ```javascript
|
|
36
|
+
* import { ServiceQuotasClient, UpdateAutoManagementCommand } from "@aws-sdk/client-service-quotas"; // ES Modules import
|
|
37
|
+
* // const { ServiceQuotasClient, UpdateAutoManagementCommand } = require("@aws-sdk/client-service-quotas"); // CommonJS import
|
|
38
|
+
* // import type { ServiceQuotasClientConfig } from "@aws-sdk/client-service-quotas";
|
|
39
|
+
* const config = {}; // type is ServiceQuotasClientConfig
|
|
40
|
+
* const client = new ServiceQuotasClient(config);
|
|
41
|
+
* const input = { // UpdateAutoManagementRequest
|
|
42
|
+
* OptInType: "NotifyOnly" || "NotifyAndAdjust",
|
|
43
|
+
* NotificationArn: "STRING_VALUE",
|
|
44
|
+
* ExclusionList: { // ExclusionList
|
|
45
|
+
* "<keys>": [ // ExcludedQuotaList
|
|
46
|
+
* "STRING_VALUE",
|
|
47
|
+
* ],
|
|
48
|
+
* },
|
|
49
|
+
* };
|
|
50
|
+
* const command = new UpdateAutoManagementCommand(input);
|
|
51
|
+
* const response = await client.send(command);
|
|
52
|
+
* // {};
|
|
53
|
+
*
|
|
54
|
+
* ```
|
|
55
|
+
*
|
|
56
|
+
* @param UpdateAutoManagementCommandInput - {@link UpdateAutoManagementCommandInput}
|
|
57
|
+
* @returns {@link UpdateAutoManagementCommandOutput}
|
|
58
|
+
* @see {@link UpdateAutoManagementCommandInput} for command's `input` shape.
|
|
59
|
+
* @see {@link UpdateAutoManagementCommandOutput} for command's `response` shape.
|
|
60
|
+
* @see {@link ServiceQuotasClientResolvedConfig | config} for ServiceQuotasClient's `config` shape.
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
63
|
+
* <p>You do not have sufficient permission to perform this action.</p>
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link IllegalArgumentException} (client fault)
|
|
66
|
+
* <p>Invalid input was provided.</p>
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link NoSuchResourceException} (client fault)
|
|
69
|
+
* <p>The specified resource does not exist.</p>
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link ServiceException} (server fault)
|
|
72
|
+
* <p>Something went wrong.</p>
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
75
|
+
* <p>Due to throttling, the request was denied. Slow down the rate of request calls, or
|
|
76
|
+
* request an increase for this quota.</p>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link ServiceQuotasServiceException}
|
|
79
|
+
* <p>Base exception class for all service exceptions from ServiceQuotas service.</p>
|
|
80
|
+
*
|
|
81
|
+
*
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
84
|
+
export declare class UpdateAutoManagementCommand extends UpdateAutoManagementCommand_base {
|
|
85
|
+
/** @internal type navigation helper, not in runtime. */
|
|
86
|
+
protected static __types: {
|
|
87
|
+
api: {
|
|
88
|
+
input: UpdateAutoManagementRequest;
|
|
89
|
+
output: {};
|
|
90
|
+
};
|
|
91
|
+
sdk: {
|
|
92
|
+
input: UpdateAutoManagementCommandInput;
|
|
93
|
+
output: UpdateAutoManagementCommandOutput;
|
|
94
|
+
};
|
|
95
|
+
};
|
|
96
|
+
}
|
|
@@ -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";
|
|
@@ -301,6 +301,23 @@ export interface ErrorReason {
|
|
|
301
301
|
*/
|
|
302
302
|
ErrorMessage?: string | undefined;
|
|
303
303
|
}
|
|
304
|
+
/**
|
|
305
|
+
* <p>Information on your Service Quotas for <a href="https://docs.aws.amazon.com/servicequotas/latest/userguide/automatic-management.html">Service Quotas Automatic Management</a>. Automatic Management monitors your Service Quotas utilization and notifies you before you
|
|
306
|
+
* run out of your allocated quotas.</p>
|
|
307
|
+
* @public
|
|
308
|
+
*/
|
|
309
|
+
export interface QuotaInfo {
|
|
310
|
+
/**
|
|
311
|
+
* <p>The Service Quotas code for the Amazon Web Services service monitored with Automatic Management.</p>
|
|
312
|
+
* @public
|
|
313
|
+
*/
|
|
314
|
+
QuotaCode?: string | undefined;
|
|
315
|
+
/**
|
|
316
|
+
* <p>The Service Quotas name for the Amazon Web Services service monitored with Automatic Management.</p>
|
|
317
|
+
* @public
|
|
318
|
+
*/
|
|
319
|
+
QuotaName?: string | undefined;
|
|
320
|
+
}
|
|
304
321
|
/**
|
|
305
322
|
* @public
|
|
306
323
|
*/
|
|
@@ -330,6 +347,80 @@ export interface GetAssociationForServiceQuotaTemplateResponse {
|
|
|
330
347
|
*/
|
|
331
348
|
ServiceQuotaTemplateAssociationStatus?: ServiceQuotaTemplateAssociationStatus | undefined;
|
|
332
349
|
}
|
|
350
|
+
/**
|
|
351
|
+
* @public
|
|
352
|
+
*/
|
|
353
|
+
export interface GetAutoManagementConfigurationRequest {
|
|
354
|
+
}
|
|
355
|
+
/**
|
|
356
|
+
* @public
|
|
357
|
+
* @enum
|
|
358
|
+
*/
|
|
359
|
+
export declare const OptInLevel: {
|
|
360
|
+
readonly ACCOUNT: "ACCOUNT";
|
|
361
|
+
};
|
|
362
|
+
/**
|
|
363
|
+
* @public
|
|
364
|
+
*/
|
|
365
|
+
export type OptInLevel = (typeof OptInLevel)[keyof typeof OptInLevel];
|
|
366
|
+
/**
|
|
367
|
+
* @public
|
|
368
|
+
* @enum
|
|
369
|
+
*/
|
|
370
|
+
export declare const OptInStatus: {
|
|
371
|
+
readonly DISABLED: "DISABLED";
|
|
372
|
+
readonly ENABLED: "ENABLED";
|
|
373
|
+
};
|
|
374
|
+
/**
|
|
375
|
+
* @public
|
|
376
|
+
*/
|
|
377
|
+
export type OptInStatus = (typeof OptInStatus)[keyof typeof OptInStatus];
|
|
378
|
+
/**
|
|
379
|
+
* @public
|
|
380
|
+
* @enum
|
|
381
|
+
*/
|
|
382
|
+
export declare const OptInType: {
|
|
383
|
+
readonly NotifyAndAdjust: "NotifyAndAdjust";
|
|
384
|
+
readonly NotifyOnly: "NotifyOnly";
|
|
385
|
+
};
|
|
386
|
+
/**
|
|
387
|
+
* @public
|
|
388
|
+
*/
|
|
389
|
+
export type OptInType = (typeof OptInType)[keyof typeof OptInType];
|
|
390
|
+
/**
|
|
391
|
+
* @public
|
|
392
|
+
*/
|
|
393
|
+
export interface GetAutoManagementConfigurationResponse {
|
|
394
|
+
/**
|
|
395
|
+
* <p>Information on the opt-in level for Automatic Management. Only Amazon Web Services account level is supported.</p>
|
|
396
|
+
* @public
|
|
397
|
+
*/
|
|
398
|
+
OptInLevel?: OptInLevel | undefined;
|
|
399
|
+
/**
|
|
400
|
+
* <p>Information on the opt-in type for Automatic Management. There are two modes: Notify only and Notify and Auto-Adjust. Currently, only
|
|
401
|
+
* NotifyOnly is available.</p>
|
|
402
|
+
* @public
|
|
403
|
+
*/
|
|
404
|
+
OptInType?: OptInType | undefined;
|
|
405
|
+
/**
|
|
406
|
+
* <p>The <a href="https://docs.aws.amazon.com/notifications/latest/userguide/resource-level-permissions.html#rlp-table">User Notifications</a> Amazon Resource Name (ARN) for Automatic Management notifications.</p>
|
|
407
|
+
* @public
|
|
408
|
+
*/
|
|
409
|
+
NotificationArn?: string | undefined;
|
|
410
|
+
/**
|
|
411
|
+
* <p>Status on whether Automatic Management is started or stopped.</p>
|
|
412
|
+
* @public
|
|
413
|
+
*/
|
|
414
|
+
OptInStatus?: OptInStatus | undefined;
|
|
415
|
+
/**
|
|
416
|
+
* <p>List of Amazon Web Services services excluded from Automatic Management.
|
|
417
|
+
* You won't be notified of Service Quotas utilization for Amazon Web Services services added to the
|
|
418
|
+
* Automatic Management exclusion list.
|
|
419
|
+
* </p>
|
|
420
|
+
* @public
|
|
421
|
+
*/
|
|
422
|
+
ExclusionList?: Record<string, QuotaInfo[]> | undefined;
|
|
423
|
+
}
|
|
333
424
|
/**
|
|
334
425
|
* @public
|
|
335
426
|
*/
|
|
@@ -1341,6 +1432,50 @@ export interface RequestServiceQuotaIncreaseResponse {
|
|
|
1341
1432
|
*/
|
|
1342
1433
|
RequestedQuota?: RequestedServiceQuotaChange | undefined;
|
|
1343
1434
|
}
|
|
1435
|
+
/**
|
|
1436
|
+
* @public
|
|
1437
|
+
*/
|
|
1438
|
+
export interface StartAutoManagementRequest {
|
|
1439
|
+
/**
|
|
1440
|
+
* <p>Sets the opt-in level for Automatic Management. Only Amazon Web Services account level is supported.</p>
|
|
1441
|
+
* @public
|
|
1442
|
+
*/
|
|
1443
|
+
OptInLevel: OptInLevel | undefined;
|
|
1444
|
+
/**
|
|
1445
|
+
* <p>Sets the opt-in type for Automatic Management. There are two modes: Notify only and Notify and Auto-Adjust. Currently, only
|
|
1446
|
+
* NotifyOnly is available.</p>
|
|
1447
|
+
* @public
|
|
1448
|
+
*/
|
|
1449
|
+
OptInType: OptInType | undefined;
|
|
1450
|
+
/**
|
|
1451
|
+
* <p>The <a href="https://docs.aws.amazon.com/notifications/latest/userguide/resource-level-permissions.html#rlp-table">User Notifications</a> Amazon Resource Name (ARN) for Automatic Management notifications.</p>
|
|
1452
|
+
* @public
|
|
1453
|
+
*/
|
|
1454
|
+
NotificationArn?: string | undefined;
|
|
1455
|
+
/**
|
|
1456
|
+
* <p>List of Amazon Web Services services excluded from Automatic Management.
|
|
1457
|
+
* You won't be notified of Service Quotas utilization for Amazon Web Services services added to the
|
|
1458
|
+
* Automatic Management exclusion list.
|
|
1459
|
+
* </p>
|
|
1460
|
+
* @public
|
|
1461
|
+
*/
|
|
1462
|
+
ExclusionList?: Record<string, string[]> | undefined;
|
|
1463
|
+
}
|
|
1464
|
+
/**
|
|
1465
|
+
* @public
|
|
1466
|
+
*/
|
|
1467
|
+
export interface StartAutoManagementResponse {
|
|
1468
|
+
}
|
|
1469
|
+
/**
|
|
1470
|
+
* @public
|
|
1471
|
+
*/
|
|
1472
|
+
export interface StopAutoManagementRequest {
|
|
1473
|
+
}
|
|
1474
|
+
/**
|
|
1475
|
+
* @public
|
|
1476
|
+
*/
|
|
1477
|
+
export interface StopAutoManagementResponse {
|
|
1478
|
+
}
|
|
1344
1479
|
/**
|
|
1345
1480
|
* <p>The specified tag is a reserved word and cannot be used.</p>
|
|
1346
1481
|
* @public
|
|
@@ -1397,7 +1532,7 @@ export interface UntagResourceRequest {
|
|
|
1397
1532
|
/**
|
|
1398
1533
|
* <p>The Amazon Resource Name (ARN) for the applied quota that you want to untag. You can
|
|
1399
1534
|
* get this information by using the Service Quotas console, or by listing the quotas using the
|
|
1400
|
-
*
|
|
1535
|
+
* <a href="https://docs.aws.amazon.com/cli/latest/reference/service-quotas/list-service-quotas.html">list-service-quotas</a> CLI command or the <a href="https://docs.aws.amazon.com/servicequotas/2019-06-24/apireference/API_ListServiceQuotas.html">ListServiceQuotas</a> Amazon Web Services API operation.</p>
|
|
1401
1536
|
* @public
|
|
1402
1537
|
*/
|
|
1403
1538
|
ResourceARN: string | undefined;
|
|
@@ -1412,3 +1547,34 @@ export interface UntagResourceRequest {
|
|
|
1412
1547
|
*/
|
|
1413
1548
|
export interface UntagResourceResponse {
|
|
1414
1549
|
}
|
|
1550
|
+
/**
|
|
1551
|
+
* @public
|
|
1552
|
+
*/
|
|
1553
|
+
export interface UpdateAutoManagementRequest {
|
|
1554
|
+
/**
|
|
1555
|
+
* <p>Information on the opt-in type for your Automatic Management configuration.
|
|
1556
|
+
* There are two modes: Notify only and Notify and Auto-Adjust. Currently, only
|
|
1557
|
+
* NotifyOnly is available.</p>
|
|
1558
|
+
* @public
|
|
1559
|
+
*/
|
|
1560
|
+
OptInType?: OptInType | undefined;
|
|
1561
|
+
/**
|
|
1562
|
+
* <p>The <a href="https://docs.aws.amazon.com/notifications/latest/userguide/resource-level-permissions.html#rlp-table">User Notifications</a> Amazon Resource Name (ARN) for Automatic Management notifications you want
|
|
1563
|
+
* to update.</p>
|
|
1564
|
+
* @public
|
|
1565
|
+
*/
|
|
1566
|
+
NotificationArn?: string | undefined;
|
|
1567
|
+
/**
|
|
1568
|
+
* <p>List of Amazon Web Services services you want to exclude from Automatic Management.
|
|
1569
|
+
* You won't be notified of Service Quotas utilization for Amazon Web Services services added to the
|
|
1570
|
+
* Automatic Management exclusion list.
|
|
1571
|
+
* </p>
|
|
1572
|
+
* @public
|
|
1573
|
+
*/
|
|
1574
|
+
ExclusionList?: Record<string, string[]> | undefined;
|
|
1575
|
+
}
|
|
1576
|
+
/**
|
|
1577
|
+
* @public
|
|
1578
|
+
*/
|
|
1579
|
+
export interface UpdateAutoManagementResponse {
|
|
1580
|
+
}
|
|
@@ -5,6 +5,7 @@ import { CreateSupportCaseCommandInput, CreateSupportCaseCommandOutput } from ".
|
|
|
5
5
|
import { DeleteServiceQuotaIncreaseRequestFromTemplateCommandInput, DeleteServiceQuotaIncreaseRequestFromTemplateCommandOutput } from "../commands/DeleteServiceQuotaIncreaseRequestFromTemplateCommand";
|
|
6
6
|
import { DisassociateServiceQuotaTemplateCommandInput, DisassociateServiceQuotaTemplateCommandOutput } from "../commands/DisassociateServiceQuotaTemplateCommand";
|
|
7
7
|
import { GetAssociationForServiceQuotaTemplateCommandInput, GetAssociationForServiceQuotaTemplateCommandOutput } from "../commands/GetAssociationForServiceQuotaTemplateCommand";
|
|
8
|
+
import { GetAutoManagementConfigurationCommandInput, GetAutoManagementConfigurationCommandOutput } from "../commands/GetAutoManagementConfigurationCommand";
|
|
8
9
|
import { GetAWSDefaultServiceQuotaCommandInput, GetAWSDefaultServiceQuotaCommandOutput } from "../commands/GetAWSDefaultServiceQuotaCommand";
|
|
9
10
|
import { GetRequestedServiceQuotaChangeCommandInput, GetRequestedServiceQuotaChangeCommandOutput } from "../commands/GetRequestedServiceQuotaChangeCommand";
|
|
10
11
|
import { GetServiceQuotaCommandInput, GetServiceQuotaCommandOutput } from "../commands/GetServiceQuotaCommand";
|
|
@@ -18,8 +19,11 @@ import { ListServicesCommandInput, ListServicesCommandOutput } from "../commands
|
|
|
18
19
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
19
20
|
import { PutServiceQuotaIncreaseRequestIntoTemplateCommandInput, PutServiceQuotaIncreaseRequestIntoTemplateCommandOutput } from "../commands/PutServiceQuotaIncreaseRequestIntoTemplateCommand";
|
|
20
21
|
import { RequestServiceQuotaIncreaseCommandInput, RequestServiceQuotaIncreaseCommandOutput } from "../commands/RequestServiceQuotaIncreaseCommand";
|
|
22
|
+
import { StartAutoManagementCommandInput, StartAutoManagementCommandOutput } from "../commands/StartAutoManagementCommand";
|
|
23
|
+
import { StopAutoManagementCommandInput, StopAutoManagementCommandOutput } from "../commands/StopAutoManagementCommand";
|
|
21
24
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
22
25
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
26
|
+
import { UpdateAutoManagementCommandInput, UpdateAutoManagementCommandOutput } from "../commands/UpdateAutoManagementCommand";
|
|
23
27
|
/**
|
|
24
28
|
* serializeAws_json1_1AssociateServiceQuotaTemplateCommand
|
|
25
29
|
*/
|
|
@@ -40,6 +44,10 @@ export declare const se_DisassociateServiceQuotaTemplateCommand: (input: Disasso
|
|
|
40
44
|
* serializeAws_json1_1GetAssociationForServiceQuotaTemplateCommand
|
|
41
45
|
*/
|
|
42
46
|
export declare const se_GetAssociationForServiceQuotaTemplateCommand: (input: GetAssociationForServiceQuotaTemplateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
47
|
+
/**
|
|
48
|
+
* serializeAws_json1_1GetAutoManagementConfigurationCommand
|
|
49
|
+
*/
|
|
50
|
+
export declare const se_GetAutoManagementConfigurationCommand: (input: GetAutoManagementConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
43
51
|
/**
|
|
44
52
|
* serializeAws_json1_1GetAWSDefaultServiceQuotaCommand
|
|
45
53
|
*/
|
|
@@ -92,6 +100,14 @@ export declare const se_PutServiceQuotaIncreaseRequestIntoTemplateCommand: (inpu
|
|
|
92
100
|
* serializeAws_json1_1RequestServiceQuotaIncreaseCommand
|
|
93
101
|
*/
|
|
94
102
|
export declare const se_RequestServiceQuotaIncreaseCommand: (input: RequestServiceQuotaIncreaseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
103
|
+
/**
|
|
104
|
+
* serializeAws_json1_1StartAutoManagementCommand
|
|
105
|
+
*/
|
|
106
|
+
export declare const se_StartAutoManagementCommand: (input: StartAutoManagementCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
107
|
+
/**
|
|
108
|
+
* serializeAws_json1_1StopAutoManagementCommand
|
|
109
|
+
*/
|
|
110
|
+
export declare const se_StopAutoManagementCommand: (input: StopAutoManagementCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
95
111
|
/**
|
|
96
112
|
* serializeAws_json1_1TagResourceCommand
|
|
97
113
|
*/
|
|
@@ -100,6 +116,10 @@ export declare const se_TagResourceCommand: (input: TagResourceCommandInput, con
|
|
|
100
116
|
* serializeAws_json1_1UntagResourceCommand
|
|
101
117
|
*/
|
|
102
118
|
export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
119
|
+
/**
|
|
120
|
+
* serializeAws_json1_1UpdateAutoManagementCommand
|
|
121
|
+
*/
|
|
122
|
+
export declare const se_UpdateAutoManagementCommand: (input: UpdateAutoManagementCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
103
123
|
/**
|
|
104
124
|
* deserializeAws_json1_1AssociateServiceQuotaTemplateCommand
|
|
105
125
|
*/
|
|
@@ -120,6 +140,10 @@ export declare const de_DisassociateServiceQuotaTemplateCommand: (output: __Http
|
|
|
120
140
|
* deserializeAws_json1_1GetAssociationForServiceQuotaTemplateCommand
|
|
121
141
|
*/
|
|
122
142
|
export declare const de_GetAssociationForServiceQuotaTemplateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAssociationForServiceQuotaTemplateCommandOutput>;
|
|
143
|
+
/**
|
|
144
|
+
* deserializeAws_json1_1GetAutoManagementConfigurationCommand
|
|
145
|
+
*/
|
|
146
|
+
export declare const de_GetAutoManagementConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAutoManagementConfigurationCommandOutput>;
|
|
123
147
|
/**
|
|
124
148
|
* deserializeAws_json1_1GetAWSDefaultServiceQuotaCommand
|
|
125
149
|
*/
|
|
@@ -172,6 +196,14 @@ export declare const de_PutServiceQuotaIncreaseRequestIntoTemplateCommand: (outp
|
|
|
172
196
|
* deserializeAws_json1_1RequestServiceQuotaIncreaseCommand
|
|
173
197
|
*/
|
|
174
198
|
export declare const de_RequestServiceQuotaIncreaseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RequestServiceQuotaIncreaseCommandOutput>;
|
|
199
|
+
/**
|
|
200
|
+
* deserializeAws_json1_1StartAutoManagementCommand
|
|
201
|
+
*/
|
|
202
|
+
export declare const de_StartAutoManagementCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartAutoManagementCommandOutput>;
|
|
203
|
+
/**
|
|
204
|
+
* deserializeAws_json1_1StopAutoManagementCommand
|
|
205
|
+
*/
|
|
206
|
+
export declare const de_StopAutoManagementCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopAutoManagementCommandOutput>;
|
|
175
207
|
/**
|
|
176
208
|
* deserializeAws_json1_1TagResourceCommand
|
|
177
209
|
*/
|
|
@@ -180,3 +212,7 @@ export declare const de_TagResourceCommand: (output: __HttpResponse, context: __
|
|
|
180
212
|
* deserializeAws_json1_1UntagResourceCommand
|
|
181
213
|
*/
|
|
182
214
|
export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
215
|
+
/**
|
|
216
|
+
* deserializeAws_json1_1UpdateAutoManagementCommand
|
|
217
|
+
*/
|
|
218
|
+
export declare const de_UpdateAutoManagementCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateAutoManagementCommandOutput>;
|