@aws-sdk/client-managedblockchain 3.190.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.
- package/CHANGELOG.md +11 -0
- package/README.md +8 -8
- package/dist-cjs/ManagedBlockchain.js +60 -0
- package/dist-cjs/ManagedBlockchainClient.js +11 -8
- package/dist-cjs/commands/CreateAccessorCommand.js +46 -0
- package/dist-cjs/commands/CreateMemberCommand.js +10 -0
- package/dist-cjs/commands/CreateNetworkCommand.js +10 -0
- package/dist-cjs/commands/CreateNodeCommand.js +10 -0
- package/dist-cjs/commands/CreateProposalCommand.js +10 -0
- package/dist-cjs/commands/DeleteAccessorCommand.js +46 -0
- package/dist-cjs/commands/DeleteMemberCommand.js +10 -0
- package/dist-cjs/commands/DeleteNodeCommand.js +10 -0
- package/dist-cjs/commands/GetAccessorCommand.js +46 -0
- package/dist-cjs/commands/GetMemberCommand.js +10 -0
- package/dist-cjs/commands/GetNetworkCommand.js +10 -0
- package/dist-cjs/commands/GetNodeCommand.js +10 -0
- package/dist-cjs/commands/GetProposalCommand.js +10 -0
- package/dist-cjs/commands/ListAccessorsCommand.js +46 -0
- package/dist-cjs/commands/ListInvitationsCommand.js +10 -0
- package/dist-cjs/commands/ListMembersCommand.js +10 -0
- package/dist-cjs/commands/ListNetworksCommand.js +10 -0
- package/dist-cjs/commands/ListNodesCommand.js +10 -0
- package/dist-cjs/commands/ListProposalVotesCommand.js +10 -0
- package/dist-cjs/commands/ListProposalsCommand.js +10 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +10 -0
- package/dist-cjs/commands/RejectInvitationCommand.js +10 -0
- package/dist-cjs/commands/TagResourceCommand.js +10 -0
- package/dist-cjs/commands/UntagResourceCommand.js +10 -0
- package/dist-cjs/commands/UpdateMemberCommand.js +10 -0
- package/dist-cjs/commands/UpdateNodeCommand.js +10 -0
- package/dist-cjs/commands/VoteOnProposalCommand.js +10 -0
- package/dist-cjs/commands/index.js +4 -0
- package/dist-cjs/endpoint/EndpointParameters.js +13 -0
- package/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +318 -0
- package/dist-cjs/models/models_0.js +66 -16
- package/dist-cjs/pagination/ListAccessorsPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +297 -1
- package/dist-cjs/runtimeConfig.shared.js +3 -3
- package/dist-es/ManagedBlockchain.js +60 -0
- package/dist-es/ManagedBlockchainClient.js +12 -9
- package/dist-es/commands/CreateAccessorCommand.js +42 -0
- package/dist-es/commands/CreateMemberCommand.js +10 -0
- package/dist-es/commands/CreateNetworkCommand.js +10 -0
- package/dist-es/commands/CreateNodeCommand.js +10 -0
- package/dist-es/commands/CreateProposalCommand.js +10 -0
- package/dist-es/commands/DeleteAccessorCommand.js +42 -0
- package/dist-es/commands/DeleteMemberCommand.js +10 -0
- package/dist-es/commands/DeleteNodeCommand.js +10 -0
- package/dist-es/commands/GetAccessorCommand.js +42 -0
- package/dist-es/commands/GetMemberCommand.js +10 -0
- package/dist-es/commands/GetNetworkCommand.js +10 -0
- package/dist-es/commands/GetNodeCommand.js +10 -0
- package/dist-es/commands/GetProposalCommand.js +10 -0
- package/dist-es/commands/ListAccessorsCommand.js +42 -0
- package/dist-es/commands/ListInvitationsCommand.js +10 -0
- package/dist-es/commands/ListMembersCommand.js +10 -0
- package/dist-es/commands/ListNetworksCommand.js +10 -0
- package/dist-es/commands/ListNodesCommand.js +10 -0
- package/dist-es/commands/ListProposalVotesCommand.js +10 -0
- package/dist-es/commands/ListProposalsCommand.js +10 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +10 -0
- package/dist-es/commands/RejectInvitationCommand.js +10 -0
- package/dist-es/commands/TagResourceCommand.js +10 -0
- package/dist-es/commands/UntagResourceCommand.js +10 -0
- package/dist-es/commands/UpdateMemberCommand.js +10 -0
- package/dist-es/commands/UpdateNodeCommand.js +10 -0
- package/dist-es/commands/VoteOnProposalCommand.js +10 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/endpoint/EndpointParameters.js +8 -0
- package/dist-es/endpoint/endpointResolver.js +8 -0
- package/dist-es/endpoint/ruleset.js +315 -0
- package/dist-es/models/models_0.js +52 -12
- package/dist-es/pagination/ListAccessorsPaginator.js +32 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +286 -0
- package/dist-es/runtimeConfig.shared.js +2 -2
- package/dist-types/ManagedBlockchain.d.ts +64 -7
- package/dist-types/ManagedBlockchainClient.d.ts +13 -12
- package/dist-types/commands/CreateAccessorCommand.d.ts +43 -0
- package/dist-types/commands/CreateMemberCommand.d.ts +2 -0
- package/dist-types/commands/CreateNetworkCommand.d.ts +2 -0
- package/dist-types/commands/CreateNodeCommand.d.ts +2 -0
- package/dist-types/commands/CreateProposalCommand.d.ts +2 -0
- package/dist-types/commands/DeleteAccessorCommand.d.ts +48 -0
- package/dist-types/commands/DeleteMemberCommand.d.ts +3 -1
- package/dist-types/commands/DeleteNodeCommand.d.ts +3 -1
- package/dist-types/commands/GetAccessorCommand.d.ts +43 -0
- package/dist-types/commands/GetMemberCommand.d.ts +2 -0
- package/dist-types/commands/GetNetworkCommand.d.ts +2 -0
- package/dist-types/commands/GetNodeCommand.d.ts +2 -0
- package/dist-types/commands/GetProposalCommand.d.ts +2 -0
- package/dist-types/commands/ListAccessorsCommand.d.ts +43 -0
- package/dist-types/commands/ListInvitationsCommand.d.ts +3 -1
- package/dist-types/commands/ListMembersCommand.d.ts +2 -0
- package/dist-types/commands/ListNetworksCommand.d.ts +3 -1
- package/dist-types/commands/ListNodesCommand.d.ts +2 -0
- package/dist-types/commands/ListProposalVotesCommand.d.ts +2 -0
- package/dist-types/commands/ListProposalsCommand.d.ts +2 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -0
- package/dist-types/commands/RejectInvitationCommand.d.ts +3 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -0
- package/dist-types/commands/UpdateMemberCommand.d.ts +2 -0
- package/dist-types/commands/UpdateNodeCommand.d.ts +2 -0
- package/dist-types/commands/VoteOnProposalCommand.d.ts +3 -1
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +325 -119
- package/dist-types/pagination/ListAccessorsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +12 -0
- package/dist-types/runtimeConfig.browser.d.ts +4 -2
- package/dist-types/runtimeConfig.d.ts +4 -2
- package/dist-types/runtimeConfig.native.d.ts +4 -2
- package/dist-types/runtimeConfig.shared.d.ts +3 -1
- package/dist-types/ts3.4/ManagedBlockchain.d.ts +68 -0
- package/dist-types/ts3.4/ManagedBlockchainClient.d.ts +39 -8
- package/dist-types/ts3.4/commands/CreateAccessorCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/CreateMemberCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreateNetworkCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreateNodeCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreateProposalCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DeleteAccessorCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/DeleteMemberCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DeleteNodeCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetAccessorCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/GetMemberCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetNetworkCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetNodeCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetProposalCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListAccessorsCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/ListInvitationsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListMembersCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListNetworksCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListNodesCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListProposalVotesCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListProposalsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/RejectInvitationCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/UpdateMemberCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/UpdateNodeCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/VoteOnProposalCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +26 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +115 -38
- package/dist-types/ts3.4/pagination/ListAccessorsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +48 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +14 -4
- package/dist-types/ts3.4/runtimeConfig.d.ts +14 -4
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +14 -3
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +6 -1
- package/package.json +4 -3
- package/dist-cjs/endpoints.js +0 -132
- package/dist-es/endpoints.js +0 -128
- package/dist-types/endpoints.d.ts +0 -2
- package/dist-types/ts3.4/endpoints.d.ts +0 -2
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
ManagedBlockchainClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../ManagedBlockchainClient";
|
|
14
|
+
import { ListAccessorsInput, ListAccessorsOutput } from "../models/models_0";
|
|
15
|
+
export interface ListAccessorsCommandInput extends ListAccessorsInput {}
|
|
16
|
+
export interface ListAccessorsCommandOutput
|
|
17
|
+
extends ListAccessorsOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class ListAccessorsCommand extends $Command<
|
|
20
|
+
ListAccessorsCommandInput,
|
|
21
|
+
ListAccessorsCommandOutput,
|
|
22
|
+
ManagedBlockchainClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: ListAccessorsCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: ListAccessorsCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: ManagedBlockchainClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<ListAccessorsCommandInput, ListAccessorsCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -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 {
|
|
3
4
|
Handler,
|
|
@@ -24,6 +25,7 @@ export declare class ListInvitationsCommand extends $Command<
|
|
|
24
25
|
ManagedBlockchainClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: ListInvitationsCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: ListInvitationsCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -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 {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class ListMembersCommand extends $Command<
|
|
|
21
22
|
ManagedBlockchainClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: ListMembersCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: ListMembersCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -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 {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class ListNetworksCommand extends $Command<
|
|
|
21
22
|
ManagedBlockchainClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: ListNetworksCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: ListNetworksCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -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 {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class ListNodesCommand extends $Command<
|
|
|
21
22
|
ManagedBlockchainClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: ListNodesCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: ListNodesCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -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 {
|
|
3
4
|
Handler,
|
|
@@ -24,6 +25,7 @@ export declare class ListProposalVotesCommand extends $Command<
|
|
|
24
25
|
ManagedBlockchainClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: ListProposalVotesCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: ListProposalVotesCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -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 {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class ListProposalsCommand extends $Command<
|
|
|
21
22
|
ManagedBlockchainClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: ListProposalsCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: ListProposalsCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -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 {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class ListTagsForResourceCommand extends $Command<
|
|
|
25
26
|
ManagedBlockchainClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: ListTagsForResourceCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListTagsForResourceCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -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 {
|
|
3
4
|
Handler,
|
|
@@ -24,6 +25,7 @@ export declare class RejectInvitationCommand extends $Command<
|
|
|
24
25
|
ManagedBlockchainClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: RejectInvitationCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: RejectInvitationCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -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 {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class TagResourceCommand extends $Command<
|
|
|
21
22
|
ManagedBlockchainClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: TagResourceCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: TagResourceCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -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 {
|
|
3
4
|
Handler,
|
|
@@ -24,6 +25,7 @@ export declare class UntagResourceCommand extends $Command<
|
|
|
24
25
|
ManagedBlockchainClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: UntagResourceCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: UntagResourceCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -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 {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class UpdateMemberCommand extends $Command<
|
|
|
21
22
|
ManagedBlockchainClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: UpdateMemberCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: UpdateMemberCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -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 {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class UpdateNodeCommand extends $Command<
|
|
|
21
22
|
ManagedBlockchainClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: UpdateNodeCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: UpdateNodeCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -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 {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class VoteOnProposalCommand extends $Command<
|
|
|
21
22
|
ManagedBlockchainClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: VoteOnProposalCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: VoteOnProposalCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -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,26 @@
|
|
|
1
|
+
import {
|
|
2
|
+
EndpointParameters as __EndpointParameters,
|
|
3
|
+
Provider,
|
|
4
|
+
} from "@aws-sdk/types";
|
|
5
|
+
export interface ClientInputEndpointParameters {
|
|
6
|
+
region?: string | Provider<string>;
|
|
7
|
+
useDualstackEndpoint?: boolean | Provider<boolean>;
|
|
8
|
+
useFipsEndpoint?: boolean | Provider<boolean>;
|
|
9
|
+
endpoint?: string | Provider<string>;
|
|
10
|
+
}
|
|
11
|
+
export declare type ClientResolvedEndpointParameters =
|
|
12
|
+
ClientInputEndpointParameters & {
|
|
13
|
+
defaultSigningName: string;
|
|
14
|
+
};
|
|
15
|
+
export declare const resolveClientEndpointParameters: <T>(
|
|
16
|
+
options: T & ClientInputEndpointParameters
|
|
17
|
+
) => T &
|
|
18
|
+
ClientInputEndpointParameters & {
|
|
19
|
+
defaultSigningName: string;
|
|
20
|
+
};
|
|
21
|
+
export interface EndpointParameters extends __EndpointParameters {
|
|
22
|
+
Region: string;
|
|
23
|
+
UseDualStack?: boolean;
|
|
24
|
+
UseFIPS?: boolean;
|
|
25
|
+
Endpoint?: string;
|
|
26
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { EndpointV2, Logger } from "@aws-sdk/types";
|
|
2
|
+
import { EndpointParameters } from "../endpoint/EndpointParameters";
|
|
3
|
+
export declare const defaultEndpointResolver: (
|
|
4
|
+
endpointParams: EndpointParameters,
|
|
5
|
+
context?: {
|
|
6
|
+
logger?: Logger;
|
|
7
|
+
}
|
|
8
|
+
) => EndpointV2;
|
|
@@ -8,6 +8,29 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
8
8
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
9
|
);
|
|
10
10
|
}
|
|
11
|
+
export declare enum AccessorStatus {
|
|
12
|
+
AVAILABLE = "AVAILABLE",
|
|
13
|
+
DELETED = "DELETED",
|
|
14
|
+
PENDING_DELETION = "PENDING_DELETION",
|
|
15
|
+
}
|
|
16
|
+
export declare enum AccessorType {
|
|
17
|
+
BILLING_TOKEN = "BILLING_TOKEN",
|
|
18
|
+
}
|
|
19
|
+
export interface Accessor {
|
|
20
|
+
Id?: string;
|
|
21
|
+
Type?: AccessorType | string;
|
|
22
|
+
BillingToken?: string;
|
|
23
|
+
Status?: AccessorStatus | string;
|
|
24
|
+
CreationDate?: Date;
|
|
25
|
+
Arn?: string;
|
|
26
|
+
}
|
|
27
|
+
export interface AccessorSummary {
|
|
28
|
+
Id?: string;
|
|
29
|
+
Type?: AccessorType | string;
|
|
30
|
+
Status?: AccessorStatus | string;
|
|
31
|
+
CreationDate?: Date;
|
|
32
|
+
Arn?: string;
|
|
33
|
+
}
|
|
11
34
|
export declare enum ThresholdComparator {
|
|
12
35
|
GREATER_THAN = "GREATER_THAN",
|
|
13
36
|
GREATER_THAN_OR_EQUAL_TO = "GREATER_THAN_OR_EQUAL_TO",
|
|
@@ -17,6 +40,52 @@ export interface ApprovalThresholdPolicy {
|
|
|
17
40
|
ProposalDurationInHours?: number;
|
|
18
41
|
ThresholdComparator?: ThresholdComparator | string;
|
|
19
42
|
}
|
|
43
|
+
export interface CreateAccessorInput {
|
|
44
|
+
ClientRequestToken?: string;
|
|
45
|
+
AccessorType: AccessorType | string | undefined;
|
|
46
|
+
}
|
|
47
|
+
export interface CreateAccessorOutput {
|
|
48
|
+
AccessorId?: string;
|
|
49
|
+
BillingToken?: string;
|
|
50
|
+
}
|
|
51
|
+
export declare class InternalServiceErrorException extends __BaseException {
|
|
52
|
+
readonly name: "InternalServiceErrorException";
|
|
53
|
+
readonly $fault: "server";
|
|
54
|
+
constructor(
|
|
55
|
+
opts: __ExceptionOptionType<InternalServiceErrorException, __BaseException>
|
|
56
|
+
);
|
|
57
|
+
}
|
|
58
|
+
export declare class InvalidRequestException extends __BaseException {
|
|
59
|
+
readonly name: "InvalidRequestException";
|
|
60
|
+
readonly $fault: "client";
|
|
61
|
+
Message?: string;
|
|
62
|
+
constructor(
|
|
63
|
+
opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
|
|
64
|
+
);
|
|
65
|
+
}
|
|
66
|
+
export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
67
|
+
readonly name: "ResourceAlreadyExistsException";
|
|
68
|
+
readonly $fault: "client";
|
|
69
|
+
Message?: string;
|
|
70
|
+
constructor(
|
|
71
|
+
opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>
|
|
72
|
+
);
|
|
73
|
+
}
|
|
74
|
+
export declare class ResourceLimitExceededException extends __BaseException {
|
|
75
|
+
readonly name: "ResourceLimitExceededException";
|
|
76
|
+
readonly $fault: "client";
|
|
77
|
+
Message?: string;
|
|
78
|
+
constructor(
|
|
79
|
+
opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>
|
|
80
|
+
);
|
|
81
|
+
}
|
|
82
|
+
export declare class ThrottlingException extends __BaseException {
|
|
83
|
+
readonly name: "ThrottlingException";
|
|
84
|
+
readonly $fault: "client";
|
|
85
|
+
constructor(
|
|
86
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
87
|
+
);
|
|
88
|
+
}
|
|
20
89
|
export interface MemberFabricConfiguration {
|
|
21
90
|
AdminUsername: string | undefined;
|
|
22
91
|
AdminPassword: string | undefined;
|
|
@@ -53,37 +122,6 @@ export interface CreateMemberInput {
|
|
|
53
122
|
export interface CreateMemberOutput {
|
|
54
123
|
MemberId?: string;
|
|
55
124
|
}
|
|
56
|
-
export declare class InternalServiceErrorException extends __BaseException {
|
|
57
|
-
readonly name: "InternalServiceErrorException";
|
|
58
|
-
readonly $fault: "server";
|
|
59
|
-
constructor(
|
|
60
|
-
opts: __ExceptionOptionType<InternalServiceErrorException, __BaseException>
|
|
61
|
-
);
|
|
62
|
-
}
|
|
63
|
-
export declare class InvalidRequestException extends __BaseException {
|
|
64
|
-
readonly name: "InvalidRequestException";
|
|
65
|
-
readonly $fault: "client";
|
|
66
|
-
Message?: string;
|
|
67
|
-
constructor(
|
|
68
|
-
opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
|
|
69
|
-
);
|
|
70
|
-
}
|
|
71
|
-
export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
72
|
-
readonly name: "ResourceAlreadyExistsException";
|
|
73
|
-
readonly $fault: "client";
|
|
74
|
-
Message?: string;
|
|
75
|
-
constructor(
|
|
76
|
-
opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>
|
|
77
|
-
);
|
|
78
|
-
}
|
|
79
|
-
export declare class ResourceLimitExceededException extends __BaseException {
|
|
80
|
-
readonly name: "ResourceLimitExceededException";
|
|
81
|
-
readonly $fault: "client";
|
|
82
|
-
Message?: string;
|
|
83
|
-
constructor(
|
|
84
|
-
opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>
|
|
85
|
-
);
|
|
86
|
-
}
|
|
87
125
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
88
126
|
readonly name: "ResourceNotFoundException";
|
|
89
127
|
readonly $fault: "client";
|
|
@@ -101,13 +139,6 @@ export declare class ResourceNotReadyException extends __BaseException {
|
|
|
101
139
|
opts: __ExceptionOptionType<ResourceNotReadyException, __BaseException>
|
|
102
140
|
);
|
|
103
141
|
}
|
|
104
|
-
export declare class ThrottlingException extends __BaseException {
|
|
105
|
-
readonly name: "ThrottlingException";
|
|
106
|
-
readonly $fault: "client";
|
|
107
|
-
constructor(
|
|
108
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
109
|
-
);
|
|
110
|
-
}
|
|
111
142
|
export declare class TooManyTagsException extends __BaseException {
|
|
112
143
|
readonly name: "TooManyTagsException";
|
|
113
144
|
readonly $fault: "client";
|
|
@@ -197,6 +228,10 @@ export interface CreateProposalInput {
|
|
|
197
228
|
export interface CreateProposalOutput {
|
|
198
229
|
ProposalId?: string;
|
|
199
230
|
}
|
|
231
|
+
export interface DeleteAccessorInput {
|
|
232
|
+
AccessorId: string | undefined;
|
|
233
|
+
}
|
|
234
|
+
export interface DeleteAccessorOutput {}
|
|
200
235
|
export interface DeleteMemberInput {
|
|
201
236
|
NetworkId: string | undefined;
|
|
202
237
|
MemberId: string | undefined;
|
|
@@ -208,6 +243,12 @@ export interface DeleteNodeInput {
|
|
|
208
243
|
NodeId: string | undefined;
|
|
209
244
|
}
|
|
210
245
|
export interface DeleteNodeOutput {}
|
|
246
|
+
export interface GetAccessorInput {
|
|
247
|
+
AccessorId: string | undefined;
|
|
248
|
+
}
|
|
249
|
+
export interface GetAccessorOutput {
|
|
250
|
+
Accessor?: Accessor;
|
|
251
|
+
}
|
|
211
252
|
export interface GetMemberInput {
|
|
212
253
|
NetworkId: string | undefined;
|
|
213
254
|
MemberId: string | undefined;
|
|
@@ -391,6 +432,14 @@ export interface Invitation {
|
|
|
391
432
|
NetworkSummary?: NetworkSummary;
|
|
392
433
|
Arn?: string;
|
|
393
434
|
}
|
|
435
|
+
export interface ListAccessorsInput {
|
|
436
|
+
MaxResults?: number;
|
|
437
|
+
NextToken?: string;
|
|
438
|
+
}
|
|
439
|
+
export interface ListAccessorsOutput {
|
|
440
|
+
Accessors?: AccessorSummary[];
|
|
441
|
+
NextToken?: string;
|
|
442
|
+
}
|
|
394
443
|
export interface ListInvitationsInput {
|
|
395
444
|
MaxResults?: number;
|
|
396
445
|
NextToken?: string;
|
|
@@ -528,9 +577,19 @@ export interface VoteOnProposalInput {
|
|
|
528
577
|
Vote: VoteValue | string | undefined;
|
|
529
578
|
}
|
|
530
579
|
export interface VoteOnProposalOutput {}
|
|
580
|
+
export declare const AccessorFilterSensitiveLog: (obj: Accessor) => any;
|
|
581
|
+
export declare const AccessorSummaryFilterSensitiveLog: (
|
|
582
|
+
obj: AccessorSummary
|
|
583
|
+
) => any;
|
|
531
584
|
export declare const ApprovalThresholdPolicyFilterSensitiveLog: (
|
|
532
585
|
obj: ApprovalThresholdPolicy
|
|
533
586
|
) => any;
|
|
587
|
+
export declare const CreateAccessorInputFilterSensitiveLog: (
|
|
588
|
+
obj: CreateAccessorInput
|
|
589
|
+
) => any;
|
|
590
|
+
export declare const CreateAccessorOutputFilterSensitiveLog: (
|
|
591
|
+
obj: CreateAccessorOutput
|
|
592
|
+
) => any;
|
|
534
593
|
export declare const MemberFabricConfigurationFilterSensitiveLog: (
|
|
535
594
|
obj: MemberFabricConfiguration
|
|
536
595
|
) => any;
|
|
@@ -597,6 +656,12 @@ export declare const CreateProposalInputFilterSensitiveLog: (
|
|
|
597
656
|
export declare const CreateProposalOutputFilterSensitiveLog: (
|
|
598
657
|
obj: CreateProposalOutput
|
|
599
658
|
) => any;
|
|
659
|
+
export declare const DeleteAccessorInputFilterSensitiveLog: (
|
|
660
|
+
obj: DeleteAccessorInput
|
|
661
|
+
) => any;
|
|
662
|
+
export declare const DeleteAccessorOutputFilterSensitiveLog: (
|
|
663
|
+
obj: DeleteAccessorOutput
|
|
664
|
+
) => any;
|
|
600
665
|
export declare const DeleteMemberInputFilterSensitiveLog: (
|
|
601
666
|
obj: DeleteMemberInput
|
|
602
667
|
) => any;
|
|
@@ -609,6 +674,12 @@ export declare const DeleteNodeInputFilterSensitiveLog: (
|
|
|
609
674
|
export declare const DeleteNodeOutputFilterSensitiveLog: (
|
|
610
675
|
obj: DeleteNodeOutput
|
|
611
676
|
) => any;
|
|
677
|
+
export declare const GetAccessorInputFilterSensitiveLog: (
|
|
678
|
+
obj: GetAccessorInput
|
|
679
|
+
) => any;
|
|
680
|
+
export declare const GetAccessorOutputFilterSensitiveLog: (
|
|
681
|
+
obj: GetAccessorOutput
|
|
682
|
+
) => any;
|
|
612
683
|
export declare const GetMemberInputFilterSensitiveLog: (
|
|
613
684
|
obj: GetMemberInput
|
|
614
685
|
) => any;
|
|
@@ -663,6 +734,12 @@ export declare const NetworkSummaryFilterSensitiveLog: (
|
|
|
663
734
|
obj: NetworkSummary
|
|
664
735
|
) => any;
|
|
665
736
|
export declare const InvitationFilterSensitiveLog: (obj: Invitation) => any;
|
|
737
|
+
export declare const ListAccessorsInputFilterSensitiveLog: (
|
|
738
|
+
obj: ListAccessorsInput
|
|
739
|
+
) => any;
|
|
740
|
+
export declare const ListAccessorsOutputFilterSensitiveLog: (
|
|
741
|
+
obj: ListAccessorsOutput
|
|
742
|
+
) => any;
|
|
666
743
|
export declare const ListInvitationsInputFilterSensitiveLog: (
|
|
667
744
|
obj: ListInvitationsInput
|
|
668
745
|
) => any;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListAccessorsCommandInput,
|
|
4
|
+
ListAccessorsCommandOutput,
|
|
5
|
+
} from "../commands/ListAccessorsCommand";
|
|
6
|
+
import { ManagedBlockchainPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListAccessors(
|
|
8
|
+
config: ManagedBlockchainPaginationConfiguration,
|
|
9
|
+
input: ListAccessorsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListAccessorsCommandOutput>;
|
|
@@ -3,6 +3,10 @@ import {
|
|
|
3
3
|
HttpResponse as __HttpResponse,
|
|
4
4
|
} from "@aws-sdk/protocol-http";
|
|
5
5
|
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
6
|
+
import {
|
|
7
|
+
CreateAccessorCommandInput,
|
|
8
|
+
CreateAccessorCommandOutput,
|
|
9
|
+
} from "../commands/CreateAccessorCommand";
|
|
6
10
|
import {
|
|
7
11
|
CreateMemberCommandInput,
|
|
8
12
|
CreateMemberCommandOutput,
|
|
@@ -19,6 +23,10 @@ import {
|
|
|
19
23
|
CreateProposalCommandInput,
|
|
20
24
|
CreateProposalCommandOutput,
|
|
21
25
|
} from "../commands/CreateProposalCommand";
|
|
26
|
+
import {
|
|
27
|
+
DeleteAccessorCommandInput,
|
|
28
|
+
DeleteAccessorCommandOutput,
|
|
29
|
+
} from "../commands/DeleteAccessorCommand";
|
|
22
30
|
import {
|
|
23
31
|
DeleteMemberCommandInput,
|
|
24
32
|
DeleteMemberCommandOutput,
|
|
@@ -27,6 +35,10 @@ import {
|
|
|
27
35
|
DeleteNodeCommandInput,
|
|
28
36
|
DeleteNodeCommandOutput,
|
|
29
37
|
} from "../commands/DeleteNodeCommand";
|
|
38
|
+
import {
|
|
39
|
+
GetAccessorCommandInput,
|
|
40
|
+
GetAccessorCommandOutput,
|
|
41
|
+
} from "../commands/GetAccessorCommand";
|
|
30
42
|
import {
|
|
31
43
|
GetMemberCommandInput,
|
|
32
44
|
GetMemberCommandOutput,
|
|
@@ -43,6 +55,10 @@ import {
|
|
|
43
55
|
GetProposalCommandInput,
|
|
44
56
|
GetProposalCommandOutput,
|
|
45
57
|
} from "../commands/GetProposalCommand";
|
|
58
|
+
import {
|
|
59
|
+
ListAccessorsCommandInput,
|
|
60
|
+
ListAccessorsCommandOutput,
|
|
61
|
+
} from "../commands/ListAccessorsCommand";
|
|
46
62
|
import {
|
|
47
63
|
ListInvitationsCommandInput,
|
|
48
64
|
ListInvitationsCommandOutput,
|
|
@@ -95,6 +111,10 @@ import {
|
|
|
95
111
|
VoteOnProposalCommandInput,
|
|
96
112
|
VoteOnProposalCommandOutput,
|
|
97
113
|
} from "../commands/VoteOnProposalCommand";
|
|
114
|
+
export declare const serializeAws_restJson1CreateAccessorCommand: (
|
|
115
|
+
input: CreateAccessorCommandInput,
|
|
116
|
+
context: __SerdeContext
|
|
117
|
+
) => Promise<__HttpRequest>;
|
|
98
118
|
export declare const serializeAws_restJson1CreateMemberCommand: (
|
|
99
119
|
input: CreateMemberCommandInput,
|
|
100
120
|
context: __SerdeContext
|
|
@@ -111,6 +131,10 @@ export declare const serializeAws_restJson1CreateProposalCommand: (
|
|
|
111
131
|
input: CreateProposalCommandInput,
|
|
112
132
|
context: __SerdeContext
|
|
113
133
|
) => Promise<__HttpRequest>;
|
|
134
|
+
export declare const serializeAws_restJson1DeleteAccessorCommand: (
|
|
135
|
+
input: DeleteAccessorCommandInput,
|
|
136
|
+
context: __SerdeContext
|
|
137
|
+
) => Promise<__HttpRequest>;
|
|
114
138
|
export declare const serializeAws_restJson1DeleteMemberCommand: (
|
|
115
139
|
input: DeleteMemberCommandInput,
|
|
116
140
|
context: __SerdeContext
|
|
@@ -119,6 +143,10 @@ export declare const serializeAws_restJson1DeleteNodeCommand: (
|
|
|
119
143
|
input: DeleteNodeCommandInput,
|
|
120
144
|
context: __SerdeContext
|
|
121
145
|
) => Promise<__HttpRequest>;
|
|
146
|
+
export declare const serializeAws_restJson1GetAccessorCommand: (
|
|
147
|
+
input: GetAccessorCommandInput,
|
|
148
|
+
context: __SerdeContext
|
|
149
|
+
) => Promise<__HttpRequest>;
|
|
122
150
|
export declare const serializeAws_restJson1GetMemberCommand: (
|
|
123
151
|
input: GetMemberCommandInput,
|
|
124
152
|
context: __SerdeContext
|
|
@@ -135,6 +163,10 @@ export declare const serializeAws_restJson1GetProposalCommand: (
|
|
|
135
163
|
input: GetProposalCommandInput,
|
|
136
164
|
context: __SerdeContext
|
|
137
165
|
) => Promise<__HttpRequest>;
|
|
166
|
+
export declare const serializeAws_restJson1ListAccessorsCommand: (
|
|
167
|
+
input: ListAccessorsCommandInput,
|
|
168
|
+
context: __SerdeContext
|
|
169
|
+
) => Promise<__HttpRequest>;
|
|
138
170
|
export declare const serializeAws_restJson1ListInvitationsCommand: (
|
|
139
171
|
input: ListInvitationsCommandInput,
|
|
140
172
|
context: __SerdeContext
|
|
@@ -187,6 +219,10 @@ export declare const serializeAws_restJson1VoteOnProposalCommand: (
|
|
|
187
219
|
input: VoteOnProposalCommandInput,
|
|
188
220
|
context: __SerdeContext
|
|
189
221
|
) => Promise<__HttpRequest>;
|
|
222
|
+
export declare const deserializeAws_restJson1CreateAccessorCommand: (
|
|
223
|
+
output: __HttpResponse,
|
|
224
|
+
context: __SerdeContext
|
|
225
|
+
) => Promise<CreateAccessorCommandOutput>;
|
|
190
226
|
export declare const deserializeAws_restJson1CreateMemberCommand: (
|
|
191
227
|
output: __HttpResponse,
|
|
192
228
|
context: __SerdeContext
|
|
@@ -203,6 +239,10 @@ export declare const deserializeAws_restJson1CreateProposalCommand: (
|
|
|
203
239
|
output: __HttpResponse,
|
|
204
240
|
context: __SerdeContext
|
|
205
241
|
) => Promise<CreateProposalCommandOutput>;
|
|
242
|
+
export declare const deserializeAws_restJson1DeleteAccessorCommand: (
|
|
243
|
+
output: __HttpResponse,
|
|
244
|
+
context: __SerdeContext
|
|
245
|
+
) => Promise<DeleteAccessorCommandOutput>;
|
|
206
246
|
export declare const deserializeAws_restJson1DeleteMemberCommand: (
|
|
207
247
|
output: __HttpResponse,
|
|
208
248
|
context: __SerdeContext
|
|
@@ -211,6 +251,10 @@ export declare const deserializeAws_restJson1DeleteNodeCommand: (
|
|
|
211
251
|
output: __HttpResponse,
|
|
212
252
|
context: __SerdeContext
|
|
213
253
|
) => Promise<DeleteNodeCommandOutput>;
|
|
254
|
+
export declare const deserializeAws_restJson1GetAccessorCommand: (
|
|
255
|
+
output: __HttpResponse,
|
|
256
|
+
context: __SerdeContext
|
|
257
|
+
) => Promise<GetAccessorCommandOutput>;
|
|
214
258
|
export declare const deserializeAws_restJson1GetMemberCommand: (
|
|
215
259
|
output: __HttpResponse,
|
|
216
260
|
context: __SerdeContext
|
|
@@ -227,6 +271,10 @@ export declare const deserializeAws_restJson1GetProposalCommand: (
|
|
|
227
271
|
output: __HttpResponse,
|
|
228
272
|
context: __SerdeContext
|
|
229
273
|
) => Promise<GetProposalCommandOutput>;
|
|
274
|
+
export declare const deserializeAws_restJson1ListAccessorsCommand: (
|
|
275
|
+
output: __HttpResponse,
|
|
276
|
+
context: __SerdeContext
|
|
277
|
+
) => Promise<ListAccessorsCommandOutput>;
|
|
230
278
|
export declare const deserializeAws_restJson1ListInvitationsCommand: (
|
|
231
279
|
output: __HttpResponse,
|
|
232
280
|
context: __SerdeContext
|
|
@@ -38,12 +38,22 @@ export declare const getRuntimeConfig: (
|
|
|
38
38
|
disableHostPrefix: boolean;
|
|
39
39
|
logger: import("@aws-sdk/types").Logger;
|
|
40
40
|
serviceId: string;
|
|
41
|
-
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
42
41
|
endpoint?:
|
|
43
|
-
|
|
|
44
|
-
|
|
45
|
-
|
|
42
|
+
| ((
|
|
43
|
+
| string
|
|
44
|
+
| import("@aws-sdk/types").Endpoint
|
|
45
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
46
|
+
| import("@aws-sdk/types").EndpointV2
|
|
47
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>
|
|
48
|
+
) &
|
|
49
|
+
(string | import("@aws-sdk/types").Provider<string>))
|
|
46
50
|
| undefined;
|
|
51
|
+
endpointProvider: (
|
|
52
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
53
|
+
context?: {
|
|
54
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
55
|
+
}
|
|
56
|
+
) => import("@aws-sdk/types").EndpointV2;
|
|
47
57
|
tls?: boolean | undefined;
|
|
48
58
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
49
59
|
credentials?:
|