@aws-sdk/client-managedblockchain 3.952.0 → 3.954.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 (47) hide show
  1. package/dist-cjs/index.js +437 -287
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/CreateAccessorCommand.js +2 -2
  4. package/dist-es/commands/CreateMemberCommand.js +2 -2
  5. package/dist-es/commands/CreateNetworkCommand.js +2 -2
  6. package/dist-es/commands/CreateNodeCommand.js +2 -2
  7. package/dist-es/commands/CreateProposalCommand.js +2 -2
  8. package/dist-es/commands/DeleteAccessorCommand.js +2 -2
  9. package/dist-es/commands/DeleteMemberCommand.js +2 -2
  10. package/dist-es/commands/DeleteNodeCommand.js +2 -2
  11. package/dist-es/commands/GetAccessorCommand.js +2 -2
  12. package/dist-es/commands/GetMemberCommand.js +2 -2
  13. package/dist-es/commands/GetNetworkCommand.js +2 -2
  14. package/dist-es/commands/GetNodeCommand.js +2 -2
  15. package/dist-es/commands/GetProposalCommand.js +2 -2
  16. package/dist-es/commands/ListAccessorsCommand.js +2 -2
  17. package/dist-es/commands/ListInvitationsCommand.js +2 -2
  18. package/dist-es/commands/ListMembersCommand.js +2 -2
  19. package/dist-es/commands/ListNetworksCommand.js +2 -2
  20. package/dist-es/commands/ListNodesCommand.js +2 -2
  21. package/dist-es/commands/ListProposalVotesCommand.js +2 -2
  22. package/dist-es/commands/ListProposalsCommand.js +2 -2
  23. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  24. package/dist-es/commands/RejectInvitationCommand.js +2 -2
  25. package/dist-es/commands/TagResourceCommand.js +2 -2
  26. package/dist-es/commands/UntagResourceCommand.js +2 -2
  27. package/dist-es/commands/UpdateMemberCommand.js +2 -2
  28. package/dist-es/commands/UpdateNodeCommand.js +2 -2
  29. package/dist-es/commands/VoteOnProposalCommand.js +2 -2
  30. package/dist-es/index.js +1 -0
  31. package/dist-es/runtimeConfig.shared.js +6 -1
  32. package/dist-es/schemas/schemas_0.js +254 -233
  33. package/dist-types/ManagedBlockchainClient.d.ts +1 -10
  34. package/dist-types/index.d.ts +1 -0
  35. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  36. package/dist-types/runtimeConfig.d.ts +6 -2
  37. package/dist-types/runtimeConfig.native.d.ts +6 -2
  38. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  39. package/dist-types/schemas/schemas_0.d.ts +130 -143
  40. package/dist-types/ts3.4/ManagedBlockchainClient.d.ts +0 -4
  41. package/dist-types/ts3.4/index.d.ts +1 -0
  42. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  43. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  44. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  45. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  46. package/dist-types/ts3.4/schemas/schemas_0.d.ts +129 -144
  47. 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.managedblockchain" }),
29
+ protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
30
+ protocolSettings: config?.protocolSettings ?? {
31
+ defaultNamespace: "com.amazonaws.managedblockchain",
32
+ version: "2018-09-24",
33
+ serviceTarget: "TaigaWebService",
34
+ },
30
35
  serviceId: config?.serviceId ?? "ManagedBlockchain",
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 { CreateAccessor } from "../schemas/schemas_0";
4
+ import { CreateAccessor$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateAccessorCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateAccessorCommand extends $Command
11
11
  })
12
12
  .s("TaigaWebService", "CreateAccessor", {})
13
13
  .n("ManagedBlockchainClient", "CreateAccessorCommand")
14
- .sc(CreateAccessor)
14
+ .sc(CreateAccessor$)
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 { CreateMember } from "../schemas/schemas_0";
4
+ import { CreateMember$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateMemberCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateMemberCommand extends $Command
11
11
  })
12
12
  .s("TaigaWebService", "CreateMember", {})
13
13
  .n("ManagedBlockchainClient", "CreateMemberCommand")
14
- .sc(CreateMember)
14
+ .sc(CreateMember$)
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 { CreateNetwork } from "../schemas/schemas_0";
4
+ import { CreateNetwork$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateNetworkCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateNetworkCommand extends $Command
11
11
  })
12
12
  .s("TaigaWebService", "CreateNetwork", {})
13
13
  .n("ManagedBlockchainClient", "CreateNetworkCommand")
14
- .sc(CreateNetwork)
14
+ .sc(CreateNetwork$)
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 { CreateNode } from "../schemas/schemas_0";
4
+ import { CreateNode$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateNodeCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateNodeCommand extends $Command
11
11
  })
12
12
  .s("TaigaWebService", "CreateNode", {})
13
13
  .n("ManagedBlockchainClient", "CreateNodeCommand")
14
- .sc(CreateNode)
14
+ .sc(CreateNode$)
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 { CreateProposal } from "../schemas/schemas_0";
4
+ import { CreateProposal$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateProposalCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateProposalCommand extends $Command
11
11
  })
12
12
  .s("TaigaWebService", "CreateProposal", {})
13
13
  .n("ManagedBlockchainClient", "CreateProposalCommand")
14
- .sc(CreateProposal)
14
+ .sc(CreateProposal$)
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 { DeleteAccessor } from "../schemas/schemas_0";
4
+ import { DeleteAccessor$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteAccessorCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteAccessorCommand extends $Command
11
11
  })
12
12
  .s("TaigaWebService", "DeleteAccessor", {})
13
13
  .n("ManagedBlockchainClient", "DeleteAccessorCommand")
14
- .sc(DeleteAccessor)
14
+ .sc(DeleteAccessor$)
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 { DeleteMember } from "../schemas/schemas_0";
4
+ import { DeleteMember$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteMemberCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteMemberCommand extends $Command
11
11
  })
12
12
  .s("TaigaWebService", "DeleteMember", {})
13
13
  .n("ManagedBlockchainClient", "DeleteMemberCommand")
14
- .sc(DeleteMember)
14
+ .sc(DeleteMember$)
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 { DeleteNode } from "../schemas/schemas_0";
4
+ import { DeleteNode$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteNodeCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteNodeCommand extends $Command
11
11
  })
12
12
  .s("TaigaWebService", "DeleteNode", {})
13
13
  .n("ManagedBlockchainClient", "DeleteNodeCommand")
14
- .sc(DeleteNode)
14
+ .sc(DeleteNode$)
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 { GetAccessor } from "../schemas/schemas_0";
4
+ import { GetAccessor$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetAccessorCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetAccessorCommand extends $Command
11
11
  })
12
12
  .s("TaigaWebService", "GetAccessor", {})
13
13
  .n("ManagedBlockchainClient", "GetAccessorCommand")
14
- .sc(GetAccessor)
14
+ .sc(GetAccessor$)
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 { GetMember } from "../schemas/schemas_0";
4
+ import { GetMember$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetMemberCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetMemberCommand extends $Command
11
11
  })
12
12
  .s("TaigaWebService", "GetMember", {})
13
13
  .n("ManagedBlockchainClient", "GetMemberCommand")
14
- .sc(GetMember)
14
+ .sc(GetMember$)
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 { GetNetwork } from "../schemas/schemas_0";
4
+ import { GetNetwork$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetNetworkCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetNetworkCommand extends $Command
11
11
  })
12
12
  .s("TaigaWebService", "GetNetwork", {})
13
13
  .n("ManagedBlockchainClient", "GetNetworkCommand")
14
- .sc(GetNetwork)
14
+ .sc(GetNetwork$)
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 { GetNode } from "../schemas/schemas_0";
4
+ import { GetNode$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetNodeCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetNodeCommand extends $Command
11
11
  })
12
12
  .s("TaigaWebService", "GetNode", {})
13
13
  .n("ManagedBlockchainClient", "GetNodeCommand")
14
- .sc(GetNode)
14
+ .sc(GetNode$)
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 { GetProposal } from "../schemas/schemas_0";
4
+ import { GetProposal$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetProposalCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetProposalCommand extends $Command
11
11
  })
12
12
  .s("TaigaWebService", "GetProposal", {})
13
13
  .n("ManagedBlockchainClient", "GetProposalCommand")
14
- .sc(GetProposal)
14
+ .sc(GetProposal$)
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 { ListAccessors } from "../schemas/schemas_0";
4
+ import { ListAccessors$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListAccessorsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListAccessorsCommand extends $Command
11
11
  })
12
12
  .s("TaigaWebService", "ListAccessors", {})
13
13
  .n("ManagedBlockchainClient", "ListAccessorsCommand")
14
- .sc(ListAccessors)
14
+ .sc(ListAccessors$)
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 { ListInvitations } from "../schemas/schemas_0";
4
+ import { ListInvitations$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListInvitationsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListInvitationsCommand extends $Command
11
11
  })
12
12
  .s("TaigaWebService", "ListInvitations", {})
13
13
  .n("ManagedBlockchainClient", "ListInvitationsCommand")
14
- .sc(ListInvitations)
14
+ .sc(ListInvitations$)
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 { ListMembers } from "../schemas/schemas_0";
4
+ import { ListMembers$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListMembersCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListMembersCommand extends $Command
11
11
  })
12
12
  .s("TaigaWebService", "ListMembers", {})
13
13
  .n("ManagedBlockchainClient", "ListMembersCommand")
14
- .sc(ListMembers)
14
+ .sc(ListMembers$)
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 { ListNetworks } from "../schemas/schemas_0";
4
+ import { ListNetworks$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListNetworksCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListNetworksCommand extends $Command
11
11
  })
12
12
  .s("TaigaWebService", "ListNetworks", {})
13
13
  .n("ManagedBlockchainClient", "ListNetworksCommand")
14
- .sc(ListNetworks)
14
+ .sc(ListNetworks$)
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 { ListNodes } from "../schemas/schemas_0";
4
+ import { ListNodes$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListNodesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListNodesCommand extends $Command
11
11
  })
12
12
  .s("TaigaWebService", "ListNodes", {})
13
13
  .n("ManagedBlockchainClient", "ListNodesCommand")
14
- .sc(ListNodes)
14
+ .sc(ListNodes$)
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 { ListProposalVotes } from "../schemas/schemas_0";
4
+ import { ListProposalVotes$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListProposalVotesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListProposalVotesCommand extends $Command
11
11
  })
12
12
  .s("TaigaWebService", "ListProposalVotes", {})
13
13
  .n("ManagedBlockchainClient", "ListProposalVotesCommand")
14
- .sc(ListProposalVotes)
14
+ .sc(ListProposalVotes$)
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 { ListProposals } from "../schemas/schemas_0";
4
+ import { ListProposals$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListProposalsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListProposalsCommand extends $Command
11
11
  })
12
12
  .s("TaigaWebService", "ListProposals", {})
13
13
  .n("ManagedBlockchainClient", "ListProposalsCommand")
14
- .sc(ListProposals)
14
+ .sc(ListProposals$)
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("TaigaWebService", "ListTagsForResource", {})
13
13
  .n("ManagedBlockchainClient", "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 { RejectInvitation } from "../schemas/schemas_0";
4
+ import { RejectInvitation$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class RejectInvitationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class RejectInvitationCommand extends $Command
11
11
  })
12
12
  .s("TaigaWebService", "RejectInvitation", {})
13
13
  .n("ManagedBlockchainClient", "RejectInvitationCommand")
14
- .sc(RejectInvitation)
14
+ .sc(RejectInvitation$)
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("TaigaWebService", "TagResource", {})
13
13
  .n("ManagedBlockchainClient", "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("TaigaWebService", "UntagResource", {})
13
13
  .n("ManagedBlockchainClient", "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 { UpdateMember } from "../schemas/schemas_0";
4
+ import { UpdateMember$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateMemberCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateMemberCommand extends $Command
11
11
  })
12
12
  .s("TaigaWebService", "UpdateMember", {})
13
13
  .n("ManagedBlockchainClient", "UpdateMemberCommand")
14
- .sc(UpdateMember)
14
+ .sc(UpdateMember$)
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 { UpdateNode } from "../schemas/schemas_0";
4
+ import { UpdateNode$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateNodeCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateNodeCommand extends $Command
11
11
  })
12
12
  .s("TaigaWebService", "UpdateNode", {})
13
13
  .n("ManagedBlockchainClient", "UpdateNodeCommand")
14
- .sc(UpdateNode)
14
+ .sc(UpdateNode$)
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 { VoteOnProposal } from "../schemas/schemas_0";
4
+ import { VoteOnProposal$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class VoteOnProposalCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class VoteOnProposalCommand extends $Command
11
11
  })
12
12
  .s("TaigaWebService", "VoteOnProposal", {})
13
13
  .n("ManagedBlockchainClient", "VoteOnProposalCommand")
14
- .sc(VoteOnProposal)
14
+ .sc(VoteOnProposal$)
15
15
  .build() {
16
16
  }
package/dist-es/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from "./ManagedBlockchainClient";
2
2
  export * from "./ManagedBlockchain";
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.managedblockchain" }),
26
+ protocol: config?.protocol ?? AwsRestJsonProtocol,
27
+ protocolSettings: config?.protocolSettings ?? {
28
+ defaultNamespace: "com.amazonaws.managedblockchain",
29
+ version: "2018-09-24",
30
+ serviceTarget: "TaigaWebService",
31
+ },
27
32
  serviceId: config?.serviceId ?? "ManagedBlockchain",
28
33
  urlParser: config?.urlParser ?? parseUrl,
29
34
  utf8Decoder: config?.utf8Decoder ?? fromUtf8,