@aws-sdk/client-service-quotas 3.927.0 → 3.928.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 (45) hide show
  1. package/dist-cjs/index.js +922 -1080
  2. package/dist-cjs/runtimeConfig.shared.js +7 -0
  3. package/dist-es/ServiceQuotasClient.js +2 -0
  4. package/dist-es/commands/AssociateServiceQuotaTemplateCommand.js +3 -9
  5. package/dist-es/commands/CreateSupportCaseCommand.js +3 -9
  6. package/dist-es/commands/DeleteServiceQuotaIncreaseRequestFromTemplateCommand.js +3 -9
  7. package/dist-es/commands/DisassociateServiceQuotaTemplateCommand.js +3 -9
  8. package/dist-es/commands/GetAWSDefaultServiceQuotaCommand.js +3 -9
  9. package/dist-es/commands/GetAssociationForServiceQuotaTemplateCommand.js +3 -9
  10. package/dist-es/commands/GetAutoManagementConfigurationCommand.js +3 -9
  11. package/dist-es/commands/GetRequestedServiceQuotaChangeCommand.js +3 -9
  12. package/dist-es/commands/GetServiceQuotaCommand.js +3 -9
  13. package/dist-es/commands/GetServiceQuotaIncreaseRequestFromTemplateCommand.js +3 -9
  14. package/dist-es/commands/ListAWSDefaultServiceQuotasCommand.js +3 -9
  15. package/dist-es/commands/ListRequestedServiceQuotaChangeHistoryByQuotaCommand.js +3 -9
  16. package/dist-es/commands/ListRequestedServiceQuotaChangeHistoryCommand.js +3 -9
  17. package/dist-es/commands/ListServiceQuotaIncreaseRequestsInTemplateCommand.js +3 -9
  18. package/dist-es/commands/ListServiceQuotasCommand.js +3 -9
  19. package/dist-es/commands/ListServicesCommand.js +3 -9
  20. package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
  21. package/dist-es/commands/PutServiceQuotaIncreaseRequestIntoTemplateCommand.js +3 -9
  22. package/dist-es/commands/RequestServiceQuotaIncreaseCommand.js +3 -9
  23. package/dist-es/commands/StartAutoManagementCommand.js +3 -9
  24. package/dist-es/commands/StopAutoManagementCommand.js +3 -9
  25. package/dist-es/commands/TagResourceCommand.js +3 -9
  26. package/dist-es/commands/UntagResourceCommand.js +3 -9
  27. package/dist-es/commands/UpdateAutoManagementCommand.js +3 -9
  28. package/dist-es/runtimeConfig.shared.js +7 -0
  29. package/dist-es/schemas/schemas_0.js +826 -0
  30. package/dist-types/ServiceQuotasClient.d.ts +10 -1
  31. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  32. package/dist-types/runtimeConfig.d.ts +1 -0
  33. package/dist-types/runtimeConfig.native.d.ts +1 -0
  34. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  35. package/dist-types/schemas/schemas_0.d.ts +114 -0
  36. package/dist-types/ts3.4/ServiceQuotasClient.d.ts +4 -0
  37. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  38. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  39. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  40. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  41. package/dist-types/ts3.4/schemas/schemas_0.d.ts +120 -0
  42. package/package.json +5 -5
  43. package/dist-es/protocols/Aws_json1_1.js +0 -865
  44. package/dist-types/protocols/Aws_json1_1.d.ts +0 -218
  45. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +0 -293
@@ -2,6 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.getRuntimeConfig = void 0;
4
4
  const core_1 = require("@aws-sdk/core");
5
+ const protocols_1 = require("@aws-sdk/core/protocols");
5
6
  const smithy_client_1 = require("@smithy/smithy-client");
6
7
  const url_parser_1 = require("@smithy/url-parser");
7
8
  const util_base64_1 = require("@smithy/util-base64");
@@ -25,6 +26,12 @@ const getRuntimeConfig = (config) => {
25
26
  },
26
27
  ],
27
28
  logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
29
+ protocol: config?.protocol ??
30
+ new protocols_1.AwsJson1_1Protocol({
31
+ defaultNamespace: "com.amazonaws.servicequotas",
32
+ serviceTarget: "ServiceQuotasV20190624",
33
+ awsQueryCompatible: false,
34
+ }),
28
35
  serviceId: config?.serviceId ?? "Service Quotas",
29
36
  urlParser: config?.urlParser ?? url_parser_1.parseUrl,
30
37
  utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
@@ -4,6 +4,7 @@ import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detec
4
4
  import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
5
5
  import { resolveRegionConfig } from "@smithy/config-resolver";
6
6
  import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, getHttpSigningPlugin, } from "@smithy/core";
7
+ import { getSchemaSerdePlugin } from "@smithy/core/schema";
7
8
  import { getContentLengthPlugin } from "@smithy/middleware-content-length";
8
9
  import { resolveEndpointConfig } from "@smithy/middleware-endpoint";
9
10
  import { getRetryPlugin, resolveRetryConfig } from "@smithy/middleware-retry";
@@ -28,6 +29,7 @@ export class ServiceQuotasClient extends __Client {
28
29
  const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
29
30
  const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
30
31
  this.config = _config_8;
32
+ this.middlewareStack.use(getSchemaSerdePlugin(this.config));
31
33
  this.middlewareStack.use(getUserAgentPlugin(this.config));
32
34
  this.middlewareStack.use(getRetryPlugin(this.config));
33
35
  this.middlewareStack.use(getContentLengthPlugin(this.config));
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_AssociateServiceQuotaTemplateCommand, se_AssociateServiceQuotaTemplateCommand, } from "../protocols/Aws_json1_1";
4
+ import { AssociateServiceQuotaTemplate } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class AssociateServiceQuotaTemplateCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("ServiceQuotasV20190624", "AssociateServiceQuotaTemplate", {})
17
13
  .n("ServiceQuotasClient", "AssociateServiceQuotaTemplateCommand")
18
- .f(void 0, void 0)
19
- .ser(se_AssociateServiceQuotaTemplateCommand)
20
- .de(de_AssociateServiceQuotaTemplateCommand)
14
+ .sc(AssociateServiceQuotaTemplate)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_CreateSupportCaseCommand, se_CreateSupportCaseCommand } from "../protocols/Aws_json1_1";
4
+ import { CreateSupportCase } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class CreateSupportCaseCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("ServiceQuotasV20190624", "CreateSupportCase", {})
17
13
  .n("ServiceQuotasClient", "CreateSupportCaseCommand")
18
- .f(void 0, void 0)
19
- .ser(se_CreateSupportCaseCommand)
20
- .de(de_CreateSupportCaseCommand)
14
+ .sc(CreateSupportCase)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_DeleteServiceQuotaIncreaseRequestFromTemplateCommand, se_DeleteServiceQuotaIncreaseRequestFromTemplateCommand, } from "../protocols/Aws_json1_1";
4
+ import { DeleteServiceQuotaIncreaseRequestFromTemplate } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DeleteServiceQuotaIncreaseRequestFromTemplateCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("ServiceQuotasV20190624", "DeleteServiceQuotaIncreaseRequestFromTemplate", {})
17
13
  .n("ServiceQuotasClient", "DeleteServiceQuotaIncreaseRequestFromTemplateCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DeleteServiceQuotaIncreaseRequestFromTemplateCommand)
20
- .de(de_DeleteServiceQuotaIncreaseRequestFromTemplateCommand)
14
+ .sc(DeleteServiceQuotaIncreaseRequestFromTemplate)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_DisassociateServiceQuotaTemplateCommand, se_DisassociateServiceQuotaTemplateCommand, } from "../protocols/Aws_json1_1";
4
+ import { DisassociateServiceQuotaTemplate } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DisassociateServiceQuotaTemplateCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("ServiceQuotasV20190624", "DisassociateServiceQuotaTemplate", {})
17
13
  .n("ServiceQuotasClient", "DisassociateServiceQuotaTemplateCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DisassociateServiceQuotaTemplateCommand)
20
- .de(de_DisassociateServiceQuotaTemplateCommand)
14
+ .sc(DisassociateServiceQuotaTemplate)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_GetAWSDefaultServiceQuotaCommand, se_GetAWSDefaultServiceQuotaCommand } from "../protocols/Aws_json1_1";
4
+ import { GetAWSDefaultServiceQuota } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class GetAWSDefaultServiceQuotaCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("ServiceQuotasV20190624", "GetAWSDefaultServiceQuota", {})
17
13
  .n("ServiceQuotasClient", "GetAWSDefaultServiceQuotaCommand")
18
- .f(void 0, void 0)
19
- .ser(se_GetAWSDefaultServiceQuotaCommand)
20
- .de(de_GetAWSDefaultServiceQuotaCommand)
14
+ .sc(GetAWSDefaultServiceQuota)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_GetAssociationForServiceQuotaTemplateCommand, se_GetAssociationForServiceQuotaTemplateCommand, } from "../protocols/Aws_json1_1";
4
+ import { GetAssociationForServiceQuotaTemplate } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class GetAssociationForServiceQuotaTemplateCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("ServiceQuotasV20190624", "GetAssociationForServiceQuotaTemplate", {})
17
13
  .n("ServiceQuotasClient", "GetAssociationForServiceQuotaTemplateCommand")
18
- .f(void 0, void 0)
19
- .ser(se_GetAssociationForServiceQuotaTemplateCommand)
20
- .de(de_GetAssociationForServiceQuotaTemplateCommand)
14
+ .sc(GetAssociationForServiceQuotaTemplate)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_GetAutoManagementConfigurationCommand, se_GetAutoManagementConfigurationCommand, } from "../protocols/Aws_json1_1";
4
+ import { GetAutoManagementConfiguration } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class GetAutoManagementConfigurationCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("ServiceQuotasV20190624", "GetAutoManagementConfiguration", {})
17
13
  .n("ServiceQuotasClient", "GetAutoManagementConfigurationCommand")
18
- .f(void 0, void 0)
19
- .ser(se_GetAutoManagementConfigurationCommand)
20
- .de(de_GetAutoManagementConfigurationCommand)
14
+ .sc(GetAutoManagementConfiguration)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_GetRequestedServiceQuotaChangeCommand, se_GetRequestedServiceQuotaChangeCommand, } from "../protocols/Aws_json1_1";
4
+ import { GetRequestedServiceQuotaChange } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class GetRequestedServiceQuotaChangeCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("ServiceQuotasV20190624", "GetRequestedServiceQuotaChange", {})
17
13
  .n("ServiceQuotasClient", "GetRequestedServiceQuotaChangeCommand")
18
- .f(void 0, void 0)
19
- .ser(se_GetRequestedServiceQuotaChangeCommand)
20
- .de(de_GetRequestedServiceQuotaChangeCommand)
14
+ .sc(GetRequestedServiceQuotaChange)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_GetServiceQuotaCommand, se_GetServiceQuotaCommand } from "../protocols/Aws_json1_1";
4
+ import { GetServiceQuota } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class GetServiceQuotaCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("ServiceQuotasV20190624", "GetServiceQuota", {})
17
13
  .n("ServiceQuotasClient", "GetServiceQuotaCommand")
18
- .f(void 0, void 0)
19
- .ser(se_GetServiceQuotaCommand)
20
- .de(de_GetServiceQuotaCommand)
14
+ .sc(GetServiceQuota)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_GetServiceQuotaIncreaseRequestFromTemplateCommand, se_GetServiceQuotaIncreaseRequestFromTemplateCommand, } from "../protocols/Aws_json1_1";
4
+ import { GetServiceQuotaIncreaseRequestFromTemplate } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class GetServiceQuotaIncreaseRequestFromTemplateCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("ServiceQuotasV20190624", "GetServiceQuotaIncreaseRequestFromTemplate", {})
17
13
  .n("ServiceQuotasClient", "GetServiceQuotaIncreaseRequestFromTemplateCommand")
18
- .f(void 0, void 0)
19
- .ser(se_GetServiceQuotaIncreaseRequestFromTemplateCommand)
20
- .de(de_GetServiceQuotaIncreaseRequestFromTemplateCommand)
14
+ .sc(GetServiceQuotaIncreaseRequestFromTemplate)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_ListAWSDefaultServiceQuotasCommand, se_ListAWSDefaultServiceQuotasCommand } from "../protocols/Aws_json1_1";
4
+ import { ListAWSDefaultServiceQuotas } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListAWSDefaultServiceQuotasCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("ServiceQuotasV20190624", "ListAWSDefaultServiceQuotas", {})
17
13
  .n("ServiceQuotasClient", "ListAWSDefaultServiceQuotasCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListAWSDefaultServiceQuotasCommand)
20
- .de(de_ListAWSDefaultServiceQuotasCommand)
14
+ .sc(ListAWSDefaultServiceQuotas)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_ListRequestedServiceQuotaChangeHistoryByQuotaCommand, se_ListRequestedServiceQuotaChangeHistoryByQuotaCommand, } from "../protocols/Aws_json1_1";
4
+ import { ListRequestedServiceQuotaChangeHistoryByQuota } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListRequestedServiceQuotaChangeHistoryByQuotaCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("ServiceQuotasV20190624", "ListRequestedServiceQuotaChangeHistoryByQuota", {})
17
13
  .n("ServiceQuotasClient", "ListRequestedServiceQuotaChangeHistoryByQuotaCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListRequestedServiceQuotaChangeHistoryByQuotaCommand)
20
- .de(de_ListRequestedServiceQuotaChangeHistoryByQuotaCommand)
14
+ .sc(ListRequestedServiceQuotaChangeHistoryByQuota)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_ListRequestedServiceQuotaChangeHistoryCommand, se_ListRequestedServiceQuotaChangeHistoryCommand, } from "../protocols/Aws_json1_1";
4
+ import { ListRequestedServiceQuotaChangeHistory } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListRequestedServiceQuotaChangeHistoryCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("ServiceQuotasV20190624", "ListRequestedServiceQuotaChangeHistory", {})
17
13
  .n("ServiceQuotasClient", "ListRequestedServiceQuotaChangeHistoryCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListRequestedServiceQuotaChangeHistoryCommand)
20
- .de(de_ListRequestedServiceQuotaChangeHistoryCommand)
14
+ .sc(ListRequestedServiceQuotaChangeHistory)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_ListServiceQuotaIncreaseRequestsInTemplateCommand, se_ListServiceQuotaIncreaseRequestsInTemplateCommand, } from "../protocols/Aws_json1_1";
4
+ import { ListServiceQuotaIncreaseRequestsInTemplate } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListServiceQuotaIncreaseRequestsInTemplateCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("ServiceQuotasV20190624", "ListServiceQuotaIncreaseRequestsInTemplate", {})
17
13
  .n("ServiceQuotasClient", "ListServiceQuotaIncreaseRequestsInTemplateCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListServiceQuotaIncreaseRequestsInTemplateCommand)
20
- .de(de_ListServiceQuotaIncreaseRequestsInTemplateCommand)
14
+ .sc(ListServiceQuotaIncreaseRequestsInTemplate)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_ListServiceQuotasCommand, se_ListServiceQuotasCommand } from "../protocols/Aws_json1_1";
4
+ import { ListServiceQuotas } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListServiceQuotasCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("ServiceQuotasV20190624", "ListServiceQuotas", {})
17
13
  .n("ServiceQuotasClient", "ListServiceQuotasCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListServiceQuotasCommand)
20
- .de(de_ListServiceQuotasCommand)
14
+ .sc(ListServiceQuotas)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_ListServicesCommand, se_ListServicesCommand } from "../protocols/Aws_json1_1";
4
+ import { ListServices } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListServicesCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("ServiceQuotasV20190624", "ListServices", {})
17
13
  .n("ServiceQuotasClient", "ListServicesCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListServicesCommand)
20
- .de(de_ListServicesCommand)
14
+ .sc(ListServices)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_ListTagsForResourceCommand, se_ListTagsForResourceCommand } from "../protocols/Aws_json1_1";
4
+ import { ListTagsForResource } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListTagsForResourceCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("ServiceQuotasV20190624", "ListTagsForResource", {})
17
13
  .n("ServiceQuotasClient", "ListTagsForResourceCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListTagsForResourceCommand)
20
- .de(de_ListTagsForResourceCommand)
14
+ .sc(ListTagsForResource)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_PutServiceQuotaIncreaseRequestIntoTemplateCommand, se_PutServiceQuotaIncreaseRequestIntoTemplateCommand, } from "../protocols/Aws_json1_1";
4
+ import { PutServiceQuotaIncreaseRequestIntoTemplate } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class PutServiceQuotaIncreaseRequestIntoTemplateCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("ServiceQuotasV20190624", "PutServiceQuotaIncreaseRequestIntoTemplate", {})
17
13
  .n("ServiceQuotasClient", "PutServiceQuotaIncreaseRequestIntoTemplateCommand")
18
- .f(void 0, void 0)
19
- .ser(se_PutServiceQuotaIncreaseRequestIntoTemplateCommand)
20
- .de(de_PutServiceQuotaIncreaseRequestIntoTemplateCommand)
14
+ .sc(PutServiceQuotaIncreaseRequestIntoTemplate)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_RequestServiceQuotaIncreaseCommand, se_RequestServiceQuotaIncreaseCommand } from "../protocols/Aws_json1_1";
4
+ import { RequestServiceQuotaIncrease } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class RequestServiceQuotaIncreaseCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("ServiceQuotasV20190624", "RequestServiceQuotaIncrease", {})
17
13
  .n("ServiceQuotasClient", "RequestServiceQuotaIncreaseCommand")
18
- .f(void 0, void 0)
19
- .ser(se_RequestServiceQuotaIncreaseCommand)
20
- .de(de_RequestServiceQuotaIncreaseCommand)
14
+ .sc(RequestServiceQuotaIncrease)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_StartAutoManagementCommand, se_StartAutoManagementCommand } from "../protocols/Aws_json1_1";
4
+ import { StartAutoManagement } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class StartAutoManagementCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("ServiceQuotasV20190624", "StartAutoManagement", {})
17
13
  .n("ServiceQuotasClient", "StartAutoManagementCommand")
18
- .f(void 0, void 0)
19
- .ser(se_StartAutoManagementCommand)
20
- .de(de_StartAutoManagementCommand)
14
+ .sc(StartAutoManagement)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_StopAutoManagementCommand, se_StopAutoManagementCommand } from "../protocols/Aws_json1_1";
4
+ import { StopAutoManagement } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class StopAutoManagementCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("ServiceQuotasV20190624", "StopAutoManagement", {})
17
13
  .n("ServiceQuotasClient", "StopAutoManagementCommand")
18
- .f(void 0, void 0)
19
- .ser(se_StopAutoManagementCommand)
20
- .de(de_StopAutoManagementCommand)
14
+ .sc(StopAutoManagement)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_TagResourceCommand, se_TagResourceCommand } from "../protocols/Aws_json1_1";
4
+ import { TagResource } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class TagResourceCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("ServiceQuotasV20190624", "TagResource", {})
17
13
  .n("ServiceQuotasClient", "TagResourceCommand")
18
- .f(void 0, void 0)
19
- .ser(se_TagResourceCommand)
20
- .de(de_TagResourceCommand)
14
+ .sc(TagResource)
21
15
  .build() {
22
16
  }