@aws-sdk/client-managedblockchain 3.168.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 +16 -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,96 +1,268 @@
1
- import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
2
- import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
3
- import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
4
- import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
5
- import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
- import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
- import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
- import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
- import { CreateMemberCommandInput, CreateMemberCommandOutput } from "./commands/CreateMemberCommand";
10
- import { CreateNetworkCommandInput, CreateNetworkCommandOutput } from "./commands/CreateNetworkCommand";
11
- import { CreateNodeCommandInput, CreateNodeCommandOutput } from "./commands/CreateNodeCommand";
12
- import { CreateProposalCommandInput, CreateProposalCommandOutput } from "./commands/CreateProposalCommand";
13
- import { DeleteMemberCommandInput, DeleteMemberCommandOutput } from "./commands/DeleteMemberCommand";
14
- import { DeleteNodeCommandInput, DeleteNodeCommandOutput } from "./commands/DeleteNodeCommand";
15
- import { GetMemberCommandInput, GetMemberCommandOutput } from "./commands/GetMemberCommand";
16
- import { GetNetworkCommandInput, GetNetworkCommandOutput } from "./commands/GetNetworkCommand";
17
- import { GetNodeCommandInput, GetNodeCommandOutput } from "./commands/GetNodeCommand";
18
- import { GetProposalCommandInput, GetProposalCommandOutput } from "./commands/GetProposalCommand";
19
- import { ListInvitationsCommandInput, ListInvitationsCommandOutput } from "./commands/ListInvitationsCommand";
20
- import { ListMembersCommandInput, ListMembersCommandOutput } from "./commands/ListMembersCommand";
21
- import { ListNetworksCommandInput, ListNetworksCommandOutput } from "./commands/ListNetworksCommand";
22
- import { ListNodesCommandInput, ListNodesCommandOutput } from "./commands/ListNodesCommand";
23
- import { ListProposalsCommandInput, ListProposalsCommandOutput } from "./commands/ListProposalsCommand";
24
- import { ListProposalVotesCommandInput, ListProposalVotesCommandOutput } from "./commands/ListProposalVotesCommand";
25
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
26
- import { RejectInvitationCommandInput, RejectInvitationCommandOutput } from "./commands/RejectInvitationCommand";
27
- import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
28
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
29
- import { UpdateMemberCommandInput, UpdateMemberCommandOutput } from "./commands/UpdateMemberCommand";
30
- import { UpdateNodeCommandInput, UpdateNodeCommandOutput } from "./commands/UpdateNodeCommand";
31
- import { VoteOnProposalCommandInput, VoteOnProposalCommandOutput } from "./commands/VoteOnProposalCommand";
32
- export declare type ServiceInputTypes = CreateMemberCommandInput | CreateNetworkCommandInput | CreateNodeCommandInput | CreateProposalCommandInput | DeleteMemberCommandInput | DeleteNodeCommandInput | GetMemberCommandInput | GetNetworkCommandInput | GetNodeCommandInput | GetProposalCommandInput | ListInvitationsCommandInput | ListMembersCommandInput | ListNetworksCommandInput | ListNodesCommandInput | ListProposalVotesCommandInput | ListProposalsCommandInput | ListTagsForResourceCommandInput | RejectInvitationCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateMemberCommandInput | UpdateNodeCommandInput | VoteOnProposalCommandInput;
33
- export declare type ServiceOutputTypes = CreateMemberCommandOutput | CreateNetworkCommandOutput | CreateNodeCommandOutput | CreateProposalCommandOutput | DeleteMemberCommandOutput | DeleteNodeCommandOutput | GetMemberCommandOutput | GetNetworkCommandOutput | GetNodeCommandOutput | GetProposalCommandOutput | ListInvitationsCommandOutput | ListMembersCommandOutput | ListNetworksCommandOutput | ListNodesCommandOutput | ListProposalVotesCommandOutput | ListProposalsCommandOutput | ListTagsForResourceCommandOutput | RejectInvitationCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateMemberCommandOutput | UpdateNodeCommandOutput | VoteOnProposalCommandOutput;
34
- export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
35
-
36
- requestHandler?: __HttpHandler;
37
-
38
- sha256?: __HashConstructor;
39
-
40
- urlParser?: __UrlParser;
41
-
42
- bodyLengthChecker?: __BodyLengthCalculator;
43
-
44
- streamCollector?: __StreamCollector;
45
-
46
- base64Decoder?: __Decoder;
47
-
48
- base64Encoder?: __Encoder;
49
-
50
- utf8Decoder?: __Decoder;
51
-
52
- utf8Encoder?: __Encoder;
53
-
54
- runtime?: string;
55
-
56
- disableHostPrefix?: boolean;
57
-
58
- maxAttempts?: number | __Provider<number>;
59
-
60
- retryMode?: string | __Provider<string>;
61
-
62
- logger?: __Logger;
63
-
64
- useDualstackEndpoint?: boolean | __Provider<boolean>;
65
-
66
- useFipsEndpoint?: boolean | __Provider<boolean>;
67
-
68
- serviceId?: string;
69
-
70
- region?: string | __Provider<string>;
71
-
72
- credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
73
-
74
- regionInfoProvider?: RegionInfoProvider;
75
-
76
- defaultUserAgentProvider?: Provider<__UserAgent>;
77
-
78
- defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
79
- }
80
- declare type ManagedBlockchainClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
81
-
82
- export interface ManagedBlockchainClientConfig extends ManagedBlockchainClientConfigType {
83
- }
84
- declare type ManagedBlockchainClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
85
-
86
- export interface ManagedBlockchainClientResolvedConfig extends ManagedBlockchainClientResolvedConfigType {
87
- }
88
-
89
- export declare class ManagedBlockchainClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, ManagedBlockchainClientResolvedConfig> {
90
-
91
- readonly config: ManagedBlockchainClientResolvedConfig;
92
- constructor(configuration: ManagedBlockchainClientConfig);
93
-
94
- destroy(): void;
95
- }
96
- export {};
1
+ import {
2
+ EndpointsInputConfig,
3
+ EndpointsResolvedConfig,
4
+ RegionInputConfig,
5
+ RegionResolvedConfig,
6
+ } from "@aws-sdk/config-resolver";
7
+ import {
8
+ HostHeaderInputConfig,
9
+ HostHeaderResolvedConfig,
10
+ } from "@aws-sdk/middleware-host-header";
11
+ import {
12
+ RetryInputConfig,
13
+ RetryResolvedConfig,
14
+ } from "@aws-sdk/middleware-retry";
15
+ import {
16
+ AwsAuthInputConfig,
17
+ AwsAuthResolvedConfig,
18
+ } from "@aws-sdk/middleware-signing";
19
+ import {
20
+ UserAgentInputConfig,
21
+ UserAgentResolvedConfig,
22
+ } from "@aws-sdk/middleware-user-agent";
23
+ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
24
+ import {
25
+ Client as __Client,
26
+ DefaultsMode,
27
+ SmithyConfiguration as __SmithyConfiguration,
28
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
29
+ } from "@aws-sdk/smithy-client";
30
+ import {
31
+ BodyLengthCalculator as __BodyLengthCalculator,
32
+ Credentials as __Credentials,
33
+ Decoder as __Decoder,
34
+ Encoder as __Encoder,
35
+ HashConstructor as __HashConstructor,
36
+ HttpHandlerOptions as __HttpHandlerOptions,
37
+ Logger as __Logger,
38
+ Provider as __Provider,
39
+ Provider,
40
+ RegionInfoProvider,
41
+ StreamCollector as __StreamCollector,
42
+ UrlParser as __UrlParser,
43
+ UserAgent as __UserAgent,
44
+ } from "@aws-sdk/types";
45
+ import {
46
+ CreateMemberCommandInput,
47
+ CreateMemberCommandOutput,
48
+ } from "./commands/CreateMemberCommand";
49
+ import {
50
+ CreateNetworkCommandInput,
51
+ CreateNetworkCommandOutput,
52
+ } from "./commands/CreateNetworkCommand";
53
+ import {
54
+ CreateNodeCommandInput,
55
+ CreateNodeCommandOutput,
56
+ } from "./commands/CreateNodeCommand";
57
+ import {
58
+ CreateProposalCommandInput,
59
+ CreateProposalCommandOutput,
60
+ } from "./commands/CreateProposalCommand";
61
+ import {
62
+ DeleteMemberCommandInput,
63
+ DeleteMemberCommandOutput,
64
+ } from "./commands/DeleteMemberCommand";
65
+ import {
66
+ DeleteNodeCommandInput,
67
+ DeleteNodeCommandOutput,
68
+ } from "./commands/DeleteNodeCommand";
69
+ import {
70
+ GetMemberCommandInput,
71
+ GetMemberCommandOutput,
72
+ } from "./commands/GetMemberCommand";
73
+ import {
74
+ GetNetworkCommandInput,
75
+ GetNetworkCommandOutput,
76
+ } from "./commands/GetNetworkCommand";
77
+ import {
78
+ GetNodeCommandInput,
79
+ GetNodeCommandOutput,
80
+ } from "./commands/GetNodeCommand";
81
+ import {
82
+ GetProposalCommandInput,
83
+ GetProposalCommandOutput,
84
+ } from "./commands/GetProposalCommand";
85
+ import {
86
+ ListInvitationsCommandInput,
87
+ ListInvitationsCommandOutput,
88
+ } from "./commands/ListInvitationsCommand";
89
+ import {
90
+ ListMembersCommandInput,
91
+ ListMembersCommandOutput,
92
+ } from "./commands/ListMembersCommand";
93
+ import {
94
+ ListNetworksCommandInput,
95
+ ListNetworksCommandOutput,
96
+ } from "./commands/ListNetworksCommand";
97
+ import {
98
+ ListNodesCommandInput,
99
+ ListNodesCommandOutput,
100
+ } from "./commands/ListNodesCommand";
101
+ import {
102
+ ListProposalsCommandInput,
103
+ ListProposalsCommandOutput,
104
+ } from "./commands/ListProposalsCommand";
105
+ import {
106
+ ListProposalVotesCommandInput,
107
+ ListProposalVotesCommandOutput,
108
+ } from "./commands/ListProposalVotesCommand";
109
+ import {
110
+ ListTagsForResourceCommandInput,
111
+ ListTagsForResourceCommandOutput,
112
+ } from "./commands/ListTagsForResourceCommand";
113
+ import {
114
+ RejectInvitationCommandInput,
115
+ RejectInvitationCommandOutput,
116
+ } from "./commands/RejectInvitationCommand";
117
+ import {
118
+ TagResourceCommandInput,
119
+ TagResourceCommandOutput,
120
+ } from "./commands/TagResourceCommand";
121
+ import {
122
+ UntagResourceCommandInput,
123
+ UntagResourceCommandOutput,
124
+ } from "./commands/UntagResourceCommand";
125
+ import {
126
+ UpdateMemberCommandInput,
127
+ UpdateMemberCommandOutput,
128
+ } from "./commands/UpdateMemberCommand";
129
+ import {
130
+ UpdateNodeCommandInput,
131
+ UpdateNodeCommandOutput,
132
+ } from "./commands/UpdateNodeCommand";
133
+ import {
134
+ VoteOnProposalCommandInput,
135
+ VoteOnProposalCommandOutput,
136
+ } from "./commands/VoteOnProposalCommand";
137
+ export declare type ServiceInputTypes =
138
+ | CreateMemberCommandInput
139
+ | CreateNetworkCommandInput
140
+ | CreateNodeCommandInput
141
+ | CreateProposalCommandInput
142
+ | DeleteMemberCommandInput
143
+ | DeleteNodeCommandInput
144
+ | GetMemberCommandInput
145
+ | GetNetworkCommandInput
146
+ | GetNodeCommandInput
147
+ | GetProposalCommandInput
148
+ | ListInvitationsCommandInput
149
+ | ListMembersCommandInput
150
+ | ListNetworksCommandInput
151
+ | ListNodesCommandInput
152
+ | ListProposalVotesCommandInput
153
+ | ListProposalsCommandInput
154
+ | ListTagsForResourceCommandInput
155
+ | RejectInvitationCommandInput
156
+ | TagResourceCommandInput
157
+ | UntagResourceCommandInput
158
+ | UpdateMemberCommandInput
159
+ | UpdateNodeCommandInput
160
+ | VoteOnProposalCommandInput;
161
+ export declare type ServiceOutputTypes =
162
+ | CreateMemberCommandOutput
163
+ | CreateNetworkCommandOutput
164
+ | CreateNodeCommandOutput
165
+ | CreateProposalCommandOutput
166
+ | DeleteMemberCommandOutput
167
+ | DeleteNodeCommandOutput
168
+ | GetMemberCommandOutput
169
+ | GetNetworkCommandOutput
170
+ | GetNodeCommandOutput
171
+ | GetProposalCommandOutput
172
+ | ListInvitationsCommandOutput
173
+ | ListMembersCommandOutput
174
+ | ListNetworksCommandOutput
175
+ | ListNodesCommandOutput
176
+ | ListProposalVotesCommandOutput
177
+ | ListProposalsCommandOutput
178
+ | ListTagsForResourceCommandOutput
179
+ | RejectInvitationCommandOutput
180
+ | TagResourceCommandOutput
181
+ | UntagResourceCommandOutput
182
+ | UpdateMemberCommandOutput
183
+ | UpdateNodeCommandOutput
184
+ | VoteOnProposalCommandOutput;
185
+ export interface ClientDefaults
186
+ extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
187
+ requestHandler?: __HttpHandler;
188
+
189
+ sha256?: __HashConstructor;
190
+
191
+ urlParser?: __UrlParser;
192
+
193
+ bodyLengthChecker?: __BodyLengthCalculator;
194
+
195
+ streamCollector?: __StreamCollector;
196
+
197
+ base64Decoder?: __Decoder;
198
+
199
+ base64Encoder?: __Encoder;
200
+
201
+ utf8Decoder?: __Decoder;
202
+
203
+ utf8Encoder?: __Encoder;
204
+
205
+ runtime?: string;
206
+
207
+ disableHostPrefix?: boolean;
208
+
209
+ maxAttempts?: number | __Provider<number>;
210
+
211
+ retryMode?: string | __Provider<string>;
212
+
213
+ logger?: __Logger;
214
+
215
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
216
+
217
+ useFipsEndpoint?: boolean | __Provider<boolean>;
218
+
219
+ serviceId?: string;
220
+
221
+ region?: string | __Provider<string>;
222
+
223
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
224
+
225
+ regionInfoProvider?: RegionInfoProvider;
226
+
227
+ defaultUserAgentProvider?: Provider<__UserAgent>;
228
+
229
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
230
+ }
231
+ declare type ManagedBlockchainClientConfigType = Partial<
232
+ __SmithyConfiguration<__HttpHandlerOptions>
233
+ > &
234
+ ClientDefaults &
235
+ RegionInputConfig &
236
+ EndpointsInputConfig &
237
+ RetryInputConfig &
238
+ HostHeaderInputConfig &
239
+ AwsAuthInputConfig &
240
+ UserAgentInputConfig;
241
+
242
+ export interface ManagedBlockchainClientConfig
243
+ extends ManagedBlockchainClientConfigType {}
244
+ declare type ManagedBlockchainClientResolvedConfigType =
245
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
246
+ Required<ClientDefaults> &
247
+ RegionResolvedConfig &
248
+ EndpointsResolvedConfig &
249
+ RetryResolvedConfig &
250
+ HostHeaderResolvedConfig &
251
+ AwsAuthResolvedConfig &
252
+ UserAgentResolvedConfig;
253
+
254
+ export interface ManagedBlockchainClientResolvedConfig
255
+ extends ManagedBlockchainClientResolvedConfigType {}
256
+
257
+ export declare class ManagedBlockchainClient extends __Client<
258
+ __HttpHandlerOptions,
259
+ ServiceInputTypes,
260
+ ServiceOutputTypes,
261
+ ManagedBlockchainClientResolvedConfig
262
+ > {
263
+ readonly config: ManagedBlockchainClientResolvedConfig;
264
+ constructor(configuration: ManagedBlockchainClientConfig);
265
+
266
+ destroy(): void;
267
+ }
268
+ export {};
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
4
- import { CreateMemberInput, CreateMemberOutput } from "../models/models_0";
5
- export interface CreateMemberCommandInput extends CreateMemberInput {
6
- }
7
- export interface CreateMemberCommandOutput extends CreateMemberOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateMemberCommand extends $Command<CreateMemberCommandInput, CreateMemberCommandOutput, ManagedBlockchainClientResolvedConfig> {
11
- readonly input: CreateMemberCommandInput;
12
- constructor(input: CreateMemberCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ManagedBlockchainClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateMemberCommandInput, CreateMemberCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ManagedBlockchainClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ManagedBlockchainClient";
13
+ import { CreateMemberInput, CreateMemberOutput } from "../models/models_0";
14
+ export interface CreateMemberCommandInput extends CreateMemberInput {}
15
+ export interface CreateMemberCommandOutput
16
+ extends CreateMemberOutput,
17
+ __MetadataBearer {}
18
+
19
+ export declare class CreateMemberCommand extends $Command<
20
+ CreateMemberCommandInput,
21
+ CreateMemberCommandOutput,
22
+ ManagedBlockchainClientResolvedConfig
23
+ > {
24
+ readonly input: CreateMemberCommandInput;
25
+ constructor(input: CreateMemberCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: ManagedBlockchainClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<CreateMemberCommandInput, CreateMemberCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
4
- import { CreateNetworkInput, CreateNetworkOutput } from "../models/models_0";
5
- export interface CreateNetworkCommandInput extends CreateNetworkInput {
6
- }
7
- export interface CreateNetworkCommandOutput extends CreateNetworkOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateNetworkCommand extends $Command<CreateNetworkCommandInput, CreateNetworkCommandOutput, ManagedBlockchainClientResolvedConfig> {
11
- readonly input: CreateNetworkCommandInput;
12
- constructor(input: CreateNetworkCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ManagedBlockchainClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateNetworkCommandInput, CreateNetworkCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ManagedBlockchainClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ManagedBlockchainClient";
13
+ import { CreateNetworkInput, CreateNetworkOutput } from "../models/models_0";
14
+ export interface CreateNetworkCommandInput extends CreateNetworkInput {}
15
+ export interface CreateNetworkCommandOutput
16
+ extends CreateNetworkOutput,
17
+ __MetadataBearer {}
18
+
19
+ export declare class CreateNetworkCommand extends $Command<
20
+ CreateNetworkCommandInput,
21
+ CreateNetworkCommandOutput,
22
+ ManagedBlockchainClientResolvedConfig
23
+ > {
24
+ readonly input: CreateNetworkCommandInput;
25
+ constructor(input: CreateNetworkCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: ManagedBlockchainClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<CreateNetworkCommandInput, CreateNetworkCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
4
- import { CreateNodeInput, CreateNodeOutput } from "../models/models_0";
5
- export interface CreateNodeCommandInput extends CreateNodeInput {
6
- }
7
- export interface CreateNodeCommandOutput extends CreateNodeOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateNodeCommand extends $Command<CreateNodeCommandInput, CreateNodeCommandOutput, ManagedBlockchainClientResolvedConfig> {
11
- readonly input: CreateNodeCommandInput;
12
- constructor(input: CreateNodeCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ManagedBlockchainClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateNodeCommandInput, CreateNodeCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ManagedBlockchainClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ManagedBlockchainClient";
13
+ import { CreateNodeInput, CreateNodeOutput } from "../models/models_0";
14
+ export interface CreateNodeCommandInput extends CreateNodeInput {}
15
+ export interface CreateNodeCommandOutput
16
+ extends CreateNodeOutput,
17
+ __MetadataBearer {}
18
+
19
+ export declare class CreateNodeCommand extends $Command<
20
+ CreateNodeCommandInput,
21
+ CreateNodeCommandOutput,
22
+ ManagedBlockchainClientResolvedConfig
23
+ > {
24
+ readonly input: CreateNodeCommandInput;
25
+ constructor(input: CreateNodeCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: ManagedBlockchainClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<CreateNodeCommandInput, CreateNodeCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
4
- import { CreateProposalInput, CreateProposalOutput } from "../models/models_0";
5
- export interface CreateProposalCommandInput extends CreateProposalInput {
6
- }
7
- export interface CreateProposalCommandOutput extends CreateProposalOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateProposalCommand extends $Command<CreateProposalCommandInput, CreateProposalCommandOutput, ManagedBlockchainClientResolvedConfig> {
11
- readonly input: CreateProposalCommandInput;
12
- constructor(input: CreateProposalCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ManagedBlockchainClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateProposalCommandInput, CreateProposalCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ManagedBlockchainClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ManagedBlockchainClient";
13
+ import { CreateProposalInput, CreateProposalOutput } from "../models/models_0";
14
+ export interface CreateProposalCommandInput extends CreateProposalInput {}
15
+ export interface CreateProposalCommandOutput
16
+ extends CreateProposalOutput,
17
+ __MetadataBearer {}
18
+
19
+ export declare class CreateProposalCommand extends $Command<
20
+ CreateProposalCommandInput,
21
+ CreateProposalCommandOutput,
22
+ ManagedBlockchainClientResolvedConfig
23
+ > {
24
+ readonly input: CreateProposalCommandInput;
25
+ constructor(input: CreateProposalCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: ManagedBlockchainClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<CreateProposalCommandInput, CreateProposalCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
4
- import { DeleteMemberInput, DeleteMemberOutput } from "../models/models_0";
5
- export interface DeleteMemberCommandInput extends DeleteMemberInput {
6
- }
7
- export interface DeleteMemberCommandOutput extends DeleteMemberOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteMemberCommand extends $Command<DeleteMemberCommandInput, DeleteMemberCommandOutput, ManagedBlockchainClientResolvedConfig> {
11
- readonly input: DeleteMemberCommandInput;
12
- constructor(input: DeleteMemberCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ManagedBlockchainClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteMemberCommandInput, DeleteMemberCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ManagedBlockchainClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ManagedBlockchainClient";
13
+ import { DeleteMemberInput, DeleteMemberOutput } from "../models/models_0";
14
+ export interface DeleteMemberCommandInput extends DeleteMemberInput {}
15
+ export interface DeleteMemberCommandOutput
16
+ extends DeleteMemberOutput,
17
+ __MetadataBearer {}
18
+
19
+ export declare class DeleteMemberCommand extends $Command<
20
+ DeleteMemberCommandInput,
21
+ DeleteMemberCommandOutput,
22
+ ManagedBlockchainClientResolvedConfig
23
+ > {
24
+ readonly input: DeleteMemberCommandInput;
25
+ constructor(input: DeleteMemberCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: ManagedBlockchainClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<DeleteMemberCommandInput, DeleteMemberCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }