@aws-sdk/client-managedblockchain 3.928.0 → 3.930.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 (51) hide show
  1. package/dist-cjs/index.js +1285 -1343
  2. package/dist-cjs/runtimeConfig.shared.js +2 -0
  3. package/dist-es/ManagedBlockchainClient.js +2 -0
  4. package/dist-es/commands/CreateAccessorCommand.js +3 -9
  5. package/dist-es/commands/CreateMemberCommand.js +3 -10
  6. package/dist-es/commands/CreateNetworkCommand.js +3 -10
  7. package/dist-es/commands/CreateNodeCommand.js +3 -9
  8. package/dist-es/commands/CreateProposalCommand.js +3 -9
  9. package/dist-es/commands/DeleteAccessorCommand.js +3 -9
  10. package/dist-es/commands/DeleteMemberCommand.js +3 -9
  11. package/dist-es/commands/DeleteNodeCommand.js +3 -9
  12. package/dist-es/commands/GetAccessorCommand.js +3 -9
  13. package/dist-es/commands/GetMemberCommand.js +3 -9
  14. package/dist-es/commands/GetNetworkCommand.js +3 -9
  15. package/dist-es/commands/GetNodeCommand.js +3 -9
  16. package/dist-es/commands/GetProposalCommand.js +3 -9
  17. package/dist-es/commands/ListAccessorsCommand.js +3 -9
  18. package/dist-es/commands/ListInvitationsCommand.js +3 -9
  19. package/dist-es/commands/ListMembersCommand.js +3 -9
  20. package/dist-es/commands/ListNetworksCommand.js +3 -9
  21. package/dist-es/commands/ListNodesCommand.js +3 -9
  22. package/dist-es/commands/ListProposalVotesCommand.js +3 -9
  23. package/dist-es/commands/ListProposalsCommand.js +3 -9
  24. package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
  25. package/dist-es/commands/RejectInvitationCommand.js +3 -9
  26. package/dist-es/commands/TagResourceCommand.js +3 -9
  27. package/dist-es/commands/UntagResourceCommand.js +3 -9
  28. package/dist-es/commands/UpdateMemberCommand.js +3 -9
  29. package/dist-es/commands/UpdateNodeCommand.js +3 -9
  30. package/dist-es/commands/VoteOnProposalCommand.js +3 -9
  31. package/dist-es/models/models_0.js +0 -27
  32. package/dist-es/runtimeConfig.shared.js +2 -0
  33. package/dist-es/schemas/schemas_0.js +1218 -0
  34. package/dist-types/ManagedBlockchainClient.d.ts +10 -1
  35. package/dist-types/models/models_0.d.ts +0 -20
  36. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  37. package/dist-types/runtimeConfig.d.ts +1 -0
  38. package/dist-types/runtimeConfig.native.d.ts +1 -0
  39. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  40. package/dist-types/schemas/schemas_0.d.ts +144 -0
  41. package/dist-types/ts3.4/ManagedBlockchainClient.d.ts +4 -0
  42. package/dist-types/ts3.4/models/models_0.d.ts +0 -15
  43. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  44. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  45. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  46. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  47. package/dist-types/ts3.4/schemas/schemas_0.d.ts +150 -0
  48. package/package.json +33 -34
  49. package/dist-es/protocols/Aws_restJson1.js +0 -1109
  50. package/dist-types/protocols/Aws_restJson1.d.ts +0 -245
  51. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -329
@@ -5,7 +5,7 @@ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-
5
5
  import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
6
6
  import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
7
7
  import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
8
- import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
8
+ import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, ClientProtocol, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, HttpRequest, HttpResponse, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
9
9
  import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
10
10
  import { CreateAccessorCommandInput, CreateAccessorCommandOutput } from "./commands/CreateAccessorCommand";
11
11
  import { CreateMemberCommandInput, CreateMemberCommandOutput } from "./commands/CreateMemberCommand";
@@ -168,6 +168,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
168
168
  * Optional extensions
169
169
  */
170
170
  extensions?: RuntimeExtension[];
171
+ /**
172
+ * The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
173
+ * may be overridden. A default will always be set by the client.
174
+ * Available options depend on the service's supported protocols and will not be validated by
175
+ * the client.
176
+ * @alpha
177
+ *
178
+ */
179
+ protocol?: ClientProtocol<HttpRequest, HttpResponse>;
171
180
  /**
172
181
  * The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
173
182
  */
@@ -2520,23 +2520,3 @@ export interface VoteOnProposalInput {
2520
2520
  */
2521
2521
  export interface VoteOnProposalOutput {
2522
2522
  }
2523
- /**
2524
- * @internal
2525
- */
2526
- export declare const MemberFabricConfigurationFilterSensitiveLog: (obj: MemberFabricConfiguration) => any;
2527
- /**
2528
- * @internal
2529
- */
2530
- export declare const MemberFrameworkConfigurationFilterSensitiveLog: (obj: MemberFrameworkConfiguration) => any;
2531
- /**
2532
- * @internal
2533
- */
2534
- export declare const MemberConfigurationFilterSensitiveLog: (obj: MemberConfiguration) => any;
2535
- /**
2536
- * @internal
2537
- */
2538
- export declare const CreateMemberInputFilterSensitiveLog: (obj: CreateMemberInput) => any;
2539
- /**
2540
- * @internal
2541
- */
2542
- export declare const CreateNetworkInputFilterSensitiveLog: (obj: CreateNetworkInput) => any;
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: ManagedBlockchainClientConfig) =
29
29
  profile?: string;
30
30
  logger: import("@smithy/types").Logger;
31
31
  extensions: import("./runtimeExtensions").RuntimeExtension[];
32
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
32
33
  customUserAgent?: string | import("@smithy/types").UserAgent;
33
34
  userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
34
35
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
@@ -31,6 +31,7 @@ export declare const getRuntimeConfig: (config: ManagedBlockchainClientConfig) =
31
31
  profile?: string;
32
32
  logger: import("@smithy/types").Logger;
33
33
  extensions: import("./runtimeExtensions").RuntimeExtension[];
34
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
34
35
  customUserAgent?: string | import("@smithy/types").UserAgent;
35
36
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
36
37
  endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: ManagedBlockchainClientConfig) =
27
27
  retryMode: string | import("@smithy/types").Provider<string>;
28
28
  logger: import("@smithy/types").Logger;
29
29
  extensions: import("./runtimeExtensions").RuntimeExtension[];
30
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
30
31
  defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
31
32
  customUserAgent?: string | import("@smithy/types").UserAgent;
32
33
  userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
@@ -14,6 +14,7 @@ export declare const getRuntimeConfig: (config: ManagedBlockchainClientConfig) =
14
14
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ManagedBlockchainHttpAuthSchemeProvider;
15
15
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
16
16
  logger: import("@smithy/types").Logger;
17
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
17
18
  serviceId: string;
18
19
  urlParser: import("@smithy/types").UrlParser;
19
20
  utf8Decoder: import("@smithy/types").Decoder;
@@ -0,0 +1,144 @@
1
+ import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticSimpleSchema, StaticStructureSchema } from "@smithy/types";
2
+ export declare var PasswordString: StaticSimpleSchema;
3
+ export declare var AccessDeniedException: StaticErrorSchema;
4
+ export declare var Accessor: StaticStructureSchema;
5
+ export declare var AccessorSummary: StaticStructureSchema;
6
+ export declare var ApprovalThresholdPolicy: StaticStructureSchema;
7
+ export declare var CreateAccessorInput: StaticStructureSchema;
8
+ export declare var CreateAccessorOutput: StaticStructureSchema;
9
+ export declare var CreateMemberInput: StaticStructureSchema;
10
+ export declare var CreateMemberOutput: StaticStructureSchema;
11
+ export declare var CreateNetworkInput: StaticStructureSchema;
12
+ export declare var CreateNetworkOutput: StaticStructureSchema;
13
+ export declare var CreateNodeInput: StaticStructureSchema;
14
+ export declare var CreateNodeOutput: StaticStructureSchema;
15
+ export declare var CreateProposalInput: StaticStructureSchema;
16
+ export declare var CreateProposalOutput: StaticStructureSchema;
17
+ export declare var DeleteAccessorInput: StaticStructureSchema;
18
+ export declare var DeleteAccessorOutput: StaticStructureSchema;
19
+ export declare var DeleteMemberInput: StaticStructureSchema;
20
+ export declare var DeleteMemberOutput: StaticStructureSchema;
21
+ export declare var DeleteNodeInput: StaticStructureSchema;
22
+ export declare var DeleteNodeOutput: StaticStructureSchema;
23
+ export declare var GetAccessorInput: StaticStructureSchema;
24
+ export declare var GetAccessorOutput: StaticStructureSchema;
25
+ export declare var GetMemberInput: StaticStructureSchema;
26
+ export declare var GetMemberOutput: StaticStructureSchema;
27
+ export declare var GetNetworkInput: StaticStructureSchema;
28
+ export declare var GetNetworkOutput: StaticStructureSchema;
29
+ export declare var GetNodeInput: StaticStructureSchema;
30
+ export declare var GetNodeOutput: StaticStructureSchema;
31
+ export declare var GetProposalInput: StaticStructureSchema;
32
+ export declare var GetProposalOutput: StaticStructureSchema;
33
+ export declare var IllegalActionException: StaticErrorSchema;
34
+ export declare var InternalServiceErrorException: StaticErrorSchema;
35
+ export declare var InvalidRequestException: StaticErrorSchema;
36
+ export declare var Invitation: StaticStructureSchema;
37
+ export declare var InviteAction: StaticStructureSchema;
38
+ export declare var ListAccessorsInput: StaticStructureSchema;
39
+ export declare var ListAccessorsOutput: StaticStructureSchema;
40
+ export declare var ListInvitationsInput: StaticStructureSchema;
41
+ export declare var ListInvitationsOutput: StaticStructureSchema;
42
+ export declare var ListMembersInput: StaticStructureSchema;
43
+ export declare var ListMembersOutput: StaticStructureSchema;
44
+ export declare var ListNetworksInput: StaticStructureSchema;
45
+ export declare var ListNetworksOutput: StaticStructureSchema;
46
+ export declare var ListNodesInput: StaticStructureSchema;
47
+ export declare var ListNodesOutput: StaticStructureSchema;
48
+ export declare var ListProposalsInput: StaticStructureSchema;
49
+ export declare var ListProposalsOutput: StaticStructureSchema;
50
+ export declare var ListProposalVotesInput: StaticStructureSchema;
51
+ export declare var ListProposalVotesOutput: StaticStructureSchema;
52
+ export declare var ListTagsForResourceRequest: StaticStructureSchema;
53
+ export declare var ListTagsForResourceResponse: StaticStructureSchema;
54
+ export declare var LogConfiguration: StaticStructureSchema;
55
+ export declare var LogConfigurations: StaticStructureSchema;
56
+ export declare var Member: StaticStructureSchema;
57
+ export declare var MemberConfiguration: StaticStructureSchema;
58
+ export declare var MemberFabricAttributes: StaticStructureSchema;
59
+ export declare var MemberFabricConfiguration: StaticStructureSchema;
60
+ export declare var MemberFabricLogPublishingConfiguration: StaticStructureSchema;
61
+ export declare var MemberFrameworkAttributes: StaticStructureSchema;
62
+ export declare var MemberFrameworkConfiguration: StaticStructureSchema;
63
+ export declare var MemberLogPublishingConfiguration: StaticStructureSchema;
64
+ export declare var MemberSummary: StaticStructureSchema;
65
+ export declare var Network: StaticStructureSchema;
66
+ export declare var NetworkEthereumAttributes: StaticStructureSchema;
67
+ export declare var NetworkFabricAttributes: StaticStructureSchema;
68
+ export declare var NetworkFabricConfiguration: StaticStructureSchema;
69
+ export declare var NetworkFrameworkAttributes: StaticStructureSchema;
70
+ export declare var NetworkFrameworkConfiguration: StaticStructureSchema;
71
+ export declare var NetworkSummary: StaticStructureSchema;
72
+ export declare var Node: StaticStructureSchema;
73
+ export declare var NodeConfiguration: StaticStructureSchema;
74
+ export declare var NodeEthereumAttributes: StaticStructureSchema;
75
+ export declare var NodeFabricAttributes: StaticStructureSchema;
76
+ export declare var NodeFabricLogPublishingConfiguration: StaticStructureSchema;
77
+ export declare var NodeFrameworkAttributes: StaticStructureSchema;
78
+ export declare var NodeLogPublishingConfiguration: StaticStructureSchema;
79
+ export declare var NodeSummary: StaticStructureSchema;
80
+ export declare var Proposal: StaticStructureSchema;
81
+ export declare var ProposalActions: StaticStructureSchema;
82
+ export declare var ProposalSummary: StaticStructureSchema;
83
+ export declare var RejectInvitationInput: StaticStructureSchema;
84
+ export declare var RejectInvitationOutput: StaticStructureSchema;
85
+ export declare var RemoveAction: StaticStructureSchema;
86
+ export declare var ResourceAlreadyExistsException: StaticErrorSchema;
87
+ export declare var ResourceLimitExceededException: StaticErrorSchema;
88
+ export declare var ResourceNotFoundException: StaticErrorSchema;
89
+ export declare var ResourceNotReadyException: StaticErrorSchema;
90
+ export declare var TagResourceRequest: StaticStructureSchema;
91
+ export declare var TagResourceResponse: StaticStructureSchema;
92
+ export declare var ThrottlingException: StaticErrorSchema;
93
+ export declare var TooManyTagsException: StaticErrorSchema;
94
+ export declare var UntagResourceRequest: StaticStructureSchema;
95
+ export declare var UntagResourceResponse: StaticStructureSchema;
96
+ export declare var UpdateMemberInput: StaticStructureSchema;
97
+ export declare var UpdateMemberOutput: StaticStructureSchema;
98
+ export declare var UpdateNodeInput: StaticStructureSchema;
99
+ export declare var UpdateNodeOutput: StaticStructureSchema;
100
+ export declare var VoteOnProposalInput: StaticStructureSchema;
101
+ export declare var VoteOnProposalOutput: StaticStructureSchema;
102
+ export declare var VoteSummary: StaticStructureSchema;
103
+ export declare var VotingPolicy: StaticStructureSchema;
104
+ export declare var __Unit: "unit";
105
+ export declare var ManagedBlockchainServiceException: StaticErrorSchema;
106
+ export declare var AccessorSummaryList: StaticListSchema;
107
+ export declare var InvitationList: StaticListSchema;
108
+ export declare var InviteActionList: StaticListSchema;
109
+ export declare var MemberSummaryList: StaticListSchema;
110
+ export declare var NetworkSummaryList: StaticListSchema;
111
+ export declare var NodeSummaryList: StaticListSchema;
112
+ export declare var ProposalSummaryList: StaticListSchema;
113
+ export declare var ProposalVoteList: StaticListSchema;
114
+ export declare var RemoveActionList: StaticListSchema;
115
+ export declare var TagKeyList: number;
116
+ export declare var InputTagMap: number;
117
+ export declare var OutputTagMap: number;
118
+ export declare var CreateAccessor: StaticOperationSchema;
119
+ export declare var CreateMember: StaticOperationSchema;
120
+ export declare var CreateNetwork: StaticOperationSchema;
121
+ export declare var CreateNode: StaticOperationSchema;
122
+ export declare var CreateProposal: StaticOperationSchema;
123
+ export declare var DeleteAccessor: StaticOperationSchema;
124
+ export declare var DeleteMember: StaticOperationSchema;
125
+ export declare var DeleteNode: StaticOperationSchema;
126
+ export declare var GetAccessor: StaticOperationSchema;
127
+ export declare var GetMember: StaticOperationSchema;
128
+ export declare var GetNetwork: StaticOperationSchema;
129
+ export declare var GetNode: StaticOperationSchema;
130
+ export declare var GetProposal: StaticOperationSchema;
131
+ export declare var ListAccessors: StaticOperationSchema;
132
+ export declare var ListInvitations: StaticOperationSchema;
133
+ export declare var ListMembers: StaticOperationSchema;
134
+ export declare var ListNetworks: StaticOperationSchema;
135
+ export declare var ListNodes: StaticOperationSchema;
136
+ export declare var ListProposals: StaticOperationSchema;
137
+ export declare var ListProposalVotes: StaticOperationSchema;
138
+ export declare var ListTagsForResource: StaticOperationSchema;
139
+ export declare var RejectInvitation: StaticOperationSchema;
140
+ export declare var TagResource: StaticOperationSchema;
141
+ export declare var UntagResource: StaticOperationSchema;
142
+ export declare var UpdateMember: StaticOperationSchema;
143
+ export declare var UpdateNode: StaticOperationSchema;
144
+ export declare var VoteOnProposal: StaticOperationSchema;
@@ -30,10 +30,13 @@ import {
30
30
  BodyLengthCalculator as __BodyLengthCalculator,
31
31
  CheckOptionalClientConfig as __CheckOptionalClientConfig,
32
32
  ChecksumConstructor as __ChecksumConstructor,
33
+ ClientProtocol,
33
34
  Decoder as __Decoder,
34
35
  Encoder as __Encoder,
35
36
  HashConstructor as __HashConstructor,
36
37
  HttpHandlerOptions as __HttpHandlerOptions,
38
+ HttpRequest,
39
+ HttpResponse,
37
40
  Logger as __Logger,
38
41
  Provider as __Provider,
39
42
  Provider,
@@ -240,6 +243,7 @@ export interface ClientDefaults
240
243
  retryMode?: string | __Provider<string>;
241
244
  logger?: __Logger;
242
245
  extensions?: RuntimeExtension[];
246
+ protocol?: ClientProtocol<HttpRequest, HttpResponse>;
243
247
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
244
248
  }
245
249
  export type ManagedBlockchainClientConfigType = Partial<
@@ -609,18 +609,3 @@ export interface VoteOnProposalInput {
609
609
  Vote: VoteValue | undefined;
610
610
  }
611
611
  export interface VoteOnProposalOutput {}
612
- export declare const MemberFabricConfigurationFilterSensitiveLog: (
613
- obj: MemberFabricConfiguration
614
- ) => any;
615
- export declare const MemberFrameworkConfigurationFilterSensitiveLog: (
616
- obj: MemberFrameworkConfiguration
617
- ) => any;
618
- export declare const MemberConfigurationFilterSensitiveLog: (
619
- obj: MemberConfiguration
620
- ) => any;
621
- export declare const CreateMemberInputFilterSensitiveLog: (
622
- obj: CreateMemberInput
623
- ) => any;
624
- export declare const CreateNetworkInputFilterSensitiveLog: (
625
- obj: CreateNetworkInput
626
- ) => any;
@@ -40,6 +40,10 @@ export declare const getRuntimeConfig: (
40
40
  profile?: string;
41
41
  logger: import("@smithy/types").Logger;
42
42
  extensions: import("./runtimeExtensions").RuntimeExtension[];
43
+ protocol: import("@smithy/types").ClientProtocol<
44
+ import("@smithy/types").HttpRequest,
45
+ import("@smithy/types").HttpResponse
46
+ >;
43
47
  customUserAgent?: string | import("@smithy/types").UserAgent;
44
48
  userAgentAppId?:
45
49
  | string
@@ -40,6 +40,10 @@ export declare const getRuntimeConfig: (
40
40
  profile?: string;
41
41
  logger: import("@smithy/types").Logger;
42
42
  extensions: import("./runtimeExtensions").RuntimeExtension[];
43
+ protocol: import("@smithy/types").ClientProtocol<
44
+ import("@smithy/types").HttpRequest,
45
+ import("@smithy/types").HttpResponse
46
+ >;
43
47
  customUserAgent?: string | import("@smithy/types").UserAgent;
44
48
  retryStrategy?:
45
49
  | import("@smithy/types").RetryStrategy
@@ -39,6 +39,10 @@ export declare const getRuntimeConfig: (
39
39
  retryMode: string | import("@smithy/types").Provider<string>;
40
40
  logger: import("@smithy/types").Logger;
41
41
  extensions: import("./runtimeExtensions").RuntimeExtension[];
42
+ protocol: import("@smithy/types").ClientProtocol<
43
+ import("@smithy/types").HttpRequest,
44
+ import("@smithy/types").HttpResponse
45
+ >;
42
46
  defaultsMode:
43
47
  | import("@smithy/smithy-client").DefaultsMode
44
48
  | import("@smithy/types").Provider<
@@ -16,6 +16,10 @@ export declare const getRuntimeConfig: (
16
16
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ManagedBlockchainHttpAuthSchemeProvider;
17
17
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
18
18
  logger: import("@smithy/types").Logger;
19
+ protocol: import("@smithy/types").ClientProtocol<
20
+ import("@smithy/types").HttpRequest,
21
+ import("@smithy/types").HttpResponse
22
+ >;
19
23
  serviceId: string;
20
24
  urlParser: import("@smithy/types").UrlParser;
21
25
  utf8Decoder: import("@smithy/types").Decoder;
@@ -0,0 +1,150 @@
1
+ import {
2
+ StaticErrorSchema,
3
+ StaticListSchema,
4
+ StaticOperationSchema,
5
+ StaticSimpleSchema,
6
+ StaticStructureSchema,
7
+ } from "@smithy/types";
8
+ export declare var PasswordString: StaticSimpleSchema;
9
+ export declare var AccessDeniedException: StaticErrorSchema;
10
+ export declare var Accessor: StaticStructureSchema;
11
+ export declare var AccessorSummary: StaticStructureSchema;
12
+ export declare var ApprovalThresholdPolicy: StaticStructureSchema;
13
+ export declare var CreateAccessorInput: StaticStructureSchema;
14
+ export declare var CreateAccessorOutput: StaticStructureSchema;
15
+ export declare var CreateMemberInput: StaticStructureSchema;
16
+ export declare var CreateMemberOutput: StaticStructureSchema;
17
+ export declare var CreateNetworkInput: StaticStructureSchema;
18
+ export declare var CreateNetworkOutput: StaticStructureSchema;
19
+ export declare var CreateNodeInput: StaticStructureSchema;
20
+ export declare var CreateNodeOutput: StaticStructureSchema;
21
+ export declare var CreateProposalInput: StaticStructureSchema;
22
+ export declare var CreateProposalOutput: StaticStructureSchema;
23
+ export declare var DeleteAccessorInput: StaticStructureSchema;
24
+ export declare var DeleteAccessorOutput: StaticStructureSchema;
25
+ export declare var DeleteMemberInput: StaticStructureSchema;
26
+ export declare var DeleteMemberOutput: StaticStructureSchema;
27
+ export declare var DeleteNodeInput: StaticStructureSchema;
28
+ export declare var DeleteNodeOutput: StaticStructureSchema;
29
+ export declare var GetAccessorInput: StaticStructureSchema;
30
+ export declare var GetAccessorOutput: StaticStructureSchema;
31
+ export declare var GetMemberInput: StaticStructureSchema;
32
+ export declare var GetMemberOutput: StaticStructureSchema;
33
+ export declare var GetNetworkInput: StaticStructureSchema;
34
+ export declare var GetNetworkOutput: StaticStructureSchema;
35
+ export declare var GetNodeInput: StaticStructureSchema;
36
+ export declare var GetNodeOutput: StaticStructureSchema;
37
+ export declare var GetProposalInput: StaticStructureSchema;
38
+ export declare var GetProposalOutput: StaticStructureSchema;
39
+ export declare var IllegalActionException: StaticErrorSchema;
40
+ export declare var InternalServiceErrorException: StaticErrorSchema;
41
+ export declare var InvalidRequestException: StaticErrorSchema;
42
+ export declare var Invitation: StaticStructureSchema;
43
+ export declare var InviteAction: StaticStructureSchema;
44
+ export declare var ListAccessorsInput: StaticStructureSchema;
45
+ export declare var ListAccessorsOutput: StaticStructureSchema;
46
+ export declare var ListInvitationsInput: StaticStructureSchema;
47
+ export declare var ListInvitationsOutput: StaticStructureSchema;
48
+ export declare var ListMembersInput: StaticStructureSchema;
49
+ export declare var ListMembersOutput: StaticStructureSchema;
50
+ export declare var ListNetworksInput: StaticStructureSchema;
51
+ export declare var ListNetworksOutput: StaticStructureSchema;
52
+ export declare var ListNodesInput: StaticStructureSchema;
53
+ export declare var ListNodesOutput: StaticStructureSchema;
54
+ export declare var ListProposalsInput: StaticStructureSchema;
55
+ export declare var ListProposalsOutput: StaticStructureSchema;
56
+ export declare var ListProposalVotesInput: StaticStructureSchema;
57
+ export declare var ListProposalVotesOutput: StaticStructureSchema;
58
+ export declare var ListTagsForResourceRequest: StaticStructureSchema;
59
+ export declare var ListTagsForResourceResponse: StaticStructureSchema;
60
+ export declare var LogConfiguration: StaticStructureSchema;
61
+ export declare var LogConfigurations: StaticStructureSchema;
62
+ export declare var Member: StaticStructureSchema;
63
+ export declare var MemberConfiguration: StaticStructureSchema;
64
+ export declare var MemberFabricAttributes: StaticStructureSchema;
65
+ export declare var MemberFabricConfiguration: StaticStructureSchema;
66
+ export declare var MemberFabricLogPublishingConfiguration: StaticStructureSchema;
67
+ export declare var MemberFrameworkAttributes: StaticStructureSchema;
68
+ export declare var MemberFrameworkConfiguration: StaticStructureSchema;
69
+ export declare var MemberLogPublishingConfiguration: StaticStructureSchema;
70
+ export declare var MemberSummary: StaticStructureSchema;
71
+ export declare var Network: StaticStructureSchema;
72
+ export declare var NetworkEthereumAttributes: StaticStructureSchema;
73
+ export declare var NetworkFabricAttributes: StaticStructureSchema;
74
+ export declare var NetworkFabricConfiguration: StaticStructureSchema;
75
+ export declare var NetworkFrameworkAttributes: StaticStructureSchema;
76
+ export declare var NetworkFrameworkConfiguration: StaticStructureSchema;
77
+ export declare var NetworkSummary: StaticStructureSchema;
78
+ export declare var Node: StaticStructureSchema;
79
+ export declare var NodeConfiguration: StaticStructureSchema;
80
+ export declare var NodeEthereumAttributes: StaticStructureSchema;
81
+ export declare var NodeFabricAttributes: StaticStructureSchema;
82
+ export declare var NodeFabricLogPublishingConfiguration: StaticStructureSchema;
83
+ export declare var NodeFrameworkAttributes: StaticStructureSchema;
84
+ export declare var NodeLogPublishingConfiguration: StaticStructureSchema;
85
+ export declare var NodeSummary: StaticStructureSchema;
86
+ export declare var Proposal: StaticStructureSchema;
87
+ export declare var ProposalActions: StaticStructureSchema;
88
+ export declare var ProposalSummary: StaticStructureSchema;
89
+ export declare var RejectInvitationInput: StaticStructureSchema;
90
+ export declare var RejectInvitationOutput: StaticStructureSchema;
91
+ export declare var RemoveAction: StaticStructureSchema;
92
+ export declare var ResourceAlreadyExistsException: StaticErrorSchema;
93
+ export declare var ResourceLimitExceededException: StaticErrorSchema;
94
+ export declare var ResourceNotFoundException: StaticErrorSchema;
95
+ export declare var ResourceNotReadyException: StaticErrorSchema;
96
+ export declare var TagResourceRequest: StaticStructureSchema;
97
+ export declare var TagResourceResponse: StaticStructureSchema;
98
+ export declare var ThrottlingException: StaticErrorSchema;
99
+ export declare var TooManyTagsException: StaticErrorSchema;
100
+ export declare var UntagResourceRequest: StaticStructureSchema;
101
+ export declare var UntagResourceResponse: StaticStructureSchema;
102
+ export declare var UpdateMemberInput: StaticStructureSchema;
103
+ export declare var UpdateMemberOutput: StaticStructureSchema;
104
+ export declare var UpdateNodeInput: StaticStructureSchema;
105
+ export declare var UpdateNodeOutput: StaticStructureSchema;
106
+ export declare var VoteOnProposalInput: StaticStructureSchema;
107
+ export declare var VoteOnProposalOutput: StaticStructureSchema;
108
+ export declare var VoteSummary: StaticStructureSchema;
109
+ export declare var VotingPolicy: StaticStructureSchema;
110
+ export declare var __Unit: "unit";
111
+ export declare var ManagedBlockchainServiceException: StaticErrorSchema;
112
+ export declare var AccessorSummaryList: StaticListSchema;
113
+ export declare var InvitationList: StaticListSchema;
114
+ export declare var InviteActionList: StaticListSchema;
115
+ export declare var MemberSummaryList: StaticListSchema;
116
+ export declare var NetworkSummaryList: StaticListSchema;
117
+ export declare var NodeSummaryList: StaticListSchema;
118
+ export declare var ProposalSummaryList: StaticListSchema;
119
+ export declare var ProposalVoteList: StaticListSchema;
120
+ export declare var RemoveActionList: StaticListSchema;
121
+ export declare var TagKeyList: number;
122
+ export declare var InputTagMap: number;
123
+ export declare var OutputTagMap: number;
124
+ export declare var CreateAccessor: StaticOperationSchema;
125
+ export declare var CreateMember: StaticOperationSchema;
126
+ export declare var CreateNetwork: StaticOperationSchema;
127
+ export declare var CreateNode: StaticOperationSchema;
128
+ export declare var CreateProposal: StaticOperationSchema;
129
+ export declare var DeleteAccessor: StaticOperationSchema;
130
+ export declare var DeleteMember: StaticOperationSchema;
131
+ export declare var DeleteNode: StaticOperationSchema;
132
+ export declare var GetAccessor: StaticOperationSchema;
133
+ export declare var GetMember: StaticOperationSchema;
134
+ export declare var GetNetwork: StaticOperationSchema;
135
+ export declare var GetNode: StaticOperationSchema;
136
+ export declare var GetProposal: StaticOperationSchema;
137
+ export declare var ListAccessors: StaticOperationSchema;
138
+ export declare var ListInvitations: StaticOperationSchema;
139
+ export declare var ListMembers: StaticOperationSchema;
140
+ export declare var ListNetworks: StaticOperationSchema;
141
+ export declare var ListNodes: StaticOperationSchema;
142
+ export declare var ListProposals: StaticOperationSchema;
143
+ export declare var ListProposalVotes: StaticOperationSchema;
144
+ export declare var ListTagsForResource: StaticOperationSchema;
145
+ export declare var RejectInvitation: StaticOperationSchema;
146
+ export declare var TagResource: StaticOperationSchema;
147
+ export declare var UntagResource: StaticOperationSchema;
148
+ export declare var UpdateMember: StaticOperationSchema;
149
+ export declare var UpdateNode: StaticOperationSchema;
150
+ export declare var VoteOnProposal: StaticOperationSchema;
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.928.0",
4
+ "version": "3.930.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-managedblockchain",
@@ -20,43 +20,42 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.928.0",
24
- "@aws-sdk/credential-provider-node": "3.928.0",
25
- "@aws-sdk/middleware-host-header": "3.922.0",
26
- "@aws-sdk/middleware-logger": "3.922.0",
27
- "@aws-sdk/middleware-recursion-detection": "3.922.0",
28
- "@aws-sdk/middleware-user-agent": "3.928.0",
29
- "@aws-sdk/region-config-resolver": "3.925.0",
30
- "@aws-sdk/types": "3.922.0",
31
- "@aws-sdk/util-endpoints": "3.922.0",
32
- "@aws-sdk/util-user-agent-browser": "3.922.0",
33
- "@aws-sdk/util-user-agent-node": "3.928.0",
34
- "@smithy/config-resolver": "^4.4.2",
35
- "@smithy/core": "^3.17.2",
36
- "@smithy/fetch-http-handler": "^5.3.5",
37
- "@smithy/hash-node": "^4.2.4",
38
- "@smithy/invalid-dependency": "^4.2.4",
39
- "@smithy/middleware-content-length": "^4.2.4",
40
- "@smithy/middleware-endpoint": "^4.3.6",
41
- "@smithy/middleware-retry": "^4.4.6",
42
- "@smithy/middleware-serde": "^4.2.4",
43
- "@smithy/middleware-stack": "^4.2.4",
44
- "@smithy/node-config-provider": "^4.3.4",
45
- "@smithy/node-http-handler": "^4.4.4",
46
- "@smithy/protocol-http": "^5.3.4",
47
- "@smithy/smithy-client": "^4.9.2",
48
- "@smithy/types": "^4.8.1",
49
- "@smithy/url-parser": "^4.2.4",
23
+ "@aws-sdk/core": "3.930.0",
24
+ "@aws-sdk/credential-provider-node": "3.930.0",
25
+ "@aws-sdk/middleware-host-header": "3.930.0",
26
+ "@aws-sdk/middleware-logger": "3.930.0",
27
+ "@aws-sdk/middleware-recursion-detection": "3.930.0",
28
+ "@aws-sdk/middleware-user-agent": "3.930.0",
29
+ "@aws-sdk/region-config-resolver": "3.930.0",
30
+ "@aws-sdk/types": "3.930.0",
31
+ "@aws-sdk/util-endpoints": "3.930.0",
32
+ "@aws-sdk/util-user-agent-browser": "3.930.0",
33
+ "@aws-sdk/util-user-agent-node": "3.930.0",
34
+ "@smithy/config-resolver": "^4.4.3",
35
+ "@smithy/core": "^3.18.2",
36
+ "@smithy/fetch-http-handler": "^5.3.6",
37
+ "@smithy/hash-node": "^4.2.5",
38
+ "@smithy/invalid-dependency": "^4.2.5",
39
+ "@smithy/middleware-content-length": "^4.2.5",
40
+ "@smithy/middleware-endpoint": "^4.3.9",
41
+ "@smithy/middleware-retry": "^4.4.9",
42
+ "@smithy/middleware-serde": "^4.2.5",
43
+ "@smithy/middleware-stack": "^4.2.5",
44
+ "@smithy/node-config-provider": "^4.3.5",
45
+ "@smithy/node-http-handler": "^4.4.5",
46
+ "@smithy/protocol-http": "^5.3.5",
47
+ "@smithy/smithy-client": "^4.9.5",
48
+ "@smithy/types": "^4.9.0",
49
+ "@smithy/url-parser": "^4.2.5",
50
50
  "@smithy/util-base64": "^4.3.0",
51
51
  "@smithy/util-body-length-browser": "^4.2.0",
52
52
  "@smithy/util-body-length-node": "^4.2.1",
53
- "@smithy/util-defaults-mode-browser": "^4.3.5",
54
- "@smithy/util-defaults-mode-node": "^4.2.8",
55
- "@smithy/util-endpoints": "^3.2.4",
56
- "@smithy/util-middleware": "^4.2.4",
57
- "@smithy/util-retry": "^4.2.4",
53
+ "@smithy/util-defaults-mode-browser": "^4.3.8",
54
+ "@smithy/util-defaults-mode-node": "^4.2.11",
55
+ "@smithy/util-endpoints": "^3.2.5",
56
+ "@smithy/util-middleware": "^4.2.5",
57
+ "@smithy/util-retry": "^4.2.5",
58
58
  "@smithy/util-utf8": "^4.2.0",
59
- "@smithy/uuid": "^1.1.0",
60
59
  "tslib": "^2.6.2"
61
60
  },
62
61
  "devDependencies": {