@aws-sdk/client-service-quotas 3.398.0 → 3.405.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 +3 -3
- package/dist-cjs/endpoint/ruleset.js +2 -2
- package/dist-cjs/models/models_0.js +12 -1
- package/dist-cjs/protocols/Aws_json1_1.js +5 -0
- package/dist-es/endpoint/ruleset.js +2 -2
- package/dist-es/models/models_0.js +11 -0
- package/dist-es/protocols/Aws_json1_1.js +5 -0
- package/dist-types/ServiceQuotas.d.ts +3 -3
- package/dist-types/ServiceQuotasClient.d.ts +3 -3
- package/dist-types/commands/AssociateServiceQuotaTemplateCommand.d.ts +12 -11
- package/dist-types/commands/DeleteServiceQuotaIncreaseRequestFromTemplateCommand.d.ts +7 -7
- package/dist-types/commands/DisassociateServiceQuotaTemplateCommand.d.ts +8 -8
- package/dist-types/commands/GetAWSDefaultServiceQuotaCommand.d.ts +12 -6
- package/dist-types/commands/GetAssociationForServiceQuotaTemplateCommand.d.ts +7 -7
- package/dist-types/commands/GetRequestedServiceQuotaChangeCommand.d.ts +9 -3
- package/dist-types/commands/GetServiceQuotaCommand.d.ts +13 -6
- package/dist-types/commands/GetServiceQuotaIncreaseRequestFromTemplateCommand.d.ts +7 -7
- package/dist-types/commands/ListAWSDefaultServiceQuotasCommand.d.ts +12 -6
- package/dist-types/commands/ListRequestedServiceQuotaChangeHistoryByQuotaCommand.d.ts +11 -4
- package/dist-types/commands/ListRequestedServiceQuotaChangeHistoryCommand.d.ts +12 -5
- package/dist-types/commands/ListServiceQuotaIncreaseRequestsInTemplateCommand.d.ts +6 -6
- package/dist-types/commands/ListServiceQuotasCommand.d.ts +15 -7
- package/dist-types/commands/ListServicesCommand.d.ts +3 -3
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -2
- package/dist-types/commands/PutServiceQuotaIncreaseRequestIntoTemplateCommand.d.ts +8 -8
- package/dist-types/commands/RequestServiceQuotaIncreaseCommand.d.ts +12 -5
- package/dist-types/commands/TagResourceCommand.d.ts +6 -6
- package/dist-types/commands/UntagResourceCommand.d.ts +3 -3
- package/dist-types/index.d.ts +3 -3
- package/dist-types/models/models_0.d.ts +342 -109
- package/dist-types/ts3.4/models/models_0.d.ts +30 -0
- package/package.json +7 -7
|
@@ -33,9 +33,10 @@ export interface ListRequestedServiceQuotaChangeHistoryByQuotaCommandOutput exte
|
|
|
33
33
|
* const input = { // ListRequestedServiceQuotaChangeHistoryByQuotaRequest
|
|
34
34
|
* ServiceCode: "STRING_VALUE", // required
|
|
35
35
|
* QuotaCode: "STRING_VALUE", // required
|
|
36
|
-
* Status: "
|
|
36
|
+
* Status: "PENDING" || "CASE_OPENED" || "APPROVED" || "DENIED" || "CASE_CLOSED" || "NOT_APPROVED" || "INVALID_REQUEST",
|
|
37
37
|
* NextToken: "STRING_VALUE",
|
|
38
38
|
* MaxResults: Number("int"),
|
|
39
|
+
* QuotaRequestedAtLevel: "ACCOUNT" || "RESOURCE" || "ALL",
|
|
39
40
|
* };
|
|
40
41
|
* const command = new ListRequestedServiceQuotaChangeHistoryByQuotaCommand(input);
|
|
41
42
|
* const response = await client.send(command);
|
|
@@ -50,13 +51,19 @@ export interface ListRequestedServiceQuotaChangeHistoryByQuotaCommandOutput exte
|
|
|
50
51
|
* // QuotaCode: "STRING_VALUE",
|
|
51
52
|
* // QuotaName: "STRING_VALUE",
|
|
52
53
|
* // DesiredValue: Number("double"),
|
|
53
|
-
* // Status: "
|
|
54
|
+
* // Status: "PENDING" || "CASE_OPENED" || "APPROVED" || "DENIED" || "CASE_CLOSED" || "NOT_APPROVED" || "INVALID_REQUEST",
|
|
54
55
|
* // Created: new Date("TIMESTAMP"),
|
|
55
56
|
* // LastUpdated: new Date("TIMESTAMP"),
|
|
56
57
|
* // Requester: "STRING_VALUE",
|
|
57
58
|
* // QuotaArn: "STRING_VALUE",
|
|
58
59
|
* // GlobalQuota: true || false,
|
|
59
60
|
* // Unit: "STRING_VALUE",
|
|
61
|
+
* // QuotaRequestedAtLevel: "ACCOUNT" || "RESOURCE" || "ALL",
|
|
62
|
+
* // QuotaContext: { // QuotaContextInfo
|
|
63
|
+
* // ContextScope: "RESOURCE" || "ACCOUNT",
|
|
64
|
+
* // ContextScopeType: "STRING_VALUE",
|
|
65
|
+
* // ContextId: "STRING_VALUE",
|
|
66
|
+
* // },
|
|
60
67
|
* // },
|
|
61
68
|
* // ],
|
|
62
69
|
* // };
|
|
@@ -85,8 +92,8 @@ export interface ListRequestedServiceQuotaChangeHistoryByQuotaCommandOutput exte
|
|
|
85
92
|
* <p>Something went wrong.</p>
|
|
86
93
|
*
|
|
87
94
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
88
|
-
* <p>Due to throttling, the request was denied. Slow down the rate of request calls, or
|
|
89
|
-
*
|
|
95
|
+
* <p>Due to throttling, the request was denied. Slow down the rate of request calls, or
|
|
96
|
+
* request an increase for this quota.</p>
|
|
90
97
|
*
|
|
91
98
|
* @throws {@link ServiceQuotasServiceException}
|
|
92
99
|
* <p>Base exception class for all service exceptions from ServiceQuotas service.</p>
|
|
@@ -23,7 +23,7 @@ export interface ListRequestedServiceQuotaChangeHistoryCommandOutput extends Lis
|
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
|
-
* <p>Retrieves the quota increase requests for the specified
|
|
26
|
+
* <p>Retrieves the quota increase requests for the specified Amazon Web Service.</p>
|
|
27
27
|
* @example
|
|
28
28
|
* Use a bare-bones client and the command you need to make an API call.
|
|
29
29
|
* ```javascript
|
|
@@ -32,9 +32,10 @@ export interface ListRequestedServiceQuotaChangeHistoryCommandOutput extends Lis
|
|
|
32
32
|
* const client = new ServiceQuotasClient(config);
|
|
33
33
|
* const input = { // ListRequestedServiceQuotaChangeHistoryRequest
|
|
34
34
|
* ServiceCode: "STRING_VALUE",
|
|
35
|
-
* Status: "
|
|
35
|
+
* Status: "PENDING" || "CASE_OPENED" || "APPROVED" || "DENIED" || "CASE_CLOSED" || "NOT_APPROVED" || "INVALID_REQUEST",
|
|
36
36
|
* NextToken: "STRING_VALUE",
|
|
37
37
|
* MaxResults: Number("int"),
|
|
38
|
+
* QuotaRequestedAtLevel: "ACCOUNT" || "RESOURCE" || "ALL",
|
|
38
39
|
* };
|
|
39
40
|
* const command = new ListRequestedServiceQuotaChangeHistoryCommand(input);
|
|
40
41
|
* const response = await client.send(command);
|
|
@@ -49,13 +50,19 @@ export interface ListRequestedServiceQuotaChangeHistoryCommandOutput extends Lis
|
|
|
49
50
|
* // QuotaCode: "STRING_VALUE",
|
|
50
51
|
* // QuotaName: "STRING_VALUE",
|
|
51
52
|
* // DesiredValue: Number("double"),
|
|
52
|
-
* // Status: "
|
|
53
|
+
* // Status: "PENDING" || "CASE_OPENED" || "APPROVED" || "DENIED" || "CASE_CLOSED" || "NOT_APPROVED" || "INVALID_REQUEST",
|
|
53
54
|
* // Created: new Date("TIMESTAMP"),
|
|
54
55
|
* // LastUpdated: new Date("TIMESTAMP"),
|
|
55
56
|
* // Requester: "STRING_VALUE",
|
|
56
57
|
* // QuotaArn: "STRING_VALUE",
|
|
57
58
|
* // GlobalQuota: true || false,
|
|
58
59
|
* // Unit: "STRING_VALUE",
|
|
60
|
+
* // QuotaRequestedAtLevel: "ACCOUNT" || "RESOURCE" || "ALL",
|
|
61
|
+
* // QuotaContext: { // QuotaContextInfo
|
|
62
|
+
* // ContextScope: "RESOURCE" || "ACCOUNT",
|
|
63
|
+
* // ContextScopeType: "STRING_VALUE",
|
|
64
|
+
* // ContextId: "STRING_VALUE",
|
|
65
|
+
* // },
|
|
59
66
|
* // },
|
|
60
67
|
* // ],
|
|
61
68
|
* // };
|
|
@@ -84,8 +91,8 @@ export interface ListRequestedServiceQuotaChangeHistoryCommandOutput extends Lis
|
|
|
84
91
|
* <p>Something went wrong.</p>
|
|
85
92
|
*
|
|
86
93
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
87
|
-
* <p>Due to throttling, the request was denied. Slow down the rate of request calls, or
|
|
88
|
-
*
|
|
94
|
+
* <p>Due to throttling, the request was denied. Slow down the rate of request calls, or
|
|
95
|
+
* request an increase for this quota.</p>
|
|
89
96
|
*
|
|
90
97
|
* @throws {@link ServiceQuotasServiceException}
|
|
91
98
|
* <p>Base exception class for all service exceptions from ServiceQuotas service.</p>
|
|
@@ -66,8 +66,8 @@ export interface ListServiceQuotaIncreaseRequestsInTemplateCommandOutput extends
|
|
|
66
66
|
* <p>You do not have sufficient permission to perform this action.</p>
|
|
67
67
|
*
|
|
68
68
|
* @throws {@link AWSServiceAccessNotEnabledException} (client fault)
|
|
69
|
-
* <p>The action you attempted is not allowed unless Service Access with Service Quotas is
|
|
70
|
-
*
|
|
69
|
+
* <p>The action you attempted is not allowed unless Service Access with Service Quotas is enabled in
|
|
70
|
+
* your organization.</p>
|
|
71
71
|
*
|
|
72
72
|
* @throws {@link DependencyAccessDeniedException} (client fault)
|
|
73
73
|
* <p>You can't perform this action because a dependency does not have access.</p>
|
|
@@ -76,17 +76,17 @@ export interface ListServiceQuotaIncreaseRequestsInTemplateCommandOutput extends
|
|
|
76
76
|
* <p>Invalid input was provided.</p>
|
|
77
77
|
*
|
|
78
78
|
* @throws {@link NoAvailableOrganizationException} (client fault)
|
|
79
|
-
* <p>The account making this call is not a member of an organization.</p>
|
|
79
|
+
* <p>The Amazon Web Services account making this call is not a member of an organization.</p>
|
|
80
80
|
*
|
|
81
81
|
* @throws {@link ServiceException} (server fault)
|
|
82
82
|
* <p>Something went wrong.</p>
|
|
83
83
|
*
|
|
84
84
|
* @throws {@link TemplatesNotAvailableInRegionException} (client fault)
|
|
85
|
-
* <p>The Service Quotas template is not available in this
|
|
85
|
+
* <p>The Service Quotas template is not available in this Amazon Web Services Region.</p>
|
|
86
86
|
*
|
|
87
87
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
88
|
-
* <p>Due to throttling, the request was denied. Slow down the rate of request calls, or
|
|
89
|
-
*
|
|
88
|
+
* <p>Due to throttling, the request was denied. Slow down the rate of request calls, or
|
|
89
|
+
* request an increase for this quota.</p>
|
|
90
90
|
*
|
|
91
91
|
* @throws {@link ServiceQuotasServiceException}
|
|
92
92
|
* <p>Base exception class for all service exceptions from ServiceQuotas service.</p>
|
|
@@ -23,9 +23,9 @@ export interface ListServiceQuotasCommandOutput extends ListServiceQuotasRespons
|
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
|
-
* <p>Lists the applied quota values for the specified
|
|
27
|
-
*
|
|
28
|
-
*
|
|
26
|
+
* <p>Lists the applied quota values for the specified Amazon Web Service. For some quotas, only
|
|
27
|
+
* the default values are available. If the applied quota value is not available for a
|
|
28
|
+
* quota, the quota is not retrieved.</p>
|
|
29
29
|
* @example
|
|
30
30
|
* Use a bare-bones client and the command you need to make an API call.
|
|
31
31
|
* ```javascript
|
|
@@ -36,6 +36,8 @@ export interface ListServiceQuotasCommandOutput extends ListServiceQuotasRespons
|
|
|
36
36
|
* ServiceCode: "STRING_VALUE", // required
|
|
37
37
|
* NextToken: "STRING_VALUE",
|
|
38
38
|
* MaxResults: Number("int"),
|
|
39
|
+
* QuotaCode: "STRING_VALUE",
|
|
40
|
+
* QuotaAppliedAtLevel: "ACCOUNT" || "RESOURCE" || "ALL",
|
|
39
41
|
* };
|
|
40
42
|
* const command = new ListServiceQuotasCommand(input);
|
|
41
43
|
* const response = await client.send(command);
|
|
@@ -62,12 +64,18 @@ export interface ListServiceQuotasCommandOutput extends ListServiceQuotasRespons
|
|
|
62
64
|
* // },
|
|
63
65
|
* // Period: { // QuotaPeriod
|
|
64
66
|
* // PeriodValue: Number("int"),
|
|
65
|
-
* // PeriodUnit: "
|
|
67
|
+
* // PeriodUnit: "MICROSECOND" || "MILLISECOND" || "SECOND" || "MINUTE" || "HOUR" || "DAY" || "WEEK",
|
|
66
68
|
* // },
|
|
67
69
|
* // ErrorReason: { // ErrorReason
|
|
68
|
-
* // ErrorCode: "
|
|
70
|
+
* // ErrorCode: "DEPENDENCY_ACCESS_DENIED_ERROR" || "DEPENDENCY_THROTTLING_ERROR" || "DEPENDENCY_SERVICE_ERROR" || "SERVICE_QUOTA_NOT_AVAILABLE_ERROR",
|
|
69
71
|
* // ErrorMessage: "STRING_VALUE",
|
|
70
72
|
* // },
|
|
73
|
+
* // QuotaAppliedAtLevel: "ACCOUNT" || "RESOURCE" || "ALL",
|
|
74
|
+
* // QuotaContext: { // QuotaContextInfo
|
|
75
|
+
* // ContextScope: "RESOURCE" || "ACCOUNT",
|
|
76
|
+
* // ContextScopeType: "STRING_VALUE",
|
|
77
|
+
* // ContextId: "STRING_VALUE",
|
|
78
|
+
* // },
|
|
71
79
|
* // },
|
|
72
80
|
* // ],
|
|
73
81
|
* // };
|
|
@@ -96,8 +104,8 @@ export interface ListServiceQuotasCommandOutput extends ListServiceQuotasRespons
|
|
|
96
104
|
* <p>Something went wrong.</p>
|
|
97
105
|
*
|
|
98
106
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
99
|
-
* <p>Due to throttling, the request was denied. Slow down the rate of request calls, or
|
|
100
|
-
*
|
|
107
|
+
* <p>Due to throttling, the request was denied. Slow down the rate of request calls, or
|
|
108
|
+
* request an increase for this quota.</p>
|
|
101
109
|
*
|
|
102
110
|
* @throws {@link ServiceQuotasServiceException}
|
|
103
111
|
* <p>Base exception class for all service exceptions from ServiceQuotas service.</p>
|
|
@@ -23,7 +23,7 @@ export interface ListServicesCommandOutput extends ListServicesResponse, __Metad
|
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
|
-
* <p>Lists the names and codes for the
|
|
26
|
+
* <p>Lists the names and codes for the Amazon Web Services integrated with Service Quotas.</p>
|
|
27
27
|
* @example
|
|
28
28
|
* Use a bare-bones client and the command you need to make an API call.
|
|
29
29
|
* ```javascript
|
|
@@ -67,8 +67,8 @@ export interface ListServicesCommandOutput extends ListServicesResponse, __Metad
|
|
|
67
67
|
* <p>Something went wrong.</p>
|
|
68
68
|
*
|
|
69
69
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
70
|
-
* <p>Due to throttling, the request was denied. Slow down the rate of request calls, or
|
|
71
|
-
*
|
|
70
|
+
* <p>Due to throttling, the request was denied. Slow down the rate of request calls, or
|
|
71
|
+
* request an increase for this quota.</p>
|
|
72
72
|
*
|
|
73
73
|
* @throws {@link ServiceQuotasServiceException}
|
|
74
74
|
* <p>Base exception class for all service exceptions from ServiceQuotas service.</p>
|
|
@@ -65,8 +65,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
65
65
|
* <p>Something went wrong.</p>
|
|
66
66
|
*
|
|
67
67
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
68
|
-
* <p>Due to throttling, the request was denied. Slow down the rate of request calls, or
|
|
69
|
-
*
|
|
68
|
+
* <p>Due to throttling, the request was denied. Slow down the rate of request calls, or
|
|
69
|
+
* request an increase for this quota.</p>
|
|
70
70
|
*
|
|
71
71
|
* @throws {@link ServiceQuotasServiceException}
|
|
72
72
|
* <p>Base exception class for all service exceptions from ServiceQuotas service.</p>
|
|
@@ -63,8 +63,8 @@ export interface PutServiceQuotaIncreaseRequestIntoTemplateCommandOutput extends
|
|
|
63
63
|
* <p>You do not have sufficient permission to perform this action.</p>
|
|
64
64
|
*
|
|
65
65
|
* @throws {@link AWSServiceAccessNotEnabledException} (client fault)
|
|
66
|
-
* <p>The action you attempted is not allowed unless Service Access with Service Quotas is
|
|
67
|
-
*
|
|
66
|
+
* <p>The action you attempted is not allowed unless Service Access with Service Quotas is enabled in
|
|
67
|
+
* your organization.</p>
|
|
68
68
|
*
|
|
69
69
|
* @throws {@link DependencyAccessDeniedException} (client fault)
|
|
70
70
|
* <p>You can't perform this action because a dependency does not have access.</p>
|
|
@@ -73,24 +73,24 @@ export interface PutServiceQuotaIncreaseRequestIntoTemplateCommandOutput extends
|
|
|
73
73
|
* <p>Invalid input was provided.</p>
|
|
74
74
|
*
|
|
75
75
|
* @throws {@link NoAvailableOrganizationException} (client fault)
|
|
76
|
-
* <p>The account making this call is not a member of an organization.</p>
|
|
76
|
+
* <p>The Amazon Web Services account making this call is not a member of an organization.</p>
|
|
77
77
|
*
|
|
78
78
|
* @throws {@link NoSuchResourceException} (client fault)
|
|
79
79
|
* <p>The specified resource does not exist.</p>
|
|
80
80
|
*
|
|
81
81
|
* @throws {@link QuotaExceededException} (client fault)
|
|
82
|
-
* <p>You have exceeded your service quota. To perform the requested action, remove some of
|
|
83
|
-
*
|
|
82
|
+
* <p>You have exceeded your service quota. To perform the requested action, remove some of
|
|
83
|
+
* the relevant resources, or use Service Quotas to request a service quota increase.</p>
|
|
84
84
|
*
|
|
85
85
|
* @throws {@link ServiceException} (server fault)
|
|
86
86
|
* <p>Something went wrong.</p>
|
|
87
87
|
*
|
|
88
88
|
* @throws {@link TemplatesNotAvailableInRegionException} (client fault)
|
|
89
|
-
* <p>The Service Quotas template is not available in this
|
|
89
|
+
* <p>The Service Quotas template is not available in this Amazon Web Services Region.</p>
|
|
90
90
|
*
|
|
91
91
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
92
|
-
* <p>Due to throttling, the request was denied. Slow down the rate of request calls, or
|
|
93
|
-
*
|
|
92
|
+
* <p>Due to throttling, the request was denied. Slow down the rate of request calls, or
|
|
93
|
+
* request an increase for this quota.</p>
|
|
94
94
|
*
|
|
95
95
|
* @throws {@link ServiceQuotasServiceException}
|
|
96
96
|
* <p>Base exception class for all service exceptions from ServiceQuotas service.</p>
|
|
@@ -34,6 +34,7 @@ export interface RequestServiceQuotaIncreaseCommandOutput extends RequestService
|
|
|
34
34
|
* ServiceCode: "STRING_VALUE", // required
|
|
35
35
|
* QuotaCode: "STRING_VALUE", // required
|
|
36
36
|
* DesiredValue: Number("double"), // required
|
|
37
|
+
* ContextId: "STRING_VALUE",
|
|
37
38
|
* };
|
|
38
39
|
* const command = new RequestServiceQuotaIncreaseCommand(input);
|
|
39
40
|
* const response = await client.send(command);
|
|
@@ -46,13 +47,19 @@ export interface RequestServiceQuotaIncreaseCommandOutput extends RequestService
|
|
|
46
47
|
* // QuotaCode: "STRING_VALUE",
|
|
47
48
|
* // QuotaName: "STRING_VALUE",
|
|
48
49
|
* // DesiredValue: Number("double"),
|
|
49
|
-
* // Status: "
|
|
50
|
+
* // Status: "PENDING" || "CASE_OPENED" || "APPROVED" || "DENIED" || "CASE_CLOSED" || "NOT_APPROVED" || "INVALID_REQUEST",
|
|
50
51
|
* // Created: new Date("TIMESTAMP"),
|
|
51
52
|
* // LastUpdated: new Date("TIMESTAMP"),
|
|
52
53
|
* // Requester: "STRING_VALUE",
|
|
53
54
|
* // QuotaArn: "STRING_VALUE",
|
|
54
55
|
* // GlobalQuota: true || false,
|
|
55
56
|
* // Unit: "STRING_VALUE",
|
|
57
|
+
* // QuotaRequestedAtLevel: "ACCOUNT" || "RESOURCE" || "ALL",
|
|
58
|
+
* // QuotaContext: { // QuotaContextInfo
|
|
59
|
+
* // ContextScope: "RESOURCE" || "ACCOUNT",
|
|
60
|
+
* // ContextScopeType: "STRING_VALUE",
|
|
61
|
+
* // ContextId: "STRING_VALUE",
|
|
62
|
+
* // },
|
|
56
63
|
* // },
|
|
57
64
|
* // };
|
|
58
65
|
*
|
|
@@ -80,8 +87,8 @@ export interface RequestServiceQuotaIncreaseCommandOutput extends RequestService
|
|
|
80
87
|
* <p>The specified resource does not exist.</p>
|
|
81
88
|
*
|
|
82
89
|
* @throws {@link QuotaExceededException} (client fault)
|
|
83
|
-
* <p>You have exceeded your service quota. To perform the requested action, remove some of
|
|
84
|
-
*
|
|
90
|
+
* <p>You have exceeded your service quota. To perform the requested action, remove some of
|
|
91
|
+
* the relevant resources, or use Service Quotas to request a service quota increase.</p>
|
|
85
92
|
*
|
|
86
93
|
* @throws {@link ResourceAlreadyExistsException} (client fault)
|
|
87
94
|
* <p>The specified resource already exists.</p>
|
|
@@ -90,8 +97,8 @@ export interface RequestServiceQuotaIncreaseCommandOutput extends RequestService
|
|
|
90
97
|
* <p>Something went wrong.</p>
|
|
91
98
|
*
|
|
92
99
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
93
|
-
* <p>Due to throttling, the request was denied. Slow down the rate of request calls, or
|
|
94
|
-
*
|
|
100
|
+
* <p>Due to throttling, the request was denied. Slow down the rate of request calls, or
|
|
101
|
+
* request an increase for this quota.</p>
|
|
95
102
|
*
|
|
96
103
|
* @throws {@link ServiceQuotasServiceException}
|
|
97
104
|
* <p>Base exception class for all service exceptions from ServiceQuotas service.</p>
|
|
@@ -23,8 +23,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
|
-
* <p>Adds tags to the specified applied quota. You can include one or more tags to add to
|
|
27
|
-
*
|
|
26
|
+
* <p>Adds tags to the specified applied quota. You can include one or more tags to add to
|
|
27
|
+
* the quota.</p>
|
|
28
28
|
* @example
|
|
29
29
|
* Use a bare-bones client and the command you need to make an API call.
|
|
30
30
|
* ```javascript
|
|
@@ -68,13 +68,13 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
68
68
|
* <p>The specified tag is a reserved word and cannot be used.</p>
|
|
69
69
|
*
|
|
70
70
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
71
|
-
* <p>Due to throttling, the request was denied. Slow down the rate of request calls, or
|
|
72
|
-
*
|
|
71
|
+
* <p>Due to throttling, the request was denied. Slow down the rate of request calls, or
|
|
72
|
+
* request an increase for this quota.</p>
|
|
73
73
|
*
|
|
74
74
|
* @throws {@link TooManyTagsException} (client fault)
|
|
75
75
|
* <p>You've exceeded the number of tags allowed for a resource. For more information, see
|
|
76
|
-
*
|
|
77
|
-
*
|
|
76
|
+
* <a href="https://docs.aws.amazon.com/servicequotas/latest/userguide/sq-tagging.html#sq-tagging-restrictions">Tag
|
|
77
|
+
* restrictions</a> in the <i>Service Quotas User Guide</i>.</p>
|
|
78
78
|
*
|
|
79
79
|
* @throws {@link ServiceQuotasServiceException}
|
|
80
80
|
* <p>Base exception class for all service exceptions from ServiceQuotas service.</p>
|
|
@@ -24,7 +24,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
26
|
* <p>Removes tags from the specified applied quota. You can specify one or more tags to
|
|
27
|
-
*
|
|
27
|
+
* remove.</p>
|
|
28
28
|
* @example
|
|
29
29
|
* Use a bare-bones client and the command you need to make an API call.
|
|
30
30
|
* ```javascript
|
|
@@ -62,8 +62,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
62
62
|
* <p>Something went wrong.</p>
|
|
63
63
|
*
|
|
64
64
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
65
|
-
* <p>Due to throttling, the request was denied. Slow down the rate of request calls, or
|
|
66
|
-
*
|
|
65
|
+
* <p>Due to throttling, the request was denied. Slow down the rate of request calls, or
|
|
66
|
+
* request an increase for this quota.</p>
|
|
67
67
|
*
|
|
68
68
|
* @throws {@link ServiceQuotasServiceException}
|
|
69
69
|
* <p>Base exception class for all service exceptions from ServiceQuotas service.</p>
|
package/dist-types/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* <p>With Service Quotas, you can view and manage your quotas easily as your
|
|
3
|
-
*
|
|
4
|
-
*
|
|
2
|
+
* <p>With Service Quotas, you can view and manage your quotas easily as your Amazon Web Services workloads grow.
|
|
3
|
+
* Quotas, also referred to as limits, are the maximum number of resources that you can
|
|
4
|
+
* create in your Amazon Web Services account. For more information, see the <a href="https://docs.aws.amazon.com/servicequotas/latest/userguide/">Service Quotas User Guide</a>.</p>
|
|
5
5
|
*
|
|
6
6
|
* @packageDocumentation
|
|
7
7
|
*/
|