@aws-sdk/client-secrets-manager 3.168.0 → 3.170.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 (41) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/SecretsManager.d.ts +400 -115
  3. package/dist-types/ts3.4/SecretsManagerClient.d.ts +262 -95
  4. package/dist-types/ts3.4/commands/CancelRotateSecretCommand.d.ts +38 -17
  5. package/dist-types/ts3.4/commands/CreateSecretCommand.d.ts +34 -17
  6. package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +41 -17
  7. package/dist-types/ts3.4/commands/DeleteSecretCommand.d.ts +34 -17
  8. package/dist-types/ts3.4/commands/DescribeSecretCommand.d.ts +37 -17
  9. package/dist-types/ts3.4/commands/GetRandomPasswordCommand.d.ts +38 -17
  10. package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +38 -17
  11. package/dist-types/ts3.4/commands/GetSecretValueCommand.d.ts +37 -17
  12. package/dist-types/ts3.4/commands/ListSecretVersionIdsCommand.d.ts +41 -17
  13. package/dist-types/ts3.4/commands/ListSecretsCommand.d.ts +34 -17
  14. package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +38 -17
  15. package/dist-types/ts3.4/commands/PutSecretValueCommand.d.ts +37 -17
  16. package/dist-types/ts3.4/commands/RemoveRegionsFromReplicationCommand.d.ts +41 -17
  17. package/dist-types/ts3.4/commands/ReplicateSecretToRegionsCommand.d.ts +41 -17
  18. package/dist-types/ts3.4/commands/RestoreSecretCommand.d.ts +37 -17
  19. package/dist-types/ts3.4/commands/RotateSecretCommand.d.ts +34 -17
  20. package/dist-types/ts3.4/commands/StopReplicationToReplicaCommand.d.ts +41 -17
  21. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  22. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +32 -17
  23. package/dist-types/ts3.4/commands/UpdateSecretCommand.d.ts +34 -17
  24. package/dist-types/ts3.4/commands/UpdateSecretVersionStageCommand.d.ts +41 -17
  25. package/dist-types/ts3.4/commands/ValidateResourcePolicyCommand.d.ts +41 -17
  26. package/dist-types/ts3.4/commands/index.d.ts +22 -22
  27. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  28. package/dist-types/ts3.4/index.d.ts +6 -6
  29. package/dist-types/ts3.4/models/SecretsManagerServiceException.d.ts +8 -6
  30. package/dist-types/ts3.4/models/index.d.ts +1 -1
  31. package/dist-types/ts3.4/models/models_0.d.ts +745 -670
  32. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  33. package/dist-types/ts3.4/pagination/ListSecretVersionIdsPaginator.d.ts +11 -4
  34. package/dist-types/ts3.4/pagination/ListSecretsPaginator.d.ts +11 -4
  35. package/dist-types/ts3.4/pagination/index.d.ts +3 -3
  36. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +269 -68
  37. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  38. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  39. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  40. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  41. package/package.json +34 -34
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { StopReplicationToReplicaRequest, StopReplicationToReplicaResponse } from "../models/models_0";
4
- import { SecretsManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecretsManagerClient";
5
- export interface StopReplicationToReplicaCommandInput extends StopReplicationToReplicaRequest {
6
- }
7
- export interface StopReplicationToReplicaCommandOutput extends StopReplicationToReplicaResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class StopReplicationToReplicaCommand extends $Command<StopReplicationToReplicaCommandInput, StopReplicationToReplicaCommandOutput, SecretsManagerClientResolvedConfig> {
11
- readonly input: StopReplicationToReplicaCommandInput;
12
- constructor(input: StopReplicationToReplicaCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SecretsManagerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopReplicationToReplicaCommandInput, StopReplicationToReplicaCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ StopReplicationToReplicaRequest,
10
+ StopReplicationToReplicaResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ SecretsManagerClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../SecretsManagerClient";
17
+ export interface StopReplicationToReplicaCommandInput
18
+ extends StopReplicationToReplicaRequest {}
19
+ export interface StopReplicationToReplicaCommandOutput
20
+ extends StopReplicationToReplicaResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class StopReplicationToReplicaCommand extends $Command<
24
+ StopReplicationToReplicaCommandInput,
25
+ StopReplicationToReplicaCommandOutput,
26
+ SecretsManagerClientResolvedConfig
27
+ > {
28
+ readonly input: StopReplicationToReplicaCommandInput;
29
+ constructor(input: StopReplicationToReplicaCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SecretsManagerClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ StopReplicationToReplicaCommandInput,
37
+ StopReplicationToReplicaCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { TagResourceRequest } from "../models/models_0";
4
- import { SecretsManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecretsManagerClient";
5
- export interface TagResourceCommandInput extends TagResourceRequest {
6
- }
7
- export interface TagResourceCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, SecretsManagerClientResolvedConfig> {
11
- readonly input: TagResourceCommandInput;
12
- constructor(input: TagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SecretsManagerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import { TagResourceRequest } from "../models/models_0";
9
+ import {
10
+ SecretsManagerClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../SecretsManagerClient";
14
+ export interface TagResourceCommandInput extends TagResourceRequest {}
15
+ export interface TagResourceCommandOutput extends __MetadataBearer {}
16
+
17
+ export declare class TagResourceCommand extends $Command<
18
+ TagResourceCommandInput,
19
+ TagResourceCommandOutput,
20
+ SecretsManagerClientResolvedConfig
21
+ > {
22
+ readonly input: TagResourceCommandInput;
23
+ constructor(input: TagResourceCommandInput);
24
+
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: SecretsManagerClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { UntagResourceRequest } from "../models/models_0";
4
- import { SecretsManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecretsManagerClient";
5
- export interface UntagResourceCommandInput extends UntagResourceRequest {
6
- }
7
- export interface UntagResourceCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, SecretsManagerClientResolvedConfig> {
11
- readonly input: UntagResourceCommandInput;
12
- constructor(input: UntagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SecretsManagerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import { UntagResourceRequest } from "../models/models_0";
9
+ import {
10
+ SecretsManagerClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../SecretsManagerClient";
14
+ export interface UntagResourceCommandInput extends UntagResourceRequest {}
15
+ export interface UntagResourceCommandOutput extends __MetadataBearer {}
16
+
17
+ export declare class UntagResourceCommand extends $Command<
18
+ UntagResourceCommandInput,
19
+ UntagResourceCommandOutput,
20
+ SecretsManagerClientResolvedConfig
21
+ > {
22
+ readonly input: UntagResourceCommandInput;
23
+ constructor(input: UntagResourceCommandInput);
24
+
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: SecretsManagerClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { UpdateSecretRequest, UpdateSecretResponse } from "../models/models_0";
4
- import { SecretsManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecretsManagerClient";
5
- export interface UpdateSecretCommandInput extends UpdateSecretRequest {
6
- }
7
- export interface UpdateSecretCommandOutput extends UpdateSecretResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateSecretCommand extends $Command<UpdateSecretCommandInput, UpdateSecretCommandOutput, SecretsManagerClientResolvedConfig> {
11
- readonly input: UpdateSecretCommandInput;
12
- constructor(input: UpdateSecretCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SecretsManagerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateSecretCommandInput, UpdateSecretCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import { UpdateSecretRequest, UpdateSecretResponse } from "../models/models_0";
9
+ import {
10
+ SecretsManagerClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../SecretsManagerClient";
14
+ export interface UpdateSecretCommandInput extends UpdateSecretRequest {}
15
+ export interface UpdateSecretCommandOutput
16
+ extends UpdateSecretResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class UpdateSecretCommand extends $Command<
20
+ UpdateSecretCommandInput,
21
+ UpdateSecretCommandOutput,
22
+ SecretsManagerClientResolvedConfig
23
+ > {
24
+ readonly input: UpdateSecretCommandInput;
25
+ constructor(input: UpdateSecretCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: SecretsManagerClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<UpdateSecretCommandInput, UpdateSecretCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { UpdateSecretVersionStageRequest, UpdateSecretVersionStageResponse } from "../models/models_0";
4
- import { SecretsManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecretsManagerClient";
5
- export interface UpdateSecretVersionStageCommandInput extends UpdateSecretVersionStageRequest {
6
- }
7
- export interface UpdateSecretVersionStageCommandOutput extends UpdateSecretVersionStageResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateSecretVersionStageCommand extends $Command<UpdateSecretVersionStageCommandInput, UpdateSecretVersionStageCommandOutput, SecretsManagerClientResolvedConfig> {
11
- readonly input: UpdateSecretVersionStageCommandInput;
12
- constructor(input: UpdateSecretVersionStageCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SecretsManagerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateSecretVersionStageCommandInput, UpdateSecretVersionStageCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ UpdateSecretVersionStageRequest,
10
+ UpdateSecretVersionStageResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ SecretsManagerClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../SecretsManagerClient";
17
+ export interface UpdateSecretVersionStageCommandInput
18
+ extends UpdateSecretVersionStageRequest {}
19
+ export interface UpdateSecretVersionStageCommandOutput
20
+ extends UpdateSecretVersionStageResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class UpdateSecretVersionStageCommand extends $Command<
24
+ UpdateSecretVersionStageCommandInput,
25
+ UpdateSecretVersionStageCommandOutput,
26
+ SecretsManagerClientResolvedConfig
27
+ > {
28
+ readonly input: UpdateSecretVersionStageCommandInput;
29
+ constructor(input: UpdateSecretVersionStageCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SecretsManagerClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ UpdateSecretVersionStageCommandInput,
37
+ UpdateSecretVersionStageCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ValidateResourcePolicyRequest, ValidateResourcePolicyResponse } from "../models/models_0";
4
- import { SecretsManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecretsManagerClient";
5
- export interface ValidateResourcePolicyCommandInput extends ValidateResourcePolicyRequest {
6
- }
7
- export interface ValidateResourcePolicyCommandOutput extends ValidateResourcePolicyResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ValidateResourcePolicyCommand extends $Command<ValidateResourcePolicyCommandInput, ValidateResourcePolicyCommandOutput, SecretsManagerClientResolvedConfig> {
11
- readonly input: ValidateResourcePolicyCommandInput;
12
- constructor(input: ValidateResourcePolicyCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SecretsManagerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ValidateResourcePolicyCommandInput, ValidateResourcePolicyCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ValidateResourcePolicyRequest,
10
+ ValidateResourcePolicyResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ SecretsManagerClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../SecretsManagerClient";
17
+ export interface ValidateResourcePolicyCommandInput
18
+ extends ValidateResourcePolicyRequest {}
19
+ export interface ValidateResourcePolicyCommandOutput
20
+ extends ValidateResourcePolicyResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ValidateResourcePolicyCommand extends $Command<
24
+ ValidateResourcePolicyCommandInput,
25
+ ValidateResourcePolicyCommandOutput,
26
+ SecretsManagerClientResolvedConfig
27
+ > {
28
+ readonly input: ValidateResourcePolicyCommandInput;
29
+ constructor(input: ValidateResourcePolicyCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: SecretsManagerClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ ValidateResourcePolicyCommandInput,
37
+ ValidateResourcePolicyCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,22 +1,22 @@
1
- export * from "./CancelRotateSecretCommand";
2
- export * from "./CreateSecretCommand";
3
- export * from "./DeleteResourcePolicyCommand";
4
- export * from "./DeleteSecretCommand";
5
- export * from "./DescribeSecretCommand";
6
- export * from "./GetRandomPasswordCommand";
7
- export * from "./GetResourcePolicyCommand";
8
- export * from "./GetSecretValueCommand";
9
- export * from "./ListSecretVersionIdsCommand";
10
- export * from "./ListSecretsCommand";
11
- export * from "./PutResourcePolicyCommand";
12
- export * from "./PutSecretValueCommand";
13
- export * from "./RemoveRegionsFromReplicationCommand";
14
- export * from "./ReplicateSecretToRegionsCommand";
15
- export * from "./RestoreSecretCommand";
16
- export * from "./RotateSecretCommand";
17
- export * from "./StopReplicationToReplicaCommand";
18
- export * from "./TagResourceCommand";
19
- export * from "./UntagResourceCommand";
20
- export * from "./UpdateSecretCommand";
21
- export * from "./UpdateSecretVersionStageCommand";
22
- export * from "./ValidateResourcePolicyCommand";
1
+ export * from "./CancelRotateSecretCommand";
2
+ export * from "./CreateSecretCommand";
3
+ export * from "./DeleteResourcePolicyCommand";
4
+ export * from "./DeleteSecretCommand";
5
+ export * from "./DescribeSecretCommand";
6
+ export * from "./GetRandomPasswordCommand";
7
+ export * from "./GetResourcePolicyCommand";
8
+ export * from "./GetSecretValueCommand";
9
+ export * from "./ListSecretVersionIdsCommand";
10
+ export * from "./ListSecretsCommand";
11
+ export * from "./PutResourcePolicyCommand";
12
+ export * from "./PutSecretValueCommand";
13
+ export * from "./RemoveRegionsFromReplicationCommand";
14
+ export * from "./ReplicateSecretToRegionsCommand";
15
+ export * from "./RestoreSecretCommand";
16
+ export * from "./RotateSecretCommand";
17
+ export * from "./StopReplicationToReplicaCommand";
18
+ export * from "./TagResourceCommand";
19
+ export * from "./UntagResourceCommand";
20
+ export * from "./UpdateSecretCommand";
21
+ export * from "./UpdateSecretVersionStageCommand";
22
+ export * from "./ValidateResourcePolicyCommand";
@@ -1,2 +1,2 @@
1
- import { RegionInfoProvider } from "@aws-sdk/types";
2
- export declare const defaultRegionInfoProvider: RegionInfoProvider;
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -1,6 +1,6 @@
1
- export * from "./SecretsManager";
2
- export * from "./SecretsManagerClient";
3
- export * from "./commands";
4
- export * from "./models";
5
- export * from "./pagination";
6
- export { SecretsManagerServiceException } from "./models/SecretsManagerServiceException";
1
+ export * from "./SecretsManager";
2
+ export * from "./SecretsManagerClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export { SecretsManagerServiceException } from "./models/SecretsManagerServiceException";
@@ -1,6 +1,8 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class SecretsManagerServiceException extends __ServiceException {
4
-
5
- constructor(options: __ServiceExceptionOptions);
6
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+
6
+ export declare class SecretsManagerServiceException extends __ServiceException {
7
+ constructor(options: __ServiceExceptionOptions);
8
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";