@aws-sdk/client-managedblockchain 3.295.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.
Files changed (40) hide show
  1. package/dist-types/ManagedBlockchain.d.ts +28 -0
  2. package/dist-types/ManagedBlockchainClient.d.ts +24 -4
  3. package/dist-types/commands/CreateAccessorCommand.d.ts +16 -0
  4. package/dist-types/commands/CreateMemberCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateNetworkCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateNodeCommand.d.ts +16 -0
  7. package/dist-types/commands/CreateProposalCommand.d.ts +16 -0
  8. package/dist-types/commands/DeleteAccessorCommand.d.ts +16 -0
  9. package/dist-types/commands/DeleteMemberCommand.d.ts +16 -0
  10. package/dist-types/commands/DeleteNodeCommand.d.ts +16 -0
  11. package/dist-types/commands/GetAccessorCommand.d.ts +16 -0
  12. package/dist-types/commands/GetMemberCommand.d.ts +16 -0
  13. package/dist-types/commands/GetNetworkCommand.d.ts +16 -0
  14. package/dist-types/commands/GetNodeCommand.d.ts +16 -0
  15. package/dist-types/commands/GetProposalCommand.d.ts +16 -0
  16. package/dist-types/commands/ListAccessorsCommand.d.ts +16 -0
  17. package/dist-types/commands/ListInvitationsCommand.d.ts +16 -0
  18. package/dist-types/commands/ListMembersCommand.d.ts +16 -0
  19. package/dist-types/commands/ListNetworksCommand.d.ts +16 -0
  20. package/dist-types/commands/ListNodesCommand.d.ts +16 -0
  21. package/dist-types/commands/ListProposalVotesCommand.d.ts +16 -0
  22. package/dist-types/commands/ListProposalsCommand.d.ts +16 -0
  23. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  24. package/dist-types/commands/RejectInvitationCommand.d.ts +16 -0
  25. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  26. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  27. package/dist-types/commands/UpdateMemberCommand.d.ts +16 -0
  28. package/dist-types/commands/UpdateNodeCommand.d.ts +16 -0
  29. package/dist-types/commands/VoteOnProposalCommand.d.ts +16 -0
  30. package/dist-types/models/ManagedBlockchainServiceException.d.ts +2 -0
  31. package/dist-types/models/models_0.d.ts +245 -0
  32. package/dist-types/pagination/Interfaces.d.ts +3 -0
  33. package/dist-types/pagination/ListAccessorsPaginator.d.ts +3 -0
  34. package/dist-types/pagination/ListInvitationsPaginator.d.ts +3 -0
  35. package/dist-types/pagination/ListMembersPaginator.d.ts +3 -0
  36. package/dist-types/pagination/ListNetworksPaginator.d.ts +3 -0
  37. package/dist-types/pagination/ListNodesPaginator.d.ts +3 -0
  38. package/dist-types/pagination/ListProposalVotesPaginator.d.ts +3 -0
  39. package/dist-types/pagination/ListProposalsPaginator.d.ts +3 -0
  40. package/package.json +29 -29
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
5
5
  import { DeleteNodeInput, DeleteNodeOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteNodeCommand}.
8
10
  */
9
11
  export interface DeleteNodeCommandInput extends DeleteNodeInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteNodeCommand}.
13
17
  */
14
18
  export interface DeleteNodeCommandOutput extends DeleteNodeOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deletes a node that your Amazon Web Services account owns. All data on the node is lost and cannot be recovered.</p>
18
23
  * <p>Applies to Hyperledger Fabric and Ethereum.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface DeleteNodeCommandOutput extends DeleteNodeOutput, __MetadataBea
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param DeleteNodeCommandInput - {@link DeleteNodeCommandInput}
35
+ * @returns {@link DeleteNodeCommandOutput}
29
36
  * @see {@link DeleteNodeCommandInput} for command's `input` shape.
30
37
  * @see {@link DeleteNodeCommandOutput} for command's `response` shape.
31
38
  * @see {@link ManagedBlockchainClientResolvedConfig | config} for ManagedBlockchainClient's `config` shape.
@@ -56,11 +63,20 @@ export interface DeleteNodeCommandOutput extends DeleteNodeOutput, __MetadataBea
56
63
  export declare class DeleteNodeCommand extends $Command<DeleteNodeCommandInput, DeleteNodeCommandOutput, ManagedBlockchainClientResolvedConfig> {
57
64
  readonly input: DeleteNodeCommandInput;
58
65
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
66
+ /**
67
+ * @public
68
+ */
59
69
  constructor(input: DeleteNodeCommandInput);
60
70
  /**
61
71
  * @internal
62
72
  */
63
73
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ManagedBlockchainClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteNodeCommandInput, DeleteNodeCommandOutput>;
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 { GetAccessorInput, GetAccessorOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetAccessorCommand}.
8
10
  */
9
11
  export interface GetAccessorCommandInput extends GetAccessorInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetAccessorCommand}.
13
17
  */
14
18
  export interface GetAccessorCommandOutput extends GetAccessorOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns detailed information about an accessor. An accessor object is a container that has the
18
23
  * information required for token based access to your Ethereum nodes.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface GetAccessorCommandOutput extends GetAccessorOutput, __MetadataB
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param GetAccessorCommandInput - {@link GetAccessorCommandInput}
35
+ * @returns {@link GetAccessorCommandOutput}
29
36
  * @see {@link GetAccessorCommandInput} for command's `input` shape.
30
37
  * @see {@link GetAccessorCommandOutput} for command's `response` shape.
31
38
  * @see {@link ManagedBlockchainClientResolvedConfig | config} for ManagedBlockchainClient's `config` shape.
@@ -53,11 +60,20 @@ export interface GetAccessorCommandOutput extends GetAccessorOutput, __MetadataB
53
60
  export declare class GetAccessorCommand extends $Command<GetAccessorCommandInput, GetAccessorCommandOutput, ManagedBlockchainClientResolvedConfig> {
54
61
  readonly input: GetAccessorCommandInput;
55
62
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
63
+ /**
64
+ * @public
65
+ */
56
66
  constructor(input: GetAccessorCommandInput);
57
67
  /**
58
68
  * @internal
59
69
  */
60
70
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ManagedBlockchainClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAccessorCommandInput, GetAccessorCommandOutput>;
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 { GetMemberInput, GetMemberOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetMemberCommand}.
8
10
  */
9
11
  export interface GetMemberCommandInput extends GetMemberInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetMemberCommand}.
13
17
  */
14
18
  export interface GetMemberCommandOutput extends GetMemberOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns detailed information about a member.</p>
18
23
  * <p>Applies only to Hyperledger Fabric.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface GetMemberCommandOutput extends GetMemberOutput, __MetadataBeare
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param GetMemberCommandInput - {@link GetMemberCommandInput}
35
+ * @returns {@link GetMemberCommandOutput}
29
36
  * @see {@link GetMemberCommandInput} for command's `input` shape.
30
37
  * @see {@link GetMemberCommandOutput} for command's `response` shape.
31
38
  * @see {@link ManagedBlockchainClientResolvedConfig | config} for ManagedBlockchainClient's `config` shape.
@@ -53,11 +60,20 @@ export interface GetMemberCommandOutput extends GetMemberOutput, __MetadataBeare
53
60
  export declare class GetMemberCommand extends $Command<GetMemberCommandInput, GetMemberCommandOutput, ManagedBlockchainClientResolvedConfig> {
54
61
  readonly input: GetMemberCommandInput;
55
62
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
63
+ /**
64
+ * @public
65
+ */
56
66
  constructor(input: GetMemberCommandInput);
57
67
  /**
58
68
  * @internal
59
69
  */
60
70
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ManagedBlockchainClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetMemberCommandInput, GetMemberCommandOutput>;
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 { GetNetworkInput, GetNetworkOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetNetworkCommand}.
8
10
  */
9
11
  export interface GetNetworkCommandInput extends GetNetworkInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetNetworkCommand}.
13
17
  */
14
18
  export interface GetNetworkCommandOutput extends GetNetworkOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns detailed information about a network.</p>
18
23
  * <p>Applies to Hyperledger Fabric and Ethereum.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface GetNetworkCommandOutput extends GetNetworkOutput, __MetadataBea
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param GetNetworkCommandInput - {@link GetNetworkCommandInput}
35
+ * @returns {@link GetNetworkCommandOutput}
29
36
  * @see {@link GetNetworkCommandInput} for command's `input` shape.
30
37
  * @see {@link GetNetworkCommandOutput} for command's `response` shape.
31
38
  * @see {@link ManagedBlockchainClientResolvedConfig | config} for ManagedBlockchainClient's `config` shape.
@@ -53,11 +60,20 @@ export interface GetNetworkCommandOutput extends GetNetworkOutput, __MetadataBea
53
60
  export declare class GetNetworkCommand extends $Command<GetNetworkCommandInput, GetNetworkCommandOutput, ManagedBlockchainClientResolvedConfig> {
54
61
  readonly input: GetNetworkCommandInput;
55
62
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
63
+ /**
64
+ * @public
65
+ */
56
66
  constructor(input: GetNetworkCommandInput);
57
67
  /**
58
68
  * @internal
59
69
  */
60
70
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ManagedBlockchainClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetNetworkCommandInput, GetNetworkCommandOutput>;
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 { GetNodeInput, GetNodeOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetNodeCommand}.
8
10
  */
9
11
  export interface GetNodeCommandInput extends GetNodeInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetNodeCommand}.
13
17
  */
14
18
  export interface GetNodeCommandOutput extends GetNodeOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns detailed information about a node.</p>
18
23
  * <p>Applies to Hyperledger Fabric and Ethereum.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface GetNodeCommandOutput extends GetNodeOutput, __MetadataBearer {
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param GetNodeCommandInput - {@link GetNodeCommandInput}
35
+ * @returns {@link GetNodeCommandOutput}
29
36
  * @see {@link GetNodeCommandInput} for command's `input` shape.
30
37
  * @see {@link GetNodeCommandOutput} for command's `response` shape.
31
38
  * @see {@link ManagedBlockchainClientResolvedConfig | config} for ManagedBlockchainClient's `config` shape.
@@ -53,11 +60,20 @@ export interface GetNodeCommandOutput extends GetNodeOutput, __MetadataBearer {
53
60
  export declare class GetNodeCommand extends $Command<GetNodeCommandInput, GetNodeCommandOutput, ManagedBlockchainClientResolvedConfig> {
54
61
  readonly input: GetNodeCommandInput;
55
62
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
63
+ /**
64
+ * @public
65
+ */
56
66
  constructor(input: GetNodeCommandInput);
57
67
  /**
58
68
  * @internal
59
69
  */
60
70
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ManagedBlockchainClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetNodeCommandInput, GetNodeCommandOutput>;
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 { GetProposalInput, GetProposalOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetProposalCommand}.
8
10
  */
9
11
  export interface GetProposalCommandInput extends GetProposalInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetProposalCommand}.
13
17
  */
14
18
  export interface GetProposalCommandOutput extends GetProposalOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns detailed information about a proposal.</p>
18
23
  * <p>Applies only to Hyperledger Fabric.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface GetProposalCommandOutput extends GetProposalOutput, __MetadataB
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param GetProposalCommandInput - {@link GetProposalCommandInput}
35
+ * @returns {@link GetProposalCommandOutput}
29
36
  * @see {@link GetProposalCommandInput} for command's `input` shape.
30
37
  * @see {@link GetProposalCommandOutput} for command's `response` shape.
31
38
  * @see {@link ManagedBlockchainClientResolvedConfig | config} for ManagedBlockchainClient's `config` shape.
@@ -53,11 +60,20 @@ export interface GetProposalCommandOutput extends GetProposalOutput, __MetadataB
53
60
  export declare class GetProposalCommand extends $Command<GetProposalCommandInput, GetProposalCommandOutput, ManagedBlockchainClientResolvedConfig> {
54
61
  readonly input: GetProposalCommandInput;
55
62
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
63
+ /**
64
+ * @public
65
+ */
56
66
  constructor(input: GetProposalCommandInput);
57
67
  /**
58
68
  * @internal
59
69
  */
60
70
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ManagedBlockchainClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetProposalCommandInput, GetProposalCommandOutput>;
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 { ListAccessorsInput, ListAccessorsOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListAccessorsCommand}.
8
10
  */
9
11
  export interface ListAccessorsCommandInput extends ListAccessorsInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListAccessorsCommand}.
13
17
  */
14
18
  export interface ListAccessorsCommandOutput extends ListAccessorsOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns a list of the accessors and their properties. Accessor objects are containers that have the
18
23
  * information required for token based access to your Ethereum nodes.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface ListAccessorsCommandOutput extends ListAccessorsOutput, __Metad
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param ListAccessorsCommandInput - {@link ListAccessorsCommandInput}
35
+ * @returns {@link ListAccessorsCommandOutput}
29
36
  * @see {@link ListAccessorsCommandInput} for command's `input` shape.
30
37
  * @see {@link ListAccessorsCommandOutput} for command's `response` shape.
31
38
  * @see {@link ManagedBlockchainClientResolvedConfig | config} for ManagedBlockchainClient's `config` shape.
@@ -50,11 +57,20 @@ export interface ListAccessorsCommandOutput extends ListAccessorsOutput, __Metad
50
57
  export declare class ListAccessorsCommand extends $Command<ListAccessorsCommandInput, ListAccessorsCommandOutput, ManagedBlockchainClientResolvedConfig> {
51
58
  readonly input: ListAccessorsCommandInput;
52
59
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
60
+ /**
61
+ * @public
62
+ */
53
63
  constructor(input: ListAccessorsCommandInput);
54
64
  /**
55
65
  * @internal
56
66
  */
57
67
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ManagedBlockchainClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAccessorsCommandInput, ListAccessorsCommandOutput>;
68
+ /**
69
+ * @internal
70
+ */
58
71
  private serialize;
72
+ /**
73
+ * @internal
74
+ */
59
75
  private deserialize;
60
76
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
5
5
  import { ListInvitationsInput, ListInvitationsOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListInvitationsCommand}.
8
10
  */
9
11
  export interface ListInvitationsCommandInput extends ListInvitationsInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListInvitationsCommand}.
13
17
  */
14
18
  export interface ListInvitationsCommandOutput extends ListInvitationsOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns a list of all invitations for the current Amazon Web Services account.</p>
18
23
  * <p>Applies only to Hyperledger Fabric.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface ListInvitationsCommandOutput extends ListInvitationsOutput, __M
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param ListInvitationsCommandInput - {@link ListInvitationsCommandInput}
35
+ * @returns {@link ListInvitationsCommandOutput}
29
36
  * @see {@link ListInvitationsCommandInput} for command's `input` shape.
30
37
  * @see {@link ListInvitationsCommandOutput} for command's `response` shape.
31
38
  * @see {@link ManagedBlockchainClientResolvedConfig | config} for ManagedBlockchainClient's `config` shape.
@@ -57,11 +64,20 @@ export interface ListInvitationsCommandOutput extends ListInvitationsOutput, __M
57
64
  export declare class ListInvitationsCommand extends $Command<ListInvitationsCommandInput, ListInvitationsCommandOutput, ManagedBlockchainClientResolvedConfig> {
58
65
  readonly input: ListInvitationsCommandInput;
59
66
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
67
+ /**
68
+ * @public
69
+ */
60
70
  constructor(input: ListInvitationsCommandInput);
61
71
  /**
62
72
  * @internal
63
73
  */
64
74
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ManagedBlockchainClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListInvitationsCommandInput, ListInvitationsCommandOutput>;
75
+ /**
76
+ * @internal
77
+ */
65
78
  private serialize;
79
+ /**
80
+ * @internal
81
+ */
66
82
  private deserialize;
67
83
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
5
5
  import { ListMembersInput, ListMembersOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListMembersCommand}.
8
10
  */
9
11
  export interface ListMembersCommandInput extends ListMembersInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListMembersCommand}.
13
17
  */
14
18
  export interface ListMembersCommandOutput extends ListMembersOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns a list of the members in a network and properties of their configurations.</p>
18
23
  * <p>Applies only to Hyperledger Fabric.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface ListMembersCommandOutput extends ListMembersOutput, __MetadataB
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param ListMembersCommandInput - {@link ListMembersCommandInput}
35
+ * @returns {@link ListMembersCommandOutput}
29
36
  * @see {@link ListMembersCommandInput} for command's `input` shape.
30
37
  * @see {@link ListMembersCommandOutput} for command's `response` shape.
31
38
  * @see {@link ManagedBlockchainClientResolvedConfig | config} for ManagedBlockchainClient's `config` shape.
@@ -50,11 +57,20 @@ export interface ListMembersCommandOutput extends ListMembersOutput, __MetadataB
50
57
  export declare class ListMembersCommand extends $Command<ListMembersCommandInput, ListMembersCommandOutput, ManagedBlockchainClientResolvedConfig> {
51
58
  readonly input: ListMembersCommandInput;
52
59
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
60
+ /**
61
+ * @public
62
+ */
53
63
  constructor(input: ListMembersCommandInput);
54
64
  /**
55
65
  * @internal
56
66
  */
57
67
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ManagedBlockchainClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListMembersCommandInput, ListMembersCommandOutput>;
68
+ /**
69
+ * @internal
70
+ */
58
71
  private serialize;
72
+ /**
73
+ * @internal
74
+ */
59
75
  private deserialize;
60
76
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
5
5
  import { ListNetworksInput, ListNetworksOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListNetworksCommand}.
8
10
  */
9
11
  export interface ListNetworksCommandInput extends ListNetworksInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListNetworksCommand}.
13
17
  */
14
18
  export interface ListNetworksCommandOutput extends ListNetworksOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns information about the networks in which the current Amazon Web Services account participates.</p>
18
23
  * <p>Applies to Hyperledger Fabric and Ethereum.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface ListNetworksCommandOutput extends ListNetworksOutput, __Metadat
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param ListNetworksCommandInput - {@link ListNetworksCommandInput}
35
+ * @returns {@link ListNetworksCommandOutput}
29
36
  * @see {@link ListNetworksCommandInput} for command's `input` shape.
30
37
  * @see {@link ListNetworksCommandOutput} for command's `response` shape.
31
38
  * @see {@link ManagedBlockchainClientResolvedConfig | config} for ManagedBlockchainClient's `config` shape.
@@ -50,11 +57,20 @@ export interface ListNetworksCommandOutput extends ListNetworksOutput, __Metadat
50
57
  export declare class ListNetworksCommand extends $Command<ListNetworksCommandInput, ListNetworksCommandOutput, ManagedBlockchainClientResolvedConfig> {
51
58
  readonly input: ListNetworksCommandInput;
52
59
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
60
+ /**
61
+ * @public
62
+ */
53
63
  constructor(input: ListNetworksCommandInput);
54
64
  /**
55
65
  * @internal
56
66
  */
57
67
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ManagedBlockchainClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListNetworksCommandInput, ListNetworksCommandOutput>;
68
+ /**
69
+ * @internal
70
+ */
58
71
  private serialize;
72
+ /**
73
+ * @internal
74
+ */
59
75
  private deserialize;
60
76
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
5
5
  import { ListNodesInput, ListNodesOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListNodesCommand}.
8
10
  */
9
11
  export interface ListNodesCommandInput extends ListNodesInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListNodesCommand}.
13
17
  */
14
18
  export interface ListNodesCommandOutput extends ListNodesOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns information about the nodes within a network.</p>
18
23
  * <p>Applies to Hyperledger Fabric and Ethereum.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface ListNodesCommandOutput extends ListNodesOutput, __MetadataBeare
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param ListNodesCommandInput - {@link ListNodesCommandInput}
35
+ * @returns {@link ListNodesCommandOutput}
29
36
  * @see {@link ListNodesCommandInput} for command's `input` shape.
30
37
  * @see {@link ListNodesCommandOutput} for command's `response` shape.
31
38
  * @see {@link ManagedBlockchainClientResolvedConfig | config} for ManagedBlockchainClient's `config` shape.
@@ -50,11 +57,20 @@ export interface ListNodesCommandOutput extends ListNodesOutput, __MetadataBeare
50
57
  export declare class ListNodesCommand extends $Command<ListNodesCommandInput, ListNodesCommandOutput, ManagedBlockchainClientResolvedConfig> {
51
58
  readonly input: ListNodesCommandInput;
52
59
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
60
+ /**
61
+ * @public
62
+ */
53
63
  constructor(input: ListNodesCommandInput);
54
64
  /**
55
65
  * @internal
56
66
  */
57
67
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ManagedBlockchainClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListNodesCommandInput, ListNodesCommandOutput>;
68
+ /**
69
+ * @internal
70
+ */
58
71
  private serialize;
72
+ /**
73
+ * @internal
74
+ */
59
75
  private deserialize;
60
76
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
5
5
  import { ListProposalVotesInput, ListProposalVotesOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListProposalVotesCommand}.
8
10
  */
9
11
  export interface ListProposalVotesCommandInput extends ListProposalVotesInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListProposalVotesCommand}.
13
17
  */
14
18
  export interface ListProposalVotesCommandOutput extends ListProposalVotesOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns the list of votes for a specified proposal, including the value of each vote and the unique identifier of the member that cast the vote.</p>
18
23
  * <p>Applies only to Hyperledger Fabric.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface ListProposalVotesCommandOutput extends ListProposalVotesOutput,
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param ListProposalVotesCommandInput - {@link ListProposalVotesCommandInput}
35
+ * @returns {@link ListProposalVotesCommandOutput}
29
36
  * @see {@link ListProposalVotesCommandInput} for command's `input` shape.
30
37
  * @see {@link ListProposalVotesCommandOutput} for command's `response` shape.
31
38
  * @see {@link ManagedBlockchainClientResolvedConfig | config} for ManagedBlockchainClient's `config` shape.
@@ -50,11 +57,20 @@ export interface ListProposalVotesCommandOutput extends ListProposalVotesOutput,
50
57
  export declare class ListProposalVotesCommand extends $Command<ListProposalVotesCommandInput, ListProposalVotesCommandOutput, ManagedBlockchainClientResolvedConfig> {
51
58
  readonly input: ListProposalVotesCommandInput;
52
59
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
60
+ /**
61
+ * @public
62
+ */
53
63
  constructor(input: ListProposalVotesCommandInput);
54
64
  /**
55
65
  * @internal
56
66
  */
57
67
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ManagedBlockchainClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListProposalVotesCommandInput, ListProposalVotesCommandOutput>;
68
+ /**
69
+ * @internal
70
+ */
58
71
  private serialize;
72
+ /**
73
+ * @internal
74
+ */
59
75
  private deserialize;
60
76
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
5
5
  import { ListProposalsInput, ListProposalsOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListProposalsCommand}.
8
10
  */
9
11
  export interface ListProposalsCommandInput extends ListProposalsInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListProposalsCommand}.
13
17
  */
14
18
  export interface ListProposalsCommandOutput extends ListProposalsOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns a list of proposals for the network.</p>
18
23
  * <p>Applies only to Hyperledger Fabric.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface ListProposalsCommandOutput extends ListProposalsOutput, __Metad
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param ListProposalsCommandInput - {@link ListProposalsCommandInput}
35
+ * @returns {@link ListProposalsCommandOutput}
29
36
  * @see {@link ListProposalsCommandInput} for command's `input` shape.
30
37
  * @see {@link ListProposalsCommandOutput} for command's `response` shape.
31
38
  * @see {@link ManagedBlockchainClientResolvedConfig | config} for ManagedBlockchainClient's `config` shape.
@@ -53,11 +60,20 @@ export interface ListProposalsCommandOutput extends ListProposalsOutput, __Metad
53
60
  export declare class ListProposalsCommand extends $Command<ListProposalsCommandInput, ListProposalsCommandOutput, ManagedBlockchainClientResolvedConfig> {
54
61
  readonly input: ListProposalsCommandInput;
55
62
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
63
+ /**
64
+ * @public
65
+ */
56
66
  constructor(input: ListProposalsCommandInput);
57
67
  /**
58
68
  * @internal
59
69
  */
60
70
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ManagedBlockchainClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListProposalsCommandInput, ListProposalsCommandOutput>;
71
+ /**
72
+ * @internal
73
+ */
61
74
  private serialize;
75
+ /**
76
+ * @internal
77
+ */
62
78
  private deserialize;
63
79
  }