@depup/aws-sdk__client-secrets-manager 3.1010.0-depup.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 (159) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +39 -0
  3. package/changes.json +42 -0
  4. package/dist-cjs/auth/httpAuthSchemeProvider.js +46 -0
  5. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  6. package/dist-cjs/endpoint/ruleset.js +7 -0
  7. package/dist-cjs/index.js +511 -0
  8. package/dist-cjs/models/SecretsManagerServiceException.js +12 -0
  9. package/dist-cjs/models/errors.js +184 -0
  10. package/dist-cjs/runtimeConfig.browser.js +38 -0
  11. package/dist-cjs/runtimeConfig.js +53 -0
  12. package/dist-cjs/runtimeConfig.native.js +15 -0
  13. package/dist-cjs/runtimeConfig.shared.js +43 -0
  14. package/dist-cjs/schemas/schemas_0.js +665 -0
  15. package/dist-es/SecretsManager.js +61 -0
  16. package/dist-es/SecretsManagerClient.js +50 -0
  17. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  18. package/dist-es/auth/httpAuthSchemeProvider.js +40 -0
  19. package/dist-es/commands/BatchGetSecretValueCommand.js +16 -0
  20. package/dist-es/commands/CancelRotateSecretCommand.js +16 -0
  21. package/dist-es/commands/CreateSecretCommand.js +16 -0
  22. package/dist-es/commands/DeleteResourcePolicyCommand.js +16 -0
  23. package/dist-es/commands/DeleteSecretCommand.js +16 -0
  24. package/dist-es/commands/DescribeSecretCommand.js +16 -0
  25. package/dist-es/commands/GetRandomPasswordCommand.js +16 -0
  26. package/dist-es/commands/GetResourcePolicyCommand.js +16 -0
  27. package/dist-es/commands/GetSecretValueCommand.js +16 -0
  28. package/dist-es/commands/ListSecretVersionIdsCommand.js +16 -0
  29. package/dist-es/commands/ListSecretsCommand.js +16 -0
  30. package/dist-es/commands/PutResourcePolicyCommand.js +16 -0
  31. package/dist-es/commands/PutSecretValueCommand.js +16 -0
  32. package/dist-es/commands/RemoveRegionsFromReplicationCommand.js +16 -0
  33. package/dist-es/commands/ReplicateSecretToRegionsCommand.js +16 -0
  34. package/dist-es/commands/RestoreSecretCommand.js +16 -0
  35. package/dist-es/commands/RotateSecretCommand.js +16 -0
  36. package/dist-es/commands/StopReplicationToReplicaCommand.js +16 -0
  37. package/dist-es/commands/TagResourceCommand.js +16 -0
  38. package/dist-es/commands/UntagResourceCommand.js +16 -0
  39. package/dist-es/commands/UpdateSecretCommand.js +16 -0
  40. package/dist-es/commands/UpdateSecretVersionStageCommand.js +16 -0
  41. package/dist-es/commands/ValidateResourcePolicyCommand.js +16 -0
  42. package/dist-es/commands/index.js +23 -0
  43. package/dist-es/endpoint/EndpointParameters.js +13 -0
  44. package/dist-es/endpoint/endpointResolver.js +14 -0
  45. package/dist-es/endpoint/ruleset.js +4 -0
  46. package/dist-es/extensionConfiguration.js +1 -0
  47. package/dist-es/index.js +9 -0
  48. package/dist-es/models/SecretsManagerServiceException.js +8 -0
  49. package/dist-es/models/enums.js +24 -0
  50. package/dist-es/models/errors.js +169 -0
  51. package/dist-es/models/models_0.js +1 -0
  52. package/dist-es/pagination/BatchGetSecretValuePaginator.js +4 -0
  53. package/dist-es/pagination/Interfaces.js +1 -0
  54. package/dist-es/pagination/ListSecretVersionIdsPaginator.js +4 -0
  55. package/dist-es/pagination/ListSecretsPaginator.js +4 -0
  56. package/dist-es/pagination/index.js +4 -0
  57. package/dist-es/runtimeConfig.browser.js +33 -0
  58. package/dist-es/runtimeConfig.js +48 -0
  59. package/dist-es/runtimeConfig.native.js +11 -0
  60. package/dist-es/runtimeConfig.shared.js +39 -0
  61. package/dist-es/runtimeExtensions.js +9 -0
  62. package/dist-es/schemas/schemas_0.js +661 -0
  63. package/dist-types/SecretsManager.d.ts +220 -0
  64. package/dist-types/SecretsManagerClient.d.ts +235 -0
  65. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  66. package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
  67. package/dist-types/commands/BatchGetSecretValueCommand.d.ts +210 -0
  68. package/dist-types/commands/CancelRotateSecretCommand.d.ts +135 -0
  69. package/dist-types/commands/CreateSecretCommand.d.ts +218 -0
  70. package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +126 -0
  71. package/dist-types/commands/DeleteSecretCommand.d.ts +135 -0
  72. package/dist-types/commands/DescribeSecretCommand.d.ts +137 -0
  73. package/dist-types/commands/GetRandomPasswordCommand.d.ts +135 -0
  74. package/dist-types/commands/GetResourcePolicyCommand.d.ts +138 -0
  75. package/dist-types/commands/GetSecretValueCommand.d.ts +157 -0
  76. package/dist-types/commands/ListSecretVersionIdsCommand.d.ts +151 -0
  77. package/dist-types/commands/ListSecretsCommand.d.ts +208 -0
  78. package/dist-types/commands/PutResourcePolicyCommand.d.ts +147 -0
  79. package/dist-types/commands/PutSecretValueCommand.d.ts +183 -0
  80. package/dist-types/commands/RemoveRegionsFromReplicationCommand.d.ts +122 -0
  81. package/dist-types/commands/ReplicateSecretToRegionsCommand.d.ts +157 -0
  82. package/dist-types/commands/RestoreSecretCommand.d.ts +126 -0
  83. package/dist-types/commands/RotateSecretCommand.d.ts +180 -0
  84. package/dist-types/commands/StopReplicationToReplicaCommand.d.ts +111 -0
  85. package/dist-types/commands/TagResourceCommand.d.ts +145 -0
  86. package/dist-types/commands/UntagResourceCommand.d.ts +134 -0
  87. package/dist-types/commands/UpdateSecretCommand.d.ts +221 -0
  88. package/dist-types/commands/UpdateSecretVersionStageCommand.d.ts +187 -0
  89. package/dist-types/commands/ValidateResourcePolicyCommand.d.ts +161 -0
  90. package/dist-types/commands/index.d.ts +23 -0
  91. package/dist-types/endpoint/EndpointParameters.d.ts +50 -0
  92. package/dist-types/endpoint/endpointResolver.d.ts +8 -0
  93. package/dist-types/endpoint/ruleset.d.ts +2 -0
  94. package/dist-types/extensionConfiguration.d.ts +9 -0
  95. package/dist-types/index.d.ts +42 -0
  96. package/dist-types/models/SecretsManagerServiceException.d.ts +14 -0
  97. package/dist-types/models/enums.d.ts +56 -0
  98. package/dist-types/models/errors.d.ts +175 -0
  99. package/dist-types/models/models_0.d.ts +1957 -0
  100. package/dist-types/pagination/BatchGetSecretValuePaginator.d.ts +7 -0
  101. package/dist-types/pagination/Interfaces.d.ts +8 -0
  102. package/dist-types/pagination/ListSecretVersionIdsPaginator.d.ts +7 -0
  103. package/dist-types/pagination/ListSecretsPaginator.d.ts +7 -0
  104. package/dist-types/pagination/index.d.ts +4 -0
  105. package/dist-types/runtimeConfig.browser.d.ts +55 -0
  106. package/dist-types/runtimeConfig.d.ts +55 -0
  107. package/dist-types/runtimeConfig.native.d.ts +54 -0
  108. package/dist-types/runtimeConfig.shared.d.ts +27 -0
  109. package/dist-types/runtimeExtensions.d.ts +17 -0
  110. package/dist-types/schemas/schemas_0.d.ts +99 -0
  111. package/dist-types/ts3.4/SecretsManager.d.ts +426 -0
  112. package/dist-types/ts3.4/SecretsManagerClient.d.ts +258 -0
  113. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  114. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
  115. package/dist-types/ts3.4/commands/BatchGetSecretValueCommand.d.ts +51 -0
  116. package/dist-types/ts3.4/commands/CancelRotateSecretCommand.d.ts +51 -0
  117. package/dist-types/ts3.4/commands/CreateSecretCommand.d.ts +47 -0
  118. package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +51 -0
  119. package/dist-types/ts3.4/commands/DeleteSecretCommand.d.ts +47 -0
  120. package/dist-types/ts3.4/commands/DescribeSecretCommand.d.ts +50 -0
  121. package/dist-types/ts3.4/commands/GetRandomPasswordCommand.d.ts +51 -0
  122. package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +51 -0
  123. package/dist-types/ts3.4/commands/GetSecretValueCommand.d.ts +50 -0
  124. package/dist-types/ts3.4/commands/ListSecretVersionIdsCommand.d.ts +51 -0
  125. package/dist-types/ts3.4/commands/ListSecretsCommand.d.ts +47 -0
  126. package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +51 -0
  127. package/dist-types/ts3.4/commands/PutSecretValueCommand.d.ts +50 -0
  128. package/dist-types/ts3.4/commands/RemoveRegionsFromReplicationCommand.d.ts +51 -0
  129. package/dist-types/ts3.4/commands/ReplicateSecretToRegionsCommand.d.ts +51 -0
  130. package/dist-types/ts3.4/commands/RestoreSecretCommand.d.ts +50 -0
  131. package/dist-types/ts3.4/commands/RotateSecretCommand.d.ts +47 -0
  132. package/dist-types/ts3.4/commands/StopReplicationToReplicaCommand.d.ts +51 -0
  133. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +45 -0
  134. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +45 -0
  135. package/dist-types/ts3.4/commands/UpdateSecretCommand.d.ts +47 -0
  136. package/dist-types/ts3.4/commands/UpdateSecretVersionStageCommand.d.ts +51 -0
  137. package/dist-types/ts3.4/commands/ValidateResourcePolicyCommand.d.ts +51 -0
  138. package/dist-types/ts3.4/commands/index.d.ts +23 -0
  139. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
  140. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  141. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  142. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  143. package/dist-types/ts3.4/index.d.ts +12 -0
  144. package/dist-types/ts3.4/models/SecretsManagerServiceException.d.ts +9 -0
  145. package/dist-types/ts3.4/models/enums.d.ts +29 -0
  146. package/dist-types/ts3.4/models/errors.d.ts +97 -0
  147. package/dist-types/ts3.4/models/models_0.d.ts +333 -0
  148. package/dist-types/ts3.4/pagination/BatchGetSecretValuePaginator.d.ts +11 -0
  149. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  150. package/dist-types/ts3.4/pagination/ListSecretVersionIdsPaginator.d.ts +11 -0
  151. package/dist-types/ts3.4/pagination/ListSecretsPaginator.d.ts +11 -0
  152. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  153. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +100 -0
  154. package/dist-types/ts3.4/runtimeConfig.d.ts +95 -0
  155. package/dist-types/ts3.4/runtimeConfig.native.d.ts +104 -0
  156. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +30 -0
  157. package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  158. package/dist-types/ts3.4/schemas/schemas_0.d.ts +98 -0
  159. package/package.json +159 -0
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ PutSecretValueRequest,
5
+ PutSecretValueResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ SecretsManagerClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../SecretsManagerClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface PutSecretValueCommandInput extends PutSecretValueRequest {}
15
+ export interface PutSecretValueCommandOutput
16
+ extends PutSecretValueResponse,
17
+ __MetadataBearer {}
18
+ declare const PutSecretValueCommand_base: {
19
+ new (
20
+ input: PutSecretValueCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ PutSecretValueCommandInput,
23
+ PutSecretValueCommandOutput,
24
+ SecretsManagerClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: PutSecretValueCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ PutSecretValueCommandInput,
32
+ PutSecretValueCommandOutput,
33
+ SecretsManagerClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class PutSecretValueCommand extends PutSecretValueCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: PutSecretValueRequest;
43
+ output: PutSecretValueResponse;
44
+ };
45
+ sdk: {
46
+ input: PutSecretValueCommandInput;
47
+ output: PutSecretValueCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ RemoveRegionsFromReplicationRequest,
5
+ RemoveRegionsFromReplicationResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ SecretsManagerClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../SecretsManagerClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface RemoveRegionsFromReplicationCommandInput
15
+ extends RemoveRegionsFromReplicationRequest {}
16
+ export interface RemoveRegionsFromReplicationCommandOutput
17
+ extends RemoveRegionsFromReplicationResponse,
18
+ __MetadataBearer {}
19
+ declare const RemoveRegionsFromReplicationCommand_base: {
20
+ new (
21
+ input: RemoveRegionsFromReplicationCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ RemoveRegionsFromReplicationCommandInput,
24
+ RemoveRegionsFromReplicationCommandOutput,
25
+ SecretsManagerClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: RemoveRegionsFromReplicationCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ RemoveRegionsFromReplicationCommandInput,
33
+ RemoveRegionsFromReplicationCommandOutput,
34
+ SecretsManagerClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class RemoveRegionsFromReplicationCommand extends RemoveRegionsFromReplicationCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: RemoveRegionsFromReplicationRequest;
44
+ output: RemoveRegionsFromReplicationResponse;
45
+ };
46
+ sdk: {
47
+ input: RemoveRegionsFromReplicationCommandInput;
48
+ output: RemoveRegionsFromReplicationCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ReplicateSecretToRegionsRequest,
5
+ ReplicateSecretToRegionsResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ SecretsManagerClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../SecretsManagerClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ReplicateSecretToRegionsCommandInput
15
+ extends ReplicateSecretToRegionsRequest {}
16
+ export interface ReplicateSecretToRegionsCommandOutput
17
+ extends ReplicateSecretToRegionsResponse,
18
+ __MetadataBearer {}
19
+ declare const ReplicateSecretToRegionsCommand_base: {
20
+ new (
21
+ input: ReplicateSecretToRegionsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ReplicateSecretToRegionsCommandInput,
24
+ ReplicateSecretToRegionsCommandOutput,
25
+ SecretsManagerClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: ReplicateSecretToRegionsCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ReplicateSecretToRegionsCommandInput,
33
+ ReplicateSecretToRegionsCommandOutput,
34
+ SecretsManagerClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ReplicateSecretToRegionsCommand extends ReplicateSecretToRegionsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ReplicateSecretToRegionsRequest;
44
+ output: ReplicateSecretToRegionsResponse;
45
+ };
46
+ sdk: {
47
+ input: ReplicateSecretToRegionsCommandInput;
48
+ output: ReplicateSecretToRegionsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ RestoreSecretRequest,
5
+ RestoreSecretResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ SecretsManagerClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../SecretsManagerClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface RestoreSecretCommandInput extends RestoreSecretRequest {}
15
+ export interface RestoreSecretCommandOutput
16
+ extends RestoreSecretResponse,
17
+ __MetadataBearer {}
18
+ declare const RestoreSecretCommand_base: {
19
+ new (
20
+ input: RestoreSecretCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ RestoreSecretCommandInput,
23
+ RestoreSecretCommandOutput,
24
+ SecretsManagerClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: RestoreSecretCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ RestoreSecretCommandInput,
32
+ RestoreSecretCommandOutput,
33
+ SecretsManagerClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class RestoreSecretCommand extends RestoreSecretCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: RestoreSecretRequest;
43
+ output: RestoreSecretResponse;
44
+ };
45
+ sdk: {
46
+ input: RestoreSecretCommandInput;
47
+ output: RestoreSecretCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { RotateSecretRequest, RotateSecretResponse } from "../models/models_0";
4
+ import {
5
+ SecretsManagerClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../SecretsManagerClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface RotateSecretCommandInput extends RotateSecretRequest {}
12
+ export interface RotateSecretCommandOutput
13
+ extends RotateSecretResponse,
14
+ __MetadataBearer {}
15
+ declare const RotateSecretCommand_base: {
16
+ new (
17
+ input: RotateSecretCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ RotateSecretCommandInput,
20
+ RotateSecretCommandOutput,
21
+ SecretsManagerClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: RotateSecretCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ RotateSecretCommandInput,
29
+ RotateSecretCommandOutput,
30
+ SecretsManagerClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class RotateSecretCommand extends RotateSecretCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: RotateSecretRequest;
40
+ output: RotateSecretResponse;
41
+ };
42
+ sdk: {
43
+ input: RotateSecretCommandInput;
44
+ output: RotateSecretCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ StopReplicationToReplicaRequest,
5
+ StopReplicationToReplicaResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ SecretsManagerClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../SecretsManagerClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface StopReplicationToReplicaCommandInput
15
+ extends StopReplicationToReplicaRequest {}
16
+ export interface StopReplicationToReplicaCommandOutput
17
+ extends StopReplicationToReplicaResponse,
18
+ __MetadataBearer {}
19
+ declare const StopReplicationToReplicaCommand_base: {
20
+ new (
21
+ input: StopReplicationToReplicaCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ StopReplicationToReplicaCommandInput,
24
+ StopReplicationToReplicaCommandOutput,
25
+ SecretsManagerClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: StopReplicationToReplicaCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ StopReplicationToReplicaCommandInput,
33
+ StopReplicationToReplicaCommandOutput,
34
+ SecretsManagerClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class StopReplicationToReplicaCommand extends StopReplicationToReplicaCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: StopReplicationToReplicaRequest;
44
+ output: StopReplicationToReplicaResponse;
45
+ };
46
+ sdk: {
47
+ input: StopReplicationToReplicaCommandInput;
48
+ output: StopReplicationToReplicaCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,45 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { TagResourceRequest } from "../models/models_0";
4
+ import {
5
+ SecretsManagerClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../SecretsManagerClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface TagResourceCommandInput extends TagResourceRequest {}
12
+ export interface TagResourceCommandOutput extends __MetadataBearer {}
13
+ declare const TagResourceCommand_base: {
14
+ new (
15
+ input: TagResourceCommandInput
16
+ ): import("@smithy/smithy-client").CommandImpl<
17
+ TagResourceCommandInput,
18
+ TagResourceCommandOutput,
19
+ SecretsManagerClientResolvedConfig,
20
+ ServiceInputTypes,
21
+ ServiceOutputTypes
22
+ >;
23
+ new (
24
+ input: TagResourceCommandInput
25
+ ): import("@smithy/smithy-client").CommandImpl<
26
+ TagResourceCommandInput,
27
+ TagResourceCommandOutput,
28
+ SecretsManagerClientResolvedConfig,
29
+ ServiceInputTypes,
30
+ ServiceOutputTypes
31
+ >;
32
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
33
+ };
34
+ export declare class TagResourceCommand extends TagResourceCommand_base {
35
+ protected static __types: {
36
+ api: {
37
+ input: TagResourceRequest;
38
+ output: {};
39
+ };
40
+ sdk: {
41
+ input: TagResourceCommandInput;
42
+ output: TagResourceCommandOutput;
43
+ };
44
+ };
45
+ }
@@ -0,0 +1,45 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { UntagResourceRequest } from "../models/models_0";
4
+ import {
5
+ SecretsManagerClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../SecretsManagerClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface UntagResourceCommandInput extends UntagResourceRequest {}
12
+ export interface UntagResourceCommandOutput extends __MetadataBearer {}
13
+ declare const UntagResourceCommand_base: {
14
+ new (
15
+ input: UntagResourceCommandInput
16
+ ): import("@smithy/smithy-client").CommandImpl<
17
+ UntagResourceCommandInput,
18
+ UntagResourceCommandOutput,
19
+ SecretsManagerClientResolvedConfig,
20
+ ServiceInputTypes,
21
+ ServiceOutputTypes
22
+ >;
23
+ new (
24
+ input: UntagResourceCommandInput
25
+ ): import("@smithy/smithy-client").CommandImpl<
26
+ UntagResourceCommandInput,
27
+ UntagResourceCommandOutput,
28
+ SecretsManagerClientResolvedConfig,
29
+ ServiceInputTypes,
30
+ ServiceOutputTypes
31
+ >;
32
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
33
+ };
34
+ export declare class UntagResourceCommand extends UntagResourceCommand_base {
35
+ protected static __types: {
36
+ api: {
37
+ input: UntagResourceRequest;
38
+ output: {};
39
+ };
40
+ sdk: {
41
+ input: UntagResourceCommandInput;
42
+ output: UntagResourceCommandOutput;
43
+ };
44
+ };
45
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { UpdateSecretRequest, UpdateSecretResponse } from "../models/models_0";
4
+ import {
5
+ SecretsManagerClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../SecretsManagerClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface UpdateSecretCommandInput extends UpdateSecretRequest {}
12
+ export interface UpdateSecretCommandOutput
13
+ extends UpdateSecretResponse,
14
+ __MetadataBearer {}
15
+ declare const UpdateSecretCommand_base: {
16
+ new (
17
+ input: UpdateSecretCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ UpdateSecretCommandInput,
20
+ UpdateSecretCommandOutput,
21
+ SecretsManagerClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: UpdateSecretCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ UpdateSecretCommandInput,
29
+ UpdateSecretCommandOutput,
30
+ SecretsManagerClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class UpdateSecretCommand extends UpdateSecretCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: UpdateSecretRequest;
40
+ output: UpdateSecretResponse;
41
+ };
42
+ sdk: {
43
+ input: UpdateSecretCommandInput;
44
+ output: UpdateSecretCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ UpdateSecretVersionStageRequest,
5
+ UpdateSecretVersionStageResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ SecretsManagerClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../SecretsManagerClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface UpdateSecretVersionStageCommandInput
15
+ extends UpdateSecretVersionStageRequest {}
16
+ export interface UpdateSecretVersionStageCommandOutput
17
+ extends UpdateSecretVersionStageResponse,
18
+ __MetadataBearer {}
19
+ declare const UpdateSecretVersionStageCommand_base: {
20
+ new (
21
+ input: UpdateSecretVersionStageCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ UpdateSecretVersionStageCommandInput,
24
+ UpdateSecretVersionStageCommandOutput,
25
+ SecretsManagerClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: UpdateSecretVersionStageCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ UpdateSecretVersionStageCommandInput,
33
+ UpdateSecretVersionStageCommandOutput,
34
+ SecretsManagerClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class UpdateSecretVersionStageCommand extends UpdateSecretVersionStageCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: UpdateSecretVersionStageRequest;
44
+ output: UpdateSecretVersionStageResponse;
45
+ };
46
+ sdk: {
47
+ input: UpdateSecretVersionStageCommandInput;
48
+ output: UpdateSecretVersionStageCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ValidateResourcePolicyRequest,
5
+ ValidateResourcePolicyResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ SecretsManagerClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../SecretsManagerClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ValidateResourcePolicyCommandInput
15
+ extends ValidateResourcePolicyRequest {}
16
+ export interface ValidateResourcePolicyCommandOutput
17
+ extends ValidateResourcePolicyResponse,
18
+ __MetadataBearer {}
19
+ declare const ValidateResourcePolicyCommand_base: {
20
+ new (
21
+ input: ValidateResourcePolicyCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ValidateResourcePolicyCommandInput,
24
+ ValidateResourcePolicyCommandOutput,
25
+ SecretsManagerClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: ValidateResourcePolicyCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ValidateResourcePolicyCommandInput,
33
+ ValidateResourcePolicyCommandOutput,
34
+ SecretsManagerClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ValidateResourcePolicyCommand extends ValidateResourcePolicyCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ValidateResourcePolicyRequest;
44
+ output: ValidateResourcePolicyResponse;
45
+ };
46
+ sdk: {
47
+ input: ValidateResourcePolicyCommandInput;
48
+ output: ValidateResourcePolicyCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,23 @@
1
+ export * from "./BatchGetSecretValueCommand";
2
+ export * from "./CancelRotateSecretCommand";
3
+ export * from "./CreateSecretCommand";
4
+ export * from "./DeleteResourcePolicyCommand";
5
+ export * from "./DeleteSecretCommand";
6
+ export * from "./DescribeSecretCommand";
7
+ export * from "./GetRandomPasswordCommand";
8
+ export * from "./GetResourcePolicyCommand";
9
+ export * from "./GetSecretValueCommand";
10
+ export * from "./ListSecretVersionIdsCommand";
11
+ export * from "./ListSecretsCommand";
12
+ export * from "./PutResourcePolicyCommand";
13
+ export * from "./PutSecretValueCommand";
14
+ export * from "./RemoveRegionsFromReplicationCommand";
15
+ export * from "./ReplicateSecretToRegionsCommand";
16
+ export * from "./RestoreSecretCommand";
17
+ export * from "./RotateSecretCommand";
18
+ export * from "./StopReplicationToReplicaCommand";
19
+ export * from "./TagResourceCommand";
20
+ export * from "./UntagResourceCommand";
21
+ export * from "./UpdateSecretCommand";
22
+ export * from "./UpdateSecretVersionStageCommand";
23
+ export * from "./ValidateResourcePolicyCommand";
@@ -0,0 +1,51 @@
1
+ import {
2
+ Endpoint,
3
+ EndpointParameters as __EndpointParameters,
4
+ EndpointV2,
5
+ Provider,
6
+ } from "@smithy/types";
7
+ export interface ClientInputEndpointParameters {
8
+ region?: string | undefined | Provider<string | undefined>;
9
+ useDualstackEndpoint?: boolean | undefined | Provider<boolean | undefined>;
10
+ useFipsEndpoint?: boolean | undefined | Provider<boolean | undefined>;
11
+ endpoint?:
12
+ | string
13
+ | Provider<string>
14
+ | Endpoint
15
+ | Provider<Endpoint>
16
+ | EndpointV2
17
+ | Provider<EndpointV2>;
18
+ }
19
+ export type ClientResolvedEndpointParameters = Pick<
20
+ ClientInputEndpointParameters,
21
+ Exclude<keyof ClientInputEndpointParameters, "endpoint">
22
+ > & {
23
+ defaultSigningName: string;
24
+ };
25
+ export declare const resolveClientEndpointParameters: <T>(
26
+ options: T & ClientInputEndpointParameters
27
+ ) => T & ClientResolvedEndpointParameters;
28
+ export declare const commonParams: {
29
+ readonly UseFIPS: {
30
+ readonly type: "builtInParams";
31
+ readonly name: "useFipsEndpoint";
32
+ };
33
+ readonly Endpoint: {
34
+ readonly type: "builtInParams";
35
+ readonly name: "endpoint";
36
+ };
37
+ readonly Region: {
38
+ readonly type: "builtInParams";
39
+ readonly name: "region";
40
+ };
41
+ readonly UseDualStack: {
42
+ readonly type: "builtInParams";
43
+ readonly name: "useDualstackEndpoint";
44
+ };
45
+ };
46
+ export interface EndpointParameters extends __EndpointParameters {
47
+ Region?: string | undefined;
48
+ UseDualStack?: boolean | undefined;
49
+ UseFIPS?: boolean | undefined;
50
+ Endpoint?: string | undefined;
51
+ }
@@ -0,0 +1,8 @@
1
+ import { EndpointV2, Logger } from "@smithy/types";
2
+ import { EndpointParameters } from "./EndpointParameters";
3
+ export declare const defaultEndpointResolver: (
4
+ endpointParams: EndpointParameters,
5
+ context?: {
6
+ logger?: Logger;
7
+ }
8
+ ) => EndpointV2;
@@ -0,0 +1,2 @@
1
+ import { RuleSetObject } from "@smithy/types";
2
+ export declare const ruleSet: RuleSetObject;
@@ -0,0 +1,9 @@
1
+ import { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
2
+ import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
3
+ import { DefaultExtensionConfiguration } from "@smithy/types";
4
+ import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
5
+ export interface SecretsManagerExtensionConfiguration
6
+ extends HttpHandlerExtensionConfiguration,
7
+ DefaultExtensionConfiguration,
8
+ AwsRegionExtensionConfiguration,
9
+ HttpAuthExtensionConfiguration {}
@@ -0,0 +1,12 @@
1
+ export * from "./SecretsManagerClient";
2
+ export * from "./SecretsManager";
3
+ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
4
+ export { RuntimeExtension } from "./runtimeExtensions";
5
+ export { SecretsManagerExtensionConfiguration } from "./extensionConfiguration";
6
+ export * from "./commands";
7
+ export * from "./schemas/schemas_0";
8
+ export * from "./pagination";
9
+ export * from "./models/enums";
10
+ export * from "./models/errors";
11
+ export * from "./models/models_0";
12
+ export { SecretsManagerServiceException } from "./models/SecretsManagerServiceException";
@@ -0,0 +1,9 @@
1
+ import {
2
+ ServiceExceptionOptions as __ServiceExceptionOptions,
3
+ ServiceException as __ServiceException,
4
+ } from "@smithy/smithy-client";
5
+ export { __ServiceExceptionOptions };
6
+ export { __ServiceException };
7
+ export declare class SecretsManagerServiceException extends __ServiceException {
8
+ constructor(options: __ServiceExceptionOptions);
9
+ }