@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
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-cloudhsm-v2
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @aws-sdk/client-cloudhsm-v2
|
|
@@ -1,80 +1,274 @@
|
|
|
1
|
-
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
-
import { CloudHSMV2Client } from "./CloudHSMV2Client";
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
import {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import { CloudHSMV2Client } from "./CloudHSMV2Client";
|
|
3
|
+
import {
|
|
4
|
+
CopyBackupToRegionCommandInput,
|
|
5
|
+
CopyBackupToRegionCommandOutput,
|
|
6
|
+
} from "./commands/CopyBackupToRegionCommand";
|
|
7
|
+
import {
|
|
8
|
+
CreateClusterCommandInput,
|
|
9
|
+
CreateClusterCommandOutput,
|
|
10
|
+
} from "./commands/CreateClusterCommand";
|
|
11
|
+
import {
|
|
12
|
+
CreateHsmCommandInput,
|
|
13
|
+
CreateHsmCommandOutput,
|
|
14
|
+
} from "./commands/CreateHsmCommand";
|
|
15
|
+
import {
|
|
16
|
+
DeleteBackupCommandInput,
|
|
17
|
+
DeleteBackupCommandOutput,
|
|
18
|
+
} from "./commands/DeleteBackupCommand";
|
|
19
|
+
import {
|
|
20
|
+
DeleteClusterCommandInput,
|
|
21
|
+
DeleteClusterCommandOutput,
|
|
22
|
+
} from "./commands/DeleteClusterCommand";
|
|
23
|
+
import {
|
|
24
|
+
DeleteHsmCommandInput,
|
|
25
|
+
DeleteHsmCommandOutput,
|
|
26
|
+
} from "./commands/DeleteHsmCommand";
|
|
27
|
+
import {
|
|
28
|
+
DescribeBackupsCommandInput,
|
|
29
|
+
DescribeBackupsCommandOutput,
|
|
30
|
+
} from "./commands/DescribeBackupsCommand";
|
|
31
|
+
import {
|
|
32
|
+
DescribeClustersCommandInput,
|
|
33
|
+
DescribeClustersCommandOutput,
|
|
34
|
+
} from "./commands/DescribeClustersCommand";
|
|
35
|
+
import {
|
|
36
|
+
InitializeClusterCommandInput,
|
|
37
|
+
InitializeClusterCommandOutput,
|
|
38
|
+
} from "./commands/InitializeClusterCommand";
|
|
39
|
+
import {
|
|
40
|
+
ListTagsCommandInput,
|
|
41
|
+
ListTagsCommandOutput,
|
|
42
|
+
} from "./commands/ListTagsCommand";
|
|
43
|
+
import {
|
|
44
|
+
ModifyBackupAttributesCommandInput,
|
|
45
|
+
ModifyBackupAttributesCommandOutput,
|
|
46
|
+
} from "./commands/ModifyBackupAttributesCommand";
|
|
47
|
+
import {
|
|
48
|
+
ModifyClusterCommandInput,
|
|
49
|
+
ModifyClusterCommandOutput,
|
|
50
|
+
} from "./commands/ModifyClusterCommand";
|
|
51
|
+
import {
|
|
52
|
+
RestoreBackupCommandInput,
|
|
53
|
+
RestoreBackupCommandOutput,
|
|
54
|
+
} from "./commands/RestoreBackupCommand";
|
|
55
|
+
import {
|
|
56
|
+
TagResourceCommandInput,
|
|
57
|
+
TagResourceCommandOutput,
|
|
58
|
+
} from "./commands/TagResourceCommand";
|
|
59
|
+
import {
|
|
60
|
+
UntagResourceCommandInput,
|
|
61
|
+
UntagResourceCommandOutput,
|
|
62
|
+
} from "./commands/UntagResourceCommand";
|
|
63
|
+
|
|
64
|
+
export declare class CloudHSMV2 extends CloudHSMV2Client {
|
|
65
|
+
copyBackupToRegion(
|
|
66
|
+
args: CopyBackupToRegionCommandInput,
|
|
67
|
+
options?: __HttpHandlerOptions
|
|
68
|
+
): Promise<CopyBackupToRegionCommandOutput>;
|
|
69
|
+
copyBackupToRegion(
|
|
70
|
+
args: CopyBackupToRegionCommandInput,
|
|
71
|
+
cb: (err: any, data?: CopyBackupToRegionCommandOutput) => void
|
|
72
|
+
): void;
|
|
73
|
+
copyBackupToRegion(
|
|
74
|
+
args: CopyBackupToRegionCommandInput,
|
|
75
|
+
options: __HttpHandlerOptions,
|
|
76
|
+
cb: (err: any, data?: CopyBackupToRegionCommandOutput) => void
|
|
77
|
+
): void;
|
|
78
|
+
|
|
79
|
+
createCluster(
|
|
80
|
+
args: CreateClusterCommandInput,
|
|
81
|
+
options?: __HttpHandlerOptions
|
|
82
|
+
): Promise<CreateClusterCommandOutput>;
|
|
83
|
+
createCluster(
|
|
84
|
+
args: CreateClusterCommandInput,
|
|
85
|
+
cb: (err: any, data?: CreateClusterCommandOutput) => void
|
|
86
|
+
): void;
|
|
87
|
+
createCluster(
|
|
88
|
+
args: CreateClusterCommandInput,
|
|
89
|
+
options: __HttpHandlerOptions,
|
|
90
|
+
cb: (err: any, data?: CreateClusterCommandOutput) => void
|
|
91
|
+
): void;
|
|
92
|
+
|
|
93
|
+
createHsm(
|
|
94
|
+
args: CreateHsmCommandInput,
|
|
95
|
+
options?: __HttpHandlerOptions
|
|
96
|
+
): Promise<CreateHsmCommandOutput>;
|
|
97
|
+
createHsm(
|
|
98
|
+
args: CreateHsmCommandInput,
|
|
99
|
+
cb: (err: any, data?: CreateHsmCommandOutput) => void
|
|
100
|
+
): void;
|
|
101
|
+
createHsm(
|
|
102
|
+
args: CreateHsmCommandInput,
|
|
103
|
+
options: __HttpHandlerOptions,
|
|
104
|
+
cb: (err: any, data?: CreateHsmCommandOutput) => void
|
|
105
|
+
): void;
|
|
106
|
+
|
|
107
|
+
deleteBackup(
|
|
108
|
+
args: DeleteBackupCommandInput,
|
|
109
|
+
options?: __HttpHandlerOptions
|
|
110
|
+
): Promise<DeleteBackupCommandOutput>;
|
|
111
|
+
deleteBackup(
|
|
112
|
+
args: DeleteBackupCommandInput,
|
|
113
|
+
cb: (err: any, data?: DeleteBackupCommandOutput) => void
|
|
114
|
+
): void;
|
|
115
|
+
deleteBackup(
|
|
116
|
+
args: DeleteBackupCommandInput,
|
|
117
|
+
options: __HttpHandlerOptions,
|
|
118
|
+
cb: (err: any, data?: DeleteBackupCommandOutput) => void
|
|
119
|
+
): void;
|
|
120
|
+
|
|
121
|
+
deleteCluster(
|
|
122
|
+
args: DeleteClusterCommandInput,
|
|
123
|
+
options?: __HttpHandlerOptions
|
|
124
|
+
): Promise<DeleteClusterCommandOutput>;
|
|
125
|
+
deleteCluster(
|
|
126
|
+
args: DeleteClusterCommandInput,
|
|
127
|
+
cb: (err: any, data?: DeleteClusterCommandOutput) => void
|
|
128
|
+
): void;
|
|
129
|
+
deleteCluster(
|
|
130
|
+
args: DeleteClusterCommandInput,
|
|
131
|
+
options: __HttpHandlerOptions,
|
|
132
|
+
cb: (err: any, data?: DeleteClusterCommandOutput) => void
|
|
133
|
+
): void;
|
|
134
|
+
|
|
135
|
+
deleteHsm(
|
|
136
|
+
args: DeleteHsmCommandInput,
|
|
137
|
+
options?: __HttpHandlerOptions
|
|
138
|
+
): Promise<DeleteHsmCommandOutput>;
|
|
139
|
+
deleteHsm(
|
|
140
|
+
args: DeleteHsmCommandInput,
|
|
141
|
+
cb: (err: any, data?: DeleteHsmCommandOutput) => void
|
|
142
|
+
): void;
|
|
143
|
+
deleteHsm(
|
|
144
|
+
args: DeleteHsmCommandInput,
|
|
145
|
+
options: __HttpHandlerOptions,
|
|
146
|
+
cb: (err: any, data?: DeleteHsmCommandOutput) => void
|
|
147
|
+
): void;
|
|
148
|
+
|
|
149
|
+
describeBackups(
|
|
150
|
+
args: DescribeBackupsCommandInput,
|
|
151
|
+
options?: __HttpHandlerOptions
|
|
152
|
+
): Promise<DescribeBackupsCommandOutput>;
|
|
153
|
+
describeBackups(
|
|
154
|
+
args: DescribeBackupsCommandInput,
|
|
155
|
+
cb: (err: any, data?: DescribeBackupsCommandOutput) => void
|
|
156
|
+
): void;
|
|
157
|
+
describeBackups(
|
|
158
|
+
args: DescribeBackupsCommandInput,
|
|
159
|
+
options: __HttpHandlerOptions,
|
|
160
|
+
cb: (err: any, data?: DescribeBackupsCommandOutput) => void
|
|
161
|
+
): void;
|
|
162
|
+
|
|
163
|
+
describeClusters(
|
|
164
|
+
args: DescribeClustersCommandInput,
|
|
165
|
+
options?: __HttpHandlerOptions
|
|
166
|
+
): Promise<DescribeClustersCommandOutput>;
|
|
167
|
+
describeClusters(
|
|
168
|
+
args: DescribeClustersCommandInput,
|
|
169
|
+
cb: (err: any, data?: DescribeClustersCommandOutput) => void
|
|
170
|
+
): void;
|
|
171
|
+
describeClusters(
|
|
172
|
+
args: DescribeClustersCommandInput,
|
|
173
|
+
options: __HttpHandlerOptions,
|
|
174
|
+
cb: (err: any, data?: DescribeClustersCommandOutput) => void
|
|
175
|
+
): void;
|
|
176
|
+
|
|
177
|
+
initializeCluster(
|
|
178
|
+
args: InitializeClusterCommandInput,
|
|
179
|
+
options?: __HttpHandlerOptions
|
|
180
|
+
): Promise<InitializeClusterCommandOutput>;
|
|
181
|
+
initializeCluster(
|
|
182
|
+
args: InitializeClusterCommandInput,
|
|
183
|
+
cb: (err: any, data?: InitializeClusterCommandOutput) => void
|
|
184
|
+
): void;
|
|
185
|
+
initializeCluster(
|
|
186
|
+
args: InitializeClusterCommandInput,
|
|
187
|
+
options: __HttpHandlerOptions,
|
|
188
|
+
cb: (err: any, data?: InitializeClusterCommandOutput) => void
|
|
189
|
+
): void;
|
|
190
|
+
|
|
191
|
+
listTags(
|
|
192
|
+
args: ListTagsCommandInput,
|
|
193
|
+
options?: __HttpHandlerOptions
|
|
194
|
+
): Promise<ListTagsCommandOutput>;
|
|
195
|
+
listTags(
|
|
196
|
+
args: ListTagsCommandInput,
|
|
197
|
+
cb: (err: any, data?: ListTagsCommandOutput) => void
|
|
198
|
+
): void;
|
|
199
|
+
listTags(
|
|
200
|
+
args: ListTagsCommandInput,
|
|
201
|
+
options: __HttpHandlerOptions,
|
|
202
|
+
cb: (err: any, data?: ListTagsCommandOutput) => void
|
|
203
|
+
): void;
|
|
204
|
+
|
|
205
|
+
modifyBackupAttributes(
|
|
206
|
+
args: ModifyBackupAttributesCommandInput,
|
|
207
|
+
options?: __HttpHandlerOptions
|
|
208
|
+
): Promise<ModifyBackupAttributesCommandOutput>;
|
|
209
|
+
modifyBackupAttributes(
|
|
210
|
+
args: ModifyBackupAttributesCommandInput,
|
|
211
|
+
cb: (err: any, data?: ModifyBackupAttributesCommandOutput) => void
|
|
212
|
+
): void;
|
|
213
|
+
modifyBackupAttributes(
|
|
214
|
+
args: ModifyBackupAttributesCommandInput,
|
|
215
|
+
options: __HttpHandlerOptions,
|
|
216
|
+
cb: (err: any, data?: ModifyBackupAttributesCommandOutput) => void
|
|
217
|
+
): void;
|
|
218
|
+
|
|
219
|
+
modifyCluster(
|
|
220
|
+
args: ModifyClusterCommandInput,
|
|
221
|
+
options?: __HttpHandlerOptions
|
|
222
|
+
): Promise<ModifyClusterCommandOutput>;
|
|
223
|
+
modifyCluster(
|
|
224
|
+
args: ModifyClusterCommandInput,
|
|
225
|
+
cb: (err: any, data?: ModifyClusterCommandOutput) => void
|
|
226
|
+
): void;
|
|
227
|
+
modifyCluster(
|
|
228
|
+
args: ModifyClusterCommandInput,
|
|
229
|
+
options: __HttpHandlerOptions,
|
|
230
|
+
cb: (err: any, data?: ModifyClusterCommandOutput) => void
|
|
231
|
+
): void;
|
|
232
|
+
|
|
233
|
+
restoreBackup(
|
|
234
|
+
args: RestoreBackupCommandInput,
|
|
235
|
+
options?: __HttpHandlerOptions
|
|
236
|
+
): Promise<RestoreBackupCommandOutput>;
|
|
237
|
+
restoreBackup(
|
|
238
|
+
args: RestoreBackupCommandInput,
|
|
239
|
+
cb: (err: any, data?: RestoreBackupCommandOutput) => void
|
|
240
|
+
): void;
|
|
241
|
+
restoreBackup(
|
|
242
|
+
args: RestoreBackupCommandInput,
|
|
243
|
+
options: __HttpHandlerOptions,
|
|
244
|
+
cb: (err: any, data?: RestoreBackupCommandOutput) => void
|
|
245
|
+
): void;
|
|
246
|
+
|
|
247
|
+
tagResource(
|
|
248
|
+
args: TagResourceCommandInput,
|
|
249
|
+
options?: __HttpHandlerOptions
|
|
250
|
+
): Promise<TagResourceCommandOutput>;
|
|
251
|
+
tagResource(
|
|
252
|
+
args: TagResourceCommandInput,
|
|
253
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
254
|
+
): void;
|
|
255
|
+
tagResource(
|
|
256
|
+
args: TagResourceCommandInput,
|
|
257
|
+
options: __HttpHandlerOptions,
|
|
258
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
259
|
+
): void;
|
|
260
|
+
|
|
261
|
+
untagResource(
|
|
262
|
+
args: UntagResourceCommandInput,
|
|
263
|
+
options?: __HttpHandlerOptions
|
|
264
|
+
): Promise<UntagResourceCommandOutput>;
|
|
265
|
+
untagResource(
|
|
266
|
+
args: UntagResourceCommandInput,
|
|
267
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
268
|
+
): void;
|
|
269
|
+
untagResource(
|
|
270
|
+
args: UntagResourceCommandInput,
|
|
271
|
+
options: __HttpHandlerOptions,
|
|
272
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
273
|
+
): void;
|
|
274
|
+
}
|