@aws-sdk/client-cloudhsm-v2 3.169.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 +8 -0
- package/dist-types/ts3.4/CloudHSMV2.d.ts +274 -80
- package/dist-types/ts3.4/CloudHSMV2Client.d.ts +219 -88
- package/dist-types/ts3.4/commands/CopyBackupToRegionCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/CreateClusterCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateHsmCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteBackupCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteClusterCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteHsmCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DescribeBackupsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeClustersCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/InitializeClusterCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListTagsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ModifyBackupAttributesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ModifyClusterCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/RestoreBackupCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/index.d.ts +15 -15
- 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/CloudHSMV2ServiceException.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 +489 -441
- package/dist-types/ts3.4/pagination/DescribeBackupsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeClustersPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListTagsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +4 -4
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +185 -47
- 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,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
|
+
CloudHSMV2ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../CloudHSMV2Client";
|
|
13
|
+
import {
|
|
14
|
+
DescribeBackupsRequest,
|
|
15
|
+
DescribeBackupsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeBackupsCommandInput extends DescribeBackupsRequest {}
|
|
18
|
+
export interface DescribeBackupsCommandOutput
|
|
19
|
+
extends DescribeBackupsResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class DescribeBackupsCommand extends $Command<
|
|
23
|
+
DescribeBackupsCommandInput,
|
|
24
|
+
DescribeBackupsCommandOutput,
|
|
25
|
+
CloudHSMV2ClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeBackupsCommandInput;
|
|
28
|
+
constructor(input: DescribeBackupsCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: CloudHSMV2ClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<DescribeBackupsCommandInput, DescribeBackupsCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -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
|
+
CloudHSMV2ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../CloudHSMV2Client";
|
|
13
|
+
import {
|
|
14
|
+
DescribeClustersRequest,
|
|
15
|
+
DescribeClustersResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeClustersCommandInput extends DescribeClustersRequest {}
|
|
18
|
+
export interface DescribeClustersCommandOutput
|
|
19
|
+
extends DescribeClustersResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class DescribeClustersCommand extends $Command<
|
|
23
|
+
DescribeClustersCommandInput,
|
|
24
|
+
DescribeClustersCommandOutput,
|
|
25
|
+
CloudHSMV2ClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeClustersCommandInput;
|
|
28
|
+
constructor(input: DescribeClustersCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: CloudHSMV2ClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<DescribeClustersCommandInput, DescribeClustersCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -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
|
+
CloudHSMV2ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../CloudHSMV2Client";
|
|
13
|
+
import {
|
|
14
|
+
InitializeClusterRequest,
|
|
15
|
+
InitializeClusterResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface InitializeClusterCommandInput
|
|
18
|
+
extends InitializeClusterRequest {}
|
|
19
|
+
export interface InitializeClusterCommandOutput
|
|
20
|
+
extends InitializeClusterResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class InitializeClusterCommand extends $Command<
|
|
24
|
+
InitializeClusterCommandInput,
|
|
25
|
+
InitializeClusterCommandOutput,
|
|
26
|
+
CloudHSMV2ClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: InitializeClusterCommandInput;
|
|
29
|
+
constructor(input: InitializeClusterCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: CloudHSMV2ClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<InitializeClusterCommandInput, InitializeClusterCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -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 {
|
|
9
|
+
CloudHSMV2ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../CloudHSMV2Client";
|
|
13
|
+
import { ListTagsRequest, ListTagsResponse } from "../models/models_0";
|
|
14
|
+
export interface ListTagsCommandInput extends ListTagsRequest {}
|
|
15
|
+
export interface ListTagsCommandOutput
|
|
16
|
+
extends ListTagsResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class ListTagsCommand extends $Command<
|
|
20
|
+
ListTagsCommandInput,
|
|
21
|
+
ListTagsCommandOutput,
|
|
22
|
+
CloudHSMV2ClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: ListTagsCommandInput;
|
|
25
|
+
constructor(input: ListTagsCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: CloudHSMV2ClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<ListTagsCommandInput, ListTagsCommandOutput>;
|
|
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
|
+
CloudHSMV2ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../CloudHSMV2Client";
|
|
13
|
+
import {
|
|
14
|
+
ModifyBackupAttributesRequest,
|
|
15
|
+
ModifyBackupAttributesResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ModifyBackupAttributesCommandInput
|
|
18
|
+
extends ModifyBackupAttributesRequest {}
|
|
19
|
+
export interface ModifyBackupAttributesCommandOutput
|
|
20
|
+
extends ModifyBackupAttributesResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class ModifyBackupAttributesCommand extends $Command<
|
|
24
|
+
ModifyBackupAttributesCommandInput,
|
|
25
|
+
ModifyBackupAttributesCommandOutput,
|
|
26
|
+
CloudHSMV2ClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ModifyBackupAttributesCommandInput;
|
|
29
|
+
constructor(input: ModifyBackupAttributesCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: CloudHSMV2ClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ModifyBackupAttributesCommandInput,
|
|
37
|
+
ModifyBackupAttributesCommandOutput
|
|
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
|
+
CloudHSMV2ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../CloudHSMV2Client";
|
|
13
|
+
import {
|
|
14
|
+
ModifyClusterRequest,
|
|
15
|
+
ModifyClusterResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ModifyClusterCommandInput extends ModifyClusterRequest {}
|
|
18
|
+
export interface ModifyClusterCommandOutput
|
|
19
|
+
extends ModifyClusterResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class ModifyClusterCommand extends $Command<
|
|
23
|
+
ModifyClusterCommandInput,
|
|
24
|
+
ModifyClusterCommandOutput,
|
|
25
|
+
CloudHSMV2ClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ModifyClusterCommandInput;
|
|
28
|
+
constructor(input: ModifyClusterCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: CloudHSMV2ClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<ModifyClusterCommandInput, ModifyClusterCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -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
|
+
CloudHSMV2ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../CloudHSMV2Client";
|
|
13
|
+
import {
|
|
14
|
+
RestoreBackupRequest,
|
|
15
|
+
RestoreBackupResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface RestoreBackupCommandInput extends RestoreBackupRequest {}
|
|
18
|
+
export interface RestoreBackupCommandOutput
|
|
19
|
+
extends RestoreBackupResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class RestoreBackupCommand extends $Command<
|
|
23
|
+
RestoreBackupCommandInput,
|
|
24
|
+
RestoreBackupCommandOutput,
|
|
25
|
+
CloudHSMV2ClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: RestoreBackupCommandInput;
|
|
28
|
+
constructor(input: RestoreBackupCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: CloudHSMV2ClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<RestoreBackupCommandInput, RestoreBackupCommandOutput>;
|
|
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 {
|
|
9
|
+
CloudHSMV2ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../CloudHSMV2Client";
|
|
13
|
+
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
14
|
+
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
15
|
+
export interface TagResourceCommandOutput
|
|
16
|
+
extends TagResourceResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class TagResourceCommand extends $Command<
|
|
20
|
+
TagResourceCommandInput,
|
|
21
|
+
TagResourceCommandOutput,
|
|
22
|
+
CloudHSMV2ClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: TagResourceCommandInput;
|
|
25
|
+
constructor(input: TagResourceCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: CloudHSMV2ClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -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
|
+
CloudHSMV2ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../CloudHSMV2Client";
|
|
13
|
+
import {
|
|
14
|
+
UntagResourceRequest,
|
|
15
|
+
UntagResourceResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
18
|
+
export interface UntagResourceCommandOutput
|
|
19
|
+
extends UntagResourceResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class UntagResourceCommand extends $Command<
|
|
23
|
+
UntagResourceCommandInput,
|
|
24
|
+
UntagResourceCommandOutput,
|
|
25
|
+
CloudHSMV2ClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: UntagResourceCommandInput;
|
|
28
|
+
constructor(input: UntagResourceCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: CloudHSMV2ClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
export * from "./CopyBackupToRegionCommand";
|
|
2
|
-
export * from "./CreateClusterCommand";
|
|
3
|
-
export * from "./CreateHsmCommand";
|
|
4
|
-
export * from "./DeleteBackupCommand";
|
|
5
|
-
export * from "./DeleteClusterCommand";
|
|
6
|
-
export * from "./DeleteHsmCommand";
|
|
7
|
-
export * from "./DescribeBackupsCommand";
|
|
8
|
-
export * from "./DescribeClustersCommand";
|
|
9
|
-
export * from "./InitializeClusterCommand";
|
|
10
|
-
export * from "./ListTagsCommand";
|
|
11
|
-
export * from "./ModifyBackupAttributesCommand";
|
|
12
|
-
export * from "./ModifyClusterCommand";
|
|
13
|
-
export * from "./RestoreBackupCommand";
|
|
14
|
-
export * from "./TagResourceCommand";
|
|
15
|
-
export * from "./UntagResourceCommand";
|
|
1
|
+
export * from "./CopyBackupToRegionCommand";
|
|
2
|
+
export * from "./CreateClusterCommand";
|
|
3
|
+
export * from "./CreateHsmCommand";
|
|
4
|
+
export * from "./DeleteBackupCommand";
|
|
5
|
+
export * from "./DeleteClusterCommand";
|
|
6
|
+
export * from "./DeleteHsmCommand";
|
|
7
|
+
export * from "./DescribeBackupsCommand";
|
|
8
|
+
export * from "./DescribeClustersCommand";
|
|
9
|
+
export * from "./InitializeClusterCommand";
|
|
10
|
+
export * from "./ListTagsCommand";
|
|
11
|
+
export * from "./ModifyBackupAttributesCommand";
|
|
12
|
+
export * from "./ModifyClusterCommand";
|
|
13
|
+
export * from "./RestoreBackupCommand";
|
|
14
|
+
export * from "./TagResourceCommand";
|
|
15
|
+
export * from "./UntagResourceCommand";
|
|
@@ -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 "./CloudHSMV2";
|
|
2
|
-
export * from "./CloudHSMV2Client";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export * from "./pagination";
|
|
6
|
-
export { CloudHSMV2ServiceException } from "./models/CloudHSMV2ServiceException";
|
|
1
|
+
export * from "./CloudHSMV2";
|
|
2
|
+
export * from "./CloudHSMV2Client";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export * from "./pagination";
|
|
6
|
+
export { CloudHSMV2ServiceException } from "./models/CloudHSMV2ServiceException";
|
|
@@ -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 CloudHSMV2ServiceException extends __ServiceException {
|
|
7
|
+
constructor(options: __ServiceExceptionOptions);
|
|
8
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|