@aws-sdk/client-service-quotas 3.300.0 → 3.301.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/dist-types/commands/DeleteServiceQuotaIncreaseRequestFromTemplateCommand.d.ts +1 -1
- package/dist-types/commands/GetAWSDefaultServiceQuotaCommand.d.ts +1 -1
- package/dist-types/commands/GetRequestedServiceQuotaChangeCommand.d.ts +1 -1
- package/dist-types/commands/GetServiceQuotaCommand.d.ts +1 -1
- package/dist-types/commands/GetServiceQuotaIncreaseRequestFromTemplateCommand.d.ts +1 -1
- package/dist-types/commands/ListAWSDefaultServiceQuotasCommand.d.ts +1 -1
- package/dist-types/commands/ListRequestedServiceQuotaChangeHistoryByQuotaCommand.d.ts +1 -1
- package/dist-types/commands/ListRequestedServiceQuotaChangeHistoryCommand.d.ts +1 -1
- package/dist-types/commands/ListServiceQuotaIncreaseRequestsInTemplateCommand.d.ts +1 -1
- package/dist-types/commands/ListServiceQuotasCommand.d.ts +1 -1
- package/dist-types/commands/ListServicesCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/PutServiceQuotaIncreaseRequestIntoTemplateCommand.d.ts +1 -1
- package/dist-types/commands/RequestServiceQuotaIncreaseCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +3 -3
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/package.json +3 -3
|
@@ -27,7 +27,7 @@ export interface DeleteServiceQuotaIncreaseRequestFromTemplateCommandOutput exte
|
|
|
27
27
|
* import { ServiceQuotasClient, DeleteServiceQuotaIncreaseRequestFromTemplateCommand } from "@aws-sdk/client-service-quotas"; // ES Modules import
|
|
28
28
|
* // const { ServiceQuotasClient, DeleteServiceQuotaIncreaseRequestFromTemplateCommand } = require("@aws-sdk/client-service-quotas"); // CommonJS import
|
|
29
29
|
* const client = new ServiceQuotasClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // DeleteServiceQuotaIncreaseRequestFromTemplateRequest
|
|
31
31
|
* ServiceCode: "STRING_VALUE", // required
|
|
32
32
|
* QuotaCode: "STRING_VALUE", // required
|
|
33
33
|
* AwsRegion: "STRING_VALUE", // required
|
|
@@ -27,7 +27,7 @@ export interface GetAWSDefaultServiceQuotaCommandOutput extends GetAWSDefaultSer
|
|
|
27
27
|
* import { ServiceQuotasClient, GetAWSDefaultServiceQuotaCommand } from "@aws-sdk/client-service-quotas"; // ES Modules import
|
|
28
28
|
* // const { ServiceQuotasClient, GetAWSDefaultServiceQuotaCommand } = require("@aws-sdk/client-service-quotas"); // CommonJS import
|
|
29
29
|
* const client = new ServiceQuotasClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // GetAWSDefaultServiceQuotaRequest
|
|
31
31
|
* ServiceCode: "STRING_VALUE", // required
|
|
32
32
|
* QuotaCode: "STRING_VALUE", // required
|
|
33
33
|
* };
|
|
@@ -26,7 +26,7 @@ export interface GetRequestedServiceQuotaChangeCommandOutput extends GetRequeste
|
|
|
26
26
|
* import { ServiceQuotasClient, GetRequestedServiceQuotaChangeCommand } from "@aws-sdk/client-service-quotas"; // ES Modules import
|
|
27
27
|
* // const { ServiceQuotasClient, GetRequestedServiceQuotaChangeCommand } = require("@aws-sdk/client-service-quotas"); // CommonJS import
|
|
28
28
|
* const client = new ServiceQuotasClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetRequestedServiceQuotaChangeRequest
|
|
30
30
|
* RequestId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetRequestedServiceQuotaChangeCommand(input);
|
|
@@ -28,7 +28,7 @@ export interface GetServiceQuotaCommandOutput extends GetServiceQuotaResponse, _
|
|
|
28
28
|
* import { ServiceQuotasClient, GetServiceQuotaCommand } from "@aws-sdk/client-service-quotas"; // ES Modules import
|
|
29
29
|
* // const { ServiceQuotasClient, GetServiceQuotaCommand } = require("@aws-sdk/client-service-quotas"); // CommonJS import
|
|
30
30
|
* const client = new ServiceQuotasClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // GetServiceQuotaRequest
|
|
32
32
|
* ServiceCode: "STRING_VALUE", // required
|
|
33
33
|
* QuotaCode: "STRING_VALUE", // required
|
|
34
34
|
* };
|
|
@@ -27,7 +27,7 @@ export interface GetServiceQuotaIncreaseRequestFromTemplateCommandOutput extends
|
|
|
27
27
|
* import { ServiceQuotasClient, GetServiceQuotaIncreaseRequestFromTemplateCommand } from "@aws-sdk/client-service-quotas"; // ES Modules import
|
|
28
28
|
* // const { ServiceQuotasClient, GetServiceQuotaIncreaseRequestFromTemplateCommand } = require("@aws-sdk/client-service-quotas"); // CommonJS import
|
|
29
29
|
* const client = new ServiceQuotasClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // GetServiceQuotaIncreaseRequestFromTemplateRequest
|
|
31
31
|
* ServiceCode: "STRING_VALUE", // required
|
|
32
32
|
* QuotaCode: "STRING_VALUE", // required
|
|
33
33
|
* AwsRegion: "STRING_VALUE", // required
|
|
@@ -27,7 +27,7 @@ export interface ListAWSDefaultServiceQuotasCommandOutput extends ListAWSDefault
|
|
|
27
27
|
* import { ServiceQuotasClient, ListAWSDefaultServiceQuotasCommand } from "@aws-sdk/client-service-quotas"; // ES Modules import
|
|
28
28
|
* // const { ServiceQuotasClient, ListAWSDefaultServiceQuotasCommand } = require("@aws-sdk/client-service-quotas"); // CommonJS import
|
|
29
29
|
* const client = new ServiceQuotasClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListAWSDefaultServiceQuotasRequest
|
|
31
31
|
* ServiceCode: "STRING_VALUE", // required
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
33
33
|
* MaxResults: Number("int"),
|
|
@@ -26,7 +26,7 @@ export interface ListRequestedServiceQuotaChangeHistoryByQuotaCommandOutput exte
|
|
|
26
26
|
* import { ServiceQuotasClient, ListRequestedServiceQuotaChangeHistoryByQuotaCommand } from "@aws-sdk/client-service-quotas"; // ES Modules import
|
|
27
27
|
* // const { ServiceQuotasClient, ListRequestedServiceQuotaChangeHistoryByQuotaCommand } = require("@aws-sdk/client-service-quotas"); // CommonJS import
|
|
28
28
|
* const client = new ServiceQuotasClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListRequestedServiceQuotaChangeHistoryByQuotaRequest
|
|
30
30
|
* ServiceCode: "STRING_VALUE", // required
|
|
31
31
|
* QuotaCode: "STRING_VALUE", // required
|
|
32
32
|
* Status: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface ListRequestedServiceQuotaChangeHistoryCommandOutput extends Lis
|
|
|
26
26
|
* import { ServiceQuotasClient, ListRequestedServiceQuotaChangeHistoryCommand } from "@aws-sdk/client-service-quotas"; // ES Modules import
|
|
27
27
|
* // const { ServiceQuotasClient, ListRequestedServiceQuotaChangeHistoryCommand } = require("@aws-sdk/client-service-quotas"); // CommonJS import
|
|
28
28
|
* const client = new ServiceQuotasClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListRequestedServiceQuotaChangeHistoryRequest
|
|
30
30
|
* ServiceCode: "STRING_VALUE",
|
|
31
31
|
* Status: "STRING_VALUE",
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface ListServiceQuotaIncreaseRequestsInTemplateCommandOutput extends
|
|
|
26
26
|
* import { ServiceQuotasClient, ListServiceQuotaIncreaseRequestsInTemplateCommand } from "@aws-sdk/client-service-quotas"; // ES Modules import
|
|
27
27
|
* // const { ServiceQuotasClient, ListServiceQuotaIncreaseRequestsInTemplateCommand } = require("@aws-sdk/client-service-quotas"); // CommonJS import
|
|
28
28
|
* const client = new ServiceQuotasClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListServiceQuotaIncreaseRequestsInTemplateRequest
|
|
30
30
|
* ServiceCode: "STRING_VALUE",
|
|
31
31
|
* AwsRegion: "STRING_VALUE",
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
@@ -28,7 +28,7 @@ export interface ListServiceQuotasCommandOutput extends ListServiceQuotasRespons
|
|
|
28
28
|
* import { ServiceQuotasClient, ListServiceQuotasCommand } from "@aws-sdk/client-service-quotas"; // ES Modules import
|
|
29
29
|
* // const { ServiceQuotasClient, ListServiceQuotasCommand } = require("@aws-sdk/client-service-quotas"); // CommonJS import
|
|
30
30
|
* const client = new ServiceQuotasClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // ListServiceQuotasRequest
|
|
32
32
|
* ServiceCode: "STRING_VALUE", // required
|
|
33
33
|
* NextToken: "STRING_VALUE",
|
|
34
34
|
* MaxResults: Number("int"),
|
|
@@ -26,7 +26,7 @@ export interface ListServicesCommandOutput extends ListServicesResponse, __Metad
|
|
|
26
26
|
* import { ServiceQuotasClient, ListServicesCommand } from "@aws-sdk/client-service-quotas"; // ES Modules import
|
|
27
27
|
* // const { ServiceQuotasClient, ListServicesCommand } = require("@aws-sdk/client-service-quotas"); // CommonJS import
|
|
28
28
|
* const client = new ServiceQuotasClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListServicesRequest
|
|
30
30
|
* NextToken: "STRING_VALUE",
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
26
26
|
* import { ServiceQuotasClient, ListTagsForResourceCommand } from "@aws-sdk/client-service-quotas"; // ES Modules import
|
|
27
27
|
* // const { ServiceQuotasClient, ListTagsForResourceCommand } = require("@aws-sdk/client-service-quotas"); // CommonJS import
|
|
28
28
|
* const client = new ServiceQuotasClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListTagsForResourceRequest
|
|
30
30
|
* ResourceARN: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface PutServiceQuotaIncreaseRequestIntoTemplateCommandOutput extends
|
|
|
26
26
|
* import { ServiceQuotasClient, PutServiceQuotaIncreaseRequestIntoTemplateCommand } from "@aws-sdk/client-service-quotas"; // ES Modules import
|
|
27
27
|
* // const { ServiceQuotasClient, PutServiceQuotaIncreaseRequestIntoTemplateCommand } = require("@aws-sdk/client-service-quotas"); // CommonJS import
|
|
28
28
|
* const client = new ServiceQuotasClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // PutServiceQuotaIncreaseRequestIntoTemplateRequest
|
|
30
30
|
* QuotaCode: "STRING_VALUE", // required
|
|
31
31
|
* ServiceCode: "STRING_VALUE", // required
|
|
32
32
|
* AwsRegion: "STRING_VALUE", // required
|
|
@@ -26,7 +26,7 @@ export interface RequestServiceQuotaIncreaseCommandOutput extends RequestService
|
|
|
26
26
|
* import { ServiceQuotasClient, RequestServiceQuotaIncreaseCommand } from "@aws-sdk/client-service-quotas"; // ES Modules import
|
|
27
27
|
* // const { ServiceQuotasClient, RequestServiceQuotaIncreaseCommand } = require("@aws-sdk/client-service-quotas"); // CommonJS import
|
|
28
28
|
* const client = new ServiceQuotasClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // RequestServiceQuotaIncreaseRequest
|
|
30
30
|
* ServiceCode: "STRING_VALUE", // required
|
|
31
31
|
* QuotaCode: "STRING_VALUE", // required
|
|
32
32
|
* DesiredValue: Number("double"), // required
|
|
@@ -27,10 +27,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
27
27
|
* import { ServiceQuotasClient, TagResourceCommand } from "@aws-sdk/client-service-quotas"; // ES Modules import
|
|
28
28
|
* // const { ServiceQuotasClient, TagResourceCommand } = require("@aws-sdk/client-service-quotas"); // CommonJS import
|
|
29
29
|
* const client = new ServiceQuotasClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // TagResourceRequest
|
|
31
31
|
* ResourceARN: "STRING_VALUE", // required
|
|
32
|
-
* Tags: [ // required
|
|
33
|
-
* {
|
|
32
|
+
* Tags: [ // InputTags // required
|
|
33
|
+
* { // Tag
|
|
34
34
|
* Key: "STRING_VALUE", // required
|
|
35
35
|
* Value: "STRING_VALUE", // required
|
|
36
36
|
* },
|
|
@@ -27,9 +27,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
27
27
|
* import { ServiceQuotasClient, UntagResourceCommand } from "@aws-sdk/client-service-quotas"; // ES Modules import
|
|
28
28
|
* // const { ServiceQuotasClient, UntagResourceCommand } = require("@aws-sdk/client-service-quotas"); // CommonJS import
|
|
29
29
|
* const client = new ServiceQuotasClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // UntagResourceRequest
|
|
31
31
|
* ResourceARN: "STRING_VALUE", // required
|
|
32
|
-
* TagKeys: [ // required
|
|
32
|
+
* TagKeys: [ // InputTagKeys // required
|
|
33
33
|
* "STRING_VALUE",
|
|
34
34
|
* ],
|
|
35
35
|
* };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-service-quotas",
|
|
3
3
|
"description": "AWS SDK for JavaScript Service Quotas Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.301.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|