@aws-sdk/client-managedblockchain 3.169.0 → 3.171.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 (46) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/ManagedBlockchain.d.ts +395 -120
  3. package/dist-types/ts3.4/ManagedBlockchainClient.d.ts +243 -96
  4. package/dist-types/ts3.4/commands/CreateMemberCommand.d.ts +32 -17
  5. package/dist-types/ts3.4/commands/CreateNetworkCommand.d.ts +32 -17
  6. package/dist-types/ts3.4/commands/CreateNodeCommand.d.ts +32 -17
  7. package/dist-types/ts3.4/commands/CreateProposalCommand.d.ts +32 -17
  8. package/dist-types/ts3.4/commands/DeleteMemberCommand.d.ts +32 -17
  9. package/dist-types/ts3.4/commands/DeleteNodeCommand.d.ts +32 -17
  10. package/dist-types/ts3.4/commands/GetMemberCommand.d.ts +32 -17
  11. package/dist-types/ts3.4/commands/GetNetworkCommand.d.ts +32 -17
  12. package/dist-types/ts3.4/commands/GetNodeCommand.d.ts +30 -17
  13. package/dist-types/ts3.4/commands/GetProposalCommand.d.ts +32 -17
  14. package/dist-types/ts3.4/commands/ListInvitationsCommand.d.ts +35 -17
  15. package/dist-types/ts3.4/commands/ListMembersCommand.d.ts +32 -17
  16. package/dist-types/ts3.4/commands/ListNetworksCommand.d.ts +32 -17
  17. package/dist-types/ts3.4/commands/ListNodesCommand.d.ts +32 -17
  18. package/dist-types/ts3.4/commands/ListProposalVotesCommand.d.ts +35 -17
  19. package/dist-types/ts3.4/commands/ListProposalsCommand.d.ts +32 -17
  20. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  21. package/dist-types/ts3.4/commands/RejectInvitationCommand.d.ts +35 -17
  22. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  23. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
  24. package/dist-types/ts3.4/commands/UpdateMemberCommand.d.ts +32 -17
  25. package/dist-types/ts3.4/commands/UpdateNodeCommand.d.ts +32 -17
  26. package/dist-types/ts3.4/commands/VoteOnProposalCommand.d.ts +32 -17
  27. package/dist-types/ts3.4/commands/index.d.ts +23 -23
  28. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  29. package/dist-types/ts3.4/index.d.ts +6 -6
  30. package/dist-types/ts3.4/models/ManagedBlockchainServiceException.d.ts +7 -6
  31. package/dist-types/ts3.4/models/index.d.ts +1 -1
  32. package/dist-types/ts3.4/models/models_0.d.ts +751 -970
  33. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  34. package/dist-types/ts3.4/pagination/ListInvitationsPaginator.d.ts +11 -4
  35. package/dist-types/ts3.4/pagination/ListMembersPaginator.d.ts +11 -4
  36. package/dist-types/ts3.4/pagination/ListNetworksPaginator.d.ts +11 -4
  37. package/dist-types/ts3.4/pagination/ListNodesPaginator.d.ts +11 -4
  38. package/dist-types/ts3.4/pagination/ListProposalVotesPaginator.d.ts +11 -4
  39. package/dist-types/ts3.4/pagination/ListProposalsPaginator.d.ts +11 -4
  40. package/dist-types/ts3.4/pagination/index.d.ts +7 -7
  41. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +281 -71
  42. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -38
  43. package/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
  44. package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
  45. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
  46. package/package.json +34 -34
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
4
- import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
5
- export interface TagResourceCommandInput extends TagResourceRequest {
6
- }
7
- export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, ManagedBlockchainClientResolvedConfig> {
11
- readonly input: TagResourceCommandInput;
12
- constructor(input: TagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ManagedBlockchainClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ManagedBlockchainClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ManagedBlockchainClient";
13
+ import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
14
+ export interface TagResourceCommandInput extends TagResourceRequest {}
15
+ export interface TagResourceCommandOutput
16
+ extends TagResourceResponse,
17
+ __MetadataBearer {}
18
+ export declare class TagResourceCommand extends $Command<
19
+ TagResourceCommandInput,
20
+ TagResourceCommandOutput,
21
+ ManagedBlockchainClientResolvedConfig
22
+ > {
23
+ readonly input: TagResourceCommandInput;
24
+ constructor(input: TagResourceCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: ManagedBlockchainClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,35 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
4
- import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
5
- export interface UntagResourceCommandInput extends UntagResourceRequest {
6
- }
7
- export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, ManagedBlockchainClientResolvedConfig> {
11
- readonly input: UntagResourceCommandInput;
12
- constructor(input: UntagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ManagedBlockchainClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ManagedBlockchainClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ManagedBlockchainClient";
13
+ import {
14
+ UntagResourceRequest,
15
+ UntagResourceResponse,
16
+ } from "../models/models_0";
17
+ export interface UntagResourceCommandInput extends UntagResourceRequest {}
18
+ export interface UntagResourceCommandOutput
19
+ extends UntagResourceResponse,
20
+ __MetadataBearer {}
21
+ export declare class UntagResourceCommand extends $Command<
22
+ UntagResourceCommandInput,
23
+ UntagResourceCommandOutput,
24
+ ManagedBlockchainClientResolvedConfig
25
+ > {
26
+ readonly input: UntagResourceCommandInput;
27
+ constructor(input: UntagResourceCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: ManagedBlockchainClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
4
- import { UpdateMemberInput, UpdateMemberOutput } from "../models/models_0";
5
- export interface UpdateMemberCommandInput extends UpdateMemberInput {
6
- }
7
- export interface UpdateMemberCommandOutput extends UpdateMemberOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateMemberCommand extends $Command<UpdateMemberCommandInput, UpdateMemberCommandOutput, ManagedBlockchainClientResolvedConfig> {
11
- readonly input: UpdateMemberCommandInput;
12
- constructor(input: UpdateMemberCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ManagedBlockchainClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateMemberCommandInput, UpdateMemberCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ManagedBlockchainClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ManagedBlockchainClient";
13
+ import { UpdateMemberInput, UpdateMemberOutput } from "../models/models_0";
14
+ export interface UpdateMemberCommandInput extends UpdateMemberInput {}
15
+ export interface UpdateMemberCommandOutput
16
+ extends UpdateMemberOutput,
17
+ __MetadataBearer {}
18
+ export declare class UpdateMemberCommand extends $Command<
19
+ UpdateMemberCommandInput,
20
+ UpdateMemberCommandOutput,
21
+ ManagedBlockchainClientResolvedConfig
22
+ > {
23
+ readonly input: UpdateMemberCommandInput;
24
+ constructor(input: UpdateMemberCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: ManagedBlockchainClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<UpdateMemberCommandInput, UpdateMemberCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
4
- import { UpdateNodeInput, UpdateNodeOutput } from "../models/models_0";
5
- export interface UpdateNodeCommandInput extends UpdateNodeInput {
6
- }
7
- export interface UpdateNodeCommandOutput extends UpdateNodeOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateNodeCommand extends $Command<UpdateNodeCommandInput, UpdateNodeCommandOutput, ManagedBlockchainClientResolvedConfig> {
11
- readonly input: UpdateNodeCommandInput;
12
- constructor(input: UpdateNodeCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ManagedBlockchainClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateNodeCommandInput, UpdateNodeCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ManagedBlockchainClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ManagedBlockchainClient";
13
+ import { UpdateNodeInput, UpdateNodeOutput } from "../models/models_0";
14
+ export interface UpdateNodeCommandInput extends UpdateNodeInput {}
15
+ export interface UpdateNodeCommandOutput
16
+ extends UpdateNodeOutput,
17
+ __MetadataBearer {}
18
+ export declare class UpdateNodeCommand extends $Command<
19
+ UpdateNodeCommandInput,
20
+ UpdateNodeCommandOutput,
21
+ ManagedBlockchainClientResolvedConfig
22
+ > {
23
+ readonly input: UpdateNodeCommandInput;
24
+ constructor(input: UpdateNodeCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: ManagedBlockchainClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<UpdateNodeCommandInput, UpdateNodeCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ManagedBlockchainClient";
4
- import { VoteOnProposalInput, VoteOnProposalOutput } from "../models/models_0";
5
- export interface VoteOnProposalCommandInput extends VoteOnProposalInput {
6
- }
7
- export interface VoteOnProposalCommandOutput extends VoteOnProposalOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class VoteOnProposalCommand extends $Command<VoteOnProposalCommandInput, VoteOnProposalCommandOutput, ManagedBlockchainClientResolvedConfig> {
11
- readonly input: VoteOnProposalCommandInput;
12
- constructor(input: VoteOnProposalCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ManagedBlockchainClientResolvedConfig, options?: __HttpHandlerOptions): Handler<VoteOnProposalCommandInput, VoteOnProposalCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ManagedBlockchainClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ManagedBlockchainClient";
13
+ import { VoteOnProposalInput, VoteOnProposalOutput } from "../models/models_0";
14
+ export interface VoteOnProposalCommandInput extends VoteOnProposalInput {}
15
+ export interface VoteOnProposalCommandOutput
16
+ extends VoteOnProposalOutput,
17
+ __MetadataBearer {}
18
+ export declare class VoteOnProposalCommand extends $Command<
19
+ VoteOnProposalCommandInput,
20
+ VoteOnProposalCommandOutput,
21
+ ManagedBlockchainClientResolvedConfig
22
+ > {
23
+ readonly input: VoteOnProposalCommandInput;
24
+ constructor(input: VoteOnProposalCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: ManagedBlockchainClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<VoteOnProposalCommandInput, VoteOnProposalCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,23 +1,23 @@
1
- export * from "./CreateMemberCommand";
2
- export * from "./CreateNetworkCommand";
3
- export * from "./CreateNodeCommand";
4
- export * from "./CreateProposalCommand";
5
- export * from "./DeleteMemberCommand";
6
- export * from "./DeleteNodeCommand";
7
- export * from "./GetMemberCommand";
8
- export * from "./GetNetworkCommand";
9
- export * from "./GetNodeCommand";
10
- export * from "./GetProposalCommand";
11
- export * from "./ListInvitationsCommand";
12
- export * from "./ListMembersCommand";
13
- export * from "./ListNetworksCommand";
14
- export * from "./ListNodesCommand";
15
- export * from "./ListProposalVotesCommand";
16
- export * from "./ListProposalsCommand";
17
- export * from "./ListTagsForResourceCommand";
18
- export * from "./RejectInvitationCommand";
19
- export * from "./TagResourceCommand";
20
- export * from "./UntagResourceCommand";
21
- export * from "./UpdateMemberCommand";
22
- export * from "./UpdateNodeCommand";
23
- export * from "./VoteOnProposalCommand";
1
+ export * from "./CreateMemberCommand";
2
+ export * from "./CreateNetworkCommand";
3
+ export * from "./CreateNodeCommand";
4
+ export * from "./CreateProposalCommand";
5
+ export * from "./DeleteMemberCommand";
6
+ export * from "./DeleteNodeCommand";
7
+ export * from "./GetMemberCommand";
8
+ export * from "./GetNetworkCommand";
9
+ export * from "./GetNodeCommand";
10
+ export * from "./GetProposalCommand";
11
+ export * from "./ListInvitationsCommand";
12
+ export * from "./ListMembersCommand";
13
+ export * from "./ListNetworksCommand";
14
+ export * from "./ListNodesCommand";
15
+ export * from "./ListProposalVotesCommand";
16
+ export * from "./ListProposalsCommand";
17
+ export * from "./ListTagsForResourceCommand";
18
+ export * from "./RejectInvitationCommand";
19
+ export * from "./TagResourceCommand";
20
+ export * from "./UntagResourceCommand";
21
+ export * from "./UpdateMemberCommand";
22
+ export * from "./UpdateNodeCommand";
23
+ export * from "./VoteOnProposalCommand";
@@ -1,2 +1,2 @@
1
- import { RegionInfoProvider } from "@aws-sdk/types";
2
- export declare const defaultRegionInfoProvider: RegionInfoProvider;
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -1,6 +1,6 @@
1
- export * from "./ManagedBlockchain";
2
- export * from "./ManagedBlockchainClient";
3
- export * from "./commands";
4
- export * from "./models";
5
- export * from "./pagination";
6
- export { ManagedBlockchainServiceException } from "./models/ManagedBlockchainServiceException";
1
+ export * from "./ManagedBlockchain";
2
+ export * from "./ManagedBlockchainClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export { ManagedBlockchainServiceException } from "./models/ManagedBlockchainServiceException";
@@ -1,6 +1,7 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class ManagedBlockchainServiceException extends __ServiceException {
4
-
5
- constructor(options: __ServiceExceptionOptions);
6
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+ export declare class ManagedBlockchainServiceException extends __ServiceException {
6
+ constructor(options: __ServiceExceptionOptions);
7
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";