@aws-sdk/client-managedblockchain 3.289.0 → 3.292.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 (28) hide show
  1. package/dist-types/commands/CreateAccessorCommand.d.ts +26 -0
  2. package/dist-types/commands/CreateMemberCommand.d.ts +32 -0
  3. package/dist-types/commands/CreateNetworkCommand.d.ts +26 -0
  4. package/dist-types/commands/CreateNodeCommand.d.ts +32 -0
  5. package/dist-types/commands/CreateProposalCommand.d.ts +25 -0
  6. package/dist-types/commands/DeleteAccessorCommand.d.ts +19 -0
  7. package/dist-types/commands/DeleteMemberCommand.d.ts +22 -0
  8. package/dist-types/commands/DeleteNodeCommand.d.ts +22 -0
  9. package/dist-types/commands/GetAccessorCommand.d.ts +19 -0
  10. package/dist-types/commands/GetMemberCommand.d.ts +19 -0
  11. package/dist-types/commands/GetNetworkCommand.d.ts +19 -0
  12. package/dist-types/commands/GetNodeCommand.d.ts +19 -0
  13. package/dist-types/commands/GetProposalCommand.d.ts +19 -0
  14. package/dist-types/commands/ListAccessorsCommand.d.ts +16 -0
  15. package/dist-types/commands/ListInvitationsCommand.d.ts +23 -0
  16. package/dist-types/commands/ListMembersCommand.d.ts +16 -0
  17. package/dist-types/commands/ListNetworksCommand.d.ts +16 -0
  18. package/dist-types/commands/ListNodesCommand.d.ts +16 -0
  19. package/dist-types/commands/ListProposalVotesCommand.d.ts +16 -0
  20. package/dist-types/commands/ListProposalsCommand.d.ts +19 -0
  21. package/dist-types/commands/ListTagsForResourceCommand.d.ts +13 -0
  22. package/dist-types/commands/RejectInvitationCommand.d.ts +22 -0
  23. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  24. package/dist-types/commands/UntagResourceCommand.d.ts +13 -0
  25. package/dist-types/commands/UpdateMemberCommand.d.ts +19 -0
  26. package/dist-types/commands/UpdateNodeCommand.d.ts +19 -0
  27. package/dist-types/commands/VoteOnProposalCommand.d.ts +22 -0
  28. package/package.json +35 -40
@@ -30,6 +30,32 @@ export interface CreateAccessorCommandOutput extends CreateAccessorOutput, __Met
30
30
  * @see {@link CreateAccessorCommandOutput} for command's `response` shape.
31
31
  * @see {@link ManagedBlockchainClientResolvedConfig | config} for ManagedBlockchainClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>You don't have sufficient access to perform this action.</p>
35
+ *
36
+ * @throws {@link InternalServiceErrorException} (server fault)
37
+ * <p>The request processing has failed because of an unknown error, exception or failure.</p>
38
+ *
39
+ * @throws {@link InvalidRequestException} (client fault)
40
+ * <p>The action or operation requested is invalid. Verify that the action is typed correctly.</p>
41
+ *
42
+ * @throws {@link ResourceAlreadyExistsException} (client fault)
43
+ * <p>A resource request is issued for a resource that already exists.</p>
44
+ *
45
+ * @throws {@link ResourceLimitExceededException} (client fault)
46
+ * <p>The maximum number of resources of that type already exist. Ensure the resources requested
47
+ * are within the boundaries of the service edition and your account limits.</p>
48
+ *
49
+ * @throws {@link ThrottlingException} (client fault)
50
+ * <p>The request or operation couldn't be performed because a service is
51
+ * throttling requests. The most common source of throttling errors is
52
+ * creating resources that exceed your service limit for this resource type.
53
+ * Request a limit increase or delete unused resources if possible.</p>
54
+ *
55
+ * @throws {@link TooManyTagsException} (client fault)
56
+ * <p></p>
57
+ *
58
+ *
33
59
  */
34
60
  export declare class CreateAccessorCommand extends $Command<CreateAccessorCommandInput, CreateAccessorCommandOutput, ManagedBlockchainClientResolvedConfig> {
35
61
  readonly input: CreateAccessorCommandInput;
@@ -30,6 +30,38 @@ export interface CreateMemberCommandOutput extends CreateMemberOutput, __Metadat
30
30
  * @see {@link CreateMemberCommandOutput} for command's `response` shape.
31
31
  * @see {@link ManagedBlockchainClientResolvedConfig | config} for ManagedBlockchainClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>You don't have sufficient access to perform this action.</p>
35
+ *
36
+ * @throws {@link InternalServiceErrorException} (server fault)
37
+ * <p>The request processing has failed because of an unknown error, exception or failure.</p>
38
+ *
39
+ * @throws {@link InvalidRequestException} (client fault)
40
+ * <p>The action or operation requested is invalid. Verify that the action is typed correctly.</p>
41
+ *
42
+ * @throws {@link ResourceAlreadyExistsException} (client fault)
43
+ * <p>A resource request is issued for a resource that already exists.</p>
44
+ *
45
+ * @throws {@link ResourceLimitExceededException} (client fault)
46
+ * <p>The maximum number of resources of that type already exist. Ensure the resources requested
47
+ * are within the boundaries of the service edition and your account limits.</p>
48
+ *
49
+ * @throws {@link ResourceNotFoundException} (client fault)
50
+ * <p>A requested resource doesn't exist. It may have been deleted or referenced incorrectly.</p>
51
+ *
52
+ * @throws {@link ResourceNotReadyException} (client fault)
53
+ * <p>The requested resource exists but isn't in a status that can complete the operation.</p>
54
+ *
55
+ * @throws {@link ThrottlingException} (client fault)
56
+ * <p>The request or operation couldn't be performed because a service is
57
+ * throttling requests. The most common source of throttling errors is
58
+ * creating resources that exceed your service limit for this resource type.
59
+ * Request a limit increase or delete unused resources if possible.</p>
60
+ *
61
+ * @throws {@link TooManyTagsException} (client fault)
62
+ * <p></p>
63
+ *
64
+ *
33
65
  */
34
66
  export declare class CreateMemberCommand extends $Command<CreateMemberCommandInput, CreateMemberCommandOutput, ManagedBlockchainClientResolvedConfig> {
35
67
  readonly input: CreateMemberCommandInput;
@@ -30,6 +30,32 @@ export interface CreateNetworkCommandOutput extends CreateNetworkOutput, __Metad
30
30
  * @see {@link CreateNetworkCommandOutput} for command's `response` shape.
31
31
  * @see {@link ManagedBlockchainClientResolvedConfig | config} for ManagedBlockchainClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>You don't have sufficient access to perform this action.</p>
35
+ *
36
+ * @throws {@link InternalServiceErrorException} (server fault)
37
+ * <p>The request processing has failed because of an unknown error, exception or failure.</p>
38
+ *
39
+ * @throws {@link InvalidRequestException} (client fault)
40
+ * <p>The action or operation requested is invalid. Verify that the action is typed correctly.</p>
41
+ *
42
+ * @throws {@link ResourceAlreadyExistsException} (client fault)
43
+ * <p>A resource request is issued for a resource that already exists.</p>
44
+ *
45
+ * @throws {@link ResourceLimitExceededException} (client fault)
46
+ * <p>The maximum number of resources of that type already exist. Ensure the resources requested
47
+ * are within the boundaries of the service edition and your account limits.</p>
48
+ *
49
+ * @throws {@link ThrottlingException} (client fault)
50
+ * <p>The request or operation couldn't be performed because a service is
51
+ * throttling requests. The most common source of throttling errors is
52
+ * creating resources that exceed your service limit for this resource type.
53
+ * Request a limit increase or delete unused resources if possible.</p>
54
+ *
55
+ * @throws {@link TooManyTagsException} (client fault)
56
+ * <p></p>
57
+ *
58
+ *
33
59
  */
34
60
  export declare class CreateNetworkCommand extends $Command<CreateNetworkCommandInput, CreateNetworkCommandOutput, ManagedBlockchainClientResolvedConfig> {
35
61
  readonly input: CreateNetworkCommandInput;
@@ -30,6 +30,38 @@ export interface CreateNodeCommandOutput extends CreateNodeOutput, __MetadataBea
30
30
  * @see {@link CreateNodeCommandOutput} for command's `response` shape.
31
31
  * @see {@link ManagedBlockchainClientResolvedConfig | config} for ManagedBlockchainClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>You don't have sufficient access to perform this action.</p>
35
+ *
36
+ * @throws {@link InternalServiceErrorException} (server fault)
37
+ * <p>The request processing has failed because of an unknown error, exception or failure.</p>
38
+ *
39
+ * @throws {@link InvalidRequestException} (client fault)
40
+ * <p>The action or operation requested is invalid. Verify that the action is typed correctly.</p>
41
+ *
42
+ * @throws {@link ResourceAlreadyExistsException} (client fault)
43
+ * <p>A resource request is issued for a resource that already exists.</p>
44
+ *
45
+ * @throws {@link ResourceLimitExceededException} (client fault)
46
+ * <p>The maximum number of resources of that type already exist. Ensure the resources requested
47
+ * are within the boundaries of the service edition and your account limits.</p>
48
+ *
49
+ * @throws {@link ResourceNotFoundException} (client fault)
50
+ * <p>A requested resource doesn't exist. It may have been deleted or referenced incorrectly.</p>
51
+ *
52
+ * @throws {@link ResourceNotReadyException} (client fault)
53
+ * <p>The requested resource exists but isn't in a status that can complete the operation.</p>
54
+ *
55
+ * @throws {@link ThrottlingException} (client fault)
56
+ * <p>The request or operation couldn't be performed because a service is
57
+ * throttling requests. The most common source of throttling errors is
58
+ * creating resources that exceed your service limit for this resource type.
59
+ * Request a limit increase or delete unused resources if possible.</p>
60
+ *
61
+ * @throws {@link TooManyTagsException} (client fault)
62
+ * <p></p>
63
+ *
64
+ *
33
65
  */
34
66
  export declare class CreateNodeCommand extends $Command<CreateNodeCommandInput, CreateNodeCommandOutput, ManagedBlockchainClientResolvedConfig> {
35
67
  readonly input: CreateNodeCommandInput;
@@ -30,6 +30,31 @@ export interface CreateProposalCommandOutput extends CreateProposalOutput, __Met
30
30
  * @see {@link CreateProposalCommandOutput} for command's `response` shape.
31
31
  * @see {@link ManagedBlockchainClientResolvedConfig | config} for ManagedBlockchainClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>You don't have sufficient access to perform this action.</p>
35
+ *
36
+ * @throws {@link InternalServiceErrorException} (server fault)
37
+ * <p>The request processing has failed because of an unknown error, exception or failure.</p>
38
+ *
39
+ * @throws {@link InvalidRequestException} (client fault)
40
+ * <p>The action or operation requested is invalid. Verify that the action is typed correctly.</p>
41
+ *
42
+ * @throws {@link ResourceNotFoundException} (client fault)
43
+ * <p>A requested resource doesn't exist. It may have been deleted or referenced incorrectly.</p>
44
+ *
45
+ * @throws {@link ResourceNotReadyException} (client fault)
46
+ * <p>The requested resource exists but isn't in a status that can complete the operation.</p>
47
+ *
48
+ * @throws {@link ThrottlingException} (client fault)
49
+ * <p>The request or operation couldn't be performed because a service is
50
+ * throttling requests. The most common source of throttling errors is
51
+ * creating resources that exceed your service limit for this resource type.
52
+ * Request a limit increase or delete unused resources if possible.</p>
53
+ *
54
+ * @throws {@link TooManyTagsException} (client fault)
55
+ * <p></p>
56
+ *
57
+ *
33
58
  */
34
59
  export declare class CreateProposalCommand extends $Command<CreateProposalCommandInput, CreateProposalCommandOutput, ManagedBlockchainClientResolvedConfig> {
35
60
  readonly input: CreateProposalCommandInput;
@@ -35,6 +35,25 @@ export interface DeleteAccessorCommandOutput extends DeleteAccessorOutput, __Met
35
35
  * @see {@link DeleteAccessorCommandOutput} for command's `response` shape.
36
36
  * @see {@link ManagedBlockchainClientResolvedConfig | config} for ManagedBlockchainClient's `config` shape.
37
37
  *
38
+ * @throws {@link AccessDeniedException} (client fault)
39
+ * <p>You don't have sufficient access to perform this action.</p>
40
+ *
41
+ * @throws {@link InternalServiceErrorException} (server fault)
42
+ * <p>The request processing has failed because of an unknown error, exception or failure.</p>
43
+ *
44
+ * @throws {@link InvalidRequestException} (client fault)
45
+ * <p>The action or operation requested is invalid. Verify that the action is typed correctly.</p>
46
+ *
47
+ * @throws {@link ResourceNotFoundException} (client fault)
48
+ * <p>A requested resource doesn't exist. It may have been deleted or referenced incorrectly.</p>
49
+ *
50
+ * @throws {@link ThrottlingException} (client fault)
51
+ * <p>The request or operation couldn't be performed because a service is
52
+ * throttling requests. The most common source of throttling errors is
53
+ * creating resources that exceed your service limit for this resource type.
54
+ * Request a limit increase or delete unused resources if possible.</p>
55
+ *
56
+ *
38
57
  */
39
58
  export declare class DeleteAccessorCommand extends $Command<DeleteAccessorCommandInput, DeleteAccessorCommandOutput, ManagedBlockchainClientResolvedConfig> {
40
59
  readonly input: DeleteAccessorCommandInput;
@@ -30,6 +30,28 @@ export interface DeleteMemberCommandOutput extends DeleteMemberOutput, __Metadat
30
30
  * @see {@link DeleteMemberCommandOutput} for command's `response` shape.
31
31
  * @see {@link ManagedBlockchainClientResolvedConfig | config} for ManagedBlockchainClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>You don't have sufficient access to perform this action.</p>
35
+ *
36
+ * @throws {@link InternalServiceErrorException} (server fault)
37
+ * <p>The request processing has failed because of an unknown error, exception or failure.</p>
38
+ *
39
+ * @throws {@link InvalidRequestException} (client fault)
40
+ * <p>The action or operation requested is invalid. Verify that the action is typed correctly.</p>
41
+ *
42
+ * @throws {@link ResourceNotFoundException} (client fault)
43
+ * <p>A requested resource doesn't exist. It may have been deleted or referenced incorrectly.</p>
44
+ *
45
+ * @throws {@link ResourceNotReadyException} (client fault)
46
+ * <p>The requested resource exists but isn't in a status that can complete the operation.</p>
47
+ *
48
+ * @throws {@link ThrottlingException} (client fault)
49
+ * <p>The request or operation couldn't be performed because a service is
50
+ * throttling requests. The most common source of throttling errors is
51
+ * creating resources that exceed your service limit for this resource type.
52
+ * Request a limit increase or delete unused resources if possible.</p>
53
+ *
54
+ *
33
55
  */
34
56
  export declare class DeleteMemberCommand extends $Command<DeleteMemberCommandInput, DeleteMemberCommandOutput, ManagedBlockchainClientResolvedConfig> {
35
57
  readonly input: DeleteMemberCommandInput;
@@ -30,6 +30,28 @@ export interface DeleteNodeCommandOutput extends DeleteNodeOutput, __MetadataBea
30
30
  * @see {@link DeleteNodeCommandOutput} for command's `response` shape.
31
31
  * @see {@link ManagedBlockchainClientResolvedConfig | config} for ManagedBlockchainClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>You don't have sufficient access to perform this action.</p>
35
+ *
36
+ * @throws {@link InternalServiceErrorException} (server fault)
37
+ * <p>The request processing has failed because of an unknown error, exception or failure.</p>
38
+ *
39
+ * @throws {@link InvalidRequestException} (client fault)
40
+ * <p>The action or operation requested is invalid. Verify that the action is typed correctly.</p>
41
+ *
42
+ * @throws {@link ResourceNotFoundException} (client fault)
43
+ * <p>A requested resource doesn't exist. It may have been deleted or referenced incorrectly.</p>
44
+ *
45
+ * @throws {@link ResourceNotReadyException} (client fault)
46
+ * <p>The requested resource exists but isn't in a status that can complete the operation.</p>
47
+ *
48
+ * @throws {@link ThrottlingException} (client fault)
49
+ * <p>The request or operation couldn't be performed because a service is
50
+ * throttling requests. The most common source of throttling errors is
51
+ * creating resources that exceed your service limit for this resource type.
52
+ * Request a limit increase or delete unused resources if possible.</p>
53
+ *
54
+ *
33
55
  */
34
56
  export declare class DeleteNodeCommand extends $Command<DeleteNodeCommandInput, DeleteNodeCommandOutput, ManagedBlockchainClientResolvedConfig> {
35
57
  readonly input: DeleteNodeCommandInput;
@@ -30,6 +30,25 @@ export interface GetAccessorCommandOutput extends GetAccessorOutput, __MetadataB
30
30
  * @see {@link GetAccessorCommandOutput} for command's `response` shape.
31
31
  * @see {@link ManagedBlockchainClientResolvedConfig | config} for ManagedBlockchainClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>You don't have sufficient access to perform this action.</p>
35
+ *
36
+ * @throws {@link InternalServiceErrorException} (server fault)
37
+ * <p>The request processing has failed because of an unknown error, exception or failure.</p>
38
+ *
39
+ * @throws {@link InvalidRequestException} (client fault)
40
+ * <p>The action or operation requested is invalid. Verify that the action is typed correctly.</p>
41
+ *
42
+ * @throws {@link ResourceNotFoundException} (client fault)
43
+ * <p>A requested resource doesn't exist. It may have been deleted or referenced incorrectly.</p>
44
+ *
45
+ * @throws {@link ThrottlingException} (client fault)
46
+ * <p>The request or operation couldn't be performed because a service is
47
+ * throttling requests. The most common source of throttling errors is
48
+ * creating resources that exceed your service limit for this resource type.
49
+ * Request a limit increase or delete unused resources if possible.</p>
50
+ *
51
+ *
33
52
  */
34
53
  export declare class GetAccessorCommand extends $Command<GetAccessorCommandInput, GetAccessorCommandOutput, ManagedBlockchainClientResolvedConfig> {
35
54
  readonly input: GetAccessorCommandInput;
@@ -30,6 +30,25 @@ export interface GetMemberCommandOutput extends GetMemberOutput, __MetadataBeare
30
30
  * @see {@link GetMemberCommandOutput} for command's `response` shape.
31
31
  * @see {@link ManagedBlockchainClientResolvedConfig | config} for ManagedBlockchainClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>You don't have sufficient access to perform this action.</p>
35
+ *
36
+ * @throws {@link InternalServiceErrorException} (server fault)
37
+ * <p>The request processing has failed because of an unknown error, exception or failure.</p>
38
+ *
39
+ * @throws {@link InvalidRequestException} (client fault)
40
+ * <p>The action or operation requested is invalid. Verify that the action is typed correctly.</p>
41
+ *
42
+ * @throws {@link ResourceNotFoundException} (client fault)
43
+ * <p>A requested resource doesn't exist. It may have been deleted or referenced incorrectly.</p>
44
+ *
45
+ * @throws {@link ThrottlingException} (client fault)
46
+ * <p>The request or operation couldn't be performed because a service is
47
+ * throttling requests. The most common source of throttling errors is
48
+ * creating resources that exceed your service limit for this resource type.
49
+ * Request a limit increase or delete unused resources if possible.</p>
50
+ *
51
+ *
33
52
  */
34
53
  export declare class GetMemberCommand extends $Command<GetMemberCommandInput, GetMemberCommandOutput, ManagedBlockchainClientResolvedConfig> {
35
54
  readonly input: GetMemberCommandInput;
@@ -30,6 +30,25 @@ export interface GetNetworkCommandOutput extends GetNetworkOutput, __MetadataBea
30
30
  * @see {@link GetNetworkCommandOutput} for command's `response` shape.
31
31
  * @see {@link ManagedBlockchainClientResolvedConfig | config} for ManagedBlockchainClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>You don't have sufficient access to perform this action.</p>
35
+ *
36
+ * @throws {@link InternalServiceErrorException} (server fault)
37
+ * <p>The request processing has failed because of an unknown error, exception or failure.</p>
38
+ *
39
+ * @throws {@link InvalidRequestException} (client fault)
40
+ * <p>The action or operation requested is invalid. Verify that the action is typed correctly.</p>
41
+ *
42
+ * @throws {@link ResourceNotFoundException} (client fault)
43
+ * <p>A requested resource doesn't exist. It may have been deleted or referenced incorrectly.</p>
44
+ *
45
+ * @throws {@link ThrottlingException} (client fault)
46
+ * <p>The request or operation couldn't be performed because a service is
47
+ * throttling requests. The most common source of throttling errors is
48
+ * creating resources that exceed your service limit for this resource type.
49
+ * Request a limit increase or delete unused resources if possible.</p>
50
+ *
51
+ *
33
52
  */
34
53
  export declare class GetNetworkCommand extends $Command<GetNetworkCommandInput, GetNetworkCommandOutput, ManagedBlockchainClientResolvedConfig> {
35
54
  readonly input: GetNetworkCommandInput;
@@ -30,6 +30,25 @@ export interface GetNodeCommandOutput extends GetNodeOutput, __MetadataBearer {
30
30
  * @see {@link GetNodeCommandOutput} for command's `response` shape.
31
31
  * @see {@link ManagedBlockchainClientResolvedConfig | config} for ManagedBlockchainClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>You don't have sufficient access to perform this action.</p>
35
+ *
36
+ * @throws {@link InternalServiceErrorException} (server fault)
37
+ * <p>The request processing has failed because of an unknown error, exception or failure.</p>
38
+ *
39
+ * @throws {@link InvalidRequestException} (client fault)
40
+ * <p>The action or operation requested is invalid. Verify that the action is typed correctly.</p>
41
+ *
42
+ * @throws {@link ResourceNotFoundException} (client fault)
43
+ * <p>A requested resource doesn't exist. It may have been deleted or referenced incorrectly.</p>
44
+ *
45
+ * @throws {@link ThrottlingException} (client fault)
46
+ * <p>The request or operation couldn't be performed because a service is
47
+ * throttling requests. The most common source of throttling errors is
48
+ * creating resources that exceed your service limit for this resource type.
49
+ * Request a limit increase or delete unused resources if possible.</p>
50
+ *
51
+ *
33
52
  */
34
53
  export declare class GetNodeCommand extends $Command<GetNodeCommandInput, GetNodeCommandOutput, ManagedBlockchainClientResolvedConfig> {
35
54
  readonly input: GetNodeCommandInput;
@@ -30,6 +30,25 @@ export interface GetProposalCommandOutput extends GetProposalOutput, __MetadataB
30
30
  * @see {@link GetProposalCommandOutput} for command's `response` shape.
31
31
  * @see {@link ManagedBlockchainClientResolvedConfig | config} for ManagedBlockchainClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>You don't have sufficient access to perform this action.</p>
35
+ *
36
+ * @throws {@link InternalServiceErrorException} (server fault)
37
+ * <p>The request processing has failed because of an unknown error, exception or failure.</p>
38
+ *
39
+ * @throws {@link InvalidRequestException} (client fault)
40
+ * <p>The action or operation requested is invalid. Verify that the action is typed correctly.</p>
41
+ *
42
+ * @throws {@link ResourceNotFoundException} (client fault)
43
+ * <p>A requested resource doesn't exist. It may have been deleted or referenced incorrectly.</p>
44
+ *
45
+ * @throws {@link ThrottlingException} (client fault)
46
+ * <p>The request or operation couldn't be performed because a service is
47
+ * throttling requests. The most common source of throttling errors is
48
+ * creating resources that exceed your service limit for this resource type.
49
+ * Request a limit increase or delete unused resources if possible.</p>
50
+ *
51
+ *
33
52
  */
34
53
  export declare class GetProposalCommand extends $Command<GetProposalCommandInput, GetProposalCommandOutput, ManagedBlockchainClientResolvedConfig> {
35
54
  readonly input: GetProposalCommandInput;
@@ -30,6 +30,22 @@ export interface ListAccessorsCommandOutput extends ListAccessorsOutput, __Metad
30
30
  * @see {@link ListAccessorsCommandOutput} for command's `response` shape.
31
31
  * @see {@link ManagedBlockchainClientResolvedConfig | config} for ManagedBlockchainClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>You don't have sufficient access to perform this action.</p>
35
+ *
36
+ * @throws {@link InternalServiceErrorException} (server fault)
37
+ * <p>The request processing has failed because of an unknown error, exception or failure.</p>
38
+ *
39
+ * @throws {@link InvalidRequestException} (client fault)
40
+ * <p>The action or operation requested is invalid. Verify that the action is typed correctly.</p>
41
+ *
42
+ * @throws {@link ThrottlingException} (client fault)
43
+ * <p>The request or operation couldn't be performed because a service is
44
+ * throttling requests. The most common source of throttling errors is
45
+ * creating resources that exceed your service limit for this resource type.
46
+ * Request a limit increase or delete unused resources if possible.</p>
47
+ *
48
+ *
33
49
  */
34
50
  export declare class ListAccessorsCommand extends $Command<ListAccessorsCommandInput, ListAccessorsCommandOutput, ManagedBlockchainClientResolvedConfig> {
35
51
  readonly input: ListAccessorsCommandInput;
@@ -30,6 +30,29 @@ export interface ListInvitationsCommandOutput extends ListInvitationsOutput, __M
30
30
  * @see {@link ListInvitationsCommandOutput} for command's `response` shape.
31
31
  * @see {@link ManagedBlockchainClientResolvedConfig | config} for ManagedBlockchainClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>You don't have sufficient access to perform this action.</p>
35
+ *
36
+ * @throws {@link InternalServiceErrorException} (server fault)
37
+ * <p>The request processing has failed because of an unknown error, exception or failure.</p>
38
+ *
39
+ * @throws {@link InvalidRequestException} (client fault)
40
+ * <p>The action or operation requested is invalid. Verify that the action is typed correctly.</p>
41
+ *
42
+ * @throws {@link ResourceLimitExceededException} (client fault)
43
+ * <p>The maximum number of resources of that type already exist. Ensure the resources requested
44
+ * are within the boundaries of the service edition and your account limits.</p>
45
+ *
46
+ * @throws {@link ResourceNotFoundException} (client fault)
47
+ * <p>A requested resource doesn't exist. It may have been deleted or referenced incorrectly.</p>
48
+ *
49
+ * @throws {@link ThrottlingException} (client fault)
50
+ * <p>The request or operation couldn't be performed because a service is
51
+ * throttling requests. The most common source of throttling errors is
52
+ * creating resources that exceed your service limit for this resource type.
53
+ * Request a limit increase or delete unused resources if possible.</p>
54
+ *
55
+ *
33
56
  */
34
57
  export declare class ListInvitationsCommand extends $Command<ListInvitationsCommandInput, ListInvitationsCommandOutput, ManagedBlockchainClientResolvedConfig> {
35
58
  readonly input: ListInvitationsCommandInput;
@@ -30,6 +30,22 @@ export interface ListMembersCommandOutput extends ListMembersOutput, __MetadataB
30
30
  * @see {@link ListMembersCommandOutput} for command's `response` shape.
31
31
  * @see {@link ManagedBlockchainClientResolvedConfig | config} for ManagedBlockchainClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>You don't have sufficient access to perform this action.</p>
35
+ *
36
+ * @throws {@link InternalServiceErrorException} (server fault)
37
+ * <p>The request processing has failed because of an unknown error, exception or failure.</p>
38
+ *
39
+ * @throws {@link InvalidRequestException} (client fault)
40
+ * <p>The action or operation requested is invalid. Verify that the action is typed correctly.</p>
41
+ *
42
+ * @throws {@link ThrottlingException} (client fault)
43
+ * <p>The request or operation couldn't be performed because a service is
44
+ * throttling requests. The most common source of throttling errors is
45
+ * creating resources that exceed your service limit for this resource type.
46
+ * Request a limit increase or delete unused resources if possible.</p>
47
+ *
48
+ *
33
49
  */
34
50
  export declare class ListMembersCommand extends $Command<ListMembersCommandInput, ListMembersCommandOutput, ManagedBlockchainClientResolvedConfig> {
35
51
  readonly input: ListMembersCommandInput;
@@ -30,6 +30,22 @@ export interface ListNetworksCommandOutput extends ListNetworksOutput, __Metadat
30
30
  * @see {@link ListNetworksCommandOutput} for command's `response` shape.
31
31
  * @see {@link ManagedBlockchainClientResolvedConfig | config} for ManagedBlockchainClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>You don't have sufficient access to perform this action.</p>
35
+ *
36
+ * @throws {@link InternalServiceErrorException} (server fault)
37
+ * <p>The request processing has failed because of an unknown error, exception or failure.</p>
38
+ *
39
+ * @throws {@link InvalidRequestException} (client fault)
40
+ * <p>The action or operation requested is invalid. Verify that the action is typed correctly.</p>
41
+ *
42
+ * @throws {@link ThrottlingException} (client fault)
43
+ * <p>The request or operation couldn't be performed because a service is
44
+ * throttling requests. The most common source of throttling errors is
45
+ * creating resources that exceed your service limit for this resource type.
46
+ * Request a limit increase or delete unused resources if possible.</p>
47
+ *
48
+ *
33
49
  */
34
50
  export declare class ListNetworksCommand extends $Command<ListNetworksCommandInput, ListNetworksCommandOutput, ManagedBlockchainClientResolvedConfig> {
35
51
  readonly input: ListNetworksCommandInput;
@@ -30,6 +30,22 @@ export interface ListNodesCommandOutput extends ListNodesOutput, __MetadataBeare
30
30
  * @see {@link ListNodesCommandOutput} for command's `response` shape.
31
31
  * @see {@link ManagedBlockchainClientResolvedConfig | config} for ManagedBlockchainClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>You don't have sufficient access to perform this action.</p>
35
+ *
36
+ * @throws {@link InternalServiceErrorException} (server fault)
37
+ * <p>The request processing has failed because of an unknown error, exception or failure.</p>
38
+ *
39
+ * @throws {@link InvalidRequestException} (client fault)
40
+ * <p>The action or operation requested is invalid. Verify that the action is typed correctly.</p>
41
+ *
42
+ * @throws {@link ThrottlingException} (client fault)
43
+ * <p>The request or operation couldn't be performed because a service is
44
+ * throttling requests. The most common source of throttling errors is
45
+ * creating resources that exceed your service limit for this resource type.
46
+ * Request a limit increase or delete unused resources if possible.</p>
47
+ *
48
+ *
33
49
  */
34
50
  export declare class ListNodesCommand extends $Command<ListNodesCommandInput, ListNodesCommandOutput, ManagedBlockchainClientResolvedConfig> {
35
51
  readonly input: ListNodesCommandInput;
@@ -30,6 +30,22 @@ export interface ListProposalVotesCommandOutput extends ListProposalVotesOutput,
30
30
  * @see {@link ListProposalVotesCommandOutput} for command's `response` shape.
31
31
  * @see {@link ManagedBlockchainClientResolvedConfig | config} for ManagedBlockchainClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>You don't have sufficient access to perform this action.</p>
35
+ *
36
+ * @throws {@link InternalServiceErrorException} (server fault)
37
+ * <p>The request processing has failed because of an unknown error, exception or failure.</p>
38
+ *
39
+ * @throws {@link InvalidRequestException} (client fault)
40
+ * <p>The action or operation requested is invalid. Verify that the action is typed correctly.</p>
41
+ *
42
+ * @throws {@link ThrottlingException} (client fault)
43
+ * <p>The request or operation couldn't be performed because a service is
44
+ * throttling requests. The most common source of throttling errors is
45
+ * creating resources that exceed your service limit for this resource type.
46
+ * Request a limit increase or delete unused resources if possible.</p>
47
+ *
48
+ *
33
49
  */
34
50
  export declare class ListProposalVotesCommand extends $Command<ListProposalVotesCommandInput, ListProposalVotesCommandOutput, ManagedBlockchainClientResolvedConfig> {
35
51
  readonly input: ListProposalVotesCommandInput;
@@ -30,6 +30,25 @@ export interface ListProposalsCommandOutput extends ListProposalsOutput, __Metad
30
30
  * @see {@link ListProposalsCommandOutput} for command's `response` shape.
31
31
  * @see {@link ManagedBlockchainClientResolvedConfig | config} for ManagedBlockchainClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>You don't have sufficient access to perform this action.</p>
35
+ *
36
+ * @throws {@link InternalServiceErrorException} (server fault)
37
+ * <p>The request processing has failed because of an unknown error, exception or failure.</p>
38
+ *
39
+ * @throws {@link InvalidRequestException} (client fault)
40
+ * <p>The action or operation requested is invalid. Verify that the action is typed correctly.</p>
41
+ *
42
+ * @throws {@link ResourceNotFoundException} (client fault)
43
+ * <p>A requested resource doesn't exist. It may have been deleted or referenced incorrectly.</p>
44
+ *
45
+ * @throws {@link ThrottlingException} (client fault)
46
+ * <p>The request or operation couldn't be performed because a service is
47
+ * throttling requests. The most common source of throttling errors is
48
+ * creating resources that exceed your service limit for this resource type.
49
+ * Request a limit increase or delete unused resources if possible.</p>
50
+ *
51
+ *
33
52
  */
34
53
  export declare class ListProposalsCommand extends $Command<ListProposalsCommandInput, ListProposalsCommandOutput, ManagedBlockchainClientResolvedConfig> {
35
54
  readonly input: ListProposalsCommandInput;
@@ -30,6 +30,19 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
30
30
  * @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
31
31
  * @see {@link ManagedBlockchainClientResolvedConfig | config} for ManagedBlockchainClient's `config` shape.
32
32
  *
33
+ * @throws {@link InternalServiceErrorException} (server fault)
34
+ * <p>The request processing has failed because of an unknown error, exception or failure.</p>
35
+ *
36
+ * @throws {@link InvalidRequestException} (client fault)
37
+ * <p>The action or operation requested is invalid. Verify that the action is typed correctly.</p>
38
+ *
39
+ * @throws {@link ResourceNotFoundException} (client fault)
40
+ * <p>A requested resource doesn't exist. It may have been deleted or referenced incorrectly.</p>
41
+ *
42
+ * @throws {@link ResourceNotReadyException} (client fault)
43
+ * <p>The requested resource exists but isn't in a status that can complete the operation.</p>
44
+ *
45
+ *
33
46
  */
34
47
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, ManagedBlockchainClientResolvedConfig> {
35
48
  readonly input: ListTagsForResourceCommandInput;
@@ -30,6 +30,28 @@ export interface RejectInvitationCommandOutput extends RejectInvitationOutput, _
30
30
  * @see {@link RejectInvitationCommandOutput} for command's `response` shape.
31
31
  * @see {@link ManagedBlockchainClientResolvedConfig | config} for ManagedBlockchainClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>You don't have sufficient access to perform this action.</p>
35
+ *
36
+ * @throws {@link IllegalActionException} (client fault)
37
+ * <p></p>
38
+ *
39
+ * @throws {@link InternalServiceErrorException} (server fault)
40
+ * <p>The request processing has failed because of an unknown error, exception or failure.</p>
41
+ *
42
+ * @throws {@link InvalidRequestException} (client fault)
43
+ * <p>The action or operation requested is invalid. Verify that the action is typed correctly.</p>
44
+ *
45
+ * @throws {@link ResourceNotFoundException} (client fault)
46
+ * <p>A requested resource doesn't exist. It may have been deleted or referenced incorrectly.</p>
47
+ *
48
+ * @throws {@link ThrottlingException} (client fault)
49
+ * <p>The request or operation couldn't be performed because a service is
50
+ * throttling requests. The most common source of throttling errors is
51
+ * creating resources that exceed your service limit for this resource type.
52
+ * Request a limit increase or delete unused resources if possible.</p>
53
+ *
54
+ *
33
55
  */
34
56
  export declare class RejectInvitationCommand extends $Command<RejectInvitationCommandInput, RejectInvitationCommandOutput, ManagedBlockchainClientResolvedConfig> {
35
57
  readonly input: RejectInvitationCommandInput;
@@ -32,6 +32,22 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
32
32
  * @see {@link TagResourceCommandOutput} for command's `response` shape.
33
33
  * @see {@link ManagedBlockchainClientResolvedConfig | config} for ManagedBlockchainClient's `config` shape.
34
34
  *
35
+ * @throws {@link InternalServiceErrorException} (server fault)
36
+ * <p>The request processing has failed because of an unknown error, exception or failure.</p>
37
+ *
38
+ * @throws {@link InvalidRequestException} (client fault)
39
+ * <p>The action or operation requested is invalid. Verify that the action is typed correctly.</p>
40
+ *
41
+ * @throws {@link ResourceNotFoundException} (client fault)
42
+ * <p>A requested resource doesn't exist. It may have been deleted or referenced incorrectly.</p>
43
+ *
44
+ * @throws {@link ResourceNotReadyException} (client fault)
45
+ * <p>The requested resource exists but isn't in a status that can complete the operation.</p>
46
+ *
47
+ * @throws {@link TooManyTagsException} (client fault)
48
+ * <p></p>
49
+ *
50
+ *
35
51
  */
36
52
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, ManagedBlockchainClientResolvedConfig> {
37
53
  readonly input: TagResourceCommandInput;
@@ -30,6 +30,19 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
30
30
  * @see {@link UntagResourceCommandOutput} for command's `response` shape.
31
31
  * @see {@link ManagedBlockchainClientResolvedConfig | config} for ManagedBlockchainClient's `config` shape.
32
32
  *
33
+ * @throws {@link InternalServiceErrorException} (server fault)
34
+ * <p>The request processing has failed because of an unknown error, exception or failure.</p>
35
+ *
36
+ * @throws {@link InvalidRequestException} (client fault)
37
+ * <p>The action or operation requested is invalid. Verify that the action is typed correctly.</p>
38
+ *
39
+ * @throws {@link ResourceNotFoundException} (client fault)
40
+ * <p>A requested resource doesn't exist. It may have been deleted or referenced incorrectly.</p>
41
+ *
42
+ * @throws {@link ResourceNotReadyException} (client fault)
43
+ * <p>The requested resource exists but isn't in a status that can complete the operation.</p>
44
+ *
45
+ *
33
46
  */
34
47
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, ManagedBlockchainClientResolvedConfig> {
35
48
  readonly input: UntagResourceCommandInput;
@@ -30,6 +30,25 @@ export interface UpdateMemberCommandOutput extends UpdateMemberOutput, __Metadat
30
30
  * @see {@link UpdateMemberCommandOutput} for command's `response` shape.
31
31
  * @see {@link ManagedBlockchainClientResolvedConfig | config} for ManagedBlockchainClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>You don't have sufficient access to perform this action.</p>
35
+ *
36
+ * @throws {@link InternalServiceErrorException} (server fault)
37
+ * <p>The request processing has failed because of an unknown error, exception or failure.</p>
38
+ *
39
+ * @throws {@link InvalidRequestException} (client fault)
40
+ * <p>The action or operation requested is invalid. Verify that the action is typed correctly.</p>
41
+ *
42
+ * @throws {@link ResourceNotFoundException} (client fault)
43
+ * <p>A requested resource doesn't exist. It may have been deleted or referenced incorrectly.</p>
44
+ *
45
+ * @throws {@link ThrottlingException} (client fault)
46
+ * <p>The request or operation couldn't be performed because a service is
47
+ * throttling requests. The most common source of throttling errors is
48
+ * creating resources that exceed your service limit for this resource type.
49
+ * Request a limit increase or delete unused resources if possible.</p>
50
+ *
51
+ *
33
52
  */
34
53
  export declare class UpdateMemberCommand extends $Command<UpdateMemberCommandInput, UpdateMemberCommandOutput, ManagedBlockchainClientResolvedConfig> {
35
54
  readonly input: UpdateMemberCommandInput;
@@ -30,6 +30,25 @@ export interface UpdateNodeCommandOutput extends UpdateNodeOutput, __MetadataBea
30
30
  * @see {@link UpdateNodeCommandOutput} for command's `response` shape.
31
31
  * @see {@link ManagedBlockchainClientResolvedConfig | config} for ManagedBlockchainClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>You don't have sufficient access to perform this action.</p>
35
+ *
36
+ * @throws {@link InternalServiceErrorException} (server fault)
37
+ * <p>The request processing has failed because of an unknown error, exception or failure.</p>
38
+ *
39
+ * @throws {@link InvalidRequestException} (client fault)
40
+ * <p>The action or operation requested is invalid. Verify that the action is typed correctly.</p>
41
+ *
42
+ * @throws {@link ResourceNotFoundException} (client fault)
43
+ * <p>A requested resource doesn't exist. It may have been deleted or referenced incorrectly.</p>
44
+ *
45
+ * @throws {@link ThrottlingException} (client fault)
46
+ * <p>The request or operation couldn't be performed because a service is
47
+ * throttling requests. The most common source of throttling errors is
48
+ * creating resources that exceed your service limit for this resource type.
49
+ * Request a limit increase or delete unused resources if possible.</p>
50
+ *
51
+ *
33
52
  */
34
53
  export declare class UpdateNodeCommand extends $Command<UpdateNodeCommandInput, UpdateNodeCommandOutput, ManagedBlockchainClientResolvedConfig> {
35
54
  readonly input: UpdateNodeCommandInput;
@@ -30,6 +30,28 @@ export interface VoteOnProposalCommandOutput extends VoteOnProposalOutput, __Met
30
30
  * @see {@link VoteOnProposalCommandOutput} for command's `response` shape.
31
31
  * @see {@link ManagedBlockchainClientResolvedConfig | config} for ManagedBlockchainClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>You don't have sufficient access to perform this action.</p>
35
+ *
36
+ * @throws {@link IllegalActionException} (client fault)
37
+ * <p></p>
38
+ *
39
+ * @throws {@link InternalServiceErrorException} (server fault)
40
+ * <p>The request processing has failed because of an unknown error, exception or failure.</p>
41
+ *
42
+ * @throws {@link InvalidRequestException} (client fault)
43
+ * <p>The action or operation requested is invalid. Verify that the action is typed correctly.</p>
44
+ *
45
+ * @throws {@link ResourceNotFoundException} (client fault)
46
+ * <p>A requested resource doesn't exist. It may have been deleted or referenced incorrectly.</p>
47
+ *
48
+ * @throws {@link ThrottlingException} (client fault)
49
+ * <p>The request or operation couldn't be performed because a service is
50
+ * throttling requests. The most common source of throttling errors is
51
+ * creating resources that exceed your service limit for this resource type.
52
+ * Request a limit increase or delete unused resources if possible.</p>
53
+ *
54
+ *
33
55
  */
34
56
  export declare class VoteOnProposalCommand extends $Command<VoteOnProposalCommandInput, VoteOnProposalCommandOutput, ManagedBlockchainClientResolvedConfig> {
35
57
  readonly input: VoteOnProposalCommandInput;
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.289.0",
4
+ "version": "3.292.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",
@@ -20,57 +20,52 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.289.0",
24
- "@aws-sdk/config-resolver": "3.289.0",
25
- "@aws-sdk/credential-provider-node": "3.289.0",
26
- "@aws-sdk/fetch-http-handler": "3.289.0",
27
- "@aws-sdk/hash-node": "3.289.0",
28
- "@aws-sdk/invalid-dependency": "3.289.0",
29
- "@aws-sdk/middleware-content-length": "3.289.0",
30
- "@aws-sdk/middleware-endpoint": "3.289.0",
31
- "@aws-sdk/middleware-host-header": "3.289.0",
32
- "@aws-sdk/middleware-logger": "3.289.0",
33
- "@aws-sdk/middleware-recursion-detection": "3.289.0",
34
- "@aws-sdk/middleware-retry": "3.289.0",
35
- "@aws-sdk/middleware-serde": "3.289.0",
36
- "@aws-sdk/middleware-signing": "3.289.0",
37
- "@aws-sdk/middleware-stack": "3.289.0",
38
- "@aws-sdk/middleware-user-agent": "3.289.0",
39
- "@aws-sdk/node-config-provider": "3.289.0",
40
- "@aws-sdk/node-http-handler": "3.289.0",
41
- "@aws-sdk/protocol-http": "3.289.0",
42
- "@aws-sdk/smithy-client": "3.289.0",
43
- "@aws-sdk/types": "3.289.0",
44
- "@aws-sdk/url-parser": "3.289.0",
45
- "@aws-sdk/util-base64": "3.208.0",
46
- "@aws-sdk/util-body-length-browser": "3.188.0",
47
- "@aws-sdk/util-body-length-node": "3.208.0",
48
- "@aws-sdk/util-defaults-mode-browser": "3.289.0",
49
- "@aws-sdk/util-defaults-mode-node": "3.289.0",
50
- "@aws-sdk/util-endpoints": "3.289.0",
51
- "@aws-sdk/util-retry": "3.289.0",
52
- "@aws-sdk/util-user-agent-browser": "3.289.0",
53
- "@aws-sdk/util-user-agent-node": "3.289.0",
54
- "@aws-sdk/util-utf8": "3.254.0",
23
+ "@aws-sdk/client-sts": "3.292.0",
24
+ "@aws-sdk/config-resolver": "3.292.0",
25
+ "@aws-sdk/credential-provider-node": "3.292.0",
26
+ "@aws-sdk/fetch-http-handler": "3.292.0",
27
+ "@aws-sdk/hash-node": "3.292.0",
28
+ "@aws-sdk/invalid-dependency": "3.292.0",
29
+ "@aws-sdk/middleware-content-length": "3.292.0",
30
+ "@aws-sdk/middleware-endpoint": "3.292.0",
31
+ "@aws-sdk/middleware-host-header": "3.292.0",
32
+ "@aws-sdk/middleware-logger": "3.292.0",
33
+ "@aws-sdk/middleware-recursion-detection": "3.292.0",
34
+ "@aws-sdk/middleware-retry": "3.292.0",
35
+ "@aws-sdk/middleware-serde": "3.292.0",
36
+ "@aws-sdk/middleware-signing": "3.292.0",
37
+ "@aws-sdk/middleware-stack": "3.292.0",
38
+ "@aws-sdk/middleware-user-agent": "3.292.0",
39
+ "@aws-sdk/node-config-provider": "3.292.0",
40
+ "@aws-sdk/node-http-handler": "3.292.0",
41
+ "@aws-sdk/protocol-http": "3.292.0",
42
+ "@aws-sdk/smithy-client": "3.292.0",
43
+ "@aws-sdk/types": "3.292.0",
44
+ "@aws-sdk/url-parser": "3.292.0",
45
+ "@aws-sdk/util-base64": "3.292.0",
46
+ "@aws-sdk/util-body-length-browser": "3.292.0",
47
+ "@aws-sdk/util-body-length-node": "3.292.0",
48
+ "@aws-sdk/util-defaults-mode-browser": "3.292.0",
49
+ "@aws-sdk/util-defaults-mode-node": "3.292.0",
50
+ "@aws-sdk/util-endpoints": "3.292.0",
51
+ "@aws-sdk/util-retry": "3.292.0",
52
+ "@aws-sdk/util-user-agent-browser": "3.292.0",
53
+ "@aws-sdk/util-user-agent-node": "3.292.0",
54
+ "@aws-sdk/util-utf8": "3.292.0",
55
55
  "tslib": "^2.3.1",
56
56
  "uuid": "^8.3.2"
57
57
  },
58
58
  "devDependencies": {
59
- "@aws-sdk/service-client-documentation-generator": "3.208.0",
59
+ "@aws-sdk/service-client-documentation-generator": "3.292.0",
60
60
  "@tsconfig/node14": "1.0.3",
61
61
  "@types/node": "^14.14.31",
62
62
  "@types/uuid": "^8.3.0",
63
63
  "concurrently": "7.0.0",
64
64
  "downlevel-dts": "0.10.1",
65
65
  "rimraf": "3.0.2",
66
- "typedoc": "0.19.2",
66
+ "typedoc": "0.23.23",
67
67
  "typescript": "~4.6.2"
68
68
  },
69
- "overrides": {
70
- "typedoc": {
71
- "typescript": "~4.6.2"
72
- }
73
- },
74
69
  "engines": {
75
70
  "node": ">=14.0.0"
76
71
  },