@aws-sdk/client-pca-connector-ad 3.948.0 → 3.953.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. package/dist-cjs/index.js +376 -261
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/CreateConnectorCommand.js +2 -2
  4. package/dist-es/commands/CreateDirectoryRegistrationCommand.js +2 -2
  5. package/dist-es/commands/CreateServicePrincipalNameCommand.js +2 -2
  6. package/dist-es/commands/CreateTemplateCommand.js +2 -2
  7. package/dist-es/commands/CreateTemplateGroupAccessControlEntryCommand.js +2 -2
  8. package/dist-es/commands/DeleteConnectorCommand.js +2 -2
  9. package/dist-es/commands/DeleteDirectoryRegistrationCommand.js +2 -2
  10. package/dist-es/commands/DeleteServicePrincipalNameCommand.js +2 -2
  11. package/dist-es/commands/DeleteTemplateCommand.js +2 -2
  12. package/dist-es/commands/DeleteTemplateGroupAccessControlEntryCommand.js +2 -2
  13. package/dist-es/commands/GetConnectorCommand.js +2 -2
  14. package/dist-es/commands/GetDirectoryRegistrationCommand.js +2 -2
  15. package/dist-es/commands/GetServicePrincipalNameCommand.js +2 -2
  16. package/dist-es/commands/GetTemplateCommand.js +2 -2
  17. package/dist-es/commands/GetTemplateGroupAccessControlEntryCommand.js +2 -2
  18. package/dist-es/commands/ListConnectorsCommand.js +2 -2
  19. package/dist-es/commands/ListDirectoryRegistrationsCommand.js +2 -2
  20. package/dist-es/commands/ListServicePrincipalNamesCommand.js +2 -2
  21. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  22. package/dist-es/commands/ListTemplateGroupAccessControlEntriesCommand.js +2 -2
  23. package/dist-es/commands/ListTemplatesCommand.js +2 -2
  24. package/dist-es/commands/TagResourceCommand.js +2 -2
  25. package/dist-es/commands/UntagResourceCommand.js +2 -2
  26. package/dist-es/commands/UpdateTemplateCommand.js +2 -2
  27. package/dist-es/commands/UpdateTemplateGroupAccessControlEntryCommand.js +2 -2
  28. package/dist-es/index.js +1 -0
  29. package/dist-es/runtimeConfig.shared.js +6 -1
  30. package/dist-es/schemas/schemas_0.js +219 -219
  31. package/dist-types/PcaConnectorAdClient.d.ts +1 -10
  32. package/dist-types/index.d.ts +1 -0
  33. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  34. package/dist-types/runtimeConfig.d.ts +6 -2
  35. package/dist-types/runtimeConfig.native.d.ts +6 -2
  36. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  37. package/dist-types/schemas/schemas_0.d.ts +116 -128
  38. package/dist-types/ts3.4/PcaConnectorAdClient.d.ts +0 -4
  39. package/dist-types/ts3.4/index.d.ts +1 -0
  40. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  41. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  42. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  43. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  44. package/dist-types/ts3.4/schemas/schemas_0.d.ts +115 -128
  45. package/package.json +34 -34
@@ -26,7 +26,12 @@ const getRuntimeConfig = (config) => {
26
26
  },
27
27
  ],
28
28
  logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
29
- protocol: config?.protocol ?? new protocols_1.AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.pcaconnectorad" }),
29
+ protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
30
+ protocolSettings: config?.protocolSettings ?? {
31
+ defaultNamespace: "com.amazonaws.pcaconnectorad",
32
+ version: "2018-05-10",
33
+ serviceTarget: "PcaConnectorAd",
34
+ },
30
35
  serviceId: config?.serviceId ?? "Pca Connector Ad",
31
36
  urlParser: config?.urlParser ?? url_parser_1.parseUrl,
32
37
  utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateConnector } from "../schemas/schemas_0";
4
+ import { CreateConnector$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateConnectorCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateConnectorCommand extends $Command
11
11
  })
12
12
  .s("PcaConnectorAd", "CreateConnector", {})
13
13
  .n("PcaConnectorAdClient", "CreateConnectorCommand")
14
- .sc(CreateConnector)
14
+ .sc(CreateConnector$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateDirectoryRegistration } from "../schemas/schemas_0";
4
+ import { CreateDirectoryRegistration$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateDirectoryRegistrationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateDirectoryRegistrationCommand extends $Command
11
11
  })
12
12
  .s("PcaConnectorAd", "CreateDirectoryRegistration", {})
13
13
  .n("PcaConnectorAdClient", "CreateDirectoryRegistrationCommand")
14
- .sc(CreateDirectoryRegistration)
14
+ .sc(CreateDirectoryRegistration$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateServicePrincipalName } from "../schemas/schemas_0";
4
+ import { CreateServicePrincipalName$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateServicePrincipalNameCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateServicePrincipalNameCommand extends $Command
11
11
  })
12
12
  .s("PcaConnectorAd", "CreateServicePrincipalName", {})
13
13
  .n("PcaConnectorAdClient", "CreateServicePrincipalNameCommand")
14
- .sc(CreateServicePrincipalName)
14
+ .sc(CreateServicePrincipalName$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateTemplate } from "../schemas/schemas_0";
4
+ import { CreateTemplate$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateTemplateCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateTemplateCommand extends $Command
11
11
  })
12
12
  .s("PcaConnectorAd", "CreateTemplate", {})
13
13
  .n("PcaConnectorAdClient", "CreateTemplateCommand")
14
- .sc(CreateTemplate)
14
+ .sc(CreateTemplate$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateTemplateGroupAccessControlEntry } from "../schemas/schemas_0";
4
+ import { CreateTemplateGroupAccessControlEntry$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateTemplateGroupAccessControlEntryCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateTemplateGroupAccessControlEntryCommand extends $Command
11
11
  })
12
12
  .s("PcaConnectorAd", "CreateTemplateGroupAccessControlEntry", {})
13
13
  .n("PcaConnectorAdClient", "CreateTemplateGroupAccessControlEntryCommand")
14
- .sc(CreateTemplateGroupAccessControlEntry)
14
+ .sc(CreateTemplateGroupAccessControlEntry$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteConnector } from "../schemas/schemas_0";
4
+ import { DeleteConnector$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteConnectorCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteConnectorCommand extends $Command
11
11
  })
12
12
  .s("PcaConnectorAd", "DeleteConnector", {})
13
13
  .n("PcaConnectorAdClient", "DeleteConnectorCommand")
14
- .sc(DeleteConnector)
14
+ .sc(DeleteConnector$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteDirectoryRegistration } from "../schemas/schemas_0";
4
+ import { DeleteDirectoryRegistration$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteDirectoryRegistrationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteDirectoryRegistrationCommand extends $Command
11
11
  })
12
12
  .s("PcaConnectorAd", "DeleteDirectoryRegistration", {})
13
13
  .n("PcaConnectorAdClient", "DeleteDirectoryRegistrationCommand")
14
- .sc(DeleteDirectoryRegistration)
14
+ .sc(DeleteDirectoryRegistration$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteServicePrincipalName } from "../schemas/schemas_0";
4
+ import { DeleteServicePrincipalName$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteServicePrincipalNameCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteServicePrincipalNameCommand extends $Command
11
11
  })
12
12
  .s("PcaConnectorAd", "DeleteServicePrincipalName", {})
13
13
  .n("PcaConnectorAdClient", "DeleteServicePrincipalNameCommand")
14
- .sc(DeleteServicePrincipalName)
14
+ .sc(DeleteServicePrincipalName$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteTemplate } from "../schemas/schemas_0";
4
+ import { DeleteTemplate$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteTemplateCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteTemplateCommand extends $Command
11
11
  })
12
12
  .s("PcaConnectorAd", "DeleteTemplate", {})
13
13
  .n("PcaConnectorAdClient", "DeleteTemplateCommand")
14
- .sc(DeleteTemplate)
14
+ .sc(DeleteTemplate$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteTemplateGroupAccessControlEntry } from "../schemas/schemas_0";
4
+ import { DeleteTemplateGroupAccessControlEntry$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteTemplateGroupAccessControlEntryCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteTemplateGroupAccessControlEntryCommand extends $Command
11
11
  })
12
12
  .s("PcaConnectorAd", "DeleteTemplateGroupAccessControlEntry", {})
13
13
  .n("PcaConnectorAdClient", "DeleteTemplateGroupAccessControlEntryCommand")
14
- .sc(DeleteTemplateGroupAccessControlEntry)
14
+ .sc(DeleteTemplateGroupAccessControlEntry$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetConnector } from "../schemas/schemas_0";
4
+ import { GetConnector$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetConnectorCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetConnectorCommand extends $Command
11
11
  })
12
12
  .s("PcaConnectorAd", "GetConnector", {})
13
13
  .n("PcaConnectorAdClient", "GetConnectorCommand")
14
- .sc(GetConnector)
14
+ .sc(GetConnector$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetDirectoryRegistration } from "../schemas/schemas_0";
4
+ import { GetDirectoryRegistration$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetDirectoryRegistrationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetDirectoryRegistrationCommand extends $Command
11
11
  })
12
12
  .s("PcaConnectorAd", "GetDirectoryRegistration", {})
13
13
  .n("PcaConnectorAdClient", "GetDirectoryRegistrationCommand")
14
- .sc(GetDirectoryRegistration)
14
+ .sc(GetDirectoryRegistration$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetServicePrincipalName } from "../schemas/schemas_0";
4
+ import { GetServicePrincipalName$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetServicePrincipalNameCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetServicePrincipalNameCommand extends $Command
11
11
  })
12
12
  .s("PcaConnectorAd", "GetServicePrincipalName", {})
13
13
  .n("PcaConnectorAdClient", "GetServicePrincipalNameCommand")
14
- .sc(GetServicePrincipalName)
14
+ .sc(GetServicePrincipalName$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetTemplate } from "../schemas/schemas_0";
4
+ import { GetTemplate$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetTemplateCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetTemplateCommand extends $Command
11
11
  })
12
12
  .s("PcaConnectorAd", "GetTemplate", {})
13
13
  .n("PcaConnectorAdClient", "GetTemplateCommand")
14
- .sc(GetTemplate)
14
+ .sc(GetTemplate$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetTemplateGroupAccessControlEntry } from "../schemas/schemas_0";
4
+ import { GetTemplateGroupAccessControlEntry$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetTemplateGroupAccessControlEntryCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetTemplateGroupAccessControlEntryCommand extends $Command
11
11
  })
12
12
  .s("PcaConnectorAd", "GetTemplateGroupAccessControlEntry", {})
13
13
  .n("PcaConnectorAdClient", "GetTemplateGroupAccessControlEntryCommand")
14
- .sc(GetTemplateGroupAccessControlEntry)
14
+ .sc(GetTemplateGroupAccessControlEntry$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListConnectors } from "../schemas/schemas_0";
4
+ import { ListConnectors$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListConnectorsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListConnectorsCommand extends $Command
11
11
  })
12
12
  .s("PcaConnectorAd", "ListConnectors", {})
13
13
  .n("PcaConnectorAdClient", "ListConnectorsCommand")
14
- .sc(ListConnectors)
14
+ .sc(ListConnectors$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListDirectoryRegistrations } from "../schemas/schemas_0";
4
+ import { ListDirectoryRegistrations$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListDirectoryRegistrationsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListDirectoryRegistrationsCommand extends $Command
11
11
  })
12
12
  .s("PcaConnectorAd", "ListDirectoryRegistrations", {})
13
13
  .n("PcaConnectorAdClient", "ListDirectoryRegistrationsCommand")
14
- .sc(ListDirectoryRegistrations)
14
+ .sc(ListDirectoryRegistrations$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListServicePrincipalNames } from "../schemas/schemas_0";
4
+ import { ListServicePrincipalNames$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListServicePrincipalNamesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListServicePrincipalNamesCommand extends $Command
11
11
  })
12
12
  .s("PcaConnectorAd", "ListServicePrincipalNames", {})
13
13
  .n("PcaConnectorAdClient", "ListServicePrincipalNamesCommand")
14
- .sc(ListServicePrincipalNames)
14
+ .sc(ListServicePrincipalNames$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListTagsForResource } from "../schemas/schemas_0";
4
+ import { ListTagsForResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListTagsForResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
11
11
  })
12
12
  .s("PcaConnectorAd", "ListTagsForResource", {})
13
13
  .n("PcaConnectorAdClient", "ListTagsForResourceCommand")
14
- .sc(ListTagsForResource)
14
+ .sc(ListTagsForResource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListTemplateGroupAccessControlEntries } from "../schemas/schemas_0";
4
+ import { ListTemplateGroupAccessControlEntries$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListTemplateGroupAccessControlEntriesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListTemplateGroupAccessControlEntriesCommand extends $Command
11
11
  })
12
12
  .s("PcaConnectorAd", "ListTemplateGroupAccessControlEntries", {})
13
13
  .n("PcaConnectorAdClient", "ListTemplateGroupAccessControlEntriesCommand")
14
- .sc(ListTemplateGroupAccessControlEntries)
14
+ .sc(ListTemplateGroupAccessControlEntries$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListTemplates } from "../schemas/schemas_0";
4
+ import { ListTemplates$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListTemplatesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListTemplatesCommand extends $Command
11
11
  })
12
12
  .s("PcaConnectorAd", "ListTemplates", {})
13
13
  .n("PcaConnectorAdClient", "ListTemplatesCommand")
14
- .sc(ListTemplates)
14
+ .sc(ListTemplates$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { TagResource } from "../schemas/schemas_0";
4
+ import { TagResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class TagResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
11
11
  })
12
12
  .s("PcaConnectorAd", "TagResource", {})
13
13
  .n("PcaConnectorAdClient", "TagResourceCommand")
14
- .sc(TagResource)
14
+ .sc(TagResource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { UntagResource } from "../schemas/schemas_0";
4
+ import { UntagResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UntagResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
11
11
  })
12
12
  .s("PcaConnectorAd", "UntagResource", {})
13
13
  .n("PcaConnectorAdClient", "UntagResourceCommand")
14
- .sc(UntagResource)
14
+ .sc(UntagResource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { UpdateTemplate } from "../schemas/schemas_0";
4
+ import { UpdateTemplate$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateTemplateCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateTemplateCommand extends $Command
11
11
  })
12
12
  .s("PcaConnectorAd", "UpdateTemplate", {})
13
13
  .n("PcaConnectorAdClient", "UpdateTemplateCommand")
14
- .sc(UpdateTemplate)
14
+ .sc(UpdateTemplate$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { UpdateTemplateGroupAccessControlEntry } from "../schemas/schemas_0";
4
+ import { UpdateTemplateGroupAccessControlEntry$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateTemplateGroupAccessControlEntryCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateTemplateGroupAccessControlEntryCommand extends $Command
11
11
  })
12
12
  .s("PcaConnectorAd", "UpdateTemplateGroupAccessControlEntry", {})
13
13
  .n("PcaConnectorAdClient", "UpdateTemplateGroupAccessControlEntryCommand")
14
- .sc(UpdateTemplateGroupAccessControlEntry)
14
+ .sc(UpdateTemplateGroupAccessControlEntry$)
15
15
  .build() {
16
16
  }
package/dist-es/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from "./PcaConnectorAdClient";
2
2
  export * from "./PcaConnectorAd";
3
3
  export * from "./commands";
4
+ export * from "./schemas/schemas_0";
4
5
  export * from "./pagination";
5
6
  export * from "./models/enums";
6
7
  export * from "./models/errors";
@@ -23,7 +23,12 @@ export const getRuntimeConfig = (config) => {
23
23
  },
24
24
  ],
25
25
  logger: config?.logger ?? new NoOpLogger(),
26
- protocol: config?.protocol ?? new AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.pcaconnectorad" }),
26
+ protocol: config?.protocol ?? AwsRestJsonProtocol,
27
+ protocolSettings: config?.protocolSettings ?? {
28
+ defaultNamespace: "com.amazonaws.pcaconnectorad",
29
+ version: "2018-05-10",
30
+ serviceTarget: "PcaConnectorAd",
31
+ },
27
32
  serviceId: config?.serviceId ?? "Pca Connector Ad",
28
33
  urlParser: config?.urlParser ?? parseUrl,
29
34
  utf8Decoder: config?.utf8Decoder ?? fromUtf8,