@aws-sdk/client-managedblockchain 3.296.0 → 3.297.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/dist-types/ManagedBlockchain.d.ts +28 -0
- package/dist-types/ManagedBlockchainClient.d.ts +24 -4
- package/dist-types/commands/CreateAccessorCommand.d.ts +16 -0
- package/dist-types/commands/CreateMemberCommand.d.ts +16 -0
- package/dist-types/commands/CreateNetworkCommand.d.ts +16 -0
- package/dist-types/commands/CreateNodeCommand.d.ts +16 -0
- package/dist-types/commands/CreateProposalCommand.d.ts +16 -0
- package/dist-types/commands/DeleteAccessorCommand.d.ts +16 -0
- package/dist-types/commands/DeleteMemberCommand.d.ts +16 -0
- package/dist-types/commands/DeleteNodeCommand.d.ts +16 -0
- package/dist-types/commands/GetAccessorCommand.d.ts +16 -0
- package/dist-types/commands/GetMemberCommand.d.ts +16 -0
- package/dist-types/commands/GetNetworkCommand.d.ts +16 -0
- package/dist-types/commands/GetNodeCommand.d.ts +16 -0
- package/dist-types/commands/GetProposalCommand.d.ts +16 -0
- package/dist-types/commands/ListAccessorsCommand.d.ts +16 -0
- package/dist-types/commands/ListInvitationsCommand.d.ts +16 -0
- package/dist-types/commands/ListMembersCommand.d.ts +16 -0
- package/dist-types/commands/ListNetworksCommand.d.ts +16 -0
- package/dist-types/commands/ListNodesCommand.d.ts +16 -0
- package/dist-types/commands/ListProposalVotesCommand.d.ts +16 -0
- package/dist-types/commands/ListProposalsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/RejectInvitationCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateMemberCommand.d.ts +16 -0
- package/dist-types/commands/UpdateNodeCommand.d.ts +16 -0
- package/dist-types/commands/VoteOnProposalCommand.d.ts +16 -0
- package/dist-types/models/ManagedBlockchainServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +245 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListAccessorsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListInvitationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListMembersPaginator.d.ts +3 -0
- package/dist-types/pagination/ListNetworksPaginator.d.ts +3 -0
- package/dist-types/pagination/ListNodesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListProposalVotesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListProposalsPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
|
|
5
5
|
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListTagsForResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListTagsForResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns a list of tags for the specified resource. Each tag consists of a key and optional value.</p>
|
|
18
23
|
* <p>For more information about tags, see <a href="https://docs.aws.amazon.com/managed-blockchain/latest/ethereum-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Ethereum Developer Guide</i>, or <a href="https://docs.aws.amazon.com/managed-blockchain/latest/hyperledger-fabric-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Hyperledger Fabric Developer Guide</i>.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
35
|
+
* @returns {@link ListTagsForResourceCommandOutput}
|
|
29
36
|
* @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link ManagedBlockchainClientResolvedConfig | config} for ManagedBlockchainClient's `config` shape.
|
|
@@ -47,11 +54,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
47
54
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, ManagedBlockchainClientResolvedConfig> {
|
|
48
55
|
readonly input: ListTagsForResourceCommandInput;
|
|
49
56
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
50
60
|
constructor(input: ListTagsForResourceCommandInput);
|
|
51
61
|
/**
|
|
52
62
|
* @internal
|
|
53
63
|
*/
|
|
54
64
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ManagedBlockchainClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
55
68
|
private serialize;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
56
72
|
private deserialize;
|
|
57
73
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
|
|
5
5
|
import { RejectInvitationInput, RejectInvitationOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link RejectInvitationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface RejectInvitationCommandInput extends RejectInvitationInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link RejectInvitationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface RejectInvitationCommandOutput extends RejectInvitationOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Rejects an invitation to join a network. This action can be called by a principal in an Amazon Web Services account that has received an invitation to create a member and join a network.</p>
|
|
18
23
|
* <p>Applies only to Hyperledger Fabric.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface RejectInvitationCommandOutput extends RejectInvitationOutput, _
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param RejectInvitationCommandInput - {@link RejectInvitationCommandInput}
|
|
35
|
+
* @returns {@link RejectInvitationCommandOutput}
|
|
29
36
|
* @see {@link RejectInvitationCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link RejectInvitationCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link ManagedBlockchainClientResolvedConfig | config} for ManagedBlockchainClient's `config` shape.
|
|
@@ -56,11 +63,20 @@ export interface RejectInvitationCommandOutput extends RejectInvitationOutput, _
|
|
|
56
63
|
export declare class RejectInvitationCommand extends $Command<RejectInvitationCommandInput, RejectInvitationCommandOutput, ManagedBlockchainClientResolvedConfig> {
|
|
57
64
|
readonly input: RejectInvitationCommandInput;
|
|
58
65
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
59
69
|
constructor(input: RejectInvitationCommandInput);
|
|
60
70
|
/**
|
|
61
71
|
* @internal
|
|
62
72
|
*/
|
|
63
73
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ManagedBlockchainClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RejectInvitationCommandInput, RejectInvitationCommandOutput>;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
64
77
|
private serialize;
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
65
81
|
private deserialize;
|
|
66
82
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
|
|
5
5
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link TagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface TagResourceCommandInput extends TagResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link TagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Adds or overwrites the specified tags for the specified Amazon Managed Blockchain resource. Each tag consists of a key and optional value.</p>
|
|
18
23
|
* <p>When you specify a tag key that already exists, the tag value is overwritten with the new value. Use <code>UntagResource</code> to remove tag keys.</p>
|
|
19
24
|
* <p>A resource can have up to 50 tags. If you try to create more than 50 tags for a resource, your request fails and returns an error.</p>
|
|
@@ -28,6 +33,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
37
|
+
* @returns {@link TagResourceCommandOutput}
|
|
31
38
|
* @see {@link TagResourceCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link ManagedBlockchainClientResolvedConfig | config} for ManagedBlockchainClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
52
59
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, ManagedBlockchainClientResolvedConfig> {
|
|
53
60
|
readonly input: TagResourceCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: TagResourceCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ManagedBlockchainClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
|
|
5
5
|
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UntagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UntagResourceCommandInput extends UntagResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UntagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Removes the specified tags from the Amazon Managed Blockchain resource.</p>
|
|
18
23
|
* <p>For more information about tags, see <a href="https://docs.aws.amazon.com/managed-blockchain/latest/ethereum-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Ethereum Developer Guide</i>, or <a href="https://docs.aws.amazon.com/managed-blockchain/latest/hyperledger-fabric-dev/tagging-resources.html">Tagging Resources</a> in the <i>Amazon Managed Blockchain Hyperledger Fabric Developer Guide</i>.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
35
|
+
* @returns {@link UntagResourceCommandOutput}
|
|
29
36
|
* @see {@link UntagResourceCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link ManagedBlockchainClientResolvedConfig | config} for ManagedBlockchainClient's `config` shape.
|
|
@@ -47,11 +54,20 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
47
54
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, ManagedBlockchainClientResolvedConfig> {
|
|
48
55
|
readonly input: UntagResourceCommandInput;
|
|
49
56
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
50
60
|
constructor(input: UntagResourceCommandInput);
|
|
51
61
|
/**
|
|
52
62
|
* @internal
|
|
53
63
|
*/
|
|
54
64
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ManagedBlockchainClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
55
68
|
private serialize;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
56
72
|
private deserialize;
|
|
57
73
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
|
|
5
5
|
import { UpdateMemberInput, UpdateMemberOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateMemberCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateMemberCommandInput extends UpdateMemberInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateMemberCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateMemberCommandOutput extends UpdateMemberOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates a member configuration with new parameters.</p>
|
|
18
23
|
* <p>Applies only to Hyperledger Fabric.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface UpdateMemberCommandOutput extends UpdateMemberOutput, __Metadat
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param UpdateMemberCommandInput - {@link UpdateMemberCommandInput}
|
|
35
|
+
* @returns {@link UpdateMemberCommandOutput}
|
|
29
36
|
* @see {@link UpdateMemberCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link UpdateMemberCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link ManagedBlockchainClientResolvedConfig | config} for ManagedBlockchainClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface UpdateMemberCommandOutput extends UpdateMemberOutput, __Metadat
|
|
|
53
60
|
export declare class UpdateMemberCommand extends $Command<UpdateMemberCommandInput, UpdateMemberCommandOutput, ManagedBlockchainClientResolvedConfig> {
|
|
54
61
|
readonly input: UpdateMemberCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: UpdateMemberCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ManagedBlockchainClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateMemberCommandInput, UpdateMemberCommandOutput>;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
61
74
|
private serialize;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
62
78
|
private deserialize;
|
|
63
79
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
|
|
5
5
|
import { UpdateNodeInput, UpdateNodeOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateNodeCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateNodeCommandInput extends UpdateNodeInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateNodeCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateNodeCommandOutput extends UpdateNodeOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates a node configuration with new parameters.</p>
|
|
18
23
|
* <p>Applies only to Hyperledger Fabric.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface UpdateNodeCommandOutput extends UpdateNodeOutput, __MetadataBea
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param UpdateNodeCommandInput - {@link UpdateNodeCommandInput}
|
|
35
|
+
* @returns {@link UpdateNodeCommandOutput}
|
|
29
36
|
* @see {@link UpdateNodeCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link UpdateNodeCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link ManagedBlockchainClientResolvedConfig | config} for ManagedBlockchainClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface UpdateNodeCommandOutput extends UpdateNodeOutput, __MetadataBea
|
|
|
53
60
|
export declare class UpdateNodeCommand extends $Command<UpdateNodeCommandInput, UpdateNodeCommandOutput, ManagedBlockchainClientResolvedConfig> {
|
|
54
61
|
readonly input: UpdateNodeCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: UpdateNodeCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ManagedBlockchainClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateNodeCommandInput, UpdateNodeCommandOutput>;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
61
74
|
private serialize;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
62
78
|
private deserialize;
|
|
63
79
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
|
|
5
5
|
import { VoteOnProposalInput, VoteOnProposalOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link VoteOnProposalCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface VoteOnProposalCommandInput extends VoteOnProposalInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link VoteOnProposalCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface VoteOnProposalCommandOutput extends VoteOnProposalOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Casts a vote for a specified <code>ProposalId</code> on behalf of a member. The member to vote as, specified by <code>VoterMemberId</code>, must be in the same Amazon Web Services account as the principal that calls the action.</p>
|
|
18
23
|
* <p>Applies only to Hyperledger Fabric.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface VoteOnProposalCommandOutput extends VoteOnProposalOutput, __Met
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param VoteOnProposalCommandInput - {@link VoteOnProposalCommandInput}
|
|
35
|
+
* @returns {@link VoteOnProposalCommandOutput}
|
|
29
36
|
* @see {@link VoteOnProposalCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link VoteOnProposalCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link ManagedBlockchainClientResolvedConfig | config} for ManagedBlockchainClient's `config` shape.
|
|
@@ -56,11 +63,20 @@ export interface VoteOnProposalCommandOutput extends VoteOnProposalOutput, __Met
|
|
|
56
63
|
export declare class VoteOnProposalCommand extends $Command<VoteOnProposalCommandInput, VoteOnProposalCommandOutput, ManagedBlockchainClientResolvedConfig> {
|
|
57
64
|
readonly input: VoteOnProposalCommandInput;
|
|
58
65
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
59
69
|
constructor(input: VoteOnProposalCommandInput);
|
|
60
70
|
/**
|
|
61
71
|
* @internal
|
|
62
72
|
*/
|
|
63
73
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ManagedBlockchainClientResolvedConfig, options?: __HttpHandlerOptions): Handler<VoteOnProposalCommandInput, VoteOnProposalCommandOutput>;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
64
77
|
private serialize;
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
65
81
|
private deserialize;
|
|
66
82
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
2
|
/**
|
|
3
|
+
* @public
|
|
4
|
+
*
|
|
3
5
|
* Base exception class for all service exceptions from ManagedBlockchain service.
|
|
4
6
|
*/
|
|
5
7
|
export declare class ManagedBlockchainServiceException extends __ServiceException {
|