@aws-sdk/client-managedblockchain 3.188.0 → 3.192.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 (165) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/README.md +8 -8
  3. package/dist-cjs/ManagedBlockchain.js +60 -0
  4. package/dist-cjs/ManagedBlockchainClient.js +11 -8
  5. package/dist-cjs/commands/CreateAccessorCommand.js +46 -0
  6. package/dist-cjs/commands/CreateMemberCommand.js +10 -0
  7. package/dist-cjs/commands/CreateNetworkCommand.js +10 -0
  8. package/dist-cjs/commands/CreateNodeCommand.js +10 -0
  9. package/dist-cjs/commands/CreateProposalCommand.js +10 -0
  10. package/dist-cjs/commands/DeleteAccessorCommand.js +46 -0
  11. package/dist-cjs/commands/DeleteMemberCommand.js +10 -0
  12. package/dist-cjs/commands/DeleteNodeCommand.js +10 -0
  13. package/dist-cjs/commands/GetAccessorCommand.js +46 -0
  14. package/dist-cjs/commands/GetMemberCommand.js +10 -0
  15. package/dist-cjs/commands/GetNetworkCommand.js +10 -0
  16. package/dist-cjs/commands/GetNodeCommand.js +10 -0
  17. package/dist-cjs/commands/GetProposalCommand.js +10 -0
  18. package/dist-cjs/commands/ListAccessorsCommand.js +46 -0
  19. package/dist-cjs/commands/ListInvitationsCommand.js +10 -0
  20. package/dist-cjs/commands/ListMembersCommand.js +10 -0
  21. package/dist-cjs/commands/ListNetworksCommand.js +10 -0
  22. package/dist-cjs/commands/ListNodesCommand.js +10 -0
  23. package/dist-cjs/commands/ListProposalVotesCommand.js +10 -0
  24. package/dist-cjs/commands/ListProposalsCommand.js +10 -0
  25. package/dist-cjs/commands/ListTagsForResourceCommand.js +10 -0
  26. package/dist-cjs/commands/RejectInvitationCommand.js +10 -0
  27. package/dist-cjs/commands/TagResourceCommand.js +10 -0
  28. package/dist-cjs/commands/UntagResourceCommand.js +10 -0
  29. package/dist-cjs/commands/UpdateMemberCommand.js +10 -0
  30. package/dist-cjs/commands/UpdateNodeCommand.js +10 -0
  31. package/dist-cjs/commands/VoteOnProposalCommand.js +10 -0
  32. package/dist-cjs/commands/index.js +4 -0
  33. package/dist-cjs/endpoint/EndpointParameters.js +13 -0
  34. package/dist-cjs/endpoint/endpointResolver.js +12 -0
  35. package/dist-cjs/endpoint/ruleset.js +318 -0
  36. package/dist-cjs/models/models_0.js +66 -16
  37. package/dist-cjs/pagination/ListAccessorsPaginator.js +36 -0
  38. package/dist-cjs/pagination/index.js +1 -0
  39. package/dist-cjs/protocols/Aws_restJson1.js +297 -1
  40. package/dist-cjs/runtimeConfig.shared.js +3 -3
  41. package/dist-es/ManagedBlockchain.js +60 -0
  42. package/dist-es/ManagedBlockchainClient.js +12 -9
  43. package/dist-es/commands/CreateAccessorCommand.js +42 -0
  44. package/dist-es/commands/CreateMemberCommand.js +10 -0
  45. package/dist-es/commands/CreateNetworkCommand.js +10 -0
  46. package/dist-es/commands/CreateNodeCommand.js +10 -0
  47. package/dist-es/commands/CreateProposalCommand.js +10 -0
  48. package/dist-es/commands/DeleteAccessorCommand.js +42 -0
  49. package/dist-es/commands/DeleteMemberCommand.js +10 -0
  50. package/dist-es/commands/DeleteNodeCommand.js +10 -0
  51. package/dist-es/commands/GetAccessorCommand.js +42 -0
  52. package/dist-es/commands/GetMemberCommand.js +10 -0
  53. package/dist-es/commands/GetNetworkCommand.js +10 -0
  54. package/dist-es/commands/GetNodeCommand.js +10 -0
  55. package/dist-es/commands/GetProposalCommand.js +10 -0
  56. package/dist-es/commands/ListAccessorsCommand.js +42 -0
  57. package/dist-es/commands/ListInvitationsCommand.js +10 -0
  58. package/dist-es/commands/ListMembersCommand.js +10 -0
  59. package/dist-es/commands/ListNetworksCommand.js +10 -0
  60. package/dist-es/commands/ListNodesCommand.js +10 -0
  61. package/dist-es/commands/ListProposalVotesCommand.js +10 -0
  62. package/dist-es/commands/ListProposalsCommand.js +10 -0
  63. package/dist-es/commands/ListTagsForResourceCommand.js +10 -0
  64. package/dist-es/commands/RejectInvitationCommand.js +10 -0
  65. package/dist-es/commands/TagResourceCommand.js +10 -0
  66. package/dist-es/commands/UntagResourceCommand.js +10 -0
  67. package/dist-es/commands/UpdateMemberCommand.js +10 -0
  68. package/dist-es/commands/UpdateNodeCommand.js +10 -0
  69. package/dist-es/commands/VoteOnProposalCommand.js +10 -0
  70. package/dist-es/commands/index.js +4 -0
  71. package/dist-es/endpoint/EndpointParameters.js +8 -0
  72. package/dist-es/endpoint/endpointResolver.js +8 -0
  73. package/dist-es/endpoint/ruleset.js +315 -0
  74. package/dist-es/models/models_0.js +52 -12
  75. package/dist-es/pagination/ListAccessorsPaginator.js +32 -0
  76. package/dist-es/pagination/index.js +1 -0
  77. package/dist-es/protocols/Aws_restJson1.js +286 -0
  78. package/dist-es/runtimeConfig.shared.js +2 -2
  79. package/dist-types/ManagedBlockchain.d.ts +64 -7
  80. package/dist-types/ManagedBlockchainClient.d.ts +13 -12
  81. package/dist-types/commands/CreateAccessorCommand.d.ts +43 -0
  82. package/dist-types/commands/CreateMemberCommand.d.ts +2 -0
  83. package/dist-types/commands/CreateNetworkCommand.d.ts +2 -0
  84. package/dist-types/commands/CreateNodeCommand.d.ts +2 -0
  85. package/dist-types/commands/CreateProposalCommand.d.ts +2 -0
  86. package/dist-types/commands/DeleteAccessorCommand.d.ts +48 -0
  87. package/dist-types/commands/DeleteMemberCommand.d.ts +3 -1
  88. package/dist-types/commands/DeleteNodeCommand.d.ts +3 -1
  89. package/dist-types/commands/GetAccessorCommand.d.ts +43 -0
  90. package/dist-types/commands/GetMemberCommand.d.ts +2 -0
  91. package/dist-types/commands/GetNetworkCommand.d.ts +2 -0
  92. package/dist-types/commands/GetNodeCommand.d.ts +2 -0
  93. package/dist-types/commands/GetProposalCommand.d.ts +2 -0
  94. package/dist-types/commands/ListAccessorsCommand.d.ts +43 -0
  95. package/dist-types/commands/ListInvitationsCommand.d.ts +3 -1
  96. package/dist-types/commands/ListMembersCommand.d.ts +2 -0
  97. package/dist-types/commands/ListNetworksCommand.d.ts +3 -1
  98. package/dist-types/commands/ListNodesCommand.d.ts +2 -0
  99. package/dist-types/commands/ListProposalVotesCommand.d.ts +2 -0
  100. package/dist-types/commands/ListProposalsCommand.d.ts +2 -0
  101. package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -0
  102. package/dist-types/commands/RejectInvitationCommand.d.ts +3 -1
  103. package/dist-types/commands/TagResourceCommand.d.ts +2 -0
  104. package/dist-types/commands/UntagResourceCommand.d.ts +2 -0
  105. package/dist-types/commands/UpdateMemberCommand.d.ts +2 -0
  106. package/dist-types/commands/UpdateNodeCommand.d.ts +2 -0
  107. package/dist-types/commands/VoteOnProposalCommand.d.ts +3 -1
  108. package/dist-types/commands/index.d.ts +4 -0
  109. package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
  110. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  111. package/dist-types/endpoint/ruleset.d.ts +2 -0
  112. package/dist-types/models/models_0.d.ts +325 -119
  113. package/dist-types/pagination/ListAccessorsPaginator.d.ts +4 -0
  114. package/dist-types/pagination/index.d.ts +1 -0
  115. package/dist-types/protocols/Aws_restJson1.d.ts +12 -0
  116. package/dist-types/runtimeConfig.browser.d.ts +4 -2
  117. package/dist-types/runtimeConfig.d.ts +4 -2
  118. package/dist-types/runtimeConfig.native.d.ts +4 -2
  119. package/dist-types/runtimeConfig.shared.d.ts +3 -1
  120. package/dist-types/ts3.4/ManagedBlockchain.d.ts +68 -0
  121. package/dist-types/ts3.4/ManagedBlockchainClient.d.ts +39 -8
  122. package/dist-types/ts3.4/commands/CreateAccessorCommand.d.ts +34 -0
  123. package/dist-types/ts3.4/commands/CreateMemberCommand.d.ts +2 -0
  124. package/dist-types/ts3.4/commands/CreateNetworkCommand.d.ts +2 -0
  125. package/dist-types/ts3.4/commands/CreateNodeCommand.d.ts +2 -0
  126. package/dist-types/ts3.4/commands/CreateProposalCommand.d.ts +2 -0
  127. package/dist-types/ts3.4/commands/DeleteAccessorCommand.d.ts +34 -0
  128. package/dist-types/ts3.4/commands/DeleteMemberCommand.d.ts +2 -0
  129. package/dist-types/ts3.4/commands/DeleteNodeCommand.d.ts +2 -0
  130. package/dist-types/ts3.4/commands/GetAccessorCommand.d.ts +34 -0
  131. package/dist-types/ts3.4/commands/GetMemberCommand.d.ts +2 -0
  132. package/dist-types/ts3.4/commands/GetNetworkCommand.d.ts +2 -0
  133. package/dist-types/ts3.4/commands/GetNodeCommand.d.ts +2 -0
  134. package/dist-types/ts3.4/commands/GetProposalCommand.d.ts +2 -0
  135. package/dist-types/ts3.4/commands/ListAccessorsCommand.d.ts +34 -0
  136. package/dist-types/ts3.4/commands/ListInvitationsCommand.d.ts +2 -0
  137. package/dist-types/ts3.4/commands/ListMembersCommand.d.ts +2 -0
  138. package/dist-types/ts3.4/commands/ListNetworksCommand.d.ts +2 -0
  139. package/dist-types/ts3.4/commands/ListNodesCommand.d.ts +2 -0
  140. package/dist-types/ts3.4/commands/ListProposalVotesCommand.d.ts +2 -0
  141. package/dist-types/ts3.4/commands/ListProposalsCommand.d.ts +2 -0
  142. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +2 -0
  143. package/dist-types/ts3.4/commands/RejectInvitationCommand.d.ts +2 -0
  144. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +2 -0
  145. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +2 -0
  146. package/dist-types/ts3.4/commands/UpdateMemberCommand.d.ts +2 -0
  147. package/dist-types/ts3.4/commands/UpdateNodeCommand.d.ts +2 -0
  148. package/dist-types/ts3.4/commands/VoteOnProposalCommand.d.ts +2 -0
  149. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  150. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +26 -0
  151. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  152. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  153. package/dist-types/ts3.4/models/models_0.d.ts +115 -38
  154. package/dist-types/ts3.4/pagination/ListAccessorsPaginator.d.ts +11 -0
  155. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  156. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +48 -0
  157. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +14 -4
  158. package/dist-types/ts3.4/runtimeConfig.d.ts +14 -4
  159. package/dist-types/ts3.4/runtimeConfig.native.d.ts +14 -3
  160. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +6 -1
  161. package/package.json +27 -26
  162. package/dist-cjs/endpoints.js +0 -132
  163. package/dist-es/endpoints.js +0 -128
  164. package/dist-types/endpoints.d.ts +0 -2
  165. package/dist-types/ts3.4/endpoints.d.ts +0 -2
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
@@ -26,6 +27,7 @@ export interface CreateMemberCommandOutput extends CreateMemberOutput, __Metadat
26
27
  */
27
28
  export declare class CreateMemberCommand extends $Command<CreateMemberCommandInput, CreateMemberCommandOutput, ManagedBlockchainClientResolvedConfig> {
28
29
  readonly input: CreateMemberCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
29
31
  constructor(input: CreateMemberCommandInput);
30
32
  /**
31
33
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
@@ -26,6 +27,7 @@ export interface CreateNetworkCommandOutput extends CreateNetworkOutput, __Metad
26
27
  */
27
28
  export declare class CreateNetworkCommand extends $Command<CreateNetworkCommandInput, CreateNetworkCommandOutput, ManagedBlockchainClientResolvedConfig> {
28
29
  readonly input: CreateNetworkCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
29
31
  constructor(input: CreateNetworkCommandInput);
30
32
  /**
31
33
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
@@ -26,6 +27,7 @@ export interface CreateNodeCommandOutput extends CreateNodeOutput, __MetadataBea
26
27
  */
27
28
  export declare class CreateNodeCommand extends $Command<CreateNodeCommandInput, CreateNodeCommandOutput, ManagedBlockchainClientResolvedConfig> {
28
29
  readonly input: CreateNodeCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
29
31
  constructor(input: CreateNodeCommandInput);
30
32
  /**
31
33
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
@@ -26,6 +27,7 @@ export interface CreateProposalCommandOutput extends CreateProposalOutput, __Met
26
27
  */
27
28
  export declare class CreateProposalCommand extends $Command<CreateProposalCommandInput, CreateProposalCommandOutput, ManagedBlockchainClientResolvedConfig> {
28
29
  readonly input: CreateProposalCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
29
31
  constructor(input: CreateProposalCommandInput);
30
32
  /**
31
33
  * @internal
@@ -0,0 +1,48 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
+ import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
5
+ import { DeleteAccessorInput, DeleteAccessorOutput } from "../models/models_0";
6
+ export interface DeleteAccessorCommandInput extends DeleteAccessorInput {
7
+ }
8
+ export interface DeleteAccessorCommandOutput extends DeleteAccessorOutput, __MetadataBearer {
9
+ }
10
+ /**
11
+ * <important>
12
+ * <p>The token based access feature is in preview release for Ethereum on Amazon Managed Blockchain and is
13
+ * subject to change. We recommend that you use this feature only with
14
+ * test scenarios, and not in production environments.</p>
15
+ * </important>
16
+ * <p>Deletes an accessor that your Amazon Web Services account owns. An accessor object is a container that has the
17
+ * information required for token based access to your Ethereum nodes including, the
18
+ * <code>BILLING_TOKEN</code>. After an accessor is deleted, the status of the accessor changes
19
+ * from <code>AVAILABLE</code> to <code>PENDING_DELETION</code>. An accessor in the
20
+ * <code>PENDING_DELETION</code> state can’t be used for new WebSocket requests or
21
+ * HTTP requests. However, WebSocket connections that are initiated while the accessor was in the
22
+ * <code>AVAILABLE</code> state remain open until they expire (up to 2 hours).</p>
23
+ * @example
24
+ * Use a bare-bones client and the command you need to make an API call.
25
+ * ```javascript
26
+ * import { ManagedBlockchainClient, DeleteAccessorCommand } from "@aws-sdk/client-managedblockchain"; // ES Modules import
27
+ * // const { ManagedBlockchainClient, DeleteAccessorCommand } = require("@aws-sdk/client-managedblockchain"); // CommonJS import
28
+ * const client = new ManagedBlockchainClient(config);
29
+ * const command = new DeleteAccessorCommand(input);
30
+ * const response = await client.send(command);
31
+ * ```
32
+ *
33
+ * @see {@link DeleteAccessorCommandInput} for command's `input` shape.
34
+ * @see {@link DeleteAccessorCommandOutput} for command's `response` shape.
35
+ * @see {@link ManagedBlockchainClientResolvedConfig | config} for ManagedBlockchainClient's `config` shape.
36
+ *
37
+ */
38
+ export declare class DeleteAccessorCommand extends $Command<DeleteAccessorCommandInput, DeleteAccessorCommandOutput, ManagedBlockchainClientResolvedConfig> {
39
+ readonly input: DeleteAccessorCommandInput;
40
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
41
+ constructor(input: DeleteAccessorCommandInput);
42
+ /**
43
+ * @internal
44
+ */
45
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ManagedBlockchainClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteAccessorCommandInput, DeleteAccessorCommandOutput>;
46
+ private serialize;
47
+ private deserialize;
48
+ }
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
@@ -7,7 +8,7 @@ export interface DeleteMemberCommandInput extends DeleteMemberInput {
7
8
  export interface DeleteMemberCommandOutput extends DeleteMemberOutput, __MetadataBearer {
8
9
  }
9
10
  /**
10
- * <p>Deletes a member. Deleting a member removes the member and all associated resources from the network. <code>DeleteMember</code> can only be called for a specified <code>MemberId</code> if the principal performing the action is associated with the AWS account that owns the member. In all other cases, the <code>DeleteMember</code> action is carried out as the result of an approved proposal to remove a member. If <code>MemberId</code> is the last member in a network specified by the last AWS account, the network is deleted also.</p>
11
+ * <p>Deletes a member. Deleting a member removes the member and all associated resources from the network. <code>DeleteMember</code> can only be called for a specified <code>MemberId</code> if the principal performing the action is associated with the Amazon Web Services account that owns the member. In all other cases, the <code>DeleteMember</code> action is carried out as the result of an approved proposal to remove a member. If <code>MemberId</code> is the last member in a network specified by the last Amazon Web Services account, the network is deleted also.</p>
11
12
  * <p>Applies only to Hyperledger Fabric.</p>
12
13
  * @example
13
14
  * Use a bare-bones client and the command you need to make an API call.
@@ -26,6 +27,7 @@ export interface DeleteMemberCommandOutput extends DeleteMemberOutput, __Metadat
26
27
  */
27
28
  export declare class DeleteMemberCommand extends $Command<DeleteMemberCommandInput, DeleteMemberCommandOutput, ManagedBlockchainClientResolvedConfig> {
28
29
  readonly input: DeleteMemberCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
29
31
  constructor(input: DeleteMemberCommandInput);
30
32
  /**
31
33
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
@@ -7,7 +8,7 @@ export interface DeleteNodeCommandInput extends DeleteNodeInput {
7
8
  export interface DeleteNodeCommandOutput extends DeleteNodeOutput, __MetadataBearer {
8
9
  }
9
10
  /**
10
- * <p>Deletes a node that your AWS account owns. All data on the node is lost and cannot be recovered.</p>
11
+ * <p>Deletes a node that your Amazon Web Services account owns. All data on the node is lost and cannot be recovered.</p>
11
12
  * <p>Applies to Hyperledger Fabric and Ethereum.</p>
12
13
  * @example
13
14
  * Use a bare-bones client and the command you need to make an API call.
@@ -26,6 +27,7 @@ export interface DeleteNodeCommandOutput extends DeleteNodeOutput, __MetadataBea
26
27
  */
27
28
  export declare class DeleteNodeCommand extends $Command<DeleteNodeCommandInput, DeleteNodeCommandOutput, ManagedBlockchainClientResolvedConfig> {
28
29
  readonly input: DeleteNodeCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
29
31
  constructor(input: DeleteNodeCommandInput);
30
32
  /**
31
33
  * @internal
@@ -0,0 +1,43 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
+ import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
5
+ import { GetAccessorInput, GetAccessorOutput } from "../models/models_0";
6
+ export interface GetAccessorCommandInput extends GetAccessorInput {
7
+ }
8
+ export interface GetAccessorCommandOutput extends GetAccessorOutput, __MetadataBearer {
9
+ }
10
+ /**
11
+ * <important>
12
+ * <p>The token based access feature is in preview release for Ethereum on Amazon Managed Blockchain and is
13
+ * subject to change. We recommend that you use this feature only with
14
+ * test scenarios, and not in production environments.</p>
15
+ * </important>
16
+ * <p>Returns detailed information about an accessor. An accessor object is a container that has the
17
+ * information required for token based access to your Ethereum nodes.</p>
18
+ * @example
19
+ * Use a bare-bones client and the command you need to make an API call.
20
+ * ```javascript
21
+ * import { ManagedBlockchainClient, GetAccessorCommand } from "@aws-sdk/client-managedblockchain"; // ES Modules import
22
+ * // const { ManagedBlockchainClient, GetAccessorCommand } = require("@aws-sdk/client-managedblockchain"); // CommonJS import
23
+ * const client = new ManagedBlockchainClient(config);
24
+ * const command = new GetAccessorCommand(input);
25
+ * const response = await client.send(command);
26
+ * ```
27
+ *
28
+ * @see {@link GetAccessorCommandInput} for command's `input` shape.
29
+ * @see {@link GetAccessorCommandOutput} for command's `response` shape.
30
+ * @see {@link ManagedBlockchainClientResolvedConfig | config} for ManagedBlockchainClient's `config` shape.
31
+ *
32
+ */
33
+ export declare class GetAccessorCommand extends $Command<GetAccessorCommandInput, GetAccessorCommandOutput, ManagedBlockchainClientResolvedConfig> {
34
+ readonly input: GetAccessorCommandInput;
35
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
36
+ constructor(input: GetAccessorCommandInput);
37
+ /**
38
+ * @internal
39
+ */
40
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ManagedBlockchainClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAccessorCommandInput, GetAccessorCommandOutput>;
41
+ private serialize;
42
+ private deserialize;
43
+ }
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
@@ -26,6 +27,7 @@ export interface GetMemberCommandOutput extends GetMemberOutput, __MetadataBeare
26
27
  */
27
28
  export declare class GetMemberCommand extends $Command<GetMemberCommandInput, GetMemberCommandOutput, ManagedBlockchainClientResolvedConfig> {
28
29
  readonly input: GetMemberCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
29
31
  constructor(input: GetMemberCommandInput);
30
32
  /**
31
33
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
@@ -26,6 +27,7 @@ export interface GetNetworkCommandOutput extends GetNetworkOutput, __MetadataBea
26
27
  */
27
28
  export declare class GetNetworkCommand extends $Command<GetNetworkCommandInput, GetNetworkCommandOutput, ManagedBlockchainClientResolvedConfig> {
28
29
  readonly input: GetNetworkCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
29
31
  constructor(input: GetNetworkCommandInput);
30
32
  /**
31
33
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
@@ -26,6 +27,7 @@ export interface GetNodeCommandOutput extends GetNodeOutput, __MetadataBearer {
26
27
  */
27
28
  export declare class GetNodeCommand extends $Command<GetNodeCommandInput, GetNodeCommandOutput, ManagedBlockchainClientResolvedConfig> {
28
29
  readonly input: GetNodeCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
29
31
  constructor(input: GetNodeCommandInput);
30
32
  /**
31
33
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
@@ -26,6 +27,7 @@ export interface GetProposalCommandOutput extends GetProposalOutput, __MetadataB
26
27
  */
27
28
  export declare class GetProposalCommand extends $Command<GetProposalCommandInput, GetProposalCommandOutput, ManagedBlockchainClientResolvedConfig> {
28
29
  readonly input: GetProposalCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
29
31
  constructor(input: GetProposalCommandInput);
30
32
  /**
31
33
  * @internal
@@ -0,0 +1,43 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
+ import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
5
+ import { ListAccessorsInput, ListAccessorsOutput } from "../models/models_0";
6
+ export interface ListAccessorsCommandInput extends ListAccessorsInput {
7
+ }
8
+ export interface ListAccessorsCommandOutput extends ListAccessorsOutput, __MetadataBearer {
9
+ }
10
+ /**
11
+ * <important>
12
+ * <p>The token based access feature is in preview release for Ethereum on Amazon Managed Blockchain and is
13
+ * subject to change. We recommend that you use this feature only with
14
+ * test scenarios, and not in production environments.</p>
15
+ * </important>
16
+ * <p>Returns a list of the accessors and their properties. Accessor objects are containers that have the
17
+ * information required for token based access to your Ethereum nodes.</p>
18
+ * @example
19
+ * Use a bare-bones client and the command you need to make an API call.
20
+ * ```javascript
21
+ * import { ManagedBlockchainClient, ListAccessorsCommand } from "@aws-sdk/client-managedblockchain"; // ES Modules import
22
+ * // const { ManagedBlockchainClient, ListAccessorsCommand } = require("@aws-sdk/client-managedblockchain"); // CommonJS import
23
+ * const client = new ManagedBlockchainClient(config);
24
+ * const command = new ListAccessorsCommand(input);
25
+ * const response = await client.send(command);
26
+ * ```
27
+ *
28
+ * @see {@link ListAccessorsCommandInput} for command's `input` shape.
29
+ * @see {@link ListAccessorsCommandOutput} for command's `response` shape.
30
+ * @see {@link ManagedBlockchainClientResolvedConfig | config} for ManagedBlockchainClient's `config` shape.
31
+ *
32
+ */
33
+ export declare class ListAccessorsCommand extends $Command<ListAccessorsCommandInput, ListAccessorsCommandOutput, ManagedBlockchainClientResolvedConfig> {
34
+ readonly input: ListAccessorsCommandInput;
35
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
36
+ constructor(input: ListAccessorsCommandInput);
37
+ /**
38
+ * @internal
39
+ */
40
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ManagedBlockchainClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAccessorsCommandInput, ListAccessorsCommandOutput>;
41
+ private serialize;
42
+ private deserialize;
43
+ }
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
@@ -7,7 +8,7 @@ export interface ListInvitationsCommandInput extends ListInvitationsInput {
7
8
  export interface ListInvitationsCommandOutput extends ListInvitationsOutput, __MetadataBearer {
8
9
  }
9
10
  /**
10
- * <p>Returns a list of all invitations for the current AWS account.</p>
11
+ * <p>Returns a list of all invitations for the current Amazon Web Services account.</p>
11
12
  * <p>Applies only to Hyperledger Fabric.</p>
12
13
  * @example
13
14
  * Use a bare-bones client and the command you need to make an API call.
@@ -26,6 +27,7 @@ export interface ListInvitationsCommandOutput extends ListInvitationsOutput, __M
26
27
  */
27
28
  export declare class ListInvitationsCommand extends $Command<ListInvitationsCommandInput, ListInvitationsCommandOutput, ManagedBlockchainClientResolvedConfig> {
28
29
  readonly input: ListInvitationsCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
29
31
  constructor(input: ListInvitationsCommandInput);
30
32
  /**
31
33
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
@@ -26,6 +27,7 @@ export interface ListMembersCommandOutput extends ListMembersOutput, __MetadataB
26
27
  */
27
28
  export declare class ListMembersCommand extends $Command<ListMembersCommandInput, ListMembersCommandOutput, ManagedBlockchainClientResolvedConfig> {
28
29
  readonly input: ListMembersCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
29
31
  constructor(input: ListMembersCommandInput);
30
32
  /**
31
33
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
@@ -7,7 +8,7 @@ export interface ListNetworksCommandInput extends ListNetworksInput {
7
8
  export interface ListNetworksCommandOutput extends ListNetworksOutput, __MetadataBearer {
8
9
  }
9
10
  /**
10
- * <p>Returns information about the networks in which the current AWS account participates.</p>
11
+ * <p>Returns information about the networks in which the current Amazon Web Services account participates.</p>
11
12
  * <p>Applies to Hyperledger Fabric and Ethereum.</p>
12
13
  * @example
13
14
  * Use a bare-bones client and the command you need to make an API call.
@@ -26,6 +27,7 @@ export interface ListNetworksCommandOutput extends ListNetworksOutput, __Metadat
26
27
  */
27
28
  export declare class ListNetworksCommand extends $Command<ListNetworksCommandInput, ListNetworksCommandOutput, ManagedBlockchainClientResolvedConfig> {
28
29
  readonly input: ListNetworksCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
29
31
  constructor(input: ListNetworksCommandInput);
30
32
  /**
31
33
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
@@ -26,6 +27,7 @@ export interface ListNodesCommandOutput extends ListNodesOutput, __MetadataBeare
26
27
  */
27
28
  export declare class ListNodesCommand extends $Command<ListNodesCommandInput, ListNodesCommandOutput, ManagedBlockchainClientResolvedConfig> {
28
29
  readonly input: ListNodesCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
29
31
  constructor(input: ListNodesCommandInput);
30
32
  /**
31
33
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
@@ -26,6 +27,7 @@ export interface ListProposalVotesCommandOutput extends ListProposalVotesOutput,
26
27
  */
27
28
  export declare class ListProposalVotesCommand extends $Command<ListProposalVotesCommandInput, ListProposalVotesCommandOutput, ManagedBlockchainClientResolvedConfig> {
28
29
  readonly input: ListProposalVotesCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
29
31
  constructor(input: ListProposalVotesCommandInput);
30
32
  /**
31
33
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
@@ -26,6 +27,7 @@ export interface ListProposalsCommandOutput extends ListProposalsOutput, __Metad
26
27
  */
27
28
  export declare class ListProposalsCommand extends $Command<ListProposalsCommandInput, ListProposalsCommandOutput, ManagedBlockchainClientResolvedConfig> {
28
29
  readonly input: ListProposalsCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
29
31
  constructor(input: ListProposalsCommandInput);
30
32
  /**
31
33
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
@@ -26,6 +27,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
26
27
  */
27
28
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, ManagedBlockchainClientResolvedConfig> {
28
29
  readonly input: ListTagsForResourceCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
29
31
  constructor(input: ListTagsForResourceCommandInput);
30
32
  /**
31
33
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
@@ -7,7 +8,7 @@ export interface RejectInvitationCommandInput extends RejectInvitationInput {
7
8
  export interface RejectInvitationCommandOutput extends RejectInvitationOutput, __MetadataBearer {
8
9
  }
9
10
  /**
10
- * <p>Rejects an invitation to join a network. This action can be called by a principal in an AWS account that has received an invitation to create a member and join a network.</p>
11
+ * <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>
11
12
  * <p>Applies only to Hyperledger Fabric.</p>
12
13
  * @example
13
14
  * Use a bare-bones client and the command you need to make an API call.
@@ -26,6 +27,7 @@ export interface RejectInvitationCommandOutput extends RejectInvitationOutput, _
26
27
  */
27
28
  export declare class RejectInvitationCommand extends $Command<RejectInvitationCommandInput, RejectInvitationCommandOutput, ManagedBlockchainClientResolvedConfig> {
28
29
  readonly input: RejectInvitationCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
29
31
  constructor(input: RejectInvitationCommandInput);
30
32
  /**
31
33
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
@@ -28,6 +29,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
28
29
  */
29
30
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, ManagedBlockchainClientResolvedConfig> {
30
31
  readonly input: TagResourceCommandInput;
32
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
33
  constructor(input: TagResourceCommandInput);
32
34
  /**
33
35
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
@@ -26,6 +27,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
26
27
  */
27
28
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, ManagedBlockchainClientResolvedConfig> {
28
29
  readonly input: UntagResourceCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
29
31
  constructor(input: UntagResourceCommandInput);
30
32
  /**
31
33
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
@@ -26,6 +27,7 @@ export interface UpdateMemberCommandOutput extends UpdateMemberOutput, __Metadat
26
27
  */
27
28
  export declare class UpdateMemberCommand extends $Command<UpdateMemberCommandInput, UpdateMemberCommandOutput, ManagedBlockchainClientResolvedConfig> {
28
29
  readonly input: UpdateMemberCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
29
31
  constructor(input: UpdateMemberCommandInput);
30
32
  /**
31
33
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
@@ -26,6 +27,7 @@ export interface UpdateNodeCommandOutput extends UpdateNodeOutput, __MetadataBea
26
27
  */
27
28
  export declare class UpdateNodeCommand extends $Command<UpdateNodeCommandInput, UpdateNodeCommandOutput, ManagedBlockchainClientResolvedConfig> {
28
29
  readonly input: UpdateNodeCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
29
31
  constructor(input: UpdateNodeCommandInput);
30
32
  /**
31
33
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
@@ -7,7 +8,7 @@ export interface VoteOnProposalCommandInput extends VoteOnProposalInput {
7
8
  export interface VoteOnProposalCommandOutput extends VoteOnProposalOutput, __MetadataBearer {
8
9
  }
9
10
  /**
10
- * <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 AWS account as the principal that calls the action.</p>
11
+ * <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>
11
12
  * <p>Applies only to Hyperledger Fabric.</p>
12
13
  * @example
13
14
  * Use a bare-bones client and the command you need to make an API call.
@@ -26,6 +27,7 @@ export interface VoteOnProposalCommandOutput extends VoteOnProposalOutput, __Met
26
27
  */
27
28
  export declare class VoteOnProposalCommand extends $Command<VoteOnProposalCommandInput, VoteOnProposalCommandOutput, ManagedBlockchainClientResolvedConfig> {
28
29
  readonly input: VoteOnProposalCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
29
31
  constructor(input: VoteOnProposalCommandInput);
30
32
  /**
31
33
  * @internal
@@ -1,13 +1,17 @@
1
+ export * from "./CreateAccessorCommand";
1
2
  export * from "./CreateMemberCommand";
2
3
  export * from "./CreateNetworkCommand";
3
4
  export * from "./CreateNodeCommand";
4
5
  export * from "./CreateProposalCommand";
6
+ export * from "./DeleteAccessorCommand";
5
7
  export * from "./DeleteMemberCommand";
6
8
  export * from "./DeleteNodeCommand";
9
+ export * from "./GetAccessorCommand";
7
10
  export * from "./GetMemberCommand";
8
11
  export * from "./GetNetworkCommand";
9
12
  export * from "./GetNodeCommand";
10
13
  export * from "./GetProposalCommand";
14
+ export * from "./ListAccessorsCommand";
11
15
  export * from "./ListInvitationsCommand";
12
16
  export * from "./ListMembersCommand";
13
17
  export * from "./ListNetworksCommand";
@@ -0,0 +1,19 @@
1
+ import { EndpointParameters as __EndpointParameters, Provider } from "@aws-sdk/types";
2
+ export interface ClientInputEndpointParameters {
3
+ region?: string | Provider<string>;
4
+ useDualstackEndpoint?: boolean | Provider<boolean>;
5
+ useFipsEndpoint?: boolean | Provider<boolean>;
6
+ endpoint?: string | Provider<string>;
7
+ }
8
+ export declare type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
9
+ defaultSigningName: string;
10
+ };
11
+ export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
12
+ defaultSigningName: string;
13
+ };
14
+ export interface EndpointParameters extends __EndpointParameters {
15
+ Region: string;
16
+ UseDualStack?: boolean;
17
+ UseFIPS?: boolean;
18
+ Endpoint?: string;
19
+ }
@@ -0,0 +1,5 @@
1
+ import { EndpointV2, Logger } from "@aws-sdk/types";
2
+ import { EndpointParameters } from "../endpoint/EndpointParameters";
3
+ export declare const defaultEndpointResolver: (endpointParams: EndpointParameters, context?: {
4
+ logger?: Logger;
5
+ }) => EndpointV2;
@@ -0,0 +1,2 @@
1
+ import { RuleSetObject } from "@aws-sdk/util-endpoints";
2
+ export declare const ruleSet: RuleSetObject;