@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,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListAccessorsCommandInput, ListAccessorsCommandOutput } from "../commands/ListAccessorsCommand";
|
|
3
|
+
import { ManagedBlockchainPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListAccessors(config: ManagedBlockchainPaginationConfiguration, input: ListAccessorsCommandInput, ...additionalArguments: any): Paginator<ListAccessorsCommandOutput>;
|
|
@@ -1,15 +1,19 @@
|
|
|
1
1
|
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
|
|
2
2
|
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
3
|
+
import { CreateAccessorCommandInput, CreateAccessorCommandOutput } from "../commands/CreateAccessorCommand";
|
|
3
4
|
import { CreateMemberCommandInput, CreateMemberCommandOutput } from "../commands/CreateMemberCommand";
|
|
4
5
|
import { CreateNetworkCommandInput, CreateNetworkCommandOutput } from "../commands/CreateNetworkCommand";
|
|
5
6
|
import { CreateNodeCommandInput, CreateNodeCommandOutput } from "../commands/CreateNodeCommand";
|
|
6
7
|
import { CreateProposalCommandInput, CreateProposalCommandOutput } from "../commands/CreateProposalCommand";
|
|
8
|
+
import { DeleteAccessorCommandInput, DeleteAccessorCommandOutput } from "../commands/DeleteAccessorCommand";
|
|
7
9
|
import { DeleteMemberCommandInput, DeleteMemberCommandOutput } from "../commands/DeleteMemberCommand";
|
|
8
10
|
import { DeleteNodeCommandInput, DeleteNodeCommandOutput } from "../commands/DeleteNodeCommand";
|
|
11
|
+
import { GetAccessorCommandInput, GetAccessorCommandOutput } from "../commands/GetAccessorCommand";
|
|
9
12
|
import { GetMemberCommandInput, GetMemberCommandOutput } from "../commands/GetMemberCommand";
|
|
10
13
|
import { GetNetworkCommandInput, GetNetworkCommandOutput } from "../commands/GetNetworkCommand";
|
|
11
14
|
import { GetNodeCommandInput, GetNodeCommandOutput } from "../commands/GetNodeCommand";
|
|
12
15
|
import { GetProposalCommandInput, GetProposalCommandOutput } from "../commands/GetProposalCommand";
|
|
16
|
+
import { ListAccessorsCommandInput, ListAccessorsCommandOutput } from "../commands/ListAccessorsCommand";
|
|
13
17
|
import { ListInvitationsCommandInput, ListInvitationsCommandOutput } from "../commands/ListInvitationsCommand";
|
|
14
18
|
import { ListMembersCommandInput, ListMembersCommandOutput } from "../commands/ListMembersCommand";
|
|
15
19
|
import { ListNetworksCommandInput, ListNetworksCommandOutput } from "../commands/ListNetworksCommand";
|
|
@@ -23,16 +27,20 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../comman
|
|
|
23
27
|
import { UpdateMemberCommandInput, UpdateMemberCommandOutput } from "../commands/UpdateMemberCommand";
|
|
24
28
|
import { UpdateNodeCommandInput, UpdateNodeCommandOutput } from "../commands/UpdateNodeCommand";
|
|
25
29
|
import { VoteOnProposalCommandInput, VoteOnProposalCommandOutput } from "../commands/VoteOnProposalCommand";
|
|
30
|
+
export declare const serializeAws_restJson1CreateAccessorCommand: (input: CreateAccessorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
26
31
|
export declare const serializeAws_restJson1CreateMemberCommand: (input: CreateMemberCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
27
32
|
export declare const serializeAws_restJson1CreateNetworkCommand: (input: CreateNetworkCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
28
33
|
export declare const serializeAws_restJson1CreateNodeCommand: (input: CreateNodeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
29
34
|
export declare const serializeAws_restJson1CreateProposalCommand: (input: CreateProposalCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
35
|
+
export declare const serializeAws_restJson1DeleteAccessorCommand: (input: DeleteAccessorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
30
36
|
export declare const serializeAws_restJson1DeleteMemberCommand: (input: DeleteMemberCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
31
37
|
export declare const serializeAws_restJson1DeleteNodeCommand: (input: DeleteNodeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
38
|
+
export declare const serializeAws_restJson1GetAccessorCommand: (input: GetAccessorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
32
39
|
export declare const serializeAws_restJson1GetMemberCommand: (input: GetMemberCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
33
40
|
export declare const serializeAws_restJson1GetNetworkCommand: (input: GetNetworkCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
34
41
|
export declare const serializeAws_restJson1GetNodeCommand: (input: GetNodeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
35
42
|
export declare const serializeAws_restJson1GetProposalCommand: (input: GetProposalCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
43
|
+
export declare const serializeAws_restJson1ListAccessorsCommand: (input: ListAccessorsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
36
44
|
export declare const serializeAws_restJson1ListInvitationsCommand: (input: ListInvitationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
37
45
|
export declare const serializeAws_restJson1ListMembersCommand: (input: ListMembersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
38
46
|
export declare const serializeAws_restJson1ListNetworksCommand: (input: ListNetworksCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -46,16 +54,20 @@ export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagRe
|
|
|
46
54
|
export declare const serializeAws_restJson1UpdateMemberCommand: (input: UpdateMemberCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
47
55
|
export declare const serializeAws_restJson1UpdateNodeCommand: (input: UpdateNodeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
48
56
|
export declare const serializeAws_restJson1VoteOnProposalCommand: (input: VoteOnProposalCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
57
|
+
export declare const deserializeAws_restJson1CreateAccessorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAccessorCommandOutput>;
|
|
49
58
|
export declare const deserializeAws_restJson1CreateMemberCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateMemberCommandOutput>;
|
|
50
59
|
export declare const deserializeAws_restJson1CreateNetworkCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateNetworkCommandOutput>;
|
|
51
60
|
export declare const deserializeAws_restJson1CreateNodeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateNodeCommandOutput>;
|
|
52
61
|
export declare const deserializeAws_restJson1CreateProposalCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateProposalCommandOutput>;
|
|
62
|
+
export declare const deserializeAws_restJson1DeleteAccessorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAccessorCommandOutput>;
|
|
53
63
|
export declare const deserializeAws_restJson1DeleteMemberCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteMemberCommandOutput>;
|
|
54
64
|
export declare const deserializeAws_restJson1DeleteNodeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteNodeCommandOutput>;
|
|
65
|
+
export declare const deserializeAws_restJson1GetAccessorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAccessorCommandOutput>;
|
|
55
66
|
export declare const deserializeAws_restJson1GetMemberCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMemberCommandOutput>;
|
|
56
67
|
export declare const deserializeAws_restJson1GetNetworkCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetNetworkCommandOutput>;
|
|
57
68
|
export declare const deserializeAws_restJson1GetNodeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetNodeCommandOutput>;
|
|
58
69
|
export declare const deserializeAws_restJson1GetProposalCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetProposalCommandOutput>;
|
|
70
|
+
export declare const deserializeAws_restJson1ListAccessorsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAccessorsCommandOutput>;
|
|
59
71
|
export declare const deserializeAws_restJson1ListInvitationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListInvitationsCommandOutput>;
|
|
60
72
|
export declare const deserializeAws_restJson1ListMembersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMembersCommandOutput>;
|
|
61
73
|
export declare const deserializeAws_restJson1ListNetworksCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListNetworksCommandOutput>;
|
|
@@ -26,8 +26,10 @@ export declare const getRuntimeConfig: (config: ManagedBlockchainClientConfig) =
|
|
|
26
26
|
disableHostPrefix: boolean;
|
|
27
27
|
logger: import("@aws-sdk/types").Logger;
|
|
28
28
|
serviceId: string;
|
|
29
|
-
|
|
30
|
-
|
|
29
|
+
endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string>)) | undefined;
|
|
30
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
31
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
32
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
31
33
|
tls?: boolean | undefined;
|
|
32
34
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
33
35
|
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
@@ -26,8 +26,10 @@ export declare const getRuntimeConfig: (config: ManagedBlockchainClientConfig) =
|
|
|
26
26
|
disableHostPrefix: boolean;
|
|
27
27
|
logger: import("@aws-sdk/types").Logger;
|
|
28
28
|
serviceId: string;
|
|
29
|
-
|
|
30
|
-
|
|
29
|
+
endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string>)) | undefined;
|
|
30
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
31
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
32
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
31
33
|
tls?: boolean | undefined;
|
|
32
34
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
33
35
|
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
@@ -23,10 +23,12 @@ export declare const getRuntimeConfig: (config: ManagedBlockchainClientConfig) =
|
|
|
23
23
|
serviceId: string;
|
|
24
24
|
region: string | import("@aws-sdk/types").Provider<any>;
|
|
25
25
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
26
|
-
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
27
26
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
28
27
|
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
|
|
29
|
-
endpoint?: string | import("@aws-sdk/types").Endpoint
|
|
28
|
+
endpoint?: string | (import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> & import("@aws-sdk/types").Provider<string>) | (import("@aws-sdk/types").Endpoint & import("@aws-sdk/types").Provider<string>) | (import("@aws-sdk/types").EndpointV2 & import("@aws-sdk/types").Provider<string>) | (import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2> & import("@aws-sdk/types").Provider<string>) | undefined;
|
|
29
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
30
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
31
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
30
32
|
tls?: boolean | undefined;
|
|
31
33
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
32
34
|
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
@@ -6,8 +6,10 @@ import { ManagedBlockchainClientConfig } from "./ManagedBlockchainClient";
|
|
|
6
6
|
export declare const getRuntimeConfig: (config: ManagedBlockchainClientConfig) => {
|
|
7
7
|
apiVersion: string;
|
|
8
8
|
disableHostPrefix: boolean;
|
|
9
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
10
|
+
logger?: __Logger | undefined;
|
|
11
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
9
12
|
logger: __Logger;
|
|
10
|
-
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
11
13
|
serviceId: string;
|
|
12
14
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
13
15
|
};
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
CreateAccessorCommandInput,
|
|
4
|
+
CreateAccessorCommandOutput,
|
|
5
|
+
} from "./commands/CreateAccessorCommand";
|
|
2
6
|
import {
|
|
3
7
|
CreateMemberCommandInput,
|
|
4
8
|
CreateMemberCommandOutput,
|
|
@@ -15,6 +19,10 @@ import {
|
|
|
15
19
|
CreateProposalCommandInput,
|
|
16
20
|
CreateProposalCommandOutput,
|
|
17
21
|
} from "./commands/CreateProposalCommand";
|
|
22
|
+
import {
|
|
23
|
+
DeleteAccessorCommandInput,
|
|
24
|
+
DeleteAccessorCommandOutput,
|
|
25
|
+
} from "./commands/DeleteAccessorCommand";
|
|
18
26
|
import {
|
|
19
27
|
DeleteMemberCommandInput,
|
|
20
28
|
DeleteMemberCommandOutput,
|
|
@@ -23,6 +31,10 @@ import {
|
|
|
23
31
|
DeleteNodeCommandInput,
|
|
24
32
|
DeleteNodeCommandOutput,
|
|
25
33
|
} from "./commands/DeleteNodeCommand";
|
|
34
|
+
import {
|
|
35
|
+
GetAccessorCommandInput,
|
|
36
|
+
GetAccessorCommandOutput,
|
|
37
|
+
} from "./commands/GetAccessorCommand";
|
|
26
38
|
import {
|
|
27
39
|
GetMemberCommandInput,
|
|
28
40
|
GetMemberCommandOutput,
|
|
@@ -39,6 +51,10 @@ import {
|
|
|
39
51
|
GetProposalCommandInput,
|
|
40
52
|
GetProposalCommandOutput,
|
|
41
53
|
} from "./commands/GetProposalCommand";
|
|
54
|
+
import {
|
|
55
|
+
ListAccessorsCommandInput,
|
|
56
|
+
ListAccessorsCommandOutput,
|
|
57
|
+
} from "./commands/ListAccessorsCommand";
|
|
42
58
|
import {
|
|
43
59
|
ListInvitationsCommandInput,
|
|
44
60
|
ListInvitationsCommandOutput,
|
|
@@ -93,6 +109,19 @@ import {
|
|
|
93
109
|
} from "./commands/VoteOnProposalCommand";
|
|
94
110
|
import { ManagedBlockchainClient } from "./ManagedBlockchainClient";
|
|
95
111
|
export declare class ManagedBlockchain extends ManagedBlockchainClient {
|
|
112
|
+
createAccessor(
|
|
113
|
+
args: CreateAccessorCommandInput,
|
|
114
|
+
options?: __HttpHandlerOptions
|
|
115
|
+
): Promise<CreateAccessorCommandOutput>;
|
|
116
|
+
createAccessor(
|
|
117
|
+
args: CreateAccessorCommandInput,
|
|
118
|
+
cb: (err: any, data?: CreateAccessorCommandOutput) => void
|
|
119
|
+
): void;
|
|
120
|
+
createAccessor(
|
|
121
|
+
args: CreateAccessorCommandInput,
|
|
122
|
+
options: __HttpHandlerOptions,
|
|
123
|
+
cb: (err: any, data?: CreateAccessorCommandOutput) => void
|
|
124
|
+
): void;
|
|
96
125
|
createMember(
|
|
97
126
|
args: CreateMemberCommandInput,
|
|
98
127
|
options?: __HttpHandlerOptions
|
|
@@ -145,6 +174,19 @@ export declare class ManagedBlockchain extends ManagedBlockchainClient {
|
|
|
145
174
|
options: __HttpHandlerOptions,
|
|
146
175
|
cb: (err: any, data?: CreateProposalCommandOutput) => void
|
|
147
176
|
): void;
|
|
177
|
+
deleteAccessor(
|
|
178
|
+
args: DeleteAccessorCommandInput,
|
|
179
|
+
options?: __HttpHandlerOptions
|
|
180
|
+
): Promise<DeleteAccessorCommandOutput>;
|
|
181
|
+
deleteAccessor(
|
|
182
|
+
args: DeleteAccessorCommandInput,
|
|
183
|
+
cb: (err: any, data?: DeleteAccessorCommandOutput) => void
|
|
184
|
+
): void;
|
|
185
|
+
deleteAccessor(
|
|
186
|
+
args: DeleteAccessorCommandInput,
|
|
187
|
+
options: __HttpHandlerOptions,
|
|
188
|
+
cb: (err: any, data?: DeleteAccessorCommandOutput) => void
|
|
189
|
+
): void;
|
|
148
190
|
deleteMember(
|
|
149
191
|
args: DeleteMemberCommandInput,
|
|
150
192
|
options?: __HttpHandlerOptions
|
|
@@ -171,6 +213,19 @@ export declare class ManagedBlockchain extends ManagedBlockchainClient {
|
|
|
171
213
|
options: __HttpHandlerOptions,
|
|
172
214
|
cb: (err: any, data?: DeleteNodeCommandOutput) => void
|
|
173
215
|
): void;
|
|
216
|
+
getAccessor(
|
|
217
|
+
args: GetAccessorCommandInput,
|
|
218
|
+
options?: __HttpHandlerOptions
|
|
219
|
+
): Promise<GetAccessorCommandOutput>;
|
|
220
|
+
getAccessor(
|
|
221
|
+
args: GetAccessorCommandInput,
|
|
222
|
+
cb: (err: any, data?: GetAccessorCommandOutput) => void
|
|
223
|
+
): void;
|
|
224
|
+
getAccessor(
|
|
225
|
+
args: GetAccessorCommandInput,
|
|
226
|
+
options: __HttpHandlerOptions,
|
|
227
|
+
cb: (err: any, data?: GetAccessorCommandOutput) => void
|
|
228
|
+
): void;
|
|
174
229
|
getMember(
|
|
175
230
|
args: GetMemberCommandInput,
|
|
176
231
|
options?: __HttpHandlerOptions
|
|
@@ -223,6 +278,19 @@ export declare class ManagedBlockchain extends ManagedBlockchainClient {
|
|
|
223
278
|
options: __HttpHandlerOptions,
|
|
224
279
|
cb: (err: any, data?: GetProposalCommandOutput) => void
|
|
225
280
|
): void;
|
|
281
|
+
listAccessors(
|
|
282
|
+
args: ListAccessorsCommandInput,
|
|
283
|
+
options?: __HttpHandlerOptions
|
|
284
|
+
): Promise<ListAccessorsCommandOutput>;
|
|
285
|
+
listAccessors(
|
|
286
|
+
args: ListAccessorsCommandInput,
|
|
287
|
+
cb: (err: any, data?: ListAccessorsCommandOutput) => void
|
|
288
|
+
): void;
|
|
289
|
+
listAccessors(
|
|
290
|
+
args: ListAccessorsCommandInput,
|
|
291
|
+
options: __HttpHandlerOptions,
|
|
292
|
+
cb: (err: any, data?: ListAccessorsCommandOutput) => void
|
|
293
|
+
): void;
|
|
226
294
|
listInvitations(
|
|
227
295
|
args: ListInvitationsCommandInput,
|
|
228
296
|
options?: __HttpHandlerOptions
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import {
|
|
2
|
-
EndpointsInputConfig,
|
|
3
|
-
EndpointsResolvedConfig,
|
|
4
2
|
RegionInputConfig,
|
|
5
3
|
RegionResolvedConfig,
|
|
6
4
|
} from "@aws-sdk/config-resolver";
|
|
5
|
+
import {
|
|
6
|
+
EndpointInputConfig,
|
|
7
|
+
EndpointResolvedConfig,
|
|
8
|
+
} from "@aws-sdk/middleware-endpoint";
|
|
7
9
|
import {
|
|
8
10
|
HostHeaderInputConfig,
|
|
9
11
|
HostHeaderResolvedConfig,
|
|
@@ -37,11 +39,14 @@ import {
|
|
|
37
39
|
Logger as __Logger,
|
|
38
40
|
Provider as __Provider,
|
|
39
41
|
Provider,
|
|
40
|
-
RegionInfoProvider,
|
|
41
42
|
StreamCollector as __StreamCollector,
|
|
42
43
|
UrlParser as __UrlParser,
|
|
43
44
|
UserAgent as __UserAgent,
|
|
44
45
|
} from "@aws-sdk/types";
|
|
46
|
+
import {
|
|
47
|
+
CreateAccessorCommandInput,
|
|
48
|
+
CreateAccessorCommandOutput,
|
|
49
|
+
} from "./commands/CreateAccessorCommand";
|
|
45
50
|
import {
|
|
46
51
|
CreateMemberCommandInput,
|
|
47
52
|
CreateMemberCommandOutput,
|
|
@@ -58,6 +63,10 @@ import {
|
|
|
58
63
|
CreateProposalCommandInput,
|
|
59
64
|
CreateProposalCommandOutput,
|
|
60
65
|
} from "./commands/CreateProposalCommand";
|
|
66
|
+
import {
|
|
67
|
+
DeleteAccessorCommandInput,
|
|
68
|
+
DeleteAccessorCommandOutput,
|
|
69
|
+
} from "./commands/DeleteAccessorCommand";
|
|
61
70
|
import {
|
|
62
71
|
DeleteMemberCommandInput,
|
|
63
72
|
DeleteMemberCommandOutput,
|
|
@@ -66,6 +75,10 @@ import {
|
|
|
66
75
|
DeleteNodeCommandInput,
|
|
67
76
|
DeleteNodeCommandOutput,
|
|
68
77
|
} from "./commands/DeleteNodeCommand";
|
|
78
|
+
import {
|
|
79
|
+
GetAccessorCommandInput,
|
|
80
|
+
GetAccessorCommandOutput,
|
|
81
|
+
} from "./commands/GetAccessorCommand";
|
|
69
82
|
import {
|
|
70
83
|
GetMemberCommandInput,
|
|
71
84
|
GetMemberCommandOutput,
|
|
@@ -82,6 +95,10 @@ import {
|
|
|
82
95
|
GetProposalCommandInput,
|
|
83
96
|
GetProposalCommandOutput,
|
|
84
97
|
} from "./commands/GetProposalCommand";
|
|
98
|
+
import {
|
|
99
|
+
ListAccessorsCommandInput,
|
|
100
|
+
ListAccessorsCommandOutput,
|
|
101
|
+
} from "./commands/ListAccessorsCommand";
|
|
85
102
|
import {
|
|
86
103
|
ListInvitationsCommandInput,
|
|
87
104
|
ListInvitationsCommandOutput,
|
|
@@ -134,17 +151,26 @@ import {
|
|
|
134
151
|
VoteOnProposalCommandInput,
|
|
135
152
|
VoteOnProposalCommandOutput,
|
|
136
153
|
} from "./commands/VoteOnProposalCommand";
|
|
154
|
+
import {
|
|
155
|
+
ClientInputEndpointParameters,
|
|
156
|
+
ClientResolvedEndpointParameters,
|
|
157
|
+
EndpointParameters,
|
|
158
|
+
} from "./endpoint/EndpointParameters";
|
|
137
159
|
export declare type ServiceInputTypes =
|
|
160
|
+
| CreateAccessorCommandInput
|
|
138
161
|
| CreateMemberCommandInput
|
|
139
162
|
| CreateNetworkCommandInput
|
|
140
163
|
| CreateNodeCommandInput
|
|
141
164
|
| CreateProposalCommandInput
|
|
165
|
+
| DeleteAccessorCommandInput
|
|
142
166
|
| DeleteMemberCommandInput
|
|
143
167
|
| DeleteNodeCommandInput
|
|
168
|
+
| GetAccessorCommandInput
|
|
144
169
|
| GetMemberCommandInput
|
|
145
170
|
| GetNetworkCommandInput
|
|
146
171
|
| GetNodeCommandInput
|
|
147
172
|
| GetProposalCommandInput
|
|
173
|
+
| ListAccessorsCommandInput
|
|
148
174
|
| ListInvitationsCommandInput
|
|
149
175
|
| ListMembersCommandInput
|
|
150
176
|
| ListNetworksCommandInput
|
|
@@ -159,16 +185,20 @@ export declare type ServiceInputTypes =
|
|
|
159
185
|
| UpdateNodeCommandInput
|
|
160
186
|
| VoteOnProposalCommandInput;
|
|
161
187
|
export declare type ServiceOutputTypes =
|
|
188
|
+
| CreateAccessorCommandOutput
|
|
162
189
|
| CreateMemberCommandOutput
|
|
163
190
|
| CreateNetworkCommandOutput
|
|
164
191
|
| CreateNodeCommandOutput
|
|
165
192
|
| CreateProposalCommandOutput
|
|
193
|
+
| DeleteAccessorCommandOutput
|
|
166
194
|
| DeleteMemberCommandOutput
|
|
167
195
|
| DeleteNodeCommandOutput
|
|
196
|
+
| GetAccessorCommandOutput
|
|
168
197
|
| GetMemberCommandOutput
|
|
169
198
|
| GetNetworkCommandOutput
|
|
170
199
|
| GetNodeCommandOutput
|
|
171
200
|
| GetProposalCommandOutput
|
|
201
|
+
| ListAccessorsCommandOutput
|
|
172
202
|
| ListInvitationsCommandOutput
|
|
173
203
|
| ListMembersCommandOutput
|
|
174
204
|
| ListNetworksCommandOutput
|
|
@@ -203,7 +233,6 @@ export interface ClientDefaults
|
|
|
203
233
|
serviceId?: string;
|
|
204
234
|
region?: string | __Provider<string>;
|
|
205
235
|
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
206
|
-
regionInfoProvider?: RegionInfoProvider;
|
|
207
236
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
208
237
|
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
209
238
|
}
|
|
@@ -212,22 +241,24 @@ declare type ManagedBlockchainClientConfigType = Partial<
|
|
|
212
241
|
> &
|
|
213
242
|
ClientDefaults &
|
|
214
243
|
RegionInputConfig &
|
|
215
|
-
|
|
244
|
+
EndpointInputConfig<EndpointParameters> &
|
|
216
245
|
RetryInputConfig &
|
|
217
246
|
HostHeaderInputConfig &
|
|
218
247
|
AwsAuthInputConfig &
|
|
219
|
-
UserAgentInputConfig
|
|
248
|
+
UserAgentInputConfig &
|
|
249
|
+
ClientInputEndpointParameters;
|
|
220
250
|
export interface ManagedBlockchainClientConfig
|
|
221
251
|
extends ManagedBlockchainClientConfigType {}
|
|
222
252
|
declare type ManagedBlockchainClientResolvedConfigType =
|
|
223
253
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
224
254
|
Required<ClientDefaults> &
|
|
225
255
|
RegionResolvedConfig &
|
|
226
|
-
|
|
256
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
227
257
|
RetryResolvedConfig &
|
|
228
258
|
HostHeaderResolvedConfig &
|
|
229
259
|
AwsAuthResolvedConfig &
|
|
230
|
-
UserAgentResolvedConfig
|
|
260
|
+
UserAgentResolvedConfig &
|
|
261
|
+
ClientResolvedEndpointParameters;
|
|
231
262
|
export interface ManagedBlockchainClientResolvedConfig
|
|
232
263
|
extends ManagedBlockchainClientResolvedConfigType {}
|
|
233
264
|
export declare class ManagedBlockchainClient extends __Client<
|
|
@@ -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 { CreateAccessorInput, CreateAccessorOutput } from "../models/models_0";
|
|
15
|
+
export interface CreateAccessorCommandInput extends CreateAccessorInput {}
|
|
16
|
+
export interface CreateAccessorCommandOutput
|
|
17
|
+
extends CreateAccessorOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class CreateAccessorCommand extends $Command<
|
|
20
|
+
CreateAccessorCommandInput,
|
|
21
|
+
CreateAccessorCommandOutput,
|
|
22
|
+
ManagedBlockchainClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: CreateAccessorCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: CreateAccessorCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: ManagedBlockchainClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<CreateAccessorCommandInput, CreateAccessorCommandOutput>;
|
|
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,
|
|
@@ -21,6 +22,7 @@ export declare class CreateMemberCommand extends $Command<
|
|
|
21
22
|
ManagedBlockchainClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: CreateMemberCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: CreateMemberCommandInput);
|
|
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 CreateNetworkCommand extends $Command<
|
|
|
21
22
|
ManagedBlockchainClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: CreateNetworkCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: CreateNetworkCommandInput);
|
|
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 CreateNodeCommand extends $Command<
|
|
|
21
22
|
ManagedBlockchainClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: CreateNodeCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: CreateNodeCommandInput);
|
|
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 CreateProposalCommand extends $Command<
|
|
|
21
22
|
ManagedBlockchainClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: CreateProposalCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: CreateProposalCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -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 { DeleteAccessorInput, DeleteAccessorOutput } from "../models/models_0";
|
|
15
|
+
export interface DeleteAccessorCommandInput extends DeleteAccessorInput {}
|
|
16
|
+
export interface DeleteAccessorCommandOutput
|
|
17
|
+
extends DeleteAccessorOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class DeleteAccessorCommand extends $Command<
|
|
20
|
+
DeleteAccessorCommandInput,
|
|
21
|
+
DeleteAccessorCommandOutput,
|
|
22
|
+
ManagedBlockchainClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: DeleteAccessorCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: DeleteAccessorCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: ManagedBlockchainClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<DeleteAccessorCommandInput, DeleteAccessorCommandOutput>;
|
|
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,
|
|
@@ -21,6 +22,7 @@ export declare class DeleteMemberCommand extends $Command<
|
|
|
21
22
|
ManagedBlockchainClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: DeleteMemberCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: DeleteMemberCommandInput);
|
|
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 DeleteNodeCommand extends $Command<
|
|
|
21
22
|
ManagedBlockchainClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: DeleteNodeCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: DeleteNodeCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -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 { GetAccessorInput, GetAccessorOutput } from "../models/models_0";
|
|
15
|
+
export interface GetAccessorCommandInput extends GetAccessorInput {}
|
|
16
|
+
export interface GetAccessorCommandOutput
|
|
17
|
+
extends GetAccessorOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class GetAccessorCommand extends $Command<
|
|
20
|
+
GetAccessorCommandInput,
|
|
21
|
+
GetAccessorCommandOutput,
|
|
22
|
+
ManagedBlockchainClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: GetAccessorCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: GetAccessorCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: ManagedBlockchainClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<GetAccessorCommandInput, GetAccessorCommandOutput>;
|
|
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,
|
|
@@ -21,6 +22,7 @@ export declare class GetMemberCommand extends $Command<
|
|
|
21
22
|
ManagedBlockchainClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: GetMemberCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: GetMemberCommandInput);
|
|
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 GetNetworkCommand extends $Command<
|
|
|
21
22
|
ManagedBlockchainClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: GetNetworkCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: GetNetworkCommandInput);
|
|
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,
|
|
@@ -19,6 +20,7 @@ export declare class GetNodeCommand extends $Command<
|
|
|
19
20
|
ManagedBlockchainClientResolvedConfig
|
|
20
21
|
> {
|
|
21
22
|
readonly input: GetNodeCommandInput;
|
|
23
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
22
24
|
constructor(input: GetNodeCommandInput);
|
|
23
25
|
resolveMiddleware(
|
|
24
26
|
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 GetProposalCommand extends $Command<
|
|
|
21
22
|
ManagedBlockchainClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: GetProposalCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: GetProposalCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|