@aws-sdk/client-cloudhsm-v2 3.315.0 → 3.319.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/dist-cjs/CloudHSMV2.js +19 -210
- package/dist-es/CloudHSMV2.js +19 -210
- package/dist-types/CloudHSMV2.d.ts +23 -62
- package/dist-types/ts3.4/CloudHSMV2.d.ts +4 -1
- package/package.json +8 -8
package/dist-cjs/CloudHSMV2.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.CloudHSMV2 = void 0;
|
|
4
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
4
5
|
const CloudHSMV2Client_1 = require("./CloudHSMV2Client");
|
|
5
6
|
const CopyBackupToRegionCommand_1 = require("./commands/CopyBackupToRegionCommand");
|
|
6
7
|
const CreateClusterCommand_1 = require("./commands/CreateClusterCommand");
|
|
@@ -17,216 +18,24 @@ const ModifyClusterCommand_1 = require("./commands/ModifyClusterCommand");
|
|
|
17
18
|
const RestoreBackupCommand_1 = require("./commands/RestoreBackupCommand");
|
|
18
19
|
const TagResourceCommand_1 = require("./commands/TagResourceCommand");
|
|
19
20
|
const UntagResourceCommand_1 = require("./commands/UntagResourceCommand");
|
|
21
|
+
const commands = {
|
|
22
|
+
CopyBackupToRegionCommand: CopyBackupToRegionCommand_1.CopyBackupToRegionCommand,
|
|
23
|
+
CreateClusterCommand: CreateClusterCommand_1.CreateClusterCommand,
|
|
24
|
+
CreateHsmCommand: CreateHsmCommand_1.CreateHsmCommand,
|
|
25
|
+
DeleteBackupCommand: DeleteBackupCommand_1.DeleteBackupCommand,
|
|
26
|
+
DeleteClusterCommand: DeleteClusterCommand_1.DeleteClusterCommand,
|
|
27
|
+
DeleteHsmCommand: DeleteHsmCommand_1.DeleteHsmCommand,
|
|
28
|
+
DescribeBackupsCommand: DescribeBackupsCommand_1.DescribeBackupsCommand,
|
|
29
|
+
DescribeClustersCommand: DescribeClustersCommand_1.DescribeClustersCommand,
|
|
30
|
+
InitializeClusterCommand: InitializeClusterCommand_1.InitializeClusterCommand,
|
|
31
|
+
ListTagsCommand: ListTagsCommand_1.ListTagsCommand,
|
|
32
|
+
ModifyBackupAttributesCommand: ModifyBackupAttributesCommand_1.ModifyBackupAttributesCommand,
|
|
33
|
+
ModifyClusterCommand: ModifyClusterCommand_1.ModifyClusterCommand,
|
|
34
|
+
RestoreBackupCommand: RestoreBackupCommand_1.RestoreBackupCommand,
|
|
35
|
+
TagResourceCommand: TagResourceCommand_1.TagResourceCommand,
|
|
36
|
+
UntagResourceCommand: UntagResourceCommand_1.UntagResourceCommand,
|
|
37
|
+
};
|
|
20
38
|
class CloudHSMV2 extends CloudHSMV2Client_1.CloudHSMV2Client {
|
|
21
|
-
copyBackupToRegion(args, optionsOrCb, cb) {
|
|
22
|
-
const command = new CopyBackupToRegionCommand_1.CopyBackupToRegionCommand(args);
|
|
23
|
-
if (typeof optionsOrCb === "function") {
|
|
24
|
-
this.send(command, optionsOrCb);
|
|
25
|
-
}
|
|
26
|
-
else if (typeof cb === "function") {
|
|
27
|
-
if (typeof optionsOrCb !== "object")
|
|
28
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
29
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
30
|
-
}
|
|
31
|
-
else {
|
|
32
|
-
return this.send(command, optionsOrCb);
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
createCluster(args, optionsOrCb, cb) {
|
|
36
|
-
const command = new CreateClusterCommand_1.CreateClusterCommand(args);
|
|
37
|
-
if (typeof optionsOrCb === "function") {
|
|
38
|
-
this.send(command, optionsOrCb);
|
|
39
|
-
}
|
|
40
|
-
else if (typeof cb === "function") {
|
|
41
|
-
if (typeof optionsOrCb !== "object")
|
|
42
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
43
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
44
|
-
}
|
|
45
|
-
else {
|
|
46
|
-
return this.send(command, optionsOrCb);
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
createHsm(args, optionsOrCb, cb) {
|
|
50
|
-
const command = new CreateHsmCommand_1.CreateHsmCommand(args);
|
|
51
|
-
if (typeof optionsOrCb === "function") {
|
|
52
|
-
this.send(command, optionsOrCb);
|
|
53
|
-
}
|
|
54
|
-
else if (typeof cb === "function") {
|
|
55
|
-
if (typeof optionsOrCb !== "object")
|
|
56
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
57
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
58
|
-
}
|
|
59
|
-
else {
|
|
60
|
-
return this.send(command, optionsOrCb);
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
deleteBackup(args, optionsOrCb, cb) {
|
|
64
|
-
const command = new DeleteBackupCommand_1.DeleteBackupCommand(args);
|
|
65
|
-
if (typeof optionsOrCb === "function") {
|
|
66
|
-
this.send(command, optionsOrCb);
|
|
67
|
-
}
|
|
68
|
-
else if (typeof cb === "function") {
|
|
69
|
-
if (typeof optionsOrCb !== "object")
|
|
70
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
71
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
72
|
-
}
|
|
73
|
-
else {
|
|
74
|
-
return this.send(command, optionsOrCb);
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
deleteCluster(args, optionsOrCb, cb) {
|
|
78
|
-
const command = new DeleteClusterCommand_1.DeleteClusterCommand(args);
|
|
79
|
-
if (typeof optionsOrCb === "function") {
|
|
80
|
-
this.send(command, optionsOrCb);
|
|
81
|
-
}
|
|
82
|
-
else if (typeof cb === "function") {
|
|
83
|
-
if (typeof optionsOrCb !== "object")
|
|
84
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
85
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
86
|
-
}
|
|
87
|
-
else {
|
|
88
|
-
return this.send(command, optionsOrCb);
|
|
89
|
-
}
|
|
90
|
-
}
|
|
91
|
-
deleteHsm(args, optionsOrCb, cb) {
|
|
92
|
-
const command = new DeleteHsmCommand_1.DeleteHsmCommand(args);
|
|
93
|
-
if (typeof optionsOrCb === "function") {
|
|
94
|
-
this.send(command, optionsOrCb);
|
|
95
|
-
}
|
|
96
|
-
else if (typeof cb === "function") {
|
|
97
|
-
if (typeof optionsOrCb !== "object")
|
|
98
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
99
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
100
|
-
}
|
|
101
|
-
else {
|
|
102
|
-
return this.send(command, optionsOrCb);
|
|
103
|
-
}
|
|
104
|
-
}
|
|
105
|
-
describeBackups(args, optionsOrCb, cb) {
|
|
106
|
-
const command = new DescribeBackupsCommand_1.DescribeBackupsCommand(args);
|
|
107
|
-
if (typeof optionsOrCb === "function") {
|
|
108
|
-
this.send(command, optionsOrCb);
|
|
109
|
-
}
|
|
110
|
-
else if (typeof cb === "function") {
|
|
111
|
-
if (typeof optionsOrCb !== "object")
|
|
112
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
113
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
114
|
-
}
|
|
115
|
-
else {
|
|
116
|
-
return this.send(command, optionsOrCb);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
describeClusters(args, optionsOrCb, cb) {
|
|
120
|
-
const command = new DescribeClustersCommand_1.DescribeClustersCommand(args);
|
|
121
|
-
if (typeof optionsOrCb === "function") {
|
|
122
|
-
this.send(command, optionsOrCb);
|
|
123
|
-
}
|
|
124
|
-
else if (typeof cb === "function") {
|
|
125
|
-
if (typeof optionsOrCb !== "object")
|
|
126
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
127
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
128
|
-
}
|
|
129
|
-
else {
|
|
130
|
-
return this.send(command, optionsOrCb);
|
|
131
|
-
}
|
|
132
|
-
}
|
|
133
|
-
initializeCluster(args, optionsOrCb, cb) {
|
|
134
|
-
const command = new InitializeClusterCommand_1.InitializeClusterCommand(args);
|
|
135
|
-
if (typeof optionsOrCb === "function") {
|
|
136
|
-
this.send(command, optionsOrCb);
|
|
137
|
-
}
|
|
138
|
-
else if (typeof cb === "function") {
|
|
139
|
-
if (typeof optionsOrCb !== "object")
|
|
140
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
141
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
142
|
-
}
|
|
143
|
-
else {
|
|
144
|
-
return this.send(command, optionsOrCb);
|
|
145
|
-
}
|
|
146
|
-
}
|
|
147
|
-
listTags(args, optionsOrCb, cb) {
|
|
148
|
-
const command = new ListTagsCommand_1.ListTagsCommand(args);
|
|
149
|
-
if (typeof optionsOrCb === "function") {
|
|
150
|
-
this.send(command, optionsOrCb);
|
|
151
|
-
}
|
|
152
|
-
else if (typeof cb === "function") {
|
|
153
|
-
if (typeof optionsOrCb !== "object")
|
|
154
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
155
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
156
|
-
}
|
|
157
|
-
else {
|
|
158
|
-
return this.send(command, optionsOrCb);
|
|
159
|
-
}
|
|
160
|
-
}
|
|
161
|
-
modifyBackupAttributes(args, optionsOrCb, cb) {
|
|
162
|
-
const command = new ModifyBackupAttributesCommand_1.ModifyBackupAttributesCommand(args);
|
|
163
|
-
if (typeof optionsOrCb === "function") {
|
|
164
|
-
this.send(command, optionsOrCb);
|
|
165
|
-
}
|
|
166
|
-
else if (typeof cb === "function") {
|
|
167
|
-
if (typeof optionsOrCb !== "object")
|
|
168
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
169
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
170
|
-
}
|
|
171
|
-
else {
|
|
172
|
-
return this.send(command, optionsOrCb);
|
|
173
|
-
}
|
|
174
|
-
}
|
|
175
|
-
modifyCluster(args, optionsOrCb, cb) {
|
|
176
|
-
const command = new ModifyClusterCommand_1.ModifyClusterCommand(args);
|
|
177
|
-
if (typeof optionsOrCb === "function") {
|
|
178
|
-
this.send(command, optionsOrCb);
|
|
179
|
-
}
|
|
180
|
-
else if (typeof cb === "function") {
|
|
181
|
-
if (typeof optionsOrCb !== "object")
|
|
182
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
183
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
184
|
-
}
|
|
185
|
-
else {
|
|
186
|
-
return this.send(command, optionsOrCb);
|
|
187
|
-
}
|
|
188
|
-
}
|
|
189
|
-
restoreBackup(args, optionsOrCb, cb) {
|
|
190
|
-
const command = new RestoreBackupCommand_1.RestoreBackupCommand(args);
|
|
191
|
-
if (typeof optionsOrCb === "function") {
|
|
192
|
-
this.send(command, optionsOrCb);
|
|
193
|
-
}
|
|
194
|
-
else if (typeof cb === "function") {
|
|
195
|
-
if (typeof optionsOrCb !== "object")
|
|
196
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
197
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
198
|
-
}
|
|
199
|
-
else {
|
|
200
|
-
return this.send(command, optionsOrCb);
|
|
201
|
-
}
|
|
202
|
-
}
|
|
203
|
-
tagResource(args, optionsOrCb, cb) {
|
|
204
|
-
const command = new TagResourceCommand_1.TagResourceCommand(args);
|
|
205
|
-
if (typeof optionsOrCb === "function") {
|
|
206
|
-
this.send(command, optionsOrCb);
|
|
207
|
-
}
|
|
208
|
-
else if (typeof cb === "function") {
|
|
209
|
-
if (typeof optionsOrCb !== "object")
|
|
210
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
211
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
212
|
-
}
|
|
213
|
-
else {
|
|
214
|
-
return this.send(command, optionsOrCb);
|
|
215
|
-
}
|
|
216
|
-
}
|
|
217
|
-
untagResource(args, optionsOrCb, cb) {
|
|
218
|
-
const command = new UntagResourceCommand_1.UntagResourceCommand(args);
|
|
219
|
-
if (typeof optionsOrCb === "function") {
|
|
220
|
-
this.send(command, optionsOrCb);
|
|
221
|
-
}
|
|
222
|
-
else if (typeof cb === "function") {
|
|
223
|
-
if (typeof optionsOrCb !== "object")
|
|
224
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
225
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
226
|
-
}
|
|
227
|
-
else {
|
|
228
|
-
return this.send(command, optionsOrCb);
|
|
229
|
-
}
|
|
230
|
-
}
|
|
231
39
|
}
|
|
232
40
|
exports.CloudHSMV2 = CloudHSMV2;
|
|
41
|
+
(0, smithy_client_1.createAggregatedClient)(commands, CloudHSMV2);
|
package/dist-es/CloudHSMV2.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { createAggregatedClient } from "@aws-sdk/smithy-client";
|
|
1
2
|
import { CloudHSMV2Client } from "./CloudHSMV2Client";
|
|
2
3
|
import { CopyBackupToRegionCommand, } from "./commands/CopyBackupToRegionCommand";
|
|
3
4
|
import { CreateClusterCommand, } from "./commands/CreateClusterCommand";
|
|
@@ -14,215 +15,23 @@ import { ModifyClusterCommand, } from "./commands/ModifyClusterCommand";
|
|
|
14
15
|
import { RestoreBackupCommand, } from "./commands/RestoreBackupCommand";
|
|
15
16
|
import { TagResourceCommand } from "./commands/TagResourceCommand";
|
|
16
17
|
import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
18
|
+
const commands = {
|
|
19
|
+
CopyBackupToRegionCommand,
|
|
20
|
+
CreateClusterCommand,
|
|
21
|
+
CreateHsmCommand,
|
|
22
|
+
DeleteBackupCommand,
|
|
23
|
+
DeleteClusterCommand,
|
|
24
|
+
DeleteHsmCommand,
|
|
25
|
+
DescribeBackupsCommand,
|
|
26
|
+
DescribeClustersCommand,
|
|
27
|
+
InitializeClusterCommand,
|
|
28
|
+
ListTagsCommand,
|
|
29
|
+
ModifyBackupAttributesCommand,
|
|
30
|
+
ModifyClusterCommand,
|
|
31
|
+
RestoreBackupCommand,
|
|
32
|
+
TagResourceCommand,
|
|
33
|
+
UntagResourceCommand,
|
|
34
|
+
};
|
|
17
35
|
export class CloudHSMV2 extends CloudHSMV2Client {
|
|
18
|
-
copyBackupToRegion(args, optionsOrCb, cb) {
|
|
19
|
-
const command = new CopyBackupToRegionCommand(args);
|
|
20
|
-
if (typeof optionsOrCb === "function") {
|
|
21
|
-
this.send(command, optionsOrCb);
|
|
22
|
-
}
|
|
23
|
-
else if (typeof cb === "function") {
|
|
24
|
-
if (typeof optionsOrCb !== "object")
|
|
25
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
26
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
27
|
-
}
|
|
28
|
-
else {
|
|
29
|
-
return this.send(command, optionsOrCb);
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
createCluster(args, optionsOrCb, cb) {
|
|
33
|
-
const command = new CreateClusterCommand(args);
|
|
34
|
-
if (typeof optionsOrCb === "function") {
|
|
35
|
-
this.send(command, optionsOrCb);
|
|
36
|
-
}
|
|
37
|
-
else if (typeof cb === "function") {
|
|
38
|
-
if (typeof optionsOrCb !== "object")
|
|
39
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
40
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
41
|
-
}
|
|
42
|
-
else {
|
|
43
|
-
return this.send(command, optionsOrCb);
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
createHsm(args, optionsOrCb, cb) {
|
|
47
|
-
const command = new CreateHsmCommand(args);
|
|
48
|
-
if (typeof optionsOrCb === "function") {
|
|
49
|
-
this.send(command, optionsOrCb);
|
|
50
|
-
}
|
|
51
|
-
else if (typeof cb === "function") {
|
|
52
|
-
if (typeof optionsOrCb !== "object")
|
|
53
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
54
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
55
|
-
}
|
|
56
|
-
else {
|
|
57
|
-
return this.send(command, optionsOrCb);
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
deleteBackup(args, optionsOrCb, cb) {
|
|
61
|
-
const command = new DeleteBackupCommand(args);
|
|
62
|
-
if (typeof optionsOrCb === "function") {
|
|
63
|
-
this.send(command, optionsOrCb);
|
|
64
|
-
}
|
|
65
|
-
else if (typeof cb === "function") {
|
|
66
|
-
if (typeof optionsOrCb !== "object")
|
|
67
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
68
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
69
|
-
}
|
|
70
|
-
else {
|
|
71
|
-
return this.send(command, optionsOrCb);
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
deleteCluster(args, optionsOrCb, cb) {
|
|
75
|
-
const command = new DeleteClusterCommand(args);
|
|
76
|
-
if (typeof optionsOrCb === "function") {
|
|
77
|
-
this.send(command, optionsOrCb);
|
|
78
|
-
}
|
|
79
|
-
else if (typeof cb === "function") {
|
|
80
|
-
if (typeof optionsOrCb !== "object")
|
|
81
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
82
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
83
|
-
}
|
|
84
|
-
else {
|
|
85
|
-
return this.send(command, optionsOrCb);
|
|
86
|
-
}
|
|
87
|
-
}
|
|
88
|
-
deleteHsm(args, optionsOrCb, cb) {
|
|
89
|
-
const command = new DeleteHsmCommand(args);
|
|
90
|
-
if (typeof optionsOrCb === "function") {
|
|
91
|
-
this.send(command, optionsOrCb);
|
|
92
|
-
}
|
|
93
|
-
else if (typeof cb === "function") {
|
|
94
|
-
if (typeof optionsOrCb !== "object")
|
|
95
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
96
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
97
|
-
}
|
|
98
|
-
else {
|
|
99
|
-
return this.send(command, optionsOrCb);
|
|
100
|
-
}
|
|
101
|
-
}
|
|
102
|
-
describeBackups(args, optionsOrCb, cb) {
|
|
103
|
-
const command = new DescribeBackupsCommand(args);
|
|
104
|
-
if (typeof optionsOrCb === "function") {
|
|
105
|
-
this.send(command, optionsOrCb);
|
|
106
|
-
}
|
|
107
|
-
else if (typeof cb === "function") {
|
|
108
|
-
if (typeof optionsOrCb !== "object")
|
|
109
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
110
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
111
|
-
}
|
|
112
|
-
else {
|
|
113
|
-
return this.send(command, optionsOrCb);
|
|
114
|
-
}
|
|
115
|
-
}
|
|
116
|
-
describeClusters(args, optionsOrCb, cb) {
|
|
117
|
-
const command = new DescribeClustersCommand(args);
|
|
118
|
-
if (typeof optionsOrCb === "function") {
|
|
119
|
-
this.send(command, optionsOrCb);
|
|
120
|
-
}
|
|
121
|
-
else if (typeof cb === "function") {
|
|
122
|
-
if (typeof optionsOrCb !== "object")
|
|
123
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
124
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
125
|
-
}
|
|
126
|
-
else {
|
|
127
|
-
return this.send(command, optionsOrCb);
|
|
128
|
-
}
|
|
129
|
-
}
|
|
130
|
-
initializeCluster(args, optionsOrCb, cb) {
|
|
131
|
-
const command = new InitializeClusterCommand(args);
|
|
132
|
-
if (typeof optionsOrCb === "function") {
|
|
133
|
-
this.send(command, optionsOrCb);
|
|
134
|
-
}
|
|
135
|
-
else if (typeof cb === "function") {
|
|
136
|
-
if (typeof optionsOrCb !== "object")
|
|
137
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
138
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
139
|
-
}
|
|
140
|
-
else {
|
|
141
|
-
return this.send(command, optionsOrCb);
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
listTags(args, optionsOrCb, cb) {
|
|
145
|
-
const command = new ListTagsCommand(args);
|
|
146
|
-
if (typeof optionsOrCb === "function") {
|
|
147
|
-
this.send(command, optionsOrCb);
|
|
148
|
-
}
|
|
149
|
-
else if (typeof cb === "function") {
|
|
150
|
-
if (typeof optionsOrCb !== "object")
|
|
151
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
152
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
153
|
-
}
|
|
154
|
-
else {
|
|
155
|
-
return this.send(command, optionsOrCb);
|
|
156
|
-
}
|
|
157
|
-
}
|
|
158
|
-
modifyBackupAttributes(args, optionsOrCb, cb) {
|
|
159
|
-
const command = new ModifyBackupAttributesCommand(args);
|
|
160
|
-
if (typeof optionsOrCb === "function") {
|
|
161
|
-
this.send(command, optionsOrCb);
|
|
162
|
-
}
|
|
163
|
-
else if (typeof cb === "function") {
|
|
164
|
-
if (typeof optionsOrCb !== "object")
|
|
165
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
166
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
167
|
-
}
|
|
168
|
-
else {
|
|
169
|
-
return this.send(command, optionsOrCb);
|
|
170
|
-
}
|
|
171
|
-
}
|
|
172
|
-
modifyCluster(args, optionsOrCb, cb) {
|
|
173
|
-
const command = new ModifyClusterCommand(args);
|
|
174
|
-
if (typeof optionsOrCb === "function") {
|
|
175
|
-
this.send(command, optionsOrCb);
|
|
176
|
-
}
|
|
177
|
-
else if (typeof cb === "function") {
|
|
178
|
-
if (typeof optionsOrCb !== "object")
|
|
179
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
180
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
181
|
-
}
|
|
182
|
-
else {
|
|
183
|
-
return this.send(command, optionsOrCb);
|
|
184
|
-
}
|
|
185
|
-
}
|
|
186
|
-
restoreBackup(args, optionsOrCb, cb) {
|
|
187
|
-
const command = new RestoreBackupCommand(args);
|
|
188
|
-
if (typeof optionsOrCb === "function") {
|
|
189
|
-
this.send(command, optionsOrCb);
|
|
190
|
-
}
|
|
191
|
-
else if (typeof cb === "function") {
|
|
192
|
-
if (typeof optionsOrCb !== "object")
|
|
193
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
194
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
195
|
-
}
|
|
196
|
-
else {
|
|
197
|
-
return this.send(command, optionsOrCb);
|
|
198
|
-
}
|
|
199
|
-
}
|
|
200
|
-
tagResource(args, optionsOrCb, cb) {
|
|
201
|
-
const command = new TagResourceCommand(args);
|
|
202
|
-
if (typeof optionsOrCb === "function") {
|
|
203
|
-
this.send(command, optionsOrCb);
|
|
204
|
-
}
|
|
205
|
-
else if (typeof cb === "function") {
|
|
206
|
-
if (typeof optionsOrCb !== "object")
|
|
207
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
208
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
209
|
-
}
|
|
210
|
-
else {
|
|
211
|
-
return this.send(command, optionsOrCb);
|
|
212
|
-
}
|
|
213
|
-
}
|
|
214
|
-
untagResource(args, optionsOrCb, cb) {
|
|
215
|
-
const command = new UntagResourceCommand(args);
|
|
216
|
-
if (typeof optionsOrCb === "function") {
|
|
217
|
-
this.send(command, optionsOrCb);
|
|
218
|
-
}
|
|
219
|
-
else if (typeof cb === "function") {
|
|
220
|
-
if (typeof optionsOrCb !== "object")
|
|
221
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
222
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
223
|
-
}
|
|
224
|
-
else {
|
|
225
|
-
return this.send(command, optionsOrCb);
|
|
226
|
-
}
|
|
227
|
-
}
|
|
228
36
|
}
|
|
37
|
+
createAggregatedClient(commands, CloudHSMV2);
|
|
@@ -15,141 +15,102 @@ import { ModifyClusterCommandInput, ModifyClusterCommandOutput } from "./command
|
|
|
15
15
|
import { RestoreBackupCommandInput, RestoreBackupCommandOutput } from "./commands/RestoreBackupCommand";
|
|
16
16
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
17
17
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
18
|
-
|
|
19
|
-
* @public
|
|
20
|
-
* <p>For more information about AWS CloudHSM, see <a href="http://aws.amazon.com/cloudhsm/">AWS CloudHSM</a> and the <a href="https://docs.aws.amazon.com/cloudhsm/latest/userguide/">AWS
|
|
21
|
-
* CloudHSM User Guide</a>.</p>
|
|
22
|
-
*/
|
|
23
|
-
export declare class CloudHSMV2 extends CloudHSMV2Client {
|
|
18
|
+
export interface CloudHSMV2 {
|
|
24
19
|
/**
|
|
25
|
-
* @
|
|
26
|
-
* <p>Copy an AWS CloudHSM cluster backup to a different region.</p>
|
|
20
|
+
* @see {@link CopyBackupToRegionCommand}
|
|
27
21
|
*/
|
|
28
22
|
copyBackupToRegion(args: CopyBackupToRegionCommandInput, options?: __HttpHandlerOptions): Promise<CopyBackupToRegionCommandOutput>;
|
|
29
23
|
copyBackupToRegion(args: CopyBackupToRegionCommandInput, cb: (err: any, data?: CopyBackupToRegionCommandOutput) => void): void;
|
|
30
24
|
copyBackupToRegion(args: CopyBackupToRegionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CopyBackupToRegionCommandOutput) => void): void;
|
|
31
25
|
/**
|
|
32
|
-
* @
|
|
33
|
-
* <p>Creates a new AWS CloudHSM cluster.</p>
|
|
26
|
+
* @see {@link CreateClusterCommand}
|
|
34
27
|
*/
|
|
35
28
|
createCluster(args: CreateClusterCommandInput, options?: __HttpHandlerOptions): Promise<CreateClusterCommandOutput>;
|
|
36
29
|
createCluster(args: CreateClusterCommandInput, cb: (err: any, data?: CreateClusterCommandOutput) => void): void;
|
|
37
30
|
createCluster(args: CreateClusterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateClusterCommandOutput) => void): void;
|
|
38
31
|
/**
|
|
39
|
-
* @
|
|
40
|
-
* <p>Creates a new hardware security module (HSM) in the specified AWS CloudHSM
|
|
41
|
-
* cluster.</p>
|
|
32
|
+
* @see {@link CreateHsmCommand}
|
|
42
33
|
*/
|
|
43
34
|
createHsm(args: CreateHsmCommandInput, options?: __HttpHandlerOptions): Promise<CreateHsmCommandOutput>;
|
|
44
35
|
createHsm(args: CreateHsmCommandInput, cb: (err: any, data?: CreateHsmCommandOutput) => void): void;
|
|
45
36
|
createHsm(args: CreateHsmCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateHsmCommandOutput) => void): void;
|
|
46
37
|
/**
|
|
47
|
-
* @
|
|
48
|
-
* <p>Deletes a specified AWS CloudHSM backup. A backup can be restored up to 7 days
|
|
49
|
-
* after the DeleteBackup request is made. For more information on restoring a backup, see
|
|
50
|
-
* <a>RestoreBackup</a>.</p>
|
|
38
|
+
* @see {@link DeleteBackupCommand}
|
|
51
39
|
*/
|
|
52
40
|
deleteBackup(args: DeleteBackupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteBackupCommandOutput>;
|
|
53
41
|
deleteBackup(args: DeleteBackupCommandInput, cb: (err: any, data?: DeleteBackupCommandOutput) => void): void;
|
|
54
42
|
deleteBackup(args: DeleteBackupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteBackupCommandOutput) => void): void;
|
|
55
43
|
/**
|
|
56
|
-
* @
|
|
57
|
-
* <p>Deletes the specified AWS CloudHSM cluster. Before you can delete a cluster, you must
|
|
58
|
-
* delete all HSMs in the cluster. To see if the cluster contains any HSMs, use <a>DescribeClusters</a>. To delete an HSM, use <a>DeleteHsm</a>.</p>
|
|
44
|
+
* @see {@link DeleteClusterCommand}
|
|
59
45
|
*/
|
|
60
46
|
deleteCluster(args: DeleteClusterCommandInput, options?: __HttpHandlerOptions): Promise<DeleteClusterCommandOutput>;
|
|
61
47
|
deleteCluster(args: DeleteClusterCommandInput, cb: (err: any, data?: DeleteClusterCommandOutput) => void): void;
|
|
62
48
|
deleteCluster(args: DeleteClusterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteClusterCommandOutput) => void): void;
|
|
63
49
|
/**
|
|
64
|
-
* @
|
|
65
|
-
* <p>Deletes the specified HSM. To specify an HSM, you can use its identifier (ID), the IP
|
|
66
|
-
* address of the HSM's elastic network interface (ENI), or the ID of the HSM's ENI. You need to
|
|
67
|
-
* specify only one of these values. To find these values, use <a>DescribeClusters</a>.</p>
|
|
50
|
+
* @see {@link DeleteHsmCommand}
|
|
68
51
|
*/
|
|
69
52
|
deleteHsm(args: DeleteHsmCommandInput, options?: __HttpHandlerOptions): Promise<DeleteHsmCommandOutput>;
|
|
70
53
|
deleteHsm(args: DeleteHsmCommandInput, cb: (err: any, data?: DeleteHsmCommandOutput) => void): void;
|
|
71
54
|
deleteHsm(args: DeleteHsmCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteHsmCommandOutput) => void): void;
|
|
72
55
|
/**
|
|
73
|
-
* @
|
|
74
|
-
* <p>Gets information about backups of AWS CloudHSM clusters.</p>
|
|
75
|
-
* <p>This is a paginated operation, which means that each response might contain only a
|
|
76
|
-
* subset of all the backups. When the response contains only a subset of backups, it includes a
|
|
77
|
-
* <code>NextToken</code> value. Use this value in a subsequent <code>DescribeBackups</code>
|
|
78
|
-
* request to get more backups. When you receive a response with no <code>NextToken</code> (or an
|
|
79
|
-
* empty or null value), that means there are no more backups to get.</p>
|
|
56
|
+
* @see {@link DescribeBackupsCommand}
|
|
80
57
|
*/
|
|
81
58
|
describeBackups(args: DescribeBackupsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeBackupsCommandOutput>;
|
|
82
59
|
describeBackups(args: DescribeBackupsCommandInput, cb: (err: any, data?: DescribeBackupsCommandOutput) => void): void;
|
|
83
60
|
describeBackups(args: DescribeBackupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeBackupsCommandOutput) => void): void;
|
|
84
61
|
/**
|
|
85
|
-
* @
|
|
86
|
-
* <p>Gets information about AWS CloudHSM clusters.</p>
|
|
87
|
-
* <p>This is a paginated operation, which means that each response might contain only a
|
|
88
|
-
* subset of all the clusters. When the response contains only a subset of clusters, it includes
|
|
89
|
-
* a <code>NextToken</code> value. Use this value in a subsequent <code>DescribeClusters</code>
|
|
90
|
-
* request to get more clusters. When you receive a response with no <code>NextToken</code> (or
|
|
91
|
-
* an empty or null value), that means there are no more clusters to get.</p>
|
|
62
|
+
* @see {@link DescribeClustersCommand}
|
|
92
63
|
*/
|
|
93
64
|
describeClusters(args: DescribeClustersCommandInput, options?: __HttpHandlerOptions): Promise<DescribeClustersCommandOutput>;
|
|
94
65
|
describeClusters(args: DescribeClustersCommandInput, cb: (err: any, data?: DescribeClustersCommandOutput) => void): void;
|
|
95
66
|
describeClusters(args: DescribeClustersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeClustersCommandOutput) => void): void;
|
|
96
67
|
/**
|
|
97
|
-
* @
|
|
98
|
-
* <p>Claims an AWS CloudHSM cluster by submitting the cluster certificate issued by your
|
|
99
|
-
* issuing certificate authority (CA) and the CA's root certificate. Before you can claim a
|
|
100
|
-
* cluster, you must sign the cluster's certificate signing request (CSR) with your issuing CA.
|
|
101
|
-
* To get the cluster's CSR, use <a>DescribeClusters</a>.</p>
|
|
68
|
+
* @see {@link InitializeClusterCommand}
|
|
102
69
|
*/
|
|
103
70
|
initializeCluster(args: InitializeClusterCommandInput, options?: __HttpHandlerOptions): Promise<InitializeClusterCommandOutput>;
|
|
104
71
|
initializeCluster(args: InitializeClusterCommandInput, cb: (err: any, data?: InitializeClusterCommandOutput) => void): void;
|
|
105
72
|
initializeCluster(args: InitializeClusterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: InitializeClusterCommandOutput) => void): void;
|
|
106
73
|
/**
|
|
107
|
-
* @
|
|
108
|
-
* <p>Gets a list of tags for the specified AWS CloudHSM cluster.</p>
|
|
109
|
-
* <p>This is a paginated operation, which means that each response might contain only a
|
|
110
|
-
* subset of all the tags. When the response contains only a subset of tags, it includes a
|
|
111
|
-
* <code>NextToken</code> value. Use this value in a subsequent <code>ListTags</code> request to
|
|
112
|
-
* get more tags. When you receive a response with no <code>NextToken</code> (or an empty or null
|
|
113
|
-
* value), that means there are no more tags to get.</p>
|
|
74
|
+
* @see {@link ListTagsCommand}
|
|
114
75
|
*/
|
|
115
76
|
listTags(args: ListTagsCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsCommandOutput>;
|
|
116
77
|
listTags(args: ListTagsCommandInput, cb: (err: any, data?: ListTagsCommandOutput) => void): void;
|
|
117
78
|
listTags(args: ListTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsCommandOutput) => void): void;
|
|
118
79
|
/**
|
|
119
|
-
* @
|
|
120
|
-
* <p>Modifies attributes for AWS CloudHSM backup.</p>
|
|
80
|
+
* @see {@link ModifyBackupAttributesCommand}
|
|
121
81
|
*/
|
|
122
82
|
modifyBackupAttributes(args: ModifyBackupAttributesCommandInput, options?: __HttpHandlerOptions): Promise<ModifyBackupAttributesCommandOutput>;
|
|
123
83
|
modifyBackupAttributes(args: ModifyBackupAttributesCommandInput, cb: (err: any, data?: ModifyBackupAttributesCommandOutput) => void): void;
|
|
124
84
|
modifyBackupAttributes(args: ModifyBackupAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyBackupAttributesCommandOutput) => void): void;
|
|
125
85
|
/**
|
|
126
|
-
* @
|
|
127
|
-
* <p>Modifies AWS CloudHSM cluster.</p>
|
|
86
|
+
* @see {@link ModifyClusterCommand}
|
|
128
87
|
*/
|
|
129
88
|
modifyCluster(args: ModifyClusterCommandInput, options?: __HttpHandlerOptions): Promise<ModifyClusterCommandOutput>;
|
|
130
89
|
modifyCluster(args: ModifyClusterCommandInput, cb: (err: any, data?: ModifyClusterCommandOutput) => void): void;
|
|
131
90
|
modifyCluster(args: ModifyClusterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyClusterCommandOutput) => void): void;
|
|
132
91
|
/**
|
|
133
|
-
* @
|
|
134
|
-
* <p>Restores a specified AWS CloudHSM backup that is in the
|
|
135
|
-
* <code>PENDING_DELETION</code> state. For mor information on deleting a backup, see
|
|
136
|
-
* <a>DeleteBackup</a>.</p>
|
|
92
|
+
* @see {@link RestoreBackupCommand}
|
|
137
93
|
*/
|
|
138
94
|
restoreBackup(args: RestoreBackupCommandInput, options?: __HttpHandlerOptions): Promise<RestoreBackupCommandOutput>;
|
|
139
95
|
restoreBackup(args: RestoreBackupCommandInput, cb: (err: any, data?: RestoreBackupCommandOutput) => void): void;
|
|
140
96
|
restoreBackup(args: RestoreBackupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RestoreBackupCommandOutput) => void): void;
|
|
141
97
|
/**
|
|
142
|
-
* @
|
|
143
|
-
* <p>Adds or overwrites one or more tags for the specified AWS CloudHSM cluster.</p>
|
|
98
|
+
* @see {@link TagResourceCommand}
|
|
144
99
|
*/
|
|
145
100
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
146
101
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
147
102
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
148
103
|
/**
|
|
149
|
-
* @
|
|
150
|
-
* <p>Removes the specified tag or tags from the specified AWS CloudHSM cluster.</p>
|
|
104
|
+
* @see {@link UntagResourceCommand}
|
|
151
105
|
*/
|
|
152
106
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
153
107
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
154
108
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
155
109
|
}
|
|
110
|
+
/**
|
|
111
|
+
* @public
|
|
112
|
+
* <p>For more information about AWS CloudHSM, see <a href="http://aws.amazon.com/cloudhsm/">AWS CloudHSM</a> and the <a href="https://docs.aws.amazon.com/cloudhsm/latest/userguide/">AWS
|
|
113
|
+
* CloudHSM User Guide</a>.</p>
|
|
114
|
+
*/
|
|
115
|
+
export declare class CloudHSMV2 extends CloudHSMV2Client implements CloudHSMV2 {
|
|
116
|
+
}
|
|
@@ -60,7 +60,7 @@ import {
|
|
|
60
60
|
UntagResourceCommandInput,
|
|
61
61
|
UntagResourceCommandOutput,
|
|
62
62
|
} from "./commands/UntagResourceCommand";
|
|
63
|
-
export
|
|
63
|
+
export interface CloudHSMV2 {
|
|
64
64
|
copyBackupToRegion(
|
|
65
65
|
args: CopyBackupToRegionCommandInput,
|
|
66
66
|
options?: __HttpHandlerOptions
|
|
@@ -257,3 +257,6 @@ export declare class CloudHSMV2 extends CloudHSMV2Client {
|
|
|
257
257
|
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
258
258
|
): void;
|
|
259
259
|
}
|
|
260
|
+
export declare class CloudHSMV2
|
|
261
|
+
extends CloudHSMV2Client
|
|
262
|
+
implements CloudHSMV2 {}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cloudhsm-v2",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cloudhsm V2 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.319.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.319.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.319.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -36,19 +36,19 @@
|
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.310.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.310.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.310.0",
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.319.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.310.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.316.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.316.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.316.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.319.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|
|
54
54
|
"@aws-sdk/util-user-agent-node": "3.310.0",
|