@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,38 @@
|
|
|
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
|
+
GetRandomPasswordRequest,
|
|
10
|
+
GetRandomPasswordResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
SecretsManagerClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../SecretsManagerClient";
|
|
17
|
+
export interface GetRandomPasswordCommandInput
|
|
18
|
+
extends GetRandomPasswordRequest {}
|
|
19
|
+
export interface GetRandomPasswordCommandOutput
|
|
20
|
+
extends GetRandomPasswordResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class GetRandomPasswordCommand extends $Command<
|
|
24
|
+
GetRandomPasswordCommandInput,
|
|
25
|
+
GetRandomPasswordCommandOutput,
|
|
26
|
+
SecretsManagerClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetRandomPasswordCommandInput;
|
|
29
|
+
constructor(input: GetRandomPasswordCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: SecretsManagerClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<GetRandomPasswordCommandInput, GetRandomPasswordCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
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
|
+
GetResourcePolicyRequest,
|
|
10
|
+
GetResourcePolicyResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
SecretsManagerClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../SecretsManagerClient";
|
|
17
|
+
export interface GetResourcePolicyCommandInput
|
|
18
|
+
extends GetResourcePolicyRequest {}
|
|
19
|
+
export interface GetResourcePolicyCommandOutput
|
|
20
|
+
extends GetResourcePolicyResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class GetResourcePolicyCommand extends $Command<
|
|
24
|
+
GetResourcePolicyCommandInput,
|
|
25
|
+
GetResourcePolicyCommandOutput,
|
|
26
|
+
SecretsManagerClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetResourcePolicyCommandInput;
|
|
29
|
+
constructor(input: GetResourcePolicyCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: SecretsManagerClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<GetResourcePolicyCommandInput, GetResourcePolicyCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
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
|
+
GetSecretValueRequest,
|
|
10
|
+
GetSecretValueResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
SecretsManagerClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../SecretsManagerClient";
|
|
17
|
+
export interface GetSecretValueCommandInput extends GetSecretValueRequest {}
|
|
18
|
+
export interface GetSecretValueCommandOutput
|
|
19
|
+
extends GetSecretValueResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class GetSecretValueCommand extends $Command<
|
|
23
|
+
GetSecretValueCommandInput,
|
|
24
|
+
GetSecretValueCommandOutput,
|
|
25
|
+
SecretsManagerClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetSecretValueCommandInput;
|
|
28
|
+
constructor(input: GetSecretValueCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: SecretsManagerClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<GetSecretValueCommandInput, GetSecretValueCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -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
|
+
ListSecretVersionIdsRequest,
|
|
10
|
+
ListSecretVersionIdsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
SecretsManagerClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../SecretsManagerClient";
|
|
17
|
+
export interface ListSecretVersionIdsCommandInput
|
|
18
|
+
extends ListSecretVersionIdsRequest {}
|
|
19
|
+
export interface ListSecretVersionIdsCommandOutput
|
|
20
|
+
extends ListSecretVersionIdsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class ListSecretVersionIdsCommand extends $Command<
|
|
24
|
+
ListSecretVersionIdsCommandInput,
|
|
25
|
+
ListSecretVersionIdsCommandOutput,
|
|
26
|
+
SecretsManagerClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListSecretVersionIdsCommandInput;
|
|
29
|
+
constructor(input: ListSecretVersionIdsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: SecretsManagerClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ListSecretVersionIdsCommandInput,
|
|
37
|
+
ListSecretVersionIdsCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -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 { ListSecretsRequest, ListSecretsResponse } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
SecretsManagerClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../SecretsManagerClient";
|
|
14
|
+
export interface ListSecretsCommandInput extends ListSecretsRequest {}
|
|
15
|
+
export interface ListSecretsCommandOutput
|
|
16
|
+
extends ListSecretsResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class ListSecretsCommand extends $Command<
|
|
20
|
+
ListSecretsCommandInput,
|
|
21
|
+
ListSecretsCommandOutput,
|
|
22
|
+
SecretsManagerClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: ListSecretsCommandInput;
|
|
25
|
+
constructor(input: ListSecretsCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: SecretsManagerClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<ListSecretsCommandInput, ListSecretsCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
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
|
+
PutResourcePolicyRequest,
|
|
10
|
+
PutResourcePolicyResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
SecretsManagerClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../SecretsManagerClient";
|
|
17
|
+
export interface PutResourcePolicyCommandInput
|
|
18
|
+
extends PutResourcePolicyRequest {}
|
|
19
|
+
export interface PutResourcePolicyCommandOutput
|
|
20
|
+
extends PutResourcePolicyResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class PutResourcePolicyCommand extends $Command<
|
|
24
|
+
PutResourcePolicyCommandInput,
|
|
25
|
+
PutResourcePolicyCommandOutput,
|
|
26
|
+
SecretsManagerClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: PutResourcePolicyCommandInput;
|
|
29
|
+
constructor(input: PutResourcePolicyCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: SecretsManagerClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
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
|
+
PutSecretValueRequest,
|
|
10
|
+
PutSecretValueResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
SecretsManagerClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../SecretsManagerClient";
|
|
17
|
+
export interface PutSecretValueCommandInput extends PutSecretValueRequest {}
|
|
18
|
+
export interface PutSecretValueCommandOutput
|
|
19
|
+
extends PutSecretValueResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class PutSecretValueCommand extends $Command<
|
|
23
|
+
PutSecretValueCommandInput,
|
|
24
|
+
PutSecretValueCommandOutput,
|
|
25
|
+
SecretsManagerClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: PutSecretValueCommandInput;
|
|
28
|
+
constructor(input: PutSecretValueCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: SecretsManagerClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<PutSecretValueCommandInput, PutSecretValueCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -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
|
+
RemoveRegionsFromReplicationRequest,
|
|
10
|
+
RemoveRegionsFromReplicationResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
SecretsManagerClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../SecretsManagerClient";
|
|
17
|
+
export interface RemoveRegionsFromReplicationCommandInput
|
|
18
|
+
extends RemoveRegionsFromReplicationRequest {}
|
|
19
|
+
export interface RemoveRegionsFromReplicationCommandOutput
|
|
20
|
+
extends RemoveRegionsFromReplicationResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class RemoveRegionsFromReplicationCommand extends $Command<
|
|
24
|
+
RemoveRegionsFromReplicationCommandInput,
|
|
25
|
+
RemoveRegionsFromReplicationCommandOutput,
|
|
26
|
+
SecretsManagerClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: RemoveRegionsFromReplicationCommandInput;
|
|
29
|
+
constructor(input: RemoveRegionsFromReplicationCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: SecretsManagerClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
RemoveRegionsFromReplicationCommandInput,
|
|
37
|
+
RemoveRegionsFromReplicationCommandOutput
|
|
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
|
+
ReplicateSecretToRegionsRequest,
|
|
10
|
+
ReplicateSecretToRegionsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
SecretsManagerClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../SecretsManagerClient";
|
|
17
|
+
export interface ReplicateSecretToRegionsCommandInput
|
|
18
|
+
extends ReplicateSecretToRegionsRequest {}
|
|
19
|
+
export interface ReplicateSecretToRegionsCommandOutput
|
|
20
|
+
extends ReplicateSecretToRegionsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class ReplicateSecretToRegionsCommand extends $Command<
|
|
24
|
+
ReplicateSecretToRegionsCommandInput,
|
|
25
|
+
ReplicateSecretToRegionsCommandOutput,
|
|
26
|
+
SecretsManagerClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ReplicateSecretToRegionsCommandInput;
|
|
29
|
+
constructor(input: ReplicateSecretToRegionsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: SecretsManagerClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ReplicateSecretToRegionsCommandInput,
|
|
37
|
+
ReplicateSecretToRegionsCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
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
|
+
RestoreSecretRequest,
|
|
10
|
+
RestoreSecretResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
SecretsManagerClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../SecretsManagerClient";
|
|
17
|
+
export interface RestoreSecretCommandInput extends RestoreSecretRequest {}
|
|
18
|
+
export interface RestoreSecretCommandOutput
|
|
19
|
+
extends RestoreSecretResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class RestoreSecretCommand extends $Command<
|
|
23
|
+
RestoreSecretCommandInput,
|
|
24
|
+
RestoreSecretCommandOutput,
|
|
25
|
+
SecretsManagerClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: RestoreSecretCommandInput;
|
|
28
|
+
constructor(input: RestoreSecretCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: SecretsManagerClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<RestoreSecretCommandInput, RestoreSecretCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -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 { RotateSecretRequest, RotateSecretResponse } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
SecretsManagerClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../SecretsManagerClient";
|
|
14
|
+
export interface RotateSecretCommandInput extends RotateSecretRequest {}
|
|
15
|
+
export interface RotateSecretCommandOutput
|
|
16
|
+
extends RotateSecretResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class RotateSecretCommand extends $Command<
|
|
20
|
+
RotateSecretCommandInput,
|
|
21
|
+
RotateSecretCommandOutput,
|
|
22
|
+
SecretsManagerClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: RotateSecretCommandInput;
|
|
25
|
+
constructor(input: RotateSecretCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: SecretsManagerClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<RotateSecretCommandInput, RotateSecretCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|