@aws-sdk/client-service-quotas 3.533.0 → 3.535.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 (43) hide show
  1. package/dist-types/ServiceQuotas.d.ts +7 -1
  2. package/dist-types/ServiceQuotasClient.d.ts +1 -1
  3. package/dist-types/commands/AssociateServiceQuotaTemplateCommand.d.ts +2 -1
  4. package/dist-types/commands/DeleteServiceQuotaIncreaseRequestFromTemplateCommand.d.ts +2 -1
  5. package/dist-types/commands/DisassociateServiceQuotaTemplateCommand.d.ts +2 -1
  6. package/dist-types/commands/GetAWSDefaultServiceQuotaCommand.d.ts +2 -1
  7. package/dist-types/commands/GetAssociationForServiceQuotaTemplateCommand.d.ts +2 -1
  8. package/dist-types/commands/GetRequestedServiceQuotaChangeCommand.d.ts +2 -1
  9. package/dist-types/commands/GetServiceQuotaCommand.d.ts +2 -1
  10. package/dist-types/commands/GetServiceQuotaIncreaseRequestFromTemplateCommand.d.ts +2 -1
  11. package/dist-types/commands/ListAWSDefaultServiceQuotasCommand.d.ts +2 -1
  12. package/dist-types/commands/ListRequestedServiceQuotaChangeHistoryByQuotaCommand.d.ts +2 -1
  13. package/dist-types/commands/ListRequestedServiceQuotaChangeHistoryCommand.d.ts +2 -1
  14. package/dist-types/commands/ListServiceQuotaIncreaseRequestsInTemplateCommand.d.ts +2 -1
  15. package/dist-types/commands/ListServiceQuotasCommand.d.ts +2 -1
  16. package/dist-types/commands/ListServicesCommand.d.ts +2 -1
  17. package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
  18. package/dist-types/commands/PutServiceQuotaIncreaseRequestIntoTemplateCommand.d.ts +2 -1
  19. package/dist-types/commands/RequestServiceQuotaIncreaseCommand.d.ts +2 -1
  20. package/dist-types/commands/TagResourceCommand.d.ts +2 -1
  21. package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
  22. package/dist-types/models/models_0.d.ts +149 -149
  23. package/dist-types/ts3.4/ServiceQuotas.d.ts +6 -0
  24. package/dist-types/ts3.4/commands/AssociateServiceQuotaTemplateCommand.d.ts +9 -0
  25. package/dist-types/ts3.4/commands/DeleteServiceQuotaIncreaseRequestFromTemplateCommand.d.ts +9 -0
  26. package/dist-types/ts3.4/commands/DisassociateServiceQuotaTemplateCommand.d.ts +9 -0
  27. package/dist-types/ts3.4/commands/GetAWSDefaultServiceQuotaCommand.d.ts +9 -0
  28. package/dist-types/ts3.4/commands/GetAssociationForServiceQuotaTemplateCommand.d.ts +9 -0
  29. package/dist-types/ts3.4/commands/GetRequestedServiceQuotaChangeCommand.d.ts +9 -0
  30. package/dist-types/ts3.4/commands/GetServiceQuotaCommand.d.ts +9 -0
  31. package/dist-types/ts3.4/commands/GetServiceQuotaIncreaseRequestFromTemplateCommand.d.ts +9 -0
  32. package/dist-types/ts3.4/commands/ListAWSDefaultServiceQuotasCommand.d.ts +9 -0
  33. package/dist-types/ts3.4/commands/ListRequestedServiceQuotaChangeHistoryByQuotaCommand.d.ts +9 -0
  34. package/dist-types/ts3.4/commands/ListRequestedServiceQuotaChangeHistoryCommand.d.ts +9 -0
  35. package/dist-types/ts3.4/commands/ListServiceQuotaIncreaseRequestsInTemplateCommand.d.ts +9 -0
  36. package/dist-types/ts3.4/commands/ListServiceQuotasCommand.d.ts +9 -0
  37. package/dist-types/ts3.4/commands/ListServicesCommand.d.ts +9 -0
  38. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
  39. package/dist-types/ts3.4/commands/PutServiceQuotaIncreaseRequestIntoTemplateCommand.d.ts +9 -0
  40. package/dist-types/ts3.4/commands/RequestServiceQuotaIncreaseCommand.d.ts +9 -0
  41. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
  42. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
  43. package/package.json +40 -40
@@ -23,6 +23,7 @@ export interface ServiceQuotas {
23
23
  /**
24
24
  * @see {@link AssociateServiceQuotaTemplateCommand}
25
25
  */
26
+ associateServiceQuotaTemplate(): Promise<AssociateServiceQuotaTemplateCommandOutput>;
26
27
  associateServiceQuotaTemplate(args: AssociateServiceQuotaTemplateCommandInput, options?: __HttpHandlerOptions): Promise<AssociateServiceQuotaTemplateCommandOutput>;
27
28
  associateServiceQuotaTemplate(args: AssociateServiceQuotaTemplateCommandInput, cb: (err: any, data?: AssociateServiceQuotaTemplateCommandOutput) => void): void;
28
29
  associateServiceQuotaTemplate(args: AssociateServiceQuotaTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateServiceQuotaTemplateCommandOutput) => void): void;
@@ -35,12 +36,14 @@ export interface ServiceQuotas {
35
36
  /**
36
37
  * @see {@link DisassociateServiceQuotaTemplateCommand}
37
38
  */
39
+ disassociateServiceQuotaTemplate(): Promise<DisassociateServiceQuotaTemplateCommandOutput>;
38
40
  disassociateServiceQuotaTemplate(args: DisassociateServiceQuotaTemplateCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateServiceQuotaTemplateCommandOutput>;
39
41
  disassociateServiceQuotaTemplate(args: DisassociateServiceQuotaTemplateCommandInput, cb: (err: any, data?: DisassociateServiceQuotaTemplateCommandOutput) => void): void;
40
42
  disassociateServiceQuotaTemplate(args: DisassociateServiceQuotaTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateServiceQuotaTemplateCommandOutput) => void): void;
41
43
  /**
42
44
  * @see {@link GetAssociationForServiceQuotaTemplateCommand}
43
45
  */
46
+ getAssociationForServiceQuotaTemplate(): Promise<GetAssociationForServiceQuotaTemplateCommandOutput>;
44
47
  getAssociationForServiceQuotaTemplate(args: GetAssociationForServiceQuotaTemplateCommandInput, options?: __HttpHandlerOptions): Promise<GetAssociationForServiceQuotaTemplateCommandOutput>;
45
48
  getAssociationForServiceQuotaTemplate(args: GetAssociationForServiceQuotaTemplateCommandInput, cb: (err: any, data?: GetAssociationForServiceQuotaTemplateCommandOutput) => void): void;
46
49
  getAssociationForServiceQuotaTemplate(args: GetAssociationForServiceQuotaTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAssociationForServiceQuotaTemplateCommandOutput) => void): void;
@@ -77,6 +80,7 @@ export interface ServiceQuotas {
77
80
  /**
78
81
  * @see {@link ListRequestedServiceQuotaChangeHistoryCommand}
79
82
  */
83
+ listRequestedServiceQuotaChangeHistory(): Promise<ListRequestedServiceQuotaChangeHistoryCommandOutput>;
80
84
  listRequestedServiceQuotaChangeHistory(args: ListRequestedServiceQuotaChangeHistoryCommandInput, options?: __HttpHandlerOptions): Promise<ListRequestedServiceQuotaChangeHistoryCommandOutput>;
81
85
  listRequestedServiceQuotaChangeHistory(args: ListRequestedServiceQuotaChangeHistoryCommandInput, cb: (err: any, data?: ListRequestedServiceQuotaChangeHistoryCommandOutput) => void): void;
82
86
  listRequestedServiceQuotaChangeHistory(args: ListRequestedServiceQuotaChangeHistoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRequestedServiceQuotaChangeHistoryCommandOutput) => void): void;
@@ -89,6 +93,7 @@ export interface ServiceQuotas {
89
93
  /**
90
94
  * @see {@link ListServiceQuotaIncreaseRequestsInTemplateCommand}
91
95
  */
96
+ listServiceQuotaIncreaseRequestsInTemplate(): Promise<ListServiceQuotaIncreaseRequestsInTemplateCommandOutput>;
92
97
  listServiceQuotaIncreaseRequestsInTemplate(args: ListServiceQuotaIncreaseRequestsInTemplateCommandInput, options?: __HttpHandlerOptions): Promise<ListServiceQuotaIncreaseRequestsInTemplateCommandOutput>;
93
98
  listServiceQuotaIncreaseRequestsInTemplate(args: ListServiceQuotaIncreaseRequestsInTemplateCommandInput, cb: (err: any, data?: ListServiceQuotaIncreaseRequestsInTemplateCommandOutput) => void): void;
94
99
  listServiceQuotaIncreaseRequestsInTemplate(args: ListServiceQuotaIncreaseRequestsInTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListServiceQuotaIncreaseRequestsInTemplateCommandOutput) => void): void;
@@ -101,6 +106,7 @@ export interface ServiceQuotas {
101
106
  /**
102
107
  * @see {@link ListServicesCommand}
103
108
  */
109
+ listServices(): Promise<ListServicesCommandOutput>;
104
110
  listServices(args: ListServicesCommandInput, options?: __HttpHandlerOptions): Promise<ListServicesCommandOutput>;
105
111
  listServices(args: ListServicesCommandInput, cb: (err: any, data?: ListServicesCommandOutput) => void): void;
106
112
  listServices(args: ListServicesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListServicesCommandOutput) => void): void;
@@ -136,10 +142,10 @@ export interface ServiceQuotas {
136
142
  untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
137
143
  }
138
144
  /**
139
- * @public
140
145
  * <p>With Service Quotas, you can view and manage your quotas easily as your Amazon Web Services workloads grow.
141
146
  * Quotas, also referred to as limits, are the maximum number of resources that you can
142
147
  * 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>
148
+ * @public
143
149
  */
144
150
  export declare class ServiceQuotas extends ServiceQuotasClient implements ServiceQuotas {
145
151
  }
@@ -170,10 +170,10 @@ export type ServiceQuotasClientResolvedConfigType = __SmithyResolvedConfiguratio
170
170
  export interface ServiceQuotasClientResolvedConfig extends ServiceQuotasClientResolvedConfigType {
171
171
  }
172
172
  /**
173
- * @public
174
173
  * <p>With Service Quotas, you can view and manage your quotas easily as your Amazon Web Services workloads grow.
175
174
  * Quotas, also referred to as limits, are the maximum number of resources that you can
176
175
  * 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>
176
+ * @public
177
177
  */
178
178
  export declare class ServiceQuotasClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig> {
179
179
  /**
@@ -22,10 +22,10 @@ export interface AssociateServiceQuotaTemplateCommandOutput extends AssociateSer
22
22
  }
23
23
  declare const AssociateServiceQuotaTemplateCommand_base: {
24
24
  new (input: AssociateServiceQuotaTemplateCommandInput): import("@smithy/smithy-client").CommandImpl<AssociateServiceQuotaTemplateCommandInput, AssociateServiceQuotaTemplateCommandOutput, ServiceQuotasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (...[input]: [] | [AssociateServiceQuotaTemplateCommandInput]): import("@smithy/smithy-client").CommandImpl<AssociateServiceQuotaTemplateCommandInput, AssociateServiceQuotaTemplateCommandOutput, ServiceQuotasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Associates your quota request template with your organization. When a new
30
30
  * Amazon Web Services account is created in your organization, the quota increase requests in the
31
31
  * template are automatically applied to the account. You can add a quota increase request
@@ -79,6 +79,7 @@ declare const AssociateServiceQuotaTemplateCommand_base: {
79
79
  * @throws {@link ServiceQuotasServiceException}
80
80
  * <p>Base exception class for all service exceptions from ServiceQuotas service.</p>
81
81
  *
82
+ * @public
82
83
  */
83
84
  export declare class AssociateServiceQuotaTemplateCommand extends AssociateServiceQuotaTemplateCommand_base {
84
85
  }
@@ -22,10 +22,10 @@ export interface DeleteServiceQuotaIncreaseRequestFromTemplateCommandOutput exte
22
22
  }
23
23
  declare const DeleteServiceQuotaIncreaseRequestFromTemplateCommand_base: {
24
24
  new (input: DeleteServiceQuotaIncreaseRequestFromTemplateCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteServiceQuotaIncreaseRequestFromTemplateCommandInput, DeleteServiceQuotaIncreaseRequestFromTemplateCommandOutput, ServiceQuotasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DeleteServiceQuotaIncreaseRequestFromTemplateCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteServiceQuotaIncreaseRequestFromTemplateCommandInput, DeleteServiceQuotaIncreaseRequestFromTemplateCommandOutput, ServiceQuotasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Deletes the quota increase request for the specified quota from your quota request
30
30
  * template.</p>
31
31
  * @example
@@ -83,6 +83,7 @@ declare const DeleteServiceQuotaIncreaseRequestFromTemplateCommand_base: {
83
83
  * @throws {@link ServiceQuotasServiceException}
84
84
  * <p>Base exception class for all service exceptions from ServiceQuotas service.</p>
85
85
  *
86
+ * @public
86
87
  */
87
88
  export declare class DeleteServiceQuotaIncreaseRequestFromTemplateCommand extends DeleteServiceQuotaIncreaseRequestFromTemplateCommand_base {
88
89
  }
@@ -22,10 +22,10 @@ export interface DisassociateServiceQuotaTemplateCommandOutput extends Disassoci
22
22
  }
23
23
  declare const DisassociateServiceQuotaTemplateCommand_base: {
24
24
  new (input: DisassociateServiceQuotaTemplateCommandInput): import("@smithy/smithy-client").CommandImpl<DisassociateServiceQuotaTemplateCommandInput, DisassociateServiceQuotaTemplateCommandOutput, ServiceQuotasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (...[input]: [] | [DisassociateServiceQuotaTemplateCommandInput]): import("@smithy/smithy-client").CommandImpl<DisassociateServiceQuotaTemplateCommandInput, DisassociateServiceQuotaTemplateCommandOutput, ServiceQuotasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Disables your quota request template. After a template is disabled, the quota increase
30
30
  * requests in the template are not applied to new Amazon Web Services accounts in your organization.
31
31
  * Disabling a quota request template does not apply its quota increase requests.</p>
@@ -77,6 +77,7 @@ declare const DisassociateServiceQuotaTemplateCommand_base: {
77
77
  * @throws {@link ServiceQuotasServiceException}
78
78
  * <p>Base exception class for all service exceptions from ServiceQuotas service.</p>
79
79
  *
80
+ * @public
80
81
  */
81
82
  export declare class DisassociateServiceQuotaTemplateCommand extends DisassociateServiceQuotaTemplateCommand_base {
82
83
  }
@@ -22,10 +22,10 @@ export interface GetAWSDefaultServiceQuotaCommandOutput extends GetAWSDefaultSer
22
22
  }
23
23
  declare const GetAWSDefaultServiceQuotaCommand_base: {
24
24
  new (input: GetAWSDefaultServiceQuotaCommandInput): import("@smithy/smithy-client").CommandImpl<GetAWSDefaultServiceQuotaCommandInput, GetAWSDefaultServiceQuotaCommandOutput, ServiceQuotasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: GetAWSDefaultServiceQuotaCommandInput): import("@smithy/smithy-client").CommandImpl<GetAWSDefaultServiceQuotaCommandInput, GetAWSDefaultServiceQuotaCommandOutput, ServiceQuotasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Retrieves the default value for the specified quota. The default value does not
30
30
  * reflect any quota increases.</p>
31
31
  * @example
@@ -103,6 +103,7 @@ declare const GetAWSDefaultServiceQuotaCommand_base: {
103
103
  * @throws {@link ServiceQuotasServiceException}
104
104
  * <p>Base exception class for all service exceptions from ServiceQuotas service.</p>
105
105
  *
106
+ * @public
106
107
  */
107
108
  export declare class GetAWSDefaultServiceQuotaCommand extends GetAWSDefaultServiceQuotaCommand_base {
108
109
  }
@@ -22,10 +22,10 @@ export interface GetAssociationForServiceQuotaTemplateCommandOutput extends GetA
22
22
  }
23
23
  declare const GetAssociationForServiceQuotaTemplateCommand_base: {
24
24
  new (input: GetAssociationForServiceQuotaTemplateCommandInput): import("@smithy/smithy-client").CommandImpl<GetAssociationForServiceQuotaTemplateCommandInput, GetAssociationForServiceQuotaTemplateCommandOutput, ServiceQuotasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (...[input]: [] | [GetAssociationForServiceQuotaTemplateCommandInput]): import("@smithy/smithy-client").CommandImpl<GetAssociationForServiceQuotaTemplateCommandInput, GetAssociationForServiceQuotaTemplateCommandOutput, ServiceQuotasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Retrieves the status of the association for the quota request template.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -77,6 +77,7 @@ declare const GetAssociationForServiceQuotaTemplateCommand_base: {
77
77
  * @throws {@link ServiceQuotasServiceException}
78
78
  * <p>Base exception class for all service exceptions from ServiceQuotas service.</p>
79
79
  *
80
+ * @public
80
81
  */
81
82
  export declare class GetAssociationForServiceQuotaTemplateCommand extends GetAssociationForServiceQuotaTemplateCommand_base {
82
83
  }
@@ -22,10 +22,10 @@ export interface GetRequestedServiceQuotaChangeCommandOutput extends GetRequeste
22
22
  }
23
23
  declare const GetRequestedServiceQuotaChangeCommand_base: {
24
24
  new (input: GetRequestedServiceQuotaChangeCommandInput): import("@smithy/smithy-client").CommandImpl<GetRequestedServiceQuotaChangeCommandInput, GetRequestedServiceQuotaChangeCommandOutput, ServiceQuotasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: GetRequestedServiceQuotaChangeCommandInput): import("@smithy/smithy-client").CommandImpl<GetRequestedServiceQuotaChangeCommandInput, GetRequestedServiceQuotaChangeCommandOutput, ServiceQuotasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Retrieves information about the specified quota increase request.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -90,6 +90,7 @@ declare const GetRequestedServiceQuotaChangeCommand_base: {
90
90
  * @throws {@link ServiceQuotasServiceException}
91
91
  * <p>Base exception class for all service exceptions from ServiceQuotas service.</p>
92
92
  *
93
+ * @public
93
94
  */
94
95
  export declare class GetRequestedServiceQuotaChangeCommand extends GetRequestedServiceQuotaChangeCommand_base {
95
96
  }
@@ -22,10 +22,10 @@ export interface GetServiceQuotaCommandOutput extends GetServiceQuotaResponse, _
22
22
  }
23
23
  declare const GetServiceQuotaCommand_base: {
24
24
  new (input: GetServiceQuotaCommandInput): import("@smithy/smithy-client").CommandImpl<GetServiceQuotaCommandInput, GetServiceQuotaCommandOutput, ServiceQuotasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: GetServiceQuotaCommandInput): import("@smithy/smithy-client").CommandImpl<GetServiceQuotaCommandInput, GetServiceQuotaCommandOutput, ServiceQuotasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Retrieves the applied quota value for the specified quota. For some quotas, only the
30
30
  * default values are available. If the applied quota value is not available for a quota,
31
31
  * the quota is not retrieved.</p>
@@ -105,6 +105,7 @@ declare const GetServiceQuotaCommand_base: {
105
105
  * @throws {@link ServiceQuotasServiceException}
106
106
  * <p>Base exception class for all service exceptions from ServiceQuotas service.</p>
107
107
  *
108
+ * @public
108
109
  */
109
110
  export declare class GetServiceQuotaCommand extends GetServiceQuotaCommand_base {
110
111
  }
@@ -22,10 +22,10 @@ export interface GetServiceQuotaIncreaseRequestFromTemplateCommandOutput extends
22
22
  }
23
23
  declare const GetServiceQuotaIncreaseRequestFromTemplateCommand_base: {
24
24
  new (input: GetServiceQuotaIncreaseRequestFromTemplateCommandInput): import("@smithy/smithy-client").CommandImpl<GetServiceQuotaIncreaseRequestFromTemplateCommandInput, GetServiceQuotaIncreaseRequestFromTemplateCommandOutput, ServiceQuotasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: GetServiceQuotaIncreaseRequestFromTemplateCommandInput): import("@smithy/smithy-client").CommandImpl<GetServiceQuotaIncreaseRequestFromTemplateCommandInput, GetServiceQuotaIncreaseRequestFromTemplateCommandOutput, ServiceQuotasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Retrieves information about the specified quota increase request in your quota request
30
30
  * template.</p>
31
31
  * @example
@@ -94,6 +94,7 @@ declare const GetServiceQuotaIncreaseRequestFromTemplateCommand_base: {
94
94
  * @throws {@link ServiceQuotasServiceException}
95
95
  * <p>Base exception class for all service exceptions from ServiceQuotas service.</p>
96
96
  *
97
+ * @public
97
98
  */
98
99
  export declare class GetServiceQuotaIncreaseRequestFromTemplateCommand extends GetServiceQuotaIncreaseRequestFromTemplateCommand_base {
99
100
  }
@@ -22,10 +22,10 @@ export interface ListAWSDefaultServiceQuotasCommandOutput extends ListAWSDefault
22
22
  }
23
23
  declare const ListAWSDefaultServiceQuotasCommand_base: {
24
24
  new (input: ListAWSDefaultServiceQuotasCommandInput): import("@smithy/smithy-client").CommandImpl<ListAWSDefaultServiceQuotasCommandInput, ListAWSDefaultServiceQuotasCommandOutput, ServiceQuotasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: ListAWSDefaultServiceQuotasCommandInput): import("@smithy/smithy-client").CommandImpl<ListAWSDefaultServiceQuotasCommandInput, ListAWSDefaultServiceQuotasCommandOutput, ServiceQuotasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Lists the default values for the quotas for the specified Amazon Web Service. A default
30
30
  * value does not reflect any quota increases.</p>
31
31
  * @example
@@ -110,6 +110,7 @@ declare const ListAWSDefaultServiceQuotasCommand_base: {
110
110
  * @throws {@link ServiceQuotasServiceException}
111
111
  * <p>Base exception class for all service exceptions from ServiceQuotas service.</p>
112
112
  *
113
+ * @public
113
114
  */
114
115
  export declare class ListAWSDefaultServiceQuotasCommand extends ListAWSDefaultServiceQuotasCommand_base {
115
116
  }
@@ -22,10 +22,10 @@ export interface ListRequestedServiceQuotaChangeHistoryByQuotaCommandOutput exte
22
22
  }
23
23
  declare const ListRequestedServiceQuotaChangeHistoryByQuotaCommand_base: {
24
24
  new (input: ListRequestedServiceQuotaChangeHistoryByQuotaCommandInput): import("@smithy/smithy-client").CommandImpl<ListRequestedServiceQuotaChangeHistoryByQuotaCommandInput, ListRequestedServiceQuotaChangeHistoryByQuotaCommandOutput, ServiceQuotasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: ListRequestedServiceQuotaChangeHistoryByQuotaCommandInput): import("@smithy/smithy-client").CommandImpl<ListRequestedServiceQuotaChangeHistoryByQuotaCommandInput, ListRequestedServiceQuotaChangeHistoryByQuotaCommandOutput, ServiceQuotasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Retrieves the quota increase requests for the specified quota.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -101,6 +101,7 @@ declare const ListRequestedServiceQuotaChangeHistoryByQuotaCommand_base: {
101
101
  * @throws {@link ServiceQuotasServiceException}
102
102
  * <p>Base exception class for all service exceptions from ServiceQuotas service.</p>
103
103
  *
104
+ * @public
104
105
  */
105
106
  export declare class ListRequestedServiceQuotaChangeHistoryByQuotaCommand extends ListRequestedServiceQuotaChangeHistoryByQuotaCommand_base {
106
107
  }
@@ -22,10 +22,10 @@ export interface ListRequestedServiceQuotaChangeHistoryCommandOutput extends Lis
22
22
  }
23
23
  declare const ListRequestedServiceQuotaChangeHistoryCommand_base: {
24
24
  new (input: ListRequestedServiceQuotaChangeHistoryCommandInput): import("@smithy/smithy-client").CommandImpl<ListRequestedServiceQuotaChangeHistoryCommandInput, ListRequestedServiceQuotaChangeHistoryCommandOutput, ServiceQuotasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (...[input]: [] | [ListRequestedServiceQuotaChangeHistoryCommandInput]): import("@smithy/smithy-client").CommandImpl<ListRequestedServiceQuotaChangeHistoryCommandInput, ListRequestedServiceQuotaChangeHistoryCommandOutput, ServiceQuotasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Retrieves the quota increase requests for the specified Amazon Web Service.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -100,6 +100,7 @@ declare const ListRequestedServiceQuotaChangeHistoryCommand_base: {
100
100
  * @throws {@link ServiceQuotasServiceException}
101
101
  * <p>Base exception class for all service exceptions from ServiceQuotas service.</p>
102
102
  *
103
+ * @public
103
104
  */
104
105
  export declare class ListRequestedServiceQuotaChangeHistoryCommand extends ListRequestedServiceQuotaChangeHistoryCommand_base {
105
106
  }
@@ -22,10 +22,10 @@ export interface ListServiceQuotaIncreaseRequestsInTemplateCommandOutput extends
22
22
  }
23
23
  declare const ListServiceQuotaIncreaseRequestsInTemplateCommand_base: {
24
24
  new (input: ListServiceQuotaIncreaseRequestsInTemplateCommandInput): import("@smithy/smithy-client").CommandImpl<ListServiceQuotaIncreaseRequestsInTemplateCommandInput, ListServiceQuotaIncreaseRequestsInTemplateCommandOutput, ServiceQuotasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (...[input]: [] | [ListServiceQuotaIncreaseRequestsInTemplateCommandInput]): import("@smithy/smithy-client").CommandImpl<ListServiceQuotaIncreaseRequestsInTemplateCommandInput, ListServiceQuotaIncreaseRequestsInTemplateCommandOutput, ServiceQuotasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Lists the quota increase requests in the specified quota request template.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -94,6 +94,7 @@ declare const ListServiceQuotaIncreaseRequestsInTemplateCommand_base: {
94
94
  * @throws {@link ServiceQuotasServiceException}
95
95
  * <p>Base exception class for all service exceptions from ServiceQuotas service.</p>
96
96
  *
97
+ * @public
97
98
  */
98
99
  export declare class ListServiceQuotaIncreaseRequestsInTemplateCommand extends ListServiceQuotaIncreaseRequestsInTemplateCommand_base {
99
100
  }
@@ -22,10 +22,10 @@ export interface ListServiceQuotasCommandOutput extends ListServiceQuotasRespons
22
22
  }
23
23
  declare const ListServiceQuotasCommand_base: {
24
24
  new (input: ListServiceQuotasCommandInput): import("@smithy/smithy-client").CommandImpl<ListServiceQuotasCommandInput, ListServiceQuotasCommandOutput, ServiceQuotasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: ListServiceQuotasCommandInput): import("@smithy/smithy-client").CommandImpl<ListServiceQuotasCommandInput, ListServiceQuotasCommandOutput, ServiceQuotasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Lists the applied quota values for the specified Amazon Web Service. For some quotas, only
30
30
  * the default values are available. If the applied quota value is not available for a
31
31
  * quota, the quota is not retrieved.</p>
@@ -113,6 +113,7 @@ declare const ListServiceQuotasCommand_base: {
113
113
  * @throws {@link ServiceQuotasServiceException}
114
114
  * <p>Base exception class for all service exceptions from ServiceQuotas service.</p>
115
115
  *
116
+ * @public
116
117
  */
117
118
  export declare class ListServiceQuotasCommand extends ListServiceQuotasCommand_base {
118
119
  }
@@ -22,10 +22,10 @@ export interface ListServicesCommandOutput extends ListServicesResponse, __Metad
22
22
  }
23
23
  declare const ListServicesCommand_base: {
24
24
  new (input: ListServicesCommandInput): import("@smithy/smithy-client").CommandImpl<ListServicesCommandInput, ListServicesCommandOutput, ServiceQuotasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (...[input]: [] | [ListServicesCommandInput]): import("@smithy/smithy-client").CommandImpl<ListServicesCommandInput, ListServicesCommandOutput, ServiceQuotasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Lists the names and codes for the Amazon Web Services integrated with Service Quotas.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -76,6 +76,7 @@ declare const ListServicesCommand_base: {
76
76
  * @throws {@link ServiceQuotasServiceException}
77
77
  * <p>Base exception class for all service exceptions from ServiceQuotas service.</p>
78
78
  *
79
+ * @public
79
80
  */
80
81
  export declare class ListServicesCommand extends ListServicesCommand_base {
81
82
  }
@@ -22,10 +22,10 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
22
22
  }
23
23
  declare const ListTagsForResourceCommand_base: {
24
24
  new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, ServiceQuotasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, ServiceQuotasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Returns a list of the tags assigned to the specified applied quota.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -74,6 +74,7 @@ declare const ListTagsForResourceCommand_base: {
74
74
  * @throws {@link ServiceQuotasServiceException}
75
75
  * <p>Base exception class for all service exceptions from ServiceQuotas service.</p>
76
76
  *
77
+ * @public
77
78
  */
78
79
  export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
79
80
  }
@@ -22,10 +22,10 @@ export interface PutServiceQuotaIncreaseRequestIntoTemplateCommandOutput extends
22
22
  }
23
23
  declare const PutServiceQuotaIncreaseRequestIntoTemplateCommand_base: {
24
24
  new (input: PutServiceQuotaIncreaseRequestIntoTemplateCommandInput): import("@smithy/smithy-client").CommandImpl<PutServiceQuotaIncreaseRequestIntoTemplateCommandInput, PutServiceQuotaIncreaseRequestIntoTemplateCommandOutput, ServiceQuotasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: PutServiceQuotaIncreaseRequestIntoTemplateCommandInput): import("@smithy/smithy-client").CommandImpl<PutServiceQuotaIncreaseRequestIntoTemplateCommandInput, PutServiceQuotaIncreaseRequestIntoTemplateCommandOutput, ServiceQuotasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Adds a quota increase request to your quota request template.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -98,6 +98,7 @@ declare const PutServiceQuotaIncreaseRequestIntoTemplateCommand_base: {
98
98
  * @throws {@link ServiceQuotasServiceException}
99
99
  * <p>Base exception class for all service exceptions from ServiceQuotas service.</p>
100
100
  *
101
+ * @public
101
102
  */
102
103
  export declare class PutServiceQuotaIncreaseRequestIntoTemplateCommand extends PutServiceQuotaIncreaseRequestIntoTemplateCommand_base {
103
104
  }
@@ -22,10 +22,10 @@ export interface RequestServiceQuotaIncreaseCommandOutput extends RequestService
22
22
  }
23
23
  declare const RequestServiceQuotaIncreaseCommand_base: {
24
24
  new (input: RequestServiceQuotaIncreaseCommandInput): import("@smithy/smithy-client").CommandImpl<RequestServiceQuotaIncreaseCommandInput, RequestServiceQuotaIncreaseCommandOutput, ServiceQuotasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: RequestServiceQuotaIncreaseCommandInput): import("@smithy/smithy-client").CommandImpl<RequestServiceQuotaIncreaseCommandInput, RequestServiceQuotaIncreaseCommandOutput, ServiceQuotasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Submits a quota increase request for the specified quota.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -106,6 +106,7 @@ declare const RequestServiceQuotaIncreaseCommand_base: {
106
106
  * @throws {@link ServiceQuotasServiceException}
107
107
  * <p>Base exception class for all service exceptions from ServiceQuotas service.</p>
108
108
  *
109
+ * @public
109
110
  */
110
111
  export declare class RequestServiceQuotaIncreaseCommand extends RequestServiceQuotaIncreaseCommand_base {
111
112
  }
@@ -22,10 +22,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
22
22
  }
23
23
  declare const TagResourceCommand_base: {
24
24
  new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, ServiceQuotasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, ServiceQuotasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Adds tags to the specified applied quota. You can include one or more tags to add to
30
30
  * the quota.</p>
31
31
  * @example
@@ -82,6 +82,7 @@ declare const TagResourceCommand_base: {
82
82
  * @throws {@link ServiceQuotasServiceException}
83
83
  * <p>Base exception class for all service exceptions from ServiceQuotas service.</p>
84
84
  *
85
+ * @public
85
86
  */
86
87
  export declare class TagResourceCommand extends TagResourceCommand_base {
87
88
  }
@@ -22,10 +22,10 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
22
22
  }
23
23
  declare const UntagResourceCommand_base: {
24
24
  new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, ServiceQuotasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, ServiceQuotasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Removes tags from the specified applied quota. You can specify one or more tags to
30
30
  * remove.</p>
31
31
  * @example
@@ -71,6 +71,7 @@ declare const UntagResourceCommand_base: {
71
71
  * @throws {@link ServiceQuotasServiceException}
72
72
  * <p>Base exception class for all service exceptions from ServiceQuotas service.</p>
73
73
  *
74
+ * @public
74
75
  */
75
76
  export declare class UntagResourceCommand extends UntagResourceCommand_base {
76
77
  }