@aws-sdk/client-managedblockchain 3.169.0 → 3.171.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.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/ManagedBlockchain.d.ts +395 -120
- package/dist-types/ts3.4/ManagedBlockchainClient.d.ts +243 -96
- package/dist-types/ts3.4/commands/CreateMemberCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/CreateNetworkCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/CreateNodeCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/CreateProposalCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteMemberCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteNodeCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetMemberCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetNetworkCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetNodeCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/GetProposalCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListInvitationsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListMembersCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListNetworksCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListNodesCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListProposalVotesCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListProposalsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/RejectInvitationCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateMemberCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UpdateNodeCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/VoteOnProposalCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/index.d.ts +23 -23
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/ManagedBlockchainServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +751 -970
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListInvitationsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListMembersPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListNetworksPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListNodesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListProposalVotesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListProposalsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +7 -7
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +281 -71
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
- 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
|
|
5
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
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 {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
import {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
import {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
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,67 @@
|
|
|
1
|
-
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
-
import { ManagedBlockchainClientConfig } from "./ManagedBlockchainClient";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
+
import { ManagedBlockchainClientConfig } from "./ManagedBlockchainClient";
|
|
3
|
+
export declare const getRuntimeConfig: (
|
|
4
|
+
config: ManagedBlockchainClientConfig
|
|
5
|
+
) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
8
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
9
|
+
>;
|
|
10
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
11
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
12
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
13
|
+
credentialDefaultProvider: (
|
|
14
|
+
input: any
|
|
15
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
16
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
17
|
+
import("@aws-sdk/types").UserAgent
|
|
18
|
+
>;
|
|
19
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
20
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
21
|
+
requestHandler:
|
|
22
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
23
|
+
any,
|
|
24
|
+
any,
|
|
25
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
26
|
+
> &
|
|
27
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
28
|
+
| RequestHandler;
|
|
29
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
30
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
31
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
32
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
33
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
34
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
35
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
36
|
+
apiVersion: string;
|
|
37
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
38
|
+
disableHostPrefix: boolean;
|
|
39
|
+
logger: import("@aws-sdk/types").Logger;
|
|
40
|
+
serviceId: string;
|
|
41
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
42
|
+
endpoint?:
|
|
43
|
+
| string
|
|
44
|
+
| import("@aws-sdk/types").Endpoint
|
|
45
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
46
|
+
| undefined;
|
|
47
|
+
tls?: boolean | undefined;
|
|
48
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
49
|
+
credentials?:
|
|
50
|
+
| import("@aws-sdk/types").Credentials
|
|
51
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
52
|
+
| undefined;
|
|
53
|
+
signer?:
|
|
54
|
+
| import("@aws-sdk/types").RequestSigner
|
|
55
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
56
|
+
| undefined;
|
|
57
|
+
signingEscapePath?: boolean | undefined;
|
|
58
|
+
systemClockOffset?: number | undefined;
|
|
59
|
+
signingRegion?: string | undefined;
|
|
60
|
+
signerConstructor?:
|
|
61
|
+
| (new (
|
|
62
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
63
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
64
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
65
|
+
| undefined;
|
|
66
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
67
|
+
};
|