@aws-sdk/client-service-catalog-appregistry 3.928.0 → 3.930.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 +912 -1028
  2. package/dist-cjs/runtimeConfig.shared.js +2 -0
  3. package/dist-es/ServiceCatalogAppRegistryClient.js +2 -0
  4. package/dist-es/commands/AssociateAttributeGroupCommand.js +3 -9
  5. package/dist-es/commands/AssociateResourceCommand.js +3 -9
  6. package/dist-es/commands/CreateApplicationCommand.js +3 -9
  7. package/dist-es/commands/CreateAttributeGroupCommand.js +3 -9
  8. package/dist-es/commands/DeleteApplicationCommand.js +3 -9
  9. package/dist-es/commands/DeleteAttributeGroupCommand.js +3 -9
  10. package/dist-es/commands/DisassociateAttributeGroupCommand.js +3 -9
  11. package/dist-es/commands/DisassociateResourceCommand.js +3 -9
  12. package/dist-es/commands/GetApplicationCommand.js +3 -9
  13. package/dist-es/commands/GetAssociatedResourceCommand.js +3 -9
  14. package/dist-es/commands/GetAttributeGroupCommand.js +3 -9
  15. package/dist-es/commands/GetConfigurationCommand.js +3 -9
  16. package/dist-es/commands/ListApplicationsCommand.js +3 -9
  17. package/dist-es/commands/ListAssociatedAttributeGroupsCommand.js +3 -9
  18. package/dist-es/commands/ListAssociatedResourcesCommand.js +3 -9
  19. package/dist-es/commands/ListAttributeGroupsCommand.js +3 -9
  20. package/dist-es/commands/ListAttributeGroupsForApplicationCommand.js +3 -9
  21. package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
  22. package/dist-es/commands/PutConfigurationCommand.js +3 -9
  23. package/dist-es/commands/SyncResourceCommand.js +3 -9
  24. package/dist-es/commands/TagResourceCommand.js +3 -9
  25. package/dist-es/commands/UntagResourceCommand.js +3 -9
  26. package/dist-es/commands/UpdateApplicationCommand.js +3 -9
  27. package/dist-es/commands/UpdateAttributeGroupCommand.js +3 -9
  28. package/dist-es/runtimeConfig.shared.js +2 -0
  29. package/dist-es/schemas/schemas_0.js +853 -0
  30. package/dist-types/ServiceCatalogAppRegistryClient.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 +105 -0
  36. package/dist-types/ts3.4/ServiceCatalogAppRegistryClient.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 +110 -0
  42. package/package.json +33 -34
  43. package/dist-es/protocols/Aws_restJson1.js +0 -846
  44. package/dist-types/protocols/Aws_restJson1.d.ts +0 -218
  45. package/dist-types/ts3.4/protocols/Aws_restJson1.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,7 @@ const getRuntimeConfig = (config) => {
25
26
  },
26
27
  ],
27
28
  logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
29
+ protocol: config?.protocol ?? new protocols_1.AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.servicecatalogappregistry" }),
28
30
  serviceId: config?.serviceId ?? "Service Catalog AppRegistry",
29
31
  urlParser: config?.urlParser ?? url_parser_1.parseUrl,
30
32
  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 ServiceCatalogAppRegistryClient 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_AssociateAttributeGroupCommand, se_AssociateAttributeGroupCommand } from "../protocols/Aws_restJson1";
4
+ import { AssociateAttributeGroup } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class AssociateAttributeGroupCommand 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("AWS242AppRegistry", "AssociateAttributeGroup", {})
17
13
  .n("ServiceCatalogAppRegistryClient", "AssociateAttributeGroupCommand")
18
- .f(void 0, void 0)
19
- .ser(se_AssociateAttributeGroupCommand)
20
- .de(de_AssociateAttributeGroupCommand)
14
+ .sc(AssociateAttributeGroup)
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_AssociateResourceCommand, se_AssociateResourceCommand } from "../protocols/Aws_restJson1";
4
+ import { AssociateResource } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class AssociateResourceCommand 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("AWS242AppRegistry", "AssociateResource", {})
17
13
  .n("ServiceCatalogAppRegistryClient", "AssociateResourceCommand")
18
- .f(void 0, void 0)
19
- .ser(se_AssociateResourceCommand)
20
- .de(de_AssociateResourceCommand)
14
+ .sc(AssociateResource)
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_CreateApplicationCommand, se_CreateApplicationCommand } from "../protocols/Aws_restJson1";
4
+ import { CreateApplication } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class CreateApplicationCommand 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("AWS242AppRegistry", "CreateApplication", {})
17
13
  .n("ServiceCatalogAppRegistryClient", "CreateApplicationCommand")
18
- .f(void 0, void 0)
19
- .ser(se_CreateApplicationCommand)
20
- .de(de_CreateApplicationCommand)
14
+ .sc(CreateApplication)
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_CreateAttributeGroupCommand, se_CreateAttributeGroupCommand } from "../protocols/Aws_restJson1";
4
+ import { CreateAttributeGroup } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class CreateAttributeGroupCommand 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("AWS242AppRegistry", "CreateAttributeGroup", {})
17
13
  .n("ServiceCatalogAppRegistryClient", "CreateAttributeGroupCommand")
18
- .f(void 0, void 0)
19
- .ser(se_CreateAttributeGroupCommand)
20
- .de(de_CreateAttributeGroupCommand)
14
+ .sc(CreateAttributeGroup)
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_DeleteApplicationCommand, se_DeleteApplicationCommand } from "../protocols/Aws_restJson1";
4
+ import { DeleteApplication } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DeleteApplicationCommand 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("AWS242AppRegistry", "DeleteApplication", {})
17
13
  .n("ServiceCatalogAppRegistryClient", "DeleteApplicationCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DeleteApplicationCommand)
20
- .de(de_DeleteApplicationCommand)
14
+ .sc(DeleteApplication)
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_DeleteAttributeGroupCommand, se_DeleteAttributeGroupCommand } from "../protocols/Aws_restJson1";
4
+ import { DeleteAttributeGroup } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DeleteAttributeGroupCommand 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("AWS242AppRegistry", "DeleteAttributeGroup", {})
17
13
  .n("ServiceCatalogAppRegistryClient", "DeleteAttributeGroupCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DeleteAttributeGroupCommand)
20
- .de(de_DeleteAttributeGroupCommand)
14
+ .sc(DeleteAttributeGroup)
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_DisassociateAttributeGroupCommand, se_DisassociateAttributeGroupCommand } from "../protocols/Aws_restJson1";
4
+ import { DisassociateAttributeGroup } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DisassociateAttributeGroupCommand 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("AWS242AppRegistry", "DisassociateAttributeGroup", {})
17
13
  .n("ServiceCatalogAppRegistryClient", "DisassociateAttributeGroupCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DisassociateAttributeGroupCommand)
20
- .de(de_DisassociateAttributeGroupCommand)
14
+ .sc(DisassociateAttributeGroup)
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_DisassociateResourceCommand, se_DisassociateResourceCommand } from "../protocols/Aws_restJson1";
4
+ import { DisassociateResource } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DisassociateResourceCommand 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("AWS242AppRegistry", "DisassociateResource", {})
17
13
  .n("ServiceCatalogAppRegistryClient", "DisassociateResourceCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DisassociateResourceCommand)
20
- .de(de_DisassociateResourceCommand)
14
+ .sc(DisassociateResource)
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_GetApplicationCommand, se_GetApplicationCommand } from "../protocols/Aws_restJson1";
4
+ import { GetApplication } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class GetApplicationCommand 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("AWS242AppRegistry", "GetApplication", {})
17
13
  .n("ServiceCatalogAppRegistryClient", "GetApplicationCommand")
18
- .f(void 0, void 0)
19
- .ser(se_GetApplicationCommand)
20
- .de(de_GetApplicationCommand)
14
+ .sc(GetApplication)
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_GetAssociatedResourceCommand, se_GetAssociatedResourceCommand } from "../protocols/Aws_restJson1";
4
+ import { GetAssociatedResource } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class GetAssociatedResourceCommand 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("AWS242AppRegistry", "GetAssociatedResource", {})
17
13
  .n("ServiceCatalogAppRegistryClient", "GetAssociatedResourceCommand")
18
- .f(void 0, void 0)
19
- .ser(se_GetAssociatedResourceCommand)
20
- .de(de_GetAssociatedResourceCommand)
14
+ .sc(GetAssociatedResource)
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_GetAttributeGroupCommand, se_GetAttributeGroupCommand } from "../protocols/Aws_restJson1";
4
+ import { GetAttributeGroup } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class GetAttributeGroupCommand 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("AWS242AppRegistry", "GetAttributeGroup", {})
17
13
  .n("ServiceCatalogAppRegistryClient", "GetAttributeGroupCommand")
18
- .f(void 0, void 0)
19
- .ser(se_GetAttributeGroupCommand)
20
- .de(de_GetAttributeGroupCommand)
14
+ .sc(GetAttributeGroup)
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_GetConfigurationCommand, se_GetConfigurationCommand } from "../protocols/Aws_restJson1";
4
+ import { GetConfiguration } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class GetConfigurationCommand 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("AWS242AppRegistry", "GetConfiguration", {})
17
13
  .n("ServiceCatalogAppRegistryClient", "GetConfigurationCommand")
18
- .f(void 0, void 0)
19
- .ser(se_GetConfigurationCommand)
20
- .de(de_GetConfigurationCommand)
14
+ .sc(GetConfiguration)
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_ListApplicationsCommand, se_ListApplicationsCommand } from "../protocols/Aws_restJson1";
4
+ import { ListApplications } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListApplicationsCommand 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("AWS242AppRegistry", "ListApplications", {})
17
13
  .n("ServiceCatalogAppRegistryClient", "ListApplicationsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListApplicationsCommand)
20
- .de(de_ListApplicationsCommand)
14
+ .sc(ListApplications)
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_ListAssociatedAttributeGroupsCommand, se_ListAssociatedAttributeGroupsCommand, } from "../protocols/Aws_restJson1";
4
+ import { ListAssociatedAttributeGroups } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListAssociatedAttributeGroupsCommand 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("AWS242AppRegistry", "ListAssociatedAttributeGroups", {})
17
13
  .n("ServiceCatalogAppRegistryClient", "ListAssociatedAttributeGroupsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListAssociatedAttributeGroupsCommand)
20
- .de(de_ListAssociatedAttributeGroupsCommand)
14
+ .sc(ListAssociatedAttributeGroups)
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_ListAssociatedResourcesCommand, se_ListAssociatedResourcesCommand } from "../protocols/Aws_restJson1";
4
+ import { ListAssociatedResources } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListAssociatedResourcesCommand 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("AWS242AppRegistry", "ListAssociatedResources", {})
17
13
  .n("ServiceCatalogAppRegistryClient", "ListAssociatedResourcesCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListAssociatedResourcesCommand)
20
- .de(de_ListAssociatedResourcesCommand)
14
+ .sc(ListAssociatedResources)
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_ListAttributeGroupsCommand, se_ListAttributeGroupsCommand } from "../protocols/Aws_restJson1";
4
+ import { ListAttributeGroups } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListAttributeGroupsCommand 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("AWS242AppRegistry", "ListAttributeGroups", {})
17
13
  .n("ServiceCatalogAppRegistryClient", "ListAttributeGroupsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListAttributeGroupsCommand)
20
- .de(de_ListAttributeGroupsCommand)
14
+ .sc(ListAttributeGroups)
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_ListAttributeGroupsForApplicationCommand, se_ListAttributeGroupsForApplicationCommand, } from "../protocols/Aws_restJson1";
4
+ import { ListAttributeGroupsForApplication } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListAttributeGroupsForApplicationCommand 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("AWS242AppRegistry", "ListAttributeGroupsForApplication", {})
17
13
  .n("ServiceCatalogAppRegistryClient", "ListAttributeGroupsForApplicationCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListAttributeGroupsForApplicationCommand)
20
- .de(de_ListAttributeGroupsForApplicationCommand)
14
+ .sc(ListAttributeGroupsForApplication)
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_restJson1";
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("AWS242AppRegistry", "ListTagsForResource", {})
17
13
  .n("ServiceCatalogAppRegistryClient", "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_PutConfigurationCommand, se_PutConfigurationCommand } from "../protocols/Aws_restJson1";
4
+ import { PutConfiguration } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class PutConfigurationCommand 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("AWS242AppRegistry", "PutConfiguration", {})
17
13
  .n("ServiceCatalogAppRegistryClient", "PutConfigurationCommand")
18
- .f(void 0, void 0)
19
- .ser(se_PutConfigurationCommand)
20
- .de(de_PutConfigurationCommand)
14
+ .sc(PutConfiguration)
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_SyncResourceCommand, se_SyncResourceCommand } from "../protocols/Aws_restJson1";
4
+ import { SyncResource } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class SyncResourceCommand 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("AWS242AppRegistry", "SyncResource", {})
17
13
  .n("ServiceCatalogAppRegistryClient", "SyncResourceCommand")
18
- .f(void 0, void 0)
19
- .ser(se_SyncResourceCommand)
20
- .de(de_SyncResourceCommand)
14
+ .sc(SyncResource)
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_restJson1";
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("AWS242AppRegistry", "TagResource", {})
17
13
  .n("ServiceCatalogAppRegistryClient", "TagResourceCommand")
18
- .f(void 0, void 0)
19
- .ser(se_TagResourceCommand)
20
- .de(de_TagResourceCommand)
14
+ .sc(TagResource)
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_UntagResourceCommand, se_UntagResourceCommand } from "../protocols/Aws_restJson1";
4
+ import { UntagResource } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class UntagResourceCommand 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("AWS242AppRegistry", "UntagResource", {})
17
13
  .n("ServiceCatalogAppRegistryClient", "UntagResourceCommand")
18
- .f(void 0, void 0)
19
- .ser(se_UntagResourceCommand)
20
- .de(de_UntagResourceCommand)
14
+ .sc(UntagResource)
21
15
  .build() {
22
16
  }