@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.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/SecretsManager.d.ts +400 -115
- package/dist-types/ts3.4/SecretsManagerClient.d.ts +262 -95
- package/dist-types/ts3.4/commands/CancelRotateSecretCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/CreateSecretCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteSecretCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DescribeSecretCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetRandomPasswordCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetSecretValueCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListSecretVersionIdsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListSecretsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/PutSecretValueCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/RemoveRegionsFromReplicationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ReplicateSecretToRegionsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/RestoreSecretCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/RotateSecretCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/StopReplicationToReplicaCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UpdateSecretCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UpdateSecretVersionStageCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ValidateResourcePolicyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/index.d.ts +22 -22
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/SecretsManagerServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +745 -670
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListSecretVersionIdsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListSecretsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +3 -3
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +269 -68
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
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";
|