@aws-sdk/client-managedblockchain 3.300.0 → 3.301.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/dist-types/commands/CreateAccessorCommand.d.ts +2 -2
- package/dist-types/commands/CreateMemberCommand.d.ts +9 -9
- package/dist-types/commands/CreateNetworkCommand.d.ts +13 -13
- package/dist-types/commands/CreateNodeCommand.d.ts +7 -7
- package/dist-types/commands/CreateProposalCommand.d.ts +7 -7
- package/dist-types/commands/DeleteAccessorCommand.d.ts +1 -1
- package/dist-types/commands/DeleteMemberCommand.d.ts +1 -1
- package/dist-types/commands/DeleteNodeCommand.d.ts +1 -1
- package/dist-types/commands/GetAccessorCommand.d.ts +1 -1
- package/dist-types/commands/GetMemberCommand.d.ts +1 -1
- package/dist-types/commands/GetNetworkCommand.d.ts +1 -1
- package/dist-types/commands/GetNodeCommand.d.ts +1 -1
- package/dist-types/commands/GetProposalCommand.d.ts +1 -1
- package/dist-types/commands/ListAccessorsCommand.d.ts +1 -1
- package/dist-types/commands/ListInvitationsCommand.d.ts +1 -1
- package/dist-types/commands/ListMembersCommand.d.ts +1 -1
- package/dist-types/commands/ListNetworksCommand.d.ts +1 -1
- package/dist-types/commands/ListNodesCommand.d.ts +1 -1
- package/dist-types/commands/ListProposalVotesCommand.d.ts +1 -1
- package/dist-types/commands/ListProposalsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/RejectInvitationCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateMemberCommand.d.ts +5 -5
- package/dist-types/commands/UpdateNodeCommand.d.ts +5 -5
- package/dist-types/commands/VoteOnProposalCommand.d.ts +1 -1
- package/package.json +3 -3
|
@@ -27,10 +27,10 @@ export interface CreateAccessorCommandOutput extends CreateAccessorOutput, __Met
|
|
|
27
27
|
* import { ManagedBlockchainClient, CreateAccessorCommand } from "@aws-sdk/client-managedblockchain"; // ES Modules import
|
|
28
28
|
* // const { ManagedBlockchainClient, CreateAccessorCommand } = require("@aws-sdk/client-managedblockchain"); // CommonJS import
|
|
29
29
|
* const client = new ManagedBlockchainClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // CreateAccessorInput
|
|
31
31
|
* ClientRequestToken: "STRING_VALUE", // required
|
|
32
32
|
* AccessorType: "BILLING_TOKEN", // required
|
|
33
|
-
* Tags: {
|
|
33
|
+
* Tags: { // InputTagMap
|
|
34
34
|
* "<keys>": "STRING_VALUE",
|
|
35
35
|
* },
|
|
36
36
|
* };
|
|
@@ -27,29 +27,29 @@ export interface CreateMemberCommandOutput extends CreateMemberOutput, __Metadat
|
|
|
27
27
|
* import { ManagedBlockchainClient, CreateMemberCommand } from "@aws-sdk/client-managedblockchain"; // ES Modules import
|
|
28
28
|
* // const { ManagedBlockchainClient, CreateMemberCommand } = require("@aws-sdk/client-managedblockchain"); // CommonJS import
|
|
29
29
|
* const client = new ManagedBlockchainClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // CreateMemberInput
|
|
31
31
|
* ClientRequestToken: "STRING_VALUE", // required
|
|
32
32
|
* InvitationId: "STRING_VALUE", // required
|
|
33
33
|
* NetworkId: "STRING_VALUE", // required
|
|
34
|
-
* MemberConfiguration: {
|
|
34
|
+
* MemberConfiguration: { // MemberConfiguration
|
|
35
35
|
* Name: "STRING_VALUE", // required
|
|
36
36
|
* Description: "STRING_VALUE",
|
|
37
|
-
* FrameworkConfiguration: {
|
|
38
|
-
* Fabric: {
|
|
37
|
+
* FrameworkConfiguration: { // MemberFrameworkConfiguration
|
|
38
|
+
* Fabric: { // MemberFabricConfiguration
|
|
39
39
|
* AdminUsername: "STRING_VALUE", // required
|
|
40
40
|
* AdminPassword: "STRING_VALUE", // required
|
|
41
41
|
* },
|
|
42
42
|
* },
|
|
43
|
-
* LogPublishingConfiguration: {
|
|
44
|
-
* Fabric: {
|
|
45
|
-
* CaLogs: {
|
|
46
|
-
* Cloudwatch: {
|
|
43
|
+
* LogPublishingConfiguration: { // MemberLogPublishingConfiguration
|
|
44
|
+
* Fabric: { // MemberFabricLogPublishingConfiguration
|
|
45
|
+
* CaLogs: { // LogConfigurations
|
|
46
|
+
* Cloudwatch: { // LogConfiguration
|
|
47
47
|
* Enabled: true || false,
|
|
48
48
|
* },
|
|
49
49
|
* },
|
|
50
50
|
* },
|
|
51
51
|
* },
|
|
52
|
-
* Tags: {
|
|
52
|
+
* Tags: { // InputTagMap
|
|
53
53
|
* "<keys>": "STRING_VALUE",
|
|
54
54
|
* },
|
|
55
55
|
* KmsKeyArn: "STRING_VALUE",
|
|
@@ -27,43 +27,43 @@ export interface CreateNetworkCommandOutput extends CreateNetworkOutput, __Metad
|
|
|
27
27
|
* import { ManagedBlockchainClient, CreateNetworkCommand } from "@aws-sdk/client-managedblockchain"; // ES Modules import
|
|
28
28
|
* // const { ManagedBlockchainClient, CreateNetworkCommand } = require("@aws-sdk/client-managedblockchain"); // CommonJS import
|
|
29
29
|
* const client = new ManagedBlockchainClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // CreateNetworkInput
|
|
31
31
|
* ClientRequestToken: "STRING_VALUE", // required
|
|
32
32
|
* Name: "STRING_VALUE", // required
|
|
33
33
|
* Description: "STRING_VALUE",
|
|
34
34
|
* Framework: "HYPERLEDGER_FABRIC" || "ETHEREUM", // required
|
|
35
35
|
* FrameworkVersion: "STRING_VALUE", // required
|
|
36
|
-
* FrameworkConfiguration: {
|
|
37
|
-
* Fabric: {
|
|
36
|
+
* FrameworkConfiguration: { // NetworkFrameworkConfiguration
|
|
37
|
+
* Fabric: { // NetworkFabricConfiguration
|
|
38
38
|
* Edition: "STARTER" || "STANDARD", // required
|
|
39
39
|
* },
|
|
40
40
|
* },
|
|
41
|
-
* VotingPolicy: {
|
|
42
|
-
* ApprovalThresholdPolicy: {
|
|
41
|
+
* VotingPolicy: { // VotingPolicy
|
|
42
|
+
* ApprovalThresholdPolicy: { // ApprovalThresholdPolicy
|
|
43
43
|
* ThresholdPercentage: Number("int"),
|
|
44
44
|
* ProposalDurationInHours: Number("int"),
|
|
45
45
|
* ThresholdComparator: "GREATER_THAN" || "GREATER_THAN_OR_EQUAL_TO",
|
|
46
46
|
* },
|
|
47
47
|
* },
|
|
48
|
-
* MemberConfiguration: {
|
|
48
|
+
* MemberConfiguration: { // MemberConfiguration
|
|
49
49
|
* Name: "STRING_VALUE", // required
|
|
50
50
|
* Description: "STRING_VALUE",
|
|
51
|
-
* FrameworkConfiguration: {
|
|
52
|
-
* Fabric: {
|
|
51
|
+
* FrameworkConfiguration: { // MemberFrameworkConfiguration
|
|
52
|
+
* Fabric: { // MemberFabricConfiguration
|
|
53
53
|
* AdminUsername: "STRING_VALUE", // required
|
|
54
54
|
* AdminPassword: "STRING_VALUE", // required
|
|
55
55
|
* },
|
|
56
56
|
* },
|
|
57
|
-
* LogPublishingConfiguration: {
|
|
58
|
-
* Fabric: {
|
|
59
|
-
* CaLogs: {
|
|
60
|
-
* Cloudwatch: {
|
|
57
|
+
* LogPublishingConfiguration: { // MemberLogPublishingConfiguration
|
|
58
|
+
* Fabric: { // MemberFabricLogPublishingConfiguration
|
|
59
|
+
* CaLogs: { // LogConfigurations
|
|
60
|
+
* Cloudwatch: { // LogConfiguration
|
|
61
61
|
* Enabled: true || false,
|
|
62
62
|
* },
|
|
63
63
|
* },
|
|
64
64
|
* },
|
|
65
65
|
* },
|
|
66
|
-
* Tags: {
|
|
66
|
+
* Tags: { // InputTagMap
|
|
67
67
|
* "<keys>": "STRING_VALUE",
|
|
68
68
|
* },
|
|
69
69
|
* KmsKeyArn: "STRING_VALUE",
|
|
@@ -27,17 +27,17 @@ export interface CreateNodeCommandOutput extends CreateNodeOutput, __MetadataBea
|
|
|
27
27
|
* import { ManagedBlockchainClient, CreateNodeCommand } from "@aws-sdk/client-managedblockchain"; // ES Modules import
|
|
28
28
|
* // const { ManagedBlockchainClient, CreateNodeCommand } = require("@aws-sdk/client-managedblockchain"); // CommonJS import
|
|
29
29
|
* const client = new ManagedBlockchainClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // CreateNodeInput
|
|
31
31
|
* ClientRequestToken: "STRING_VALUE", // required
|
|
32
32
|
* NetworkId: "STRING_VALUE", // required
|
|
33
33
|
* MemberId: "STRING_VALUE",
|
|
34
|
-
* NodeConfiguration: {
|
|
34
|
+
* NodeConfiguration: { // NodeConfiguration
|
|
35
35
|
* InstanceType: "STRING_VALUE", // required
|
|
36
36
|
* AvailabilityZone: "STRING_VALUE",
|
|
37
|
-
* LogPublishingConfiguration: {
|
|
38
|
-
* Fabric: {
|
|
39
|
-
* ChaincodeLogs: {
|
|
40
|
-
* Cloudwatch: {
|
|
37
|
+
* LogPublishingConfiguration: { // NodeLogPublishingConfiguration
|
|
38
|
+
* Fabric: { // NodeFabricLogPublishingConfiguration
|
|
39
|
+
* ChaincodeLogs: { // LogConfigurations
|
|
40
|
+
* Cloudwatch: { // LogConfiguration
|
|
41
41
|
* Enabled: true || false,
|
|
42
42
|
* },
|
|
43
43
|
* },
|
|
@@ -50,7 +50,7 @@ export interface CreateNodeCommandOutput extends CreateNodeOutput, __MetadataBea
|
|
|
50
50
|
* },
|
|
51
51
|
* StateDB: "LevelDB" || "CouchDB",
|
|
52
52
|
* },
|
|
53
|
-
* Tags: {
|
|
53
|
+
* Tags: { // InputTagMap
|
|
54
54
|
* "<keys>": "STRING_VALUE",
|
|
55
55
|
* },
|
|
56
56
|
* };
|
|
@@ -27,24 +27,24 @@ export interface CreateProposalCommandOutput extends CreateProposalOutput, __Met
|
|
|
27
27
|
* import { ManagedBlockchainClient, CreateProposalCommand } from "@aws-sdk/client-managedblockchain"; // ES Modules import
|
|
28
28
|
* // const { ManagedBlockchainClient, CreateProposalCommand } = require("@aws-sdk/client-managedblockchain"); // CommonJS import
|
|
29
29
|
* const client = new ManagedBlockchainClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // CreateProposalInput
|
|
31
31
|
* ClientRequestToken: "STRING_VALUE", // required
|
|
32
32
|
* NetworkId: "STRING_VALUE", // required
|
|
33
33
|
* MemberId: "STRING_VALUE", // required
|
|
34
|
-
* Actions: {
|
|
35
|
-
* Invitations: [
|
|
36
|
-
* {
|
|
34
|
+
* Actions: { // ProposalActions
|
|
35
|
+
* Invitations: [ // InviteActionList
|
|
36
|
+
* { // InviteAction
|
|
37
37
|
* Principal: "STRING_VALUE", // required
|
|
38
38
|
* },
|
|
39
39
|
* ],
|
|
40
|
-
* Removals: [
|
|
41
|
-
* {
|
|
40
|
+
* Removals: [ // RemoveActionList
|
|
41
|
+
* { // RemoveAction
|
|
42
42
|
* MemberId: "STRING_VALUE", // required
|
|
43
43
|
* },
|
|
44
44
|
* ],
|
|
45
45
|
* },
|
|
46
46
|
* Description: "STRING_VALUE",
|
|
47
|
-
* Tags: {
|
|
47
|
+
* Tags: { // InputTagMap
|
|
48
48
|
* "<keys>": "STRING_VALUE",
|
|
49
49
|
* },
|
|
50
50
|
* };
|
|
@@ -32,7 +32,7 @@ export interface DeleteAccessorCommandOutput extends DeleteAccessorOutput, __Met
|
|
|
32
32
|
* import { ManagedBlockchainClient, DeleteAccessorCommand } from "@aws-sdk/client-managedblockchain"; // ES Modules import
|
|
33
33
|
* // const { ManagedBlockchainClient, DeleteAccessorCommand } = require("@aws-sdk/client-managedblockchain"); // CommonJS import
|
|
34
34
|
* const client = new ManagedBlockchainClient(config);
|
|
35
|
-
* const input = {
|
|
35
|
+
* const input = { // DeleteAccessorInput
|
|
36
36
|
* AccessorId: "STRING_VALUE", // required
|
|
37
37
|
* };
|
|
38
38
|
* const command = new DeleteAccessorCommand(input);
|
|
@@ -27,7 +27,7 @@ export interface DeleteMemberCommandOutput extends DeleteMemberOutput, __Metadat
|
|
|
27
27
|
* import { ManagedBlockchainClient, DeleteMemberCommand } from "@aws-sdk/client-managedblockchain"; // ES Modules import
|
|
28
28
|
* // const { ManagedBlockchainClient, DeleteMemberCommand } = require("@aws-sdk/client-managedblockchain"); // CommonJS import
|
|
29
29
|
* const client = new ManagedBlockchainClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // DeleteMemberInput
|
|
31
31
|
* NetworkId: "STRING_VALUE", // required
|
|
32
32
|
* MemberId: "STRING_VALUE", // required
|
|
33
33
|
* };
|
|
@@ -27,7 +27,7 @@ export interface DeleteNodeCommandOutput extends DeleteNodeOutput, __MetadataBea
|
|
|
27
27
|
* import { ManagedBlockchainClient, DeleteNodeCommand } from "@aws-sdk/client-managedblockchain"; // ES Modules import
|
|
28
28
|
* // const { ManagedBlockchainClient, DeleteNodeCommand } = require("@aws-sdk/client-managedblockchain"); // CommonJS import
|
|
29
29
|
* const client = new ManagedBlockchainClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // DeleteNodeInput
|
|
31
31
|
* NetworkId: "STRING_VALUE", // required
|
|
32
32
|
* MemberId: "STRING_VALUE",
|
|
33
33
|
* NodeId: "STRING_VALUE", // required
|
|
@@ -27,7 +27,7 @@ export interface GetAccessorCommandOutput extends GetAccessorOutput, __MetadataB
|
|
|
27
27
|
* import { ManagedBlockchainClient, GetAccessorCommand } from "@aws-sdk/client-managedblockchain"; // ES Modules import
|
|
28
28
|
* // const { ManagedBlockchainClient, GetAccessorCommand } = require("@aws-sdk/client-managedblockchain"); // CommonJS import
|
|
29
29
|
* const client = new ManagedBlockchainClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // GetAccessorInput
|
|
31
31
|
* AccessorId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetAccessorCommand(input);
|
|
@@ -27,7 +27,7 @@ export interface GetMemberCommandOutput extends GetMemberOutput, __MetadataBeare
|
|
|
27
27
|
* import { ManagedBlockchainClient, GetMemberCommand } from "@aws-sdk/client-managedblockchain"; // ES Modules import
|
|
28
28
|
* // const { ManagedBlockchainClient, GetMemberCommand } = require("@aws-sdk/client-managedblockchain"); // CommonJS import
|
|
29
29
|
* const client = new ManagedBlockchainClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // GetMemberInput
|
|
31
31
|
* NetworkId: "STRING_VALUE", // required
|
|
32
32
|
* MemberId: "STRING_VALUE", // required
|
|
33
33
|
* };
|
|
@@ -27,7 +27,7 @@ export interface GetNetworkCommandOutput extends GetNetworkOutput, __MetadataBea
|
|
|
27
27
|
* import { ManagedBlockchainClient, GetNetworkCommand } from "@aws-sdk/client-managedblockchain"; // ES Modules import
|
|
28
28
|
* // const { ManagedBlockchainClient, GetNetworkCommand } = require("@aws-sdk/client-managedblockchain"); // CommonJS import
|
|
29
29
|
* const client = new ManagedBlockchainClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // GetNetworkInput
|
|
31
31
|
* NetworkId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetNetworkCommand(input);
|
|
@@ -27,7 +27,7 @@ export interface GetNodeCommandOutput extends GetNodeOutput, __MetadataBearer {
|
|
|
27
27
|
* import { ManagedBlockchainClient, GetNodeCommand } from "@aws-sdk/client-managedblockchain"; // ES Modules import
|
|
28
28
|
* // const { ManagedBlockchainClient, GetNodeCommand } = require("@aws-sdk/client-managedblockchain"); // CommonJS import
|
|
29
29
|
* const client = new ManagedBlockchainClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // GetNodeInput
|
|
31
31
|
* NetworkId: "STRING_VALUE", // required
|
|
32
32
|
* MemberId: "STRING_VALUE",
|
|
33
33
|
* NodeId: "STRING_VALUE", // required
|
|
@@ -27,7 +27,7 @@ export interface GetProposalCommandOutput extends GetProposalOutput, __MetadataB
|
|
|
27
27
|
* import { ManagedBlockchainClient, GetProposalCommand } from "@aws-sdk/client-managedblockchain"; // ES Modules import
|
|
28
28
|
* // const { ManagedBlockchainClient, GetProposalCommand } = require("@aws-sdk/client-managedblockchain"); // CommonJS import
|
|
29
29
|
* const client = new ManagedBlockchainClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // GetProposalInput
|
|
31
31
|
* NetworkId: "STRING_VALUE", // required
|
|
32
32
|
* ProposalId: "STRING_VALUE", // required
|
|
33
33
|
* };
|
|
@@ -27,7 +27,7 @@ export interface ListAccessorsCommandOutput extends ListAccessorsOutput, __Metad
|
|
|
27
27
|
* import { ManagedBlockchainClient, ListAccessorsCommand } from "@aws-sdk/client-managedblockchain"; // ES Modules import
|
|
28
28
|
* // const { ManagedBlockchainClient, ListAccessorsCommand } = require("@aws-sdk/client-managedblockchain"); // CommonJS import
|
|
29
29
|
* const client = new ManagedBlockchainClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListAccessorsInput
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
33
33
|
* };
|
|
@@ -27,7 +27,7 @@ export interface ListInvitationsCommandOutput extends ListInvitationsOutput, __M
|
|
|
27
27
|
* import { ManagedBlockchainClient, ListInvitationsCommand } from "@aws-sdk/client-managedblockchain"; // ES Modules import
|
|
28
28
|
* // const { ManagedBlockchainClient, ListInvitationsCommand } = require("@aws-sdk/client-managedblockchain"); // CommonJS import
|
|
29
29
|
* const client = new ManagedBlockchainClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListInvitationsInput
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
33
33
|
* };
|
|
@@ -27,7 +27,7 @@ export interface ListMembersCommandOutput extends ListMembersOutput, __MetadataB
|
|
|
27
27
|
* import { ManagedBlockchainClient, ListMembersCommand } from "@aws-sdk/client-managedblockchain"; // ES Modules import
|
|
28
28
|
* // const { ManagedBlockchainClient, ListMembersCommand } = require("@aws-sdk/client-managedblockchain"); // CommonJS import
|
|
29
29
|
* const client = new ManagedBlockchainClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListMembersInput
|
|
31
31
|
* NetworkId: "STRING_VALUE", // required
|
|
32
32
|
* Name: "STRING_VALUE",
|
|
33
33
|
* Status: "CREATING" || "AVAILABLE" || "CREATE_FAILED" || "UPDATING" || "DELETING" || "DELETED" || "INACCESSIBLE_ENCRYPTION_KEY",
|
|
@@ -27,7 +27,7 @@ export interface ListNetworksCommandOutput extends ListNetworksOutput, __Metadat
|
|
|
27
27
|
* import { ManagedBlockchainClient, ListNetworksCommand } from "@aws-sdk/client-managedblockchain"; // ES Modules import
|
|
28
28
|
* // const { ManagedBlockchainClient, ListNetworksCommand } = require("@aws-sdk/client-managedblockchain"); // CommonJS import
|
|
29
29
|
* const client = new ManagedBlockchainClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListNetworksInput
|
|
31
31
|
* Name: "STRING_VALUE",
|
|
32
32
|
* Framework: "HYPERLEDGER_FABRIC" || "ETHEREUM",
|
|
33
33
|
* Status: "CREATING" || "AVAILABLE" || "CREATE_FAILED" || "DELETING" || "DELETED",
|
|
@@ -27,7 +27,7 @@ export interface ListNodesCommandOutput extends ListNodesOutput, __MetadataBeare
|
|
|
27
27
|
* import { ManagedBlockchainClient, ListNodesCommand } from "@aws-sdk/client-managedblockchain"; // ES Modules import
|
|
28
28
|
* // const { ManagedBlockchainClient, ListNodesCommand } = require("@aws-sdk/client-managedblockchain"); // CommonJS import
|
|
29
29
|
* const client = new ManagedBlockchainClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListNodesInput
|
|
31
31
|
* NetworkId: "STRING_VALUE", // required
|
|
32
32
|
* MemberId: "STRING_VALUE",
|
|
33
33
|
* Status: "CREATING" || "AVAILABLE" || "UNHEALTHY" || "CREATE_FAILED" || "UPDATING" || "DELETING" || "DELETED" || "FAILED" || "INACCESSIBLE_ENCRYPTION_KEY",
|
|
@@ -27,7 +27,7 @@ export interface ListProposalVotesCommandOutput extends ListProposalVotesOutput,
|
|
|
27
27
|
* import { ManagedBlockchainClient, ListProposalVotesCommand } from "@aws-sdk/client-managedblockchain"; // ES Modules import
|
|
28
28
|
* // const { ManagedBlockchainClient, ListProposalVotesCommand } = require("@aws-sdk/client-managedblockchain"); // CommonJS import
|
|
29
29
|
* const client = new ManagedBlockchainClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListProposalVotesInput
|
|
31
31
|
* NetworkId: "STRING_VALUE", // required
|
|
32
32
|
* ProposalId: "STRING_VALUE", // required
|
|
33
33
|
* MaxResults: Number("int"),
|
|
@@ -27,7 +27,7 @@ export interface ListProposalsCommandOutput extends ListProposalsOutput, __Metad
|
|
|
27
27
|
* import { ManagedBlockchainClient, ListProposalsCommand } from "@aws-sdk/client-managedblockchain"; // ES Modules import
|
|
28
28
|
* // const { ManagedBlockchainClient, ListProposalsCommand } = require("@aws-sdk/client-managedblockchain"); // CommonJS import
|
|
29
29
|
* const client = new ManagedBlockchainClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListProposalsInput
|
|
31
31
|
* NetworkId: "STRING_VALUE", // required
|
|
32
32
|
* MaxResults: Number("int"),
|
|
33
33
|
* NextToken: "STRING_VALUE",
|
|
@@ -27,7 +27,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
27
27
|
* import { ManagedBlockchainClient, ListTagsForResourceCommand } from "@aws-sdk/client-managedblockchain"; // ES Modules import
|
|
28
28
|
* // const { ManagedBlockchainClient, ListTagsForResourceCommand } = require("@aws-sdk/client-managedblockchain"); // CommonJS import
|
|
29
29
|
* const client = new ManagedBlockchainClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListTagsForResourceRequest
|
|
31
31
|
* ResourceArn: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListTagsForResourceCommand(input);
|
|
@@ -27,7 +27,7 @@ export interface RejectInvitationCommandOutput extends RejectInvitationOutput, _
|
|
|
27
27
|
* import { ManagedBlockchainClient, RejectInvitationCommand } from "@aws-sdk/client-managedblockchain"; // ES Modules import
|
|
28
28
|
* // const { ManagedBlockchainClient, RejectInvitationCommand } = require("@aws-sdk/client-managedblockchain"); // CommonJS import
|
|
29
29
|
* const client = new ManagedBlockchainClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // RejectInvitationInput
|
|
31
31
|
* InvitationId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new RejectInvitationCommand(input);
|
|
@@ -29,9 +29,9 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
29
29
|
* import { ManagedBlockchainClient, TagResourceCommand } from "@aws-sdk/client-managedblockchain"; // ES Modules import
|
|
30
30
|
* // const { ManagedBlockchainClient, TagResourceCommand } = require("@aws-sdk/client-managedblockchain"); // CommonJS import
|
|
31
31
|
* const client = new ManagedBlockchainClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // TagResourceRequest
|
|
33
33
|
* ResourceArn: "STRING_VALUE", // required
|
|
34
|
-
* Tags: { // required
|
|
34
|
+
* Tags: { // InputTagMap // required
|
|
35
35
|
* "<keys>": "STRING_VALUE",
|
|
36
36
|
* },
|
|
37
37
|
* };
|
|
@@ -27,9 +27,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
27
27
|
* import { ManagedBlockchainClient, UntagResourceCommand } from "@aws-sdk/client-managedblockchain"; // ES Modules import
|
|
28
28
|
* // const { ManagedBlockchainClient, UntagResourceCommand } = require("@aws-sdk/client-managedblockchain"); // CommonJS import
|
|
29
29
|
* const client = new ManagedBlockchainClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // UntagResourceRequest
|
|
31
31
|
* ResourceArn: "STRING_VALUE", // required
|
|
32
|
-
* TagKeys: [ // required
|
|
32
|
+
* TagKeys: [ // TagKeyList // required
|
|
33
33
|
* "STRING_VALUE",
|
|
34
34
|
* ],
|
|
35
35
|
* };
|
|
@@ -27,13 +27,13 @@ export interface UpdateMemberCommandOutput extends UpdateMemberOutput, __Metadat
|
|
|
27
27
|
* import { ManagedBlockchainClient, UpdateMemberCommand } from "@aws-sdk/client-managedblockchain"; // ES Modules import
|
|
28
28
|
* // const { ManagedBlockchainClient, UpdateMemberCommand } = require("@aws-sdk/client-managedblockchain"); // CommonJS import
|
|
29
29
|
* const client = new ManagedBlockchainClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // UpdateMemberInput
|
|
31
31
|
* NetworkId: "STRING_VALUE", // required
|
|
32
32
|
* MemberId: "STRING_VALUE", // required
|
|
33
|
-
* LogPublishingConfiguration: {
|
|
34
|
-
* Fabric: {
|
|
35
|
-
* CaLogs: {
|
|
36
|
-
* Cloudwatch: {
|
|
33
|
+
* LogPublishingConfiguration: { // MemberLogPublishingConfiguration
|
|
34
|
+
* Fabric: { // MemberFabricLogPublishingConfiguration
|
|
35
|
+
* CaLogs: { // LogConfigurations
|
|
36
|
+
* Cloudwatch: { // LogConfiguration
|
|
37
37
|
* Enabled: true || false,
|
|
38
38
|
* },
|
|
39
39
|
* },
|
|
@@ -27,14 +27,14 @@ export interface UpdateNodeCommandOutput extends UpdateNodeOutput, __MetadataBea
|
|
|
27
27
|
* import { ManagedBlockchainClient, UpdateNodeCommand } from "@aws-sdk/client-managedblockchain"; // ES Modules import
|
|
28
28
|
* // const { ManagedBlockchainClient, UpdateNodeCommand } = require("@aws-sdk/client-managedblockchain"); // CommonJS import
|
|
29
29
|
* const client = new ManagedBlockchainClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // UpdateNodeInput
|
|
31
31
|
* NetworkId: "STRING_VALUE", // required
|
|
32
32
|
* MemberId: "STRING_VALUE",
|
|
33
33
|
* NodeId: "STRING_VALUE", // required
|
|
34
|
-
* LogPublishingConfiguration: {
|
|
35
|
-
* Fabric: {
|
|
36
|
-
* ChaincodeLogs: {
|
|
37
|
-
* Cloudwatch: {
|
|
34
|
+
* LogPublishingConfiguration: { // NodeLogPublishingConfiguration
|
|
35
|
+
* Fabric: { // NodeFabricLogPublishingConfiguration
|
|
36
|
+
* ChaincodeLogs: { // LogConfigurations
|
|
37
|
+
* Cloudwatch: { // LogConfiguration
|
|
38
38
|
* Enabled: true || false,
|
|
39
39
|
* },
|
|
40
40
|
* },
|
|
@@ -27,7 +27,7 @@ export interface VoteOnProposalCommandOutput extends VoteOnProposalOutput, __Met
|
|
|
27
27
|
* import { ManagedBlockchainClient, VoteOnProposalCommand } from "@aws-sdk/client-managedblockchain"; // ES Modules import
|
|
28
28
|
* // const { ManagedBlockchainClient, VoteOnProposalCommand } = require("@aws-sdk/client-managedblockchain"); // CommonJS import
|
|
29
29
|
* const client = new ManagedBlockchainClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // VoteOnProposalInput
|
|
31
31
|
* NetworkId: "STRING_VALUE", // required
|
|
32
32
|
* ProposalId: "STRING_VALUE", // required
|
|
33
33
|
* VoterMemberId: "STRING_VALUE", // required
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-managedblockchain",
|
|
3
3
|
"description": "AWS SDK for JavaScript Managedblockchain Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.301.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|