@aws-sdk/client-pca-connector-ad 3.927.0 → 3.929.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 (46) hide show
  1. package/dist-cjs/index.js +1196 -1118
  2. package/dist-cjs/runtimeConfig.shared.js +2 -0
  3. package/dist-es/PcaConnectorAdClient.js +2 -0
  4. package/dist-es/commands/CreateConnectorCommand.js +3 -9
  5. package/dist-es/commands/CreateDirectoryRegistrationCommand.js +3 -9
  6. package/dist-es/commands/CreateServicePrincipalNameCommand.js +3 -9
  7. package/dist-es/commands/CreateTemplateCommand.js +3 -9
  8. package/dist-es/commands/CreateTemplateGroupAccessControlEntryCommand.js +3 -9
  9. package/dist-es/commands/DeleteConnectorCommand.js +3 -9
  10. package/dist-es/commands/DeleteDirectoryRegistrationCommand.js +3 -9
  11. package/dist-es/commands/DeleteServicePrincipalNameCommand.js +3 -9
  12. package/dist-es/commands/DeleteTemplateCommand.js +3 -9
  13. package/dist-es/commands/DeleteTemplateGroupAccessControlEntryCommand.js +3 -9
  14. package/dist-es/commands/GetConnectorCommand.js +3 -9
  15. package/dist-es/commands/GetDirectoryRegistrationCommand.js +3 -9
  16. package/dist-es/commands/GetServicePrincipalNameCommand.js +3 -9
  17. package/dist-es/commands/GetTemplateCommand.js +3 -9
  18. package/dist-es/commands/GetTemplateGroupAccessControlEntryCommand.js +3 -9
  19. package/dist-es/commands/ListConnectorsCommand.js +3 -9
  20. package/dist-es/commands/ListDirectoryRegistrationsCommand.js +3 -9
  21. package/dist-es/commands/ListServicePrincipalNamesCommand.js +3 -9
  22. package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
  23. package/dist-es/commands/ListTemplateGroupAccessControlEntriesCommand.js +3 -9
  24. package/dist-es/commands/ListTemplatesCommand.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/UpdateTemplateCommand.js +3 -9
  28. package/dist-es/commands/UpdateTemplateGroupAccessControlEntryCommand.js +3 -9
  29. package/dist-es/runtimeConfig.shared.js +2 -0
  30. package/dist-es/schemas/schemas_0.js +1132 -0
  31. package/dist-types/PcaConnectorAdClient.d.ts +10 -1
  32. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  33. package/dist-types/runtimeConfig.d.ts +1 -0
  34. package/dist-types/runtimeConfig.native.d.ts +1 -0
  35. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  36. package/dist-types/schemas/schemas_0.d.ts +128 -0
  37. package/dist-types/ts3.4/PcaConnectorAdClient.d.ts +4 -0
  38. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  39. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  40. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  41. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  42. package/dist-types/ts3.4/schemas/schemas_0.d.ts +133 -0
  43. package/package.json +5 -6
  44. package/dist-es/protocols/Aws_restJson1.js +0 -927
  45. package/dist-types/protocols/Aws_restJson1.d.ts +0 -227
  46. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -305
@@ -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.pcaconnectorad" }),
28
30
  serviceId: config?.serviceId ?? "Pca Connector Ad",
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 PcaConnectorAdClient 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_CreateConnectorCommand, se_CreateConnectorCommand } from "../protocols/Aws_restJson1";
4
+ import { CreateConnector } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class CreateConnectorCommand 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("PcaConnectorAd", "CreateConnector", {})
17
13
  .n("PcaConnectorAdClient", "CreateConnectorCommand")
18
- .f(void 0, void 0)
19
- .ser(se_CreateConnectorCommand)
20
- .de(de_CreateConnectorCommand)
14
+ .sc(CreateConnector)
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_CreateDirectoryRegistrationCommand, se_CreateDirectoryRegistrationCommand, } from "../protocols/Aws_restJson1";
4
+ import { CreateDirectoryRegistration } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class CreateDirectoryRegistrationCommand 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("PcaConnectorAd", "CreateDirectoryRegistration", {})
17
13
  .n("PcaConnectorAdClient", "CreateDirectoryRegistrationCommand")
18
- .f(void 0, void 0)
19
- .ser(se_CreateDirectoryRegistrationCommand)
20
- .de(de_CreateDirectoryRegistrationCommand)
14
+ .sc(CreateDirectoryRegistration)
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_CreateServicePrincipalNameCommand, se_CreateServicePrincipalNameCommand } from "../protocols/Aws_restJson1";
4
+ import { CreateServicePrincipalName } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class CreateServicePrincipalNameCommand 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("PcaConnectorAd", "CreateServicePrincipalName", {})
17
13
  .n("PcaConnectorAdClient", "CreateServicePrincipalNameCommand")
18
- .f(void 0, void 0)
19
- .ser(se_CreateServicePrincipalNameCommand)
20
- .de(de_CreateServicePrincipalNameCommand)
14
+ .sc(CreateServicePrincipalName)
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_CreateTemplateCommand, se_CreateTemplateCommand } from "../protocols/Aws_restJson1";
4
+ import { CreateTemplate } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class CreateTemplateCommand 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("PcaConnectorAd", "CreateTemplate", {})
17
13
  .n("PcaConnectorAdClient", "CreateTemplateCommand")
18
- .f(void 0, void 0)
19
- .ser(se_CreateTemplateCommand)
20
- .de(de_CreateTemplateCommand)
14
+ .sc(CreateTemplate)
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_CreateTemplateGroupAccessControlEntryCommand, se_CreateTemplateGroupAccessControlEntryCommand, } from "../protocols/Aws_restJson1";
4
+ import { CreateTemplateGroupAccessControlEntry } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class CreateTemplateGroupAccessControlEntryCommand 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("PcaConnectorAd", "CreateTemplateGroupAccessControlEntry", {})
17
13
  .n("PcaConnectorAdClient", "CreateTemplateGroupAccessControlEntryCommand")
18
- .f(void 0, void 0)
19
- .ser(se_CreateTemplateGroupAccessControlEntryCommand)
20
- .de(de_CreateTemplateGroupAccessControlEntryCommand)
14
+ .sc(CreateTemplateGroupAccessControlEntry)
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_DeleteConnectorCommand, se_DeleteConnectorCommand } from "../protocols/Aws_restJson1";
4
+ import { DeleteConnector } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DeleteConnectorCommand 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("PcaConnectorAd", "DeleteConnector", {})
17
13
  .n("PcaConnectorAdClient", "DeleteConnectorCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DeleteConnectorCommand)
20
- .de(de_DeleteConnectorCommand)
14
+ .sc(DeleteConnector)
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_DeleteDirectoryRegistrationCommand, se_DeleteDirectoryRegistrationCommand, } from "../protocols/Aws_restJson1";
4
+ import { DeleteDirectoryRegistration } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DeleteDirectoryRegistrationCommand 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("PcaConnectorAd", "DeleteDirectoryRegistration", {})
17
13
  .n("PcaConnectorAdClient", "DeleteDirectoryRegistrationCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DeleteDirectoryRegistrationCommand)
20
- .de(de_DeleteDirectoryRegistrationCommand)
14
+ .sc(DeleteDirectoryRegistration)
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_DeleteServicePrincipalNameCommand, se_DeleteServicePrincipalNameCommand } from "../protocols/Aws_restJson1";
4
+ import { DeleteServicePrincipalName } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DeleteServicePrincipalNameCommand 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("PcaConnectorAd", "DeleteServicePrincipalName", {})
17
13
  .n("PcaConnectorAdClient", "DeleteServicePrincipalNameCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DeleteServicePrincipalNameCommand)
20
- .de(de_DeleteServicePrincipalNameCommand)
14
+ .sc(DeleteServicePrincipalName)
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_DeleteTemplateCommand, se_DeleteTemplateCommand } from "../protocols/Aws_restJson1";
4
+ import { DeleteTemplate } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DeleteTemplateCommand 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("PcaConnectorAd", "DeleteTemplate", {})
17
13
  .n("PcaConnectorAdClient", "DeleteTemplateCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DeleteTemplateCommand)
20
- .de(de_DeleteTemplateCommand)
14
+ .sc(DeleteTemplate)
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_DeleteTemplateGroupAccessControlEntryCommand, se_DeleteTemplateGroupAccessControlEntryCommand, } from "../protocols/Aws_restJson1";
4
+ import { DeleteTemplateGroupAccessControlEntry } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DeleteTemplateGroupAccessControlEntryCommand 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("PcaConnectorAd", "DeleteTemplateGroupAccessControlEntry", {})
17
13
  .n("PcaConnectorAdClient", "DeleteTemplateGroupAccessControlEntryCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DeleteTemplateGroupAccessControlEntryCommand)
20
- .de(de_DeleteTemplateGroupAccessControlEntryCommand)
14
+ .sc(DeleteTemplateGroupAccessControlEntry)
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_GetConnectorCommand, se_GetConnectorCommand } from "../protocols/Aws_restJson1";
4
+ import { GetConnector } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class GetConnectorCommand 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("PcaConnectorAd", "GetConnector", {})
17
13
  .n("PcaConnectorAdClient", "GetConnectorCommand")
18
- .f(void 0, void 0)
19
- .ser(se_GetConnectorCommand)
20
- .de(de_GetConnectorCommand)
14
+ .sc(GetConnector)
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_GetDirectoryRegistrationCommand, se_GetDirectoryRegistrationCommand } from "../protocols/Aws_restJson1";
4
+ import { GetDirectoryRegistration } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class GetDirectoryRegistrationCommand 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("PcaConnectorAd", "GetDirectoryRegistration", {})
17
13
  .n("PcaConnectorAdClient", "GetDirectoryRegistrationCommand")
18
- .f(void 0, void 0)
19
- .ser(se_GetDirectoryRegistrationCommand)
20
- .de(de_GetDirectoryRegistrationCommand)
14
+ .sc(GetDirectoryRegistration)
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_GetServicePrincipalNameCommand, se_GetServicePrincipalNameCommand } from "../protocols/Aws_restJson1";
4
+ import { GetServicePrincipalName } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class GetServicePrincipalNameCommand 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("PcaConnectorAd", "GetServicePrincipalName", {})
17
13
  .n("PcaConnectorAdClient", "GetServicePrincipalNameCommand")
18
- .f(void 0, void 0)
19
- .ser(se_GetServicePrincipalNameCommand)
20
- .de(de_GetServicePrincipalNameCommand)
14
+ .sc(GetServicePrincipalName)
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_GetTemplateCommand, se_GetTemplateCommand } from "../protocols/Aws_restJson1";
4
+ import { GetTemplate } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class GetTemplateCommand 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("PcaConnectorAd", "GetTemplate", {})
17
13
  .n("PcaConnectorAdClient", "GetTemplateCommand")
18
- .f(void 0, void 0)
19
- .ser(se_GetTemplateCommand)
20
- .de(de_GetTemplateCommand)
14
+ .sc(GetTemplate)
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_GetTemplateGroupAccessControlEntryCommand, se_GetTemplateGroupAccessControlEntryCommand, } from "../protocols/Aws_restJson1";
4
+ import { GetTemplateGroupAccessControlEntry } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class GetTemplateGroupAccessControlEntryCommand 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("PcaConnectorAd", "GetTemplateGroupAccessControlEntry", {})
17
13
  .n("PcaConnectorAdClient", "GetTemplateGroupAccessControlEntryCommand")
18
- .f(void 0, void 0)
19
- .ser(se_GetTemplateGroupAccessControlEntryCommand)
20
- .de(de_GetTemplateGroupAccessControlEntryCommand)
14
+ .sc(GetTemplateGroupAccessControlEntry)
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_ListConnectorsCommand, se_ListConnectorsCommand } from "../protocols/Aws_restJson1";
4
+ import { ListConnectors } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListConnectorsCommand 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("PcaConnectorAd", "ListConnectors", {})
17
13
  .n("PcaConnectorAdClient", "ListConnectorsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListConnectorsCommand)
20
- .de(de_ListConnectorsCommand)
14
+ .sc(ListConnectors)
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_ListDirectoryRegistrationsCommand, se_ListDirectoryRegistrationsCommand } from "../protocols/Aws_restJson1";
4
+ import { ListDirectoryRegistrations } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListDirectoryRegistrationsCommand 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("PcaConnectorAd", "ListDirectoryRegistrations", {})
17
13
  .n("PcaConnectorAdClient", "ListDirectoryRegistrationsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListDirectoryRegistrationsCommand)
20
- .de(de_ListDirectoryRegistrationsCommand)
14
+ .sc(ListDirectoryRegistrations)
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_ListServicePrincipalNamesCommand, se_ListServicePrincipalNamesCommand } from "../protocols/Aws_restJson1";
4
+ import { ListServicePrincipalNames } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListServicePrincipalNamesCommand 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("PcaConnectorAd", "ListServicePrincipalNames", {})
17
13
  .n("PcaConnectorAdClient", "ListServicePrincipalNamesCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListServicePrincipalNamesCommand)
20
- .de(de_ListServicePrincipalNamesCommand)
14
+ .sc(ListServicePrincipalNames)
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("PcaConnectorAd", "ListTagsForResource", {})
17
13
  .n("PcaConnectorAdClient", "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_ListTemplateGroupAccessControlEntriesCommand, se_ListTemplateGroupAccessControlEntriesCommand, } from "../protocols/Aws_restJson1";
4
+ import { ListTemplateGroupAccessControlEntries } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListTemplateGroupAccessControlEntriesCommand 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("PcaConnectorAd", "ListTemplateGroupAccessControlEntries", {})
17
13
  .n("PcaConnectorAdClient", "ListTemplateGroupAccessControlEntriesCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListTemplateGroupAccessControlEntriesCommand)
20
- .de(de_ListTemplateGroupAccessControlEntriesCommand)
14
+ .sc(ListTemplateGroupAccessControlEntries)
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_ListTemplatesCommand, se_ListTemplatesCommand } from "../protocols/Aws_restJson1";
4
+ import { ListTemplates } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListTemplatesCommand 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("PcaConnectorAd", "ListTemplates", {})
17
13
  .n("PcaConnectorAdClient", "ListTemplatesCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListTemplatesCommand)
20
- .de(de_ListTemplatesCommand)
14
+ .sc(ListTemplates)
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("PcaConnectorAd", "TagResource", {})
17
13
  .n("PcaConnectorAdClient", "TagResourceCommand")
18
- .f(void 0, void 0)
19
- .ser(se_TagResourceCommand)
20
- .de(de_TagResourceCommand)
14
+ .sc(TagResource)
21
15
  .build() {
22
16
  }