@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.
- package/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/ManagedBlockchain.d.ts +418 -120
- package/dist-types/ts3.4/ManagedBlockchainClient.d.ts +268 -96
- package/dist-types/ts3.4/commands/CreateMemberCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateNetworkCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateNodeCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateProposalCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteMemberCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteNodeCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetMemberCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetNetworkCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetNodeCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetProposalCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListInvitationsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListMembersCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListNetworksCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListNodesCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListProposalVotesCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListProposalsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/RejectInvitationCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateMemberCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UpdateNodeCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/VoteOnProposalCommand.d.ts +34 -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 +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1049 -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 +68 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
- package/package.json +34 -34
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 { DeleteNodeInput, DeleteNodeOutput } from "../models/models_0";
|
|
14
|
+
export interface DeleteNodeCommandInput extends DeleteNodeInput {}
|
|
15
|
+
export interface DeleteNodeCommandOutput
|
|
16
|
+
extends DeleteNodeOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class DeleteNodeCommand extends $Command<
|
|
20
|
+
DeleteNodeCommandInput,
|
|
21
|
+
DeleteNodeCommandOutput,
|
|
22
|
+
ManagedBlockchainClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: DeleteNodeCommandInput;
|
|
25
|
+
constructor(input: DeleteNodeCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: ManagedBlockchainClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<DeleteNodeCommandInput, DeleteNodeCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 { GetMemberInput, GetMemberOutput } from "../models/models_0";
|
|
14
|
+
export interface GetMemberCommandInput extends GetMemberInput {}
|
|
15
|
+
export interface GetMemberCommandOutput
|
|
16
|
+
extends GetMemberOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class GetMemberCommand extends $Command<
|
|
20
|
+
GetMemberCommandInput,
|
|
21
|
+
GetMemberCommandOutput,
|
|
22
|
+
ManagedBlockchainClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: GetMemberCommandInput;
|
|
25
|
+
constructor(input: GetMemberCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: ManagedBlockchainClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<GetMemberCommandInput, GetMemberCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 { GetNetworkInput, GetNetworkOutput } from "../models/models_0";
|
|
14
|
+
export interface GetNetworkCommandInput extends GetNetworkInput {}
|
|
15
|
+
export interface GetNetworkCommandOutput
|
|
16
|
+
extends GetNetworkOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class GetNetworkCommand extends $Command<
|
|
20
|
+
GetNetworkCommandInput,
|
|
21
|
+
GetNetworkCommandOutput,
|
|
22
|
+
ManagedBlockchainClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: GetNetworkCommandInput;
|
|
25
|
+
constructor(input: GetNetworkCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: ManagedBlockchainClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<GetNetworkCommandInput, GetNetworkCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 { GetNodeInput, GetNodeOutput } from "../models/models_0";
|
|
14
|
+
export interface GetNodeCommandInput extends GetNodeInput {}
|
|
15
|
+
export interface GetNodeCommandOutput extends GetNodeOutput, __MetadataBearer {}
|
|
16
|
+
|
|
17
|
+
export declare class GetNodeCommand extends $Command<
|
|
18
|
+
GetNodeCommandInput,
|
|
19
|
+
GetNodeCommandOutput,
|
|
20
|
+
ManagedBlockchainClientResolvedConfig
|
|
21
|
+
> {
|
|
22
|
+
readonly input: GetNodeCommandInput;
|
|
23
|
+
constructor(input: GetNodeCommandInput);
|
|
24
|
+
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: ManagedBlockchainClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<GetNodeCommandInput, GetNodeCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 { GetProposalInput, GetProposalOutput } from "../models/models_0";
|
|
14
|
+
export interface GetProposalCommandInput extends GetProposalInput {}
|
|
15
|
+
export interface GetProposalCommandOutput
|
|
16
|
+
extends GetProposalOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class GetProposalCommand extends $Command<
|
|
20
|
+
GetProposalCommandInput,
|
|
21
|
+
GetProposalCommandOutput,
|
|
22
|
+
ManagedBlockchainClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: GetProposalCommandInput;
|
|
25
|
+
constructor(input: GetProposalCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: ManagedBlockchainClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<GetProposalCommandInput, GetProposalCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
14
|
+
ListInvitationsInput,
|
|
15
|
+
ListInvitationsOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListInvitationsCommandInput extends ListInvitationsInput {}
|
|
18
|
+
export interface ListInvitationsCommandOutput
|
|
19
|
+
extends ListInvitationsOutput,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class ListInvitationsCommand extends $Command<
|
|
23
|
+
ListInvitationsCommandInput,
|
|
24
|
+
ListInvitationsCommandOutput,
|
|
25
|
+
ManagedBlockchainClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListInvitationsCommandInput;
|
|
28
|
+
constructor(input: ListInvitationsCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: ManagedBlockchainClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<ListInvitationsCommandInput, ListInvitationsCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 { ListMembersInput, ListMembersOutput } from "../models/models_0";
|
|
14
|
+
export interface ListMembersCommandInput extends ListMembersInput {}
|
|
15
|
+
export interface ListMembersCommandOutput
|
|
16
|
+
extends ListMembersOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class ListMembersCommand extends $Command<
|
|
20
|
+
ListMembersCommandInput,
|
|
21
|
+
ListMembersCommandOutput,
|
|
22
|
+
ManagedBlockchainClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: ListMembersCommandInput;
|
|
25
|
+
constructor(input: ListMembersCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: ManagedBlockchainClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<ListMembersCommandInput, ListMembersCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 { ListNetworksInput, ListNetworksOutput } from "../models/models_0";
|
|
14
|
+
export interface ListNetworksCommandInput extends ListNetworksInput {}
|
|
15
|
+
export interface ListNetworksCommandOutput
|
|
16
|
+
extends ListNetworksOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class ListNetworksCommand extends $Command<
|
|
20
|
+
ListNetworksCommandInput,
|
|
21
|
+
ListNetworksCommandOutput,
|
|
22
|
+
ManagedBlockchainClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: ListNetworksCommandInput;
|
|
25
|
+
constructor(input: ListNetworksCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: ManagedBlockchainClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<ListNetworksCommandInput, ListNetworksCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 { ListNodesInput, ListNodesOutput } from "../models/models_0";
|
|
14
|
+
export interface ListNodesCommandInput extends ListNodesInput {}
|
|
15
|
+
export interface ListNodesCommandOutput
|
|
16
|
+
extends ListNodesOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class ListNodesCommand extends $Command<
|
|
20
|
+
ListNodesCommandInput,
|
|
21
|
+
ListNodesCommandOutput,
|
|
22
|
+
ManagedBlockchainClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: ListNodesCommandInput;
|
|
25
|
+
constructor(input: ListNodesCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: ManagedBlockchainClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<ListNodesCommandInput, ListNodesCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
14
|
+
ListProposalVotesInput,
|
|
15
|
+
ListProposalVotesOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListProposalVotesCommandInput extends ListProposalVotesInput {}
|
|
18
|
+
export interface ListProposalVotesCommandOutput
|
|
19
|
+
extends ListProposalVotesOutput,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class ListProposalVotesCommand extends $Command<
|
|
23
|
+
ListProposalVotesCommandInput,
|
|
24
|
+
ListProposalVotesCommandOutput,
|
|
25
|
+
ManagedBlockchainClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListProposalVotesCommandInput;
|
|
28
|
+
constructor(input: ListProposalVotesCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: ManagedBlockchainClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<ListProposalVotesCommandInput, ListProposalVotesCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 { ListProposalsInput, ListProposalsOutput } from "../models/models_0";
|
|
14
|
+
export interface ListProposalsCommandInput extends ListProposalsInput {}
|
|
15
|
+
export interface ListProposalsCommandOutput
|
|
16
|
+
extends ListProposalsOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class ListProposalsCommand extends $Command<
|
|
20
|
+
ListProposalsCommandInput,
|
|
21
|
+
ListProposalsCommandOutput,
|
|
22
|
+
ManagedBlockchainClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: ListProposalsCommandInput;
|
|
25
|
+
constructor(input: ListProposalsCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: ManagedBlockchainClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<ListProposalsCommandInput, ListProposalsCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
14
|
+
ListTagsForResourceRequest,
|
|
15
|
+
ListTagsForResourceResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListTagsForResourceCommandInput
|
|
18
|
+
extends ListTagsForResourceRequest {}
|
|
19
|
+
export interface ListTagsForResourceCommandOutput
|
|
20
|
+
extends ListTagsForResourceResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class ListTagsForResourceCommand extends $Command<
|
|
24
|
+
ListTagsForResourceCommandInput,
|
|
25
|
+
ListTagsForResourceCommandOutput,
|
|
26
|
+
ManagedBlockchainClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListTagsForResourceCommandInput;
|
|
29
|
+
constructor(input: ListTagsForResourceCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ManagedBlockchainClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|