@aws-sdk/client-managedblockchain 3.169.0 → 3.170.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/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/ManagedBlockchain.d.ts +418 -120
  3. package/dist-types/ts3.4/ManagedBlockchainClient.d.ts +268 -96
  4. package/dist-types/ts3.4/commands/CreateMemberCommand.d.ts +34 -17
  5. package/dist-types/ts3.4/commands/CreateNetworkCommand.d.ts +34 -17
  6. package/dist-types/ts3.4/commands/CreateNodeCommand.d.ts +34 -17
  7. package/dist-types/ts3.4/commands/CreateProposalCommand.d.ts +34 -17
  8. package/dist-types/ts3.4/commands/DeleteMemberCommand.d.ts +34 -17
  9. package/dist-types/ts3.4/commands/DeleteNodeCommand.d.ts +34 -17
  10. package/dist-types/ts3.4/commands/GetMemberCommand.d.ts +34 -17
  11. package/dist-types/ts3.4/commands/GetNetworkCommand.d.ts +34 -17
  12. package/dist-types/ts3.4/commands/GetNodeCommand.d.ts +32 -17
  13. package/dist-types/ts3.4/commands/GetProposalCommand.d.ts +34 -17
  14. package/dist-types/ts3.4/commands/ListInvitationsCommand.d.ts +37 -17
  15. package/dist-types/ts3.4/commands/ListMembersCommand.d.ts +34 -17
  16. package/dist-types/ts3.4/commands/ListNetworksCommand.d.ts +34 -17
  17. package/dist-types/ts3.4/commands/ListNodesCommand.d.ts +34 -17
  18. package/dist-types/ts3.4/commands/ListProposalVotesCommand.d.ts +37 -17
  19. package/dist-types/ts3.4/commands/ListProposalsCommand.d.ts +34 -17
  20. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  21. package/dist-types/ts3.4/commands/RejectInvitationCommand.d.ts +37 -17
  22. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  23. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  24. package/dist-types/ts3.4/commands/UpdateMemberCommand.d.ts +34 -17
  25. package/dist-types/ts3.4/commands/UpdateNodeCommand.d.ts +34 -17
  26. package/dist-types/ts3.4/commands/VoteOnProposalCommand.d.ts +34 -17
  27. package/dist-types/ts3.4/commands/index.d.ts +23 -23
  28. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  29. package/dist-types/ts3.4/index.d.ts +6 -6
  30. package/dist-types/ts3.4/models/ManagedBlockchainServiceException.d.ts +8 -6
  31. package/dist-types/ts3.4/models/index.d.ts +1 -1
  32. package/dist-types/ts3.4/models/models_0.d.ts +1049 -970
  33. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  34. package/dist-types/ts3.4/pagination/ListInvitationsPaginator.d.ts +11 -4
  35. package/dist-types/ts3.4/pagination/ListMembersPaginator.d.ts +11 -4
  36. package/dist-types/ts3.4/pagination/ListNetworksPaginator.d.ts +11 -4
  37. package/dist-types/ts3.4/pagination/ListNodesPaginator.d.ts +11 -4
  38. package/dist-types/ts3.4/pagination/ListProposalVotesPaginator.d.ts +11 -4
  39. package/dist-types/ts3.4/pagination/ListProposalsPaginator.d.ts +11 -4
  40. package/dist-types/ts3.4/pagination/index.d.ts +7 -7
  41. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +281 -71
  42. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
  43. package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
  44. package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
  45. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
  46. package/package.json +34 -34
@@ -1,6 +1,7 @@
1
- import { PaginationConfiguration } from "@aws-sdk/types";
2
- import { ManagedBlockchain } from "../ManagedBlockchain";
3
- import { ManagedBlockchainClient } from "../ManagedBlockchainClient";
4
- export interface ManagedBlockchainPaginationConfiguration extends PaginationConfiguration {
5
- client: ManagedBlockchain | ManagedBlockchainClient;
6
- }
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { ManagedBlockchain } from "../ManagedBlockchain";
3
+ import { ManagedBlockchainClient } from "../ManagedBlockchainClient";
4
+ export interface ManagedBlockchainPaginationConfiguration
5
+ extends PaginationConfiguration {
6
+ client: ManagedBlockchain | ManagedBlockchainClient;
7
+ }
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListInvitationsCommandInput, ListInvitationsCommandOutput } from "../commands/ListInvitationsCommand";
3
- import { ManagedBlockchainPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListInvitations(config: ManagedBlockchainPaginationConfiguration, input: ListInvitationsCommandInput, ...additionalArguments: any): Paginator<ListInvitationsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListInvitationsCommandInput,
4
+ ListInvitationsCommandOutput,
5
+ } from "../commands/ListInvitationsCommand";
6
+ import { ManagedBlockchainPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListInvitations(
8
+ config: ManagedBlockchainPaginationConfiguration,
9
+ input: ListInvitationsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListInvitationsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListMembersCommandInput, ListMembersCommandOutput } from "../commands/ListMembersCommand";
3
- import { ManagedBlockchainPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListMembers(config: ManagedBlockchainPaginationConfiguration, input: ListMembersCommandInput, ...additionalArguments: any): Paginator<ListMembersCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListMembersCommandInput,
4
+ ListMembersCommandOutput,
5
+ } from "../commands/ListMembersCommand";
6
+ import { ManagedBlockchainPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListMembers(
8
+ config: ManagedBlockchainPaginationConfiguration,
9
+ input: ListMembersCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListMembersCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListNetworksCommandInput, ListNetworksCommandOutput } from "../commands/ListNetworksCommand";
3
- import { ManagedBlockchainPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListNetworks(config: ManagedBlockchainPaginationConfiguration, input: ListNetworksCommandInput, ...additionalArguments: any): Paginator<ListNetworksCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListNetworksCommandInput,
4
+ ListNetworksCommandOutput,
5
+ } from "../commands/ListNetworksCommand";
6
+ import { ManagedBlockchainPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListNetworks(
8
+ config: ManagedBlockchainPaginationConfiguration,
9
+ input: ListNetworksCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListNetworksCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListNodesCommandInput, ListNodesCommandOutput } from "../commands/ListNodesCommand";
3
- import { ManagedBlockchainPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListNodes(config: ManagedBlockchainPaginationConfiguration, input: ListNodesCommandInput, ...additionalArguments: any): Paginator<ListNodesCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListNodesCommandInput,
4
+ ListNodesCommandOutput,
5
+ } from "../commands/ListNodesCommand";
6
+ import { ManagedBlockchainPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListNodes(
8
+ config: ManagedBlockchainPaginationConfiguration,
9
+ input: ListNodesCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListNodesCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListProposalVotesCommandInput, ListProposalVotesCommandOutput } from "../commands/ListProposalVotesCommand";
3
- import { ManagedBlockchainPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListProposalVotes(config: ManagedBlockchainPaginationConfiguration, input: ListProposalVotesCommandInput, ...additionalArguments: any): Paginator<ListProposalVotesCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListProposalVotesCommandInput,
4
+ ListProposalVotesCommandOutput,
5
+ } from "../commands/ListProposalVotesCommand";
6
+ import { ManagedBlockchainPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListProposalVotes(
8
+ config: ManagedBlockchainPaginationConfiguration,
9
+ input: ListProposalVotesCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListProposalVotesCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListProposalsCommandInput, ListProposalsCommandOutput } from "../commands/ListProposalsCommand";
3
- import { ManagedBlockchainPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListProposals(config: ManagedBlockchainPaginationConfiguration, input: ListProposalsCommandInput, ...additionalArguments: any): Paginator<ListProposalsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListProposalsCommandInput,
4
+ ListProposalsCommandOutput,
5
+ } from "../commands/ListProposalsCommand";
6
+ import { ManagedBlockchainPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListProposals(
8
+ config: ManagedBlockchainPaginationConfiguration,
9
+ input: ListProposalsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListProposalsCommandOutput>;
@@ -1,7 +1,7 @@
1
- export * from "./Interfaces";
2
- export * from "./ListInvitationsPaginator";
3
- export * from "./ListMembersPaginator";
4
- export * from "./ListNetworksPaginator";
5
- export * from "./ListNodesPaginator";
6
- export * from "./ListProposalVotesPaginator";
7
- export * from "./ListProposalsPaginator";
1
+ export * from "./Interfaces";
2
+ export * from "./ListInvitationsPaginator";
3
+ export * from "./ListMembersPaginator";
4
+ export * from "./ListNetworksPaginator";
5
+ export * from "./ListNodesPaginator";
6
+ export * from "./ListProposalVotesPaginator";
7
+ export * from "./ListProposalsPaginator";
@@ -1,71 +1,281 @@
1
- import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
- import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
- import { CreateMemberCommandInput, CreateMemberCommandOutput } from "../commands/CreateMemberCommand";
4
- import { CreateNetworkCommandInput, CreateNetworkCommandOutput } from "../commands/CreateNetworkCommand";
5
- import { CreateNodeCommandInput, CreateNodeCommandOutput } from "../commands/CreateNodeCommand";
6
- import { CreateProposalCommandInput, CreateProposalCommandOutput } from "../commands/CreateProposalCommand";
7
- import { DeleteMemberCommandInput, DeleteMemberCommandOutput } from "../commands/DeleteMemberCommand";
8
- import { DeleteNodeCommandInput, DeleteNodeCommandOutput } from "../commands/DeleteNodeCommand";
9
- import { GetMemberCommandInput, GetMemberCommandOutput } from "../commands/GetMemberCommand";
10
- import { GetNetworkCommandInput, GetNetworkCommandOutput } from "../commands/GetNetworkCommand";
11
- import { GetNodeCommandInput, GetNodeCommandOutput } from "../commands/GetNodeCommand";
12
- import { GetProposalCommandInput, GetProposalCommandOutput } from "../commands/GetProposalCommand";
13
- import { ListInvitationsCommandInput, ListInvitationsCommandOutput } from "../commands/ListInvitationsCommand";
14
- import { ListMembersCommandInput, ListMembersCommandOutput } from "../commands/ListMembersCommand";
15
- import { ListNetworksCommandInput, ListNetworksCommandOutput } from "../commands/ListNetworksCommand";
16
- import { ListNodesCommandInput, ListNodesCommandOutput } from "../commands/ListNodesCommand";
17
- import { ListProposalsCommandInput, ListProposalsCommandOutput } from "../commands/ListProposalsCommand";
18
- import { ListProposalVotesCommandInput, ListProposalVotesCommandOutput } from "../commands/ListProposalVotesCommand";
19
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
20
- import { RejectInvitationCommandInput, RejectInvitationCommandOutput } from "../commands/RejectInvitationCommand";
21
- import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
22
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
23
- import { UpdateMemberCommandInput, UpdateMemberCommandOutput } from "../commands/UpdateMemberCommand";
24
- import { UpdateNodeCommandInput, UpdateNodeCommandOutput } from "../commands/UpdateNodeCommand";
25
- import { VoteOnProposalCommandInput, VoteOnProposalCommandOutput } from "../commands/VoteOnProposalCommand";
26
- export declare const serializeAws_restJson1CreateMemberCommand: (input: CreateMemberCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
27
- export declare const serializeAws_restJson1CreateNetworkCommand: (input: CreateNetworkCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
28
- export declare const serializeAws_restJson1CreateNodeCommand: (input: CreateNodeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
- export declare const serializeAws_restJson1CreateProposalCommand: (input: CreateProposalCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
30
- export declare const serializeAws_restJson1DeleteMemberCommand: (input: DeleteMemberCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
31
- export declare const serializeAws_restJson1DeleteNodeCommand: (input: DeleteNodeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
32
- export declare const serializeAws_restJson1GetMemberCommand: (input: GetMemberCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
33
- export declare const serializeAws_restJson1GetNetworkCommand: (input: GetNetworkCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
34
- export declare const serializeAws_restJson1GetNodeCommand: (input: GetNodeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
35
- export declare const serializeAws_restJson1GetProposalCommand: (input: GetProposalCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
36
- export declare const serializeAws_restJson1ListInvitationsCommand: (input: ListInvitationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
37
- export declare const serializeAws_restJson1ListMembersCommand: (input: ListMembersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
38
- export declare const serializeAws_restJson1ListNetworksCommand: (input: ListNetworksCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
39
- export declare const serializeAws_restJson1ListNodesCommand: (input: ListNodesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
40
- export declare const serializeAws_restJson1ListProposalsCommand: (input: ListProposalsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
41
- export declare const serializeAws_restJson1ListProposalVotesCommand: (input: ListProposalVotesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
42
- export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
43
- export declare const serializeAws_restJson1RejectInvitationCommand: (input: RejectInvitationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
44
- export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
45
- export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
46
- export declare const serializeAws_restJson1UpdateMemberCommand: (input: UpdateMemberCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
47
- export declare const serializeAws_restJson1UpdateNodeCommand: (input: UpdateNodeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
48
- export declare const serializeAws_restJson1VoteOnProposalCommand: (input: VoteOnProposalCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
49
- export declare const deserializeAws_restJson1CreateMemberCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateMemberCommandOutput>;
50
- export declare const deserializeAws_restJson1CreateNetworkCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateNetworkCommandOutput>;
51
- export declare const deserializeAws_restJson1CreateNodeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateNodeCommandOutput>;
52
- export declare const deserializeAws_restJson1CreateProposalCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateProposalCommandOutput>;
53
- export declare const deserializeAws_restJson1DeleteMemberCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteMemberCommandOutput>;
54
- export declare const deserializeAws_restJson1DeleteNodeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteNodeCommandOutput>;
55
- export declare const deserializeAws_restJson1GetMemberCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMemberCommandOutput>;
56
- export declare const deserializeAws_restJson1GetNetworkCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetNetworkCommandOutput>;
57
- export declare const deserializeAws_restJson1GetNodeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetNodeCommandOutput>;
58
- export declare const deserializeAws_restJson1GetProposalCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetProposalCommandOutput>;
59
- export declare const deserializeAws_restJson1ListInvitationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListInvitationsCommandOutput>;
60
- export declare const deserializeAws_restJson1ListMembersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMembersCommandOutput>;
61
- export declare const deserializeAws_restJson1ListNetworksCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListNetworksCommandOutput>;
62
- export declare const deserializeAws_restJson1ListNodesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListNodesCommandOutput>;
63
- export declare const deserializeAws_restJson1ListProposalsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListProposalsCommandOutput>;
64
- export declare const deserializeAws_restJson1ListProposalVotesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListProposalVotesCommandOutput>;
65
- export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
66
- export declare const deserializeAws_restJson1RejectInvitationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RejectInvitationCommandOutput>;
67
- export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
68
- export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
69
- export declare const deserializeAws_restJson1UpdateMemberCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateMemberCommandOutput>;
70
- export declare const deserializeAws_restJson1UpdateNodeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateNodeCommandOutput>;
71
- export declare const deserializeAws_restJson1VoteOnProposalCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<VoteOnProposalCommandOutput>;
1
+ import {
2
+ HttpRequest as __HttpRequest,
3
+ HttpResponse as __HttpResponse,
4
+ } from "@aws-sdk/protocol-http";
5
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
6
+ import {
7
+ CreateMemberCommandInput,
8
+ CreateMemberCommandOutput,
9
+ } from "../commands/CreateMemberCommand";
10
+ import {
11
+ CreateNetworkCommandInput,
12
+ CreateNetworkCommandOutput,
13
+ } from "../commands/CreateNetworkCommand";
14
+ import {
15
+ CreateNodeCommandInput,
16
+ CreateNodeCommandOutput,
17
+ } from "../commands/CreateNodeCommand";
18
+ import {
19
+ CreateProposalCommandInput,
20
+ CreateProposalCommandOutput,
21
+ } from "../commands/CreateProposalCommand";
22
+ import {
23
+ DeleteMemberCommandInput,
24
+ DeleteMemberCommandOutput,
25
+ } from "../commands/DeleteMemberCommand";
26
+ import {
27
+ DeleteNodeCommandInput,
28
+ DeleteNodeCommandOutput,
29
+ } from "../commands/DeleteNodeCommand";
30
+ import {
31
+ GetMemberCommandInput,
32
+ GetMemberCommandOutput,
33
+ } from "../commands/GetMemberCommand";
34
+ import {
35
+ GetNetworkCommandInput,
36
+ GetNetworkCommandOutput,
37
+ } from "../commands/GetNetworkCommand";
38
+ import {
39
+ GetNodeCommandInput,
40
+ GetNodeCommandOutput,
41
+ } from "../commands/GetNodeCommand";
42
+ import {
43
+ GetProposalCommandInput,
44
+ GetProposalCommandOutput,
45
+ } from "../commands/GetProposalCommand";
46
+ import {
47
+ ListInvitationsCommandInput,
48
+ ListInvitationsCommandOutput,
49
+ } from "../commands/ListInvitationsCommand";
50
+ import {
51
+ ListMembersCommandInput,
52
+ ListMembersCommandOutput,
53
+ } from "../commands/ListMembersCommand";
54
+ import {
55
+ ListNetworksCommandInput,
56
+ ListNetworksCommandOutput,
57
+ } from "../commands/ListNetworksCommand";
58
+ import {
59
+ ListNodesCommandInput,
60
+ ListNodesCommandOutput,
61
+ } from "../commands/ListNodesCommand";
62
+ import {
63
+ ListProposalsCommandInput,
64
+ ListProposalsCommandOutput,
65
+ } from "../commands/ListProposalsCommand";
66
+ import {
67
+ ListProposalVotesCommandInput,
68
+ ListProposalVotesCommandOutput,
69
+ } from "../commands/ListProposalVotesCommand";
70
+ import {
71
+ ListTagsForResourceCommandInput,
72
+ ListTagsForResourceCommandOutput,
73
+ } from "../commands/ListTagsForResourceCommand";
74
+ import {
75
+ RejectInvitationCommandInput,
76
+ RejectInvitationCommandOutput,
77
+ } from "../commands/RejectInvitationCommand";
78
+ import {
79
+ TagResourceCommandInput,
80
+ TagResourceCommandOutput,
81
+ } from "../commands/TagResourceCommand";
82
+ import {
83
+ UntagResourceCommandInput,
84
+ UntagResourceCommandOutput,
85
+ } from "../commands/UntagResourceCommand";
86
+ import {
87
+ UpdateMemberCommandInput,
88
+ UpdateMemberCommandOutput,
89
+ } from "../commands/UpdateMemberCommand";
90
+ import {
91
+ UpdateNodeCommandInput,
92
+ UpdateNodeCommandOutput,
93
+ } from "../commands/UpdateNodeCommand";
94
+ import {
95
+ VoteOnProposalCommandInput,
96
+ VoteOnProposalCommandOutput,
97
+ } from "../commands/VoteOnProposalCommand";
98
+ export declare const serializeAws_restJson1CreateMemberCommand: (
99
+ input: CreateMemberCommandInput,
100
+ context: __SerdeContext
101
+ ) => Promise<__HttpRequest>;
102
+ export declare const serializeAws_restJson1CreateNetworkCommand: (
103
+ input: CreateNetworkCommandInput,
104
+ context: __SerdeContext
105
+ ) => Promise<__HttpRequest>;
106
+ export declare const serializeAws_restJson1CreateNodeCommand: (
107
+ input: CreateNodeCommandInput,
108
+ context: __SerdeContext
109
+ ) => Promise<__HttpRequest>;
110
+ export declare const serializeAws_restJson1CreateProposalCommand: (
111
+ input: CreateProposalCommandInput,
112
+ context: __SerdeContext
113
+ ) => Promise<__HttpRequest>;
114
+ export declare const serializeAws_restJson1DeleteMemberCommand: (
115
+ input: DeleteMemberCommandInput,
116
+ context: __SerdeContext
117
+ ) => Promise<__HttpRequest>;
118
+ export declare const serializeAws_restJson1DeleteNodeCommand: (
119
+ input: DeleteNodeCommandInput,
120
+ context: __SerdeContext
121
+ ) => Promise<__HttpRequest>;
122
+ export declare const serializeAws_restJson1GetMemberCommand: (
123
+ input: GetMemberCommandInput,
124
+ context: __SerdeContext
125
+ ) => Promise<__HttpRequest>;
126
+ export declare const serializeAws_restJson1GetNetworkCommand: (
127
+ input: GetNetworkCommandInput,
128
+ context: __SerdeContext
129
+ ) => Promise<__HttpRequest>;
130
+ export declare const serializeAws_restJson1GetNodeCommand: (
131
+ input: GetNodeCommandInput,
132
+ context: __SerdeContext
133
+ ) => Promise<__HttpRequest>;
134
+ export declare const serializeAws_restJson1GetProposalCommand: (
135
+ input: GetProposalCommandInput,
136
+ context: __SerdeContext
137
+ ) => Promise<__HttpRequest>;
138
+ export declare const serializeAws_restJson1ListInvitationsCommand: (
139
+ input: ListInvitationsCommandInput,
140
+ context: __SerdeContext
141
+ ) => Promise<__HttpRequest>;
142
+ export declare const serializeAws_restJson1ListMembersCommand: (
143
+ input: ListMembersCommandInput,
144
+ context: __SerdeContext
145
+ ) => Promise<__HttpRequest>;
146
+ export declare const serializeAws_restJson1ListNetworksCommand: (
147
+ input: ListNetworksCommandInput,
148
+ context: __SerdeContext
149
+ ) => Promise<__HttpRequest>;
150
+ export declare const serializeAws_restJson1ListNodesCommand: (
151
+ input: ListNodesCommandInput,
152
+ context: __SerdeContext
153
+ ) => Promise<__HttpRequest>;
154
+ export declare const serializeAws_restJson1ListProposalsCommand: (
155
+ input: ListProposalsCommandInput,
156
+ context: __SerdeContext
157
+ ) => Promise<__HttpRequest>;
158
+ export declare const serializeAws_restJson1ListProposalVotesCommand: (
159
+ input: ListProposalVotesCommandInput,
160
+ context: __SerdeContext
161
+ ) => Promise<__HttpRequest>;
162
+ export declare const serializeAws_restJson1ListTagsForResourceCommand: (
163
+ input: ListTagsForResourceCommandInput,
164
+ context: __SerdeContext
165
+ ) => Promise<__HttpRequest>;
166
+ export declare const serializeAws_restJson1RejectInvitationCommand: (
167
+ input: RejectInvitationCommandInput,
168
+ context: __SerdeContext
169
+ ) => Promise<__HttpRequest>;
170
+ export declare const serializeAws_restJson1TagResourceCommand: (
171
+ input: TagResourceCommandInput,
172
+ context: __SerdeContext
173
+ ) => Promise<__HttpRequest>;
174
+ export declare const serializeAws_restJson1UntagResourceCommand: (
175
+ input: UntagResourceCommandInput,
176
+ context: __SerdeContext
177
+ ) => Promise<__HttpRequest>;
178
+ export declare const serializeAws_restJson1UpdateMemberCommand: (
179
+ input: UpdateMemberCommandInput,
180
+ context: __SerdeContext
181
+ ) => Promise<__HttpRequest>;
182
+ export declare const serializeAws_restJson1UpdateNodeCommand: (
183
+ input: UpdateNodeCommandInput,
184
+ context: __SerdeContext
185
+ ) => Promise<__HttpRequest>;
186
+ export declare const serializeAws_restJson1VoteOnProposalCommand: (
187
+ input: VoteOnProposalCommandInput,
188
+ context: __SerdeContext
189
+ ) => Promise<__HttpRequest>;
190
+ export declare const deserializeAws_restJson1CreateMemberCommand: (
191
+ output: __HttpResponse,
192
+ context: __SerdeContext
193
+ ) => Promise<CreateMemberCommandOutput>;
194
+ export declare const deserializeAws_restJson1CreateNetworkCommand: (
195
+ output: __HttpResponse,
196
+ context: __SerdeContext
197
+ ) => Promise<CreateNetworkCommandOutput>;
198
+ export declare const deserializeAws_restJson1CreateNodeCommand: (
199
+ output: __HttpResponse,
200
+ context: __SerdeContext
201
+ ) => Promise<CreateNodeCommandOutput>;
202
+ export declare const deserializeAws_restJson1CreateProposalCommand: (
203
+ output: __HttpResponse,
204
+ context: __SerdeContext
205
+ ) => Promise<CreateProposalCommandOutput>;
206
+ export declare const deserializeAws_restJson1DeleteMemberCommand: (
207
+ output: __HttpResponse,
208
+ context: __SerdeContext
209
+ ) => Promise<DeleteMemberCommandOutput>;
210
+ export declare const deserializeAws_restJson1DeleteNodeCommand: (
211
+ output: __HttpResponse,
212
+ context: __SerdeContext
213
+ ) => Promise<DeleteNodeCommandOutput>;
214
+ export declare const deserializeAws_restJson1GetMemberCommand: (
215
+ output: __HttpResponse,
216
+ context: __SerdeContext
217
+ ) => Promise<GetMemberCommandOutput>;
218
+ export declare const deserializeAws_restJson1GetNetworkCommand: (
219
+ output: __HttpResponse,
220
+ context: __SerdeContext
221
+ ) => Promise<GetNetworkCommandOutput>;
222
+ export declare const deserializeAws_restJson1GetNodeCommand: (
223
+ output: __HttpResponse,
224
+ context: __SerdeContext
225
+ ) => Promise<GetNodeCommandOutput>;
226
+ export declare const deserializeAws_restJson1GetProposalCommand: (
227
+ output: __HttpResponse,
228
+ context: __SerdeContext
229
+ ) => Promise<GetProposalCommandOutput>;
230
+ export declare const deserializeAws_restJson1ListInvitationsCommand: (
231
+ output: __HttpResponse,
232
+ context: __SerdeContext
233
+ ) => Promise<ListInvitationsCommandOutput>;
234
+ export declare const deserializeAws_restJson1ListMembersCommand: (
235
+ output: __HttpResponse,
236
+ context: __SerdeContext
237
+ ) => Promise<ListMembersCommandOutput>;
238
+ export declare const deserializeAws_restJson1ListNetworksCommand: (
239
+ output: __HttpResponse,
240
+ context: __SerdeContext
241
+ ) => Promise<ListNetworksCommandOutput>;
242
+ export declare const deserializeAws_restJson1ListNodesCommand: (
243
+ output: __HttpResponse,
244
+ context: __SerdeContext
245
+ ) => Promise<ListNodesCommandOutput>;
246
+ export declare const deserializeAws_restJson1ListProposalsCommand: (
247
+ output: __HttpResponse,
248
+ context: __SerdeContext
249
+ ) => Promise<ListProposalsCommandOutput>;
250
+ export declare const deserializeAws_restJson1ListProposalVotesCommand: (
251
+ output: __HttpResponse,
252
+ context: __SerdeContext
253
+ ) => Promise<ListProposalVotesCommandOutput>;
254
+ export declare const deserializeAws_restJson1ListTagsForResourceCommand: (
255
+ output: __HttpResponse,
256
+ context: __SerdeContext
257
+ ) => Promise<ListTagsForResourceCommandOutput>;
258
+ export declare const deserializeAws_restJson1RejectInvitationCommand: (
259
+ output: __HttpResponse,
260
+ context: __SerdeContext
261
+ ) => Promise<RejectInvitationCommandOutput>;
262
+ export declare const deserializeAws_restJson1TagResourceCommand: (
263
+ output: __HttpResponse,
264
+ context: __SerdeContext
265
+ ) => Promise<TagResourceCommandOutput>;
266
+ export declare const deserializeAws_restJson1UntagResourceCommand: (
267
+ output: __HttpResponse,
268
+ context: __SerdeContext
269
+ ) => Promise<UntagResourceCommandOutput>;
270
+ export declare const deserializeAws_restJson1UpdateMemberCommand: (
271
+ output: __HttpResponse,
272
+ context: __SerdeContext
273
+ ) => Promise<UpdateMemberCommandOutput>;
274
+ export declare const deserializeAws_restJson1UpdateNodeCommand: (
275
+ output: __HttpResponse,
276
+ context: __SerdeContext
277
+ ) => Promise<UpdateNodeCommandOutput>;
278
+ export declare const deserializeAws_restJson1VoteOnProposalCommand: (
279
+ output: __HttpResponse,
280
+ context: __SerdeContext
281
+ ) => Promise<VoteOnProposalCommandOutput>;
@@ -1,38 +1,68 @@
1
- import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
- import { ManagedBlockchainClientConfig } from "./ManagedBlockchainClient";
3
-
4
- export declare const getRuntimeConfig: (config: ManagedBlockchainClientConfig) => {
5
- runtime: string;
6
- defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
- base64Decoder: import("@aws-sdk/types").Decoder;
8
- base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
- region: string | import("@aws-sdk/types").Provider<any>;
14
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
- retryMode: string | import("@aws-sdk/types").Provider<string>;
16
- sha256: import("@aws-sdk/types").HashConstructor;
17
- streamCollector: import("@aws-sdk/types").StreamCollector;
18
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- utf8Decoder: import("@aws-sdk/types").Decoder;
21
- utf8Encoder: import("@aws-sdk/types").Encoder;
22
- apiVersion: string;
23
- urlParser: import("@aws-sdk/types").UrlParser;
24
- disableHostPrefix: boolean;
25
- logger: import("@aws-sdk/types").Logger;
26
- serviceId: string;
27
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
- tls?: boolean | undefined;
30
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
- signingEscapePath?: boolean | undefined;
34
- systemClockOffset?: number | undefined;
35
- signingRegion?: string | undefined;
36
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
- };
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
+ import { ManagedBlockchainClientConfig } from "./ManagedBlockchainClient";
3
+
4
+ export declare const getRuntimeConfig: (
5
+ config: ManagedBlockchainClientConfig
6
+ ) => {
7
+ runtime: string;
8
+ defaultsMode: import("@aws-sdk/types").Provider<
9
+ import("@aws-sdk/smithy-client").ResolvedDefaultsMode
10
+ >;
11
+ base64Decoder: import("@aws-sdk/types").Decoder;
12
+ base64Encoder: import("@aws-sdk/types").Encoder;
13
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
14
+ credentialDefaultProvider: (
15
+ input: any
16
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
17
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
18
+ import("@aws-sdk/types").UserAgent
19
+ >;
20
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
21
+ region: string | import("@aws-sdk/types").Provider<any>;
22
+ requestHandler:
23
+ | (import("@aws-sdk/types").RequestHandler<
24
+ any,
25
+ any,
26
+ import("@aws-sdk/types").HttpHandlerOptions
27
+ > &
28
+ import("@aws-sdk/protocol-http").HttpHandler)
29
+ | RequestHandler;
30
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
31
+ sha256: import("@aws-sdk/types").HashConstructor;
32
+ streamCollector: import("@aws-sdk/types").StreamCollector;
33
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
34
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
35
+ utf8Decoder: import("@aws-sdk/types").Decoder;
36
+ utf8Encoder: import("@aws-sdk/types").Encoder;
37
+ apiVersion: string;
38
+ urlParser: import("@aws-sdk/types").UrlParser;
39
+ disableHostPrefix: boolean;
40
+ logger: import("@aws-sdk/types").Logger;
41
+ serviceId: string;
42
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
43
+ endpoint?:
44
+ | string
45
+ | import("@aws-sdk/types").Endpoint
46
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
47
+ | undefined;
48
+ tls?: boolean | undefined;
49
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
50
+ credentials?:
51
+ | import("@aws-sdk/types").Credentials
52
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
53
+ | undefined;
54
+ signer?:
55
+ | import("@aws-sdk/types").RequestSigner
56
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
57
+ | undefined;
58
+ signingEscapePath?: boolean | undefined;
59
+ systemClockOffset?: number | undefined;
60
+ signingRegion?: string | undefined;
61
+ signerConstructor?:
62
+ | (new (
63
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
64
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
65
+ ) => import("@aws-sdk/types").RequestSigner)
66
+ | undefined;
67
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
68
+ };