@aws-sdk/client-service-quotas 3.952.0 → 3.953.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-cjs/index.js +382 -268
- package/dist-cjs/runtimeConfig.shared.js +6 -6
- package/dist-es/commands/AssociateServiceQuotaTemplateCommand.js +2 -2
- package/dist-es/commands/CreateSupportCaseCommand.js +2 -2
- package/dist-es/commands/DeleteServiceQuotaIncreaseRequestFromTemplateCommand.js +2 -2
- package/dist-es/commands/DisassociateServiceQuotaTemplateCommand.js +2 -2
- package/dist-es/commands/GetAWSDefaultServiceQuotaCommand.js +2 -2
- package/dist-es/commands/GetAssociationForServiceQuotaTemplateCommand.js +2 -2
- package/dist-es/commands/GetAutoManagementConfigurationCommand.js +2 -2
- package/dist-es/commands/GetQuotaUtilizationReportCommand.js +2 -2
- package/dist-es/commands/GetRequestedServiceQuotaChangeCommand.js +2 -2
- package/dist-es/commands/GetServiceQuotaCommand.js +2 -2
- package/dist-es/commands/GetServiceQuotaIncreaseRequestFromTemplateCommand.js +2 -2
- package/dist-es/commands/ListAWSDefaultServiceQuotasCommand.js +2 -2
- package/dist-es/commands/ListRequestedServiceQuotaChangeHistoryByQuotaCommand.js +2 -2
- package/dist-es/commands/ListRequestedServiceQuotaChangeHistoryCommand.js +2 -2
- package/dist-es/commands/ListServiceQuotaIncreaseRequestsInTemplateCommand.js +2 -2
- package/dist-es/commands/ListServiceQuotasCommand.js +2 -2
- package/dist-es/commands/ListServicesCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/PutServiceQuotaIncreaseRequestIntoTemplateCommand.js +2 -2
- package/dist-es/commands/RequestServiceQuotaIncreaseCommand.js +2 -2
- package/dist-es/commands/StartAutoManagementCommand.js +2 -2
- package/dist-es/commands/StartQuotaUtilizationReportCommand.js +2 -2
- package/dist-es/commands/StopAutoManagementCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateAutoManagementCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -6
- package/dist-es/schemas/schemas_0.js +207 -200
- package/dist-types/ServiceQuotasClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +108 -121
- package/dist-types/ts3.4/ServiceQuotasClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +107 -122
- package/package.json +34 -34
|
@@ -26,12 +26,12 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsJson1_1Protocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.servicequotas",
|
|
32
|
+
version: "2019-06-24",
|
|
33
|
+
serviceTarget: "ServiceQuotasV20190624",
|
|
34
|
+
},
|
|
35
35
|
serviceId: config?.serviceId ?? "Service Quotas",
|
|
36
36
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
37
37
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { AssociateServiceQuotaTemplate } from "../schemas/schemas_0";
|
|
4
|
+
import { AssociateServiceQuotaTemplate$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class AssociateServiceQuotaTemplateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class AssociateServiceQuotaTemplateCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ServiceQuotasV20190624", "AssociateServiceQuotaTemplate", {})
|
|
13
13
|
.n("ServiceQuotasClient", "AssociateServiceQuotaTemplateCommand")
|
|
14
|
-
.sc(AssociateServiceQuotaTemplate)
|
|
14
|
+
.sc(AssociateServiceQuotaTemplate$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateSupportCase } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateSupportCase$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateSupportCaseCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateSupportCaseCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ServiceQuotasV20190624", "CreateSupportCase", {})
|
|
13
13
|
.n("ServiceQuotasClient", "CreateSupportCaseCommand")
|
|
14
|
-
.sc(CreateSupportCase)
|
|
14
|
+
.sc(CreateSupportCase$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteServiceQuotaIncreaseRequestFromTemplate } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteServiceQuotaIncreaseRequestFromTemplate$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteServiceQuotaIncreaseRequestFromTemplateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteServiceQuotaIncreaseRequestFromTemplateCommand extends $Comma
|
|
|
11
11
|
})
|
|
12
12
|
.s("ServiceQuotasV20190624", "DeleteServiceQuotaIncreaseRequestFromTemplate", {})
|
|
13
13
|
.n("ServiceQuotasClient", "DeleteServiceQuotaIncreaseRequestFromTemplateCommand")
|
|
14
|
-
.sc(DeleteServiceQuotaIncreaseRequestFromTemplate)
|
|
14
|
+
.sc(DeleteServiceQuotaIncreaseRequestFromTemplate$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DisassociateServiceQuotaTemplate } from "../schemas/schemas_0";
|
|
4
|
+
import { DisassociateServiceQuotaTemplate$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DisassociateServiceQuotaTemplateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DisassociateServiceQuotaTemplateCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ServiceQuotasV20190624", "DisassociateServiceQuotaTemplate", {})
|
|
13
13
|
.n("ServiceQuotasClient", "DisassociateServiceQuotaTemplateCommand")
|
|
14
|
-
.sc(DisassociateServiceQuotaTemplate)
|
|
14
|
+
.sc(DisassociateServiceQuotaTemplate$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetAWSDefaultServiceQuota } from "../schemas/schemas_0";
|
|
4
|
+
import { GetAWSDefaultServiceQuota$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetAWSDefaultServiceQuotaCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetAWSDefaultServiceQuotaCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ServiceQuotasV20190624", "GetAWSDefaultServiceQuota", {})
|
|
13
13
|
.n("ServiceQuotasClient", "GetAWSDefaultServiceQuotaCommand")
|
|
14
|
-
.sc(GetAWSDefaultServiceQuota)
|
|
14
|
+
.sc(GetAWSDefaultServiceQuota$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetAssociationForServiceQuotaTemplate } from "../schemas/schemas_0";
|
|
4
|
+
import { GetAssociationForServiceQuotaTemplate$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetAssociationForServiceQuotaTemplateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetAssociationForServiceQuotaTemplateCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ServiceQuotasV20190624", "GetAssociationForServiceQuotaTemplate", {})
|
|
13
13
|
.n("ServiceQuotasClient", "GetAssociationForServiceQuotaTemplateCommand")
|
|
14
|
-
.sc(GetAssociationForServiceQuotaTemplate)
|
|
14
|
+
.sc(GetAssociationForServiceQuotaTemplate$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetAutoManagementConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { GetAutoManagementConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetAutoManagementConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetAutoManagementConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ServiceQuotasV20190624", "GetAutoManagementConfiguration", {})
|
|
13
13
|
.n("ServiceQuotasClient", "GetAutoManagementConfigurationCommand")
|
|
14
|
-
.sc(GetAutoManagementConfiguration)
|
|
14
|
+
.sc(GetAutoManagementConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetQuotaUtilizationReport } from "../schemas/schemas_0";
|
|
4
|
+
import { GetQuotaUtilizationReport$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetQuotaUtilizationReportCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetQuotaUtilizationReportCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ServiceQuotasV20190624", "GetQuotaUtilizationReport", {})
|
|
13
13
|
.n("ServiceQuotasClient", "GetQuotaUtilizationReportCommand")
|
|
14
|
-
.sc(GetQuotaUtilizationReport)
|
|
14
|
+
.sc(GetQuotaUtilizationReport$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetRequestedServiceQuotaChange } from "../schemas/schemas_0";
|
|
4
|
+
import { GetRequestedServiceQuotaChange$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetRequestedServiceQuotaChangeCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetRequestedServiceQuotaChangeCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ServiceQuotasV20190624", "GetRequestedServiceQuotaChange", {})
|
|
13
13
|
.n("ServiceQuotasClient", "GetRequestedServiceQuotaChangeCommand")
|
|
14
|
-
.sc(GetRequestedServiceQuotaChange)
|
|
14
|
+
.sc(GetRequestedServiceQuotaChange$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetServiceQuota } from "../schemas/schemas_0";
|
|
4
|
+
import { GetServiceQuota$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetServiceQuotaCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetServiceQuotaCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ServiceQuotasV20190624", "GetServiceQuota", {})
|
|
13
13
|
.n("ServiceQuotasClient", "GetServiceQuotaCommand")
|
|
14
|
-
.sc(GetServiceQuota)
|
|
14
|
+
.sc(GetServiceQuota$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetServiceQuotaIncreaseRequestFromTemplate } from "../schemas/schemas_0";
|
|
4
|
+
import { GetServiceQuotaIncreaseRequestFromTemplate$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetServiceQuotaIncreaseRequestFromTemplateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetServiceQuotaIncreaseRequestFromTemplateCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ServiceQuotasV20190624", "GetServiceQuotaIncreaseRequestFromTemplate", {})
|
|
13
13
|
.n("ServiceQuotasClient", "GetServiceQuotaIncreaseRequestFromTemplateCommand")
|
|
14
|
-
.sc(GetServiceQuotaIncreaseRequestFromTemplate)
|
|
14
|
+
.sc(GetServiceQuotaIncreaseRequestFromTemplate$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListAWSDefaultServiceQuotas } from "../schemas/schemas_0";
|
|
4
|
+
import { ListAWSDefaultServiceQuotas$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListAWSDefaultServiceQuotasCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListAWSDefaultServiceQuotasCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ServiceQuotasV20190624", "ListAWSDefaultServiceQuotas", {})
|
|
13
13
|
.n("ServiceQuotasClient", "ListAWSDefaultServiceQuotasCommand")
|
|
14
|
-
.sc(ListAWSDefaultServiceQuotas)
|
|
14
|
+
.sc(ListAWSDefaultServiceQuotas$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListRequestedServiceQuotaChangeHistoryByQuota } from "../schemas/schemas_0";
|
|
4
|
+
import { ListRequestedServiceQuotaChangeHistoryByQuota$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListRequestedServiceQuotaChangeHistoryByQuotaCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListRequestedServiceQuotaChangeHistoryByQuotaCommand extends $Comma
|
|
|
11
11
|
})
|
|
12
12
|
.s("ServiceQuotasV20190624", "ListRequestedServiceQuotaChangeHistoryByQuota", {})
|
|
13
13
|
.n("ServiceQuotasClient", "ListRequestedServiceQuotaChangeHistoryByQuotaCommand")
|
|
14
|
-
.sc(ListRequestedServiceQuotaChangeHistoryByQuota)
|
|
14
|
+
.sc(ListRequestedServiceQuotaChangeHistoryByQuota$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListRequestedServiceQuotaChangeHistory } from "../schemas/schemas_0";
|
|
4
|
+
import { ListRequestedServiceQuotaChangeHistory$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListRequestedServiceQuotaChangeHistoryCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListRequestedServiceQuotaChangeHistoryCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ServiceQuotasV20190624", "ListRequestedServiceQuotaChangeHistory", {})
|
|
13
13
|
.n("ServiceQuotasClient", "ListRequestedServiceQuotaChangeHistoryCommand")
|
|
14
|
-
.sc(ListRequestedServiceQuotaChangeHistory)
|
|
14
|
+
.sc(ListRequestedServiceQuotaChangeHistory$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListServiceQuotaIncreaseRequestsInTemplate } from "../schemas/schemas_0";
|
|
4
|
+
import { ListServiceQuotaIncreaseRequestsInTemplate$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListServiceQuotaIncreaseRequestsInTemplateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListServiceQuotaIncreaseRequestsInTemplateCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ServiceQuotasV20190624", "ListServiceQuotaIncreaseRequestsInTemplate", {})
|
|
13
13
|
.n("ServiceQuotasClient", "ListServiceQuotaIncreaseRequestsInTemplateCommand")
|
|
14
|
-
.sc(ListServiceQuotaIncreaseRequestsInTemplate)
|
|
14
|
+
.sc(ListServiceQuotaIncreaseRequestsInTemplate$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListServiceQuotas } from "../schemas/schemas_0";
|
|
4
|
+
import { ListServiceQuotas$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListServiceQuotasCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListServiceQuotasCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ServiceQuotasV20190624", "ListServiceQuotas", {})
|
|
13
13
|
.n("ServiceQuotasClient", "ListServiceQuotasCommand")
|
|
14
|
-
.sc(ListServiceQuotas)
|
|
14
|
+
.sc(ListServiceQuotas$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListServices } from "../schemas/schemas_0";
|
|
4
|
+
import { ListServices$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListServicesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListServicesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ServiceQuotasV20190624", "ListServices", {})
|
|
13
13
|
.n("ServiceQuotasClient", "ListServicesCommand")
|
|
14
|
-
.sc(ListServices)
|
|
14
|
+
.sc(ListServices$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ServiceQuotasV20190624", "ListTagsForResource", {})
|
|
13
13
|
.n("ServiceQuotasClient", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource)
|
|
14
|
+
.sc(ListTagsForResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { PutServiceQuotaIncreaseRequestIntoTemplate } from "../schemas/schemas_0";
|
|
4
|
+
import { PutServiceQuotaIncreaseRequestIntoTemplate$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class PutServiceQuotaIncreaseRequestIntoTemplateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class PutServiceQuotaIncreaseRequestIntoTemplateCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ServiceQuotasV20190624", "PutServiceQuotaIncreaseRequestIntoTemplate", {})
|
|
13
13
|
.n("ServiceQuotasClient", "PutServiceQuotaIncreaseRequestIntoTemplateCommand")
|
|
14
|
-
.sc(PutServiceQuotaIncreaseRequestIntoTemplate)
|
|
14
|
+
.sc(PutServiceQuotaIncreaseRequestIntoTemplate$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { RequestServiceQuotaIncrease } from "../schemas/schemas_0";
|
|
4
|
+
import { RequestServiceQuotaIncrease$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class RequestServiceQuotaIncreaseCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class RequestServiceQuotaIncreaseCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ServiceQuotasV20190624", "RequestServiceQuotaIncrease", {})
|
|
13
13
|
.n("ServiceQuotasClient", "RequestServiceQuotaIncreaseCommand")
|
|
14
|
-
.sc(RequestServiceQuotaIncrease)
|
|
14
|
+
.sc(RequestServiceQuotaIncrease$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StartAutoManagement } from "../schemas/schemas_0";
|
|
4
|
+
import { StartAutoManagement$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartAutoManagementCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartAutoManagementCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ServiceQuotasV20190624", "StartAutoManagement", {})
|
|
13
13
|
.n("ServiceQuotasClient", "StartAutoManagementCommand")
|
|
14
|
-
.sc(StartAutoManagement)
|
|
14
|
+
.sc(StartAutoManagement$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StartQuotaUtilizationReport } from "../schemas/schemas_0";
|
|
4
|
+
import { StartQuotaUtilizationReport$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartQuotaUtilizationReportCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartQuotaUtilizationReportCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ServiceQuotasV20190624", "StartQuotaUtilizationReport", {})
|
|
13
13
|
.n("ServiceQuotasClient", "StartQuotaUtilizationReportCommand")
|
|
14
|
-
.sc(StartQuotaUtilizationReport)
|
|
14
|
+
.sc(StartQuotaUtilizationReport$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StopAutoManagement } from "../schemas/schemas_0";
|
|
4
|
+
import { StopAutoManagement$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StopAutoManagementCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StopAutoManagementCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ServiceQuotasV20190624", "StopAutoManagement", {})
|
|
13
13
|
.n("ServiceQuotasClient", "StopAutoManagementCommand")
|
|
14
|
-
.sc(StopAutoManagement)
|
|
14
|
+
.sc(StopAutoManagement$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { TagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { TagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ServiceQuotasV20190624", "TagResource", {})
|
|
13
13
|
.n("ServiceQuotasClient", "TagResourceCommand")
|
|
14
|
-
.sc(TagResource)
|
|
14
|
+
.sc(TagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UntagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { UntagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UntagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ServiceQuotasV20190624", "UntagResource", {})
|
|
13
13
|
.n("ServiceQuotasClient", "UntagResourceCommand")
|
|
14
|
-
.sc(UntagResource)
|
|
14
|
+
.sc(UntagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateAutoManagement } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateAutoManagement$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateAutoManagementCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateAutoManagementCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("ServiceQuotasV20190624", "UpdateAutoManagement", {})
|
|
13
13
|
.n("ServiceQuotasClient", "UpdateAutoManagementCommand")
|
|
14
|
-
.sc(UpdateAutoManagement)
|
|
14
|
+
.sc(UpdateAutoManagement$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -23,12 +23,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
26
|
+
protocol: config?.protocol ?? AwsJson1_1Protocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.servicequotas",
|
|
29
|
+
version: "2019-06-24",
|
|
30
|
+
serviceTarget: "ServiceQuotasV20190624",
|
|
31
|
+
},
|
|
32
32
|
serviceId: config?.serviceId ?? "Service Quotas",
|
|
33
33
|
urlParser: config?.urlParser ?? parseUrl,
|
|
34
34
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|