@aws-sdk/client-cloudhsm 3.716.0 → 3.723.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/index.js +130 -85
- package/dist-es/CloudHSMClient.js +1 -0
- package/dist-es/models/models_0.js +9 -6
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
package/dist-cjs/index.js
CHANGED
|
@@ -151,7 +151,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
151
151
|
}, "resolveRuntimeExtensions");
|
|
152
152
|
|
|
153
153
|
// src/CloudHSMClient.ts
|
|
154
|
-
var
|
|
154
|
+
var CloudHSMClient = class extends import_smithy_client.Client {
|
|
155
|
+
static {
|
|
156
|
+
__name(this, "CloudHSMClient");
|
|
157
|
+
}
|
|
158
|
+
/**
|
|
159
|
+
* The resolved configuration of CloudHSMClient class. This is resolved and normalized from the {@link CloudHSMClientConfig | constructor configuration interface}.
|
|
160
|
+
*/
|
|
161
|
+
config;
|
|
155
162
|
constructor(...[configuration]) {
|
|
156
163
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
157
164
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -161,7 +168,7 @@ var _CloudHSMClient = class _CloudHSMClient extends import_smithy_client.Client
|
|
|
161
168
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
162
169
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
163
170
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
164
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
171
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
165
172
|
super(_config_8);
|
|
166
173
|
this.config = _config_8;
|
|
167
174
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -189,8 +196,6 @@ var _CloudHSMClient = class _CloudHSMClient extends import_smithy_client.Client
|
|
|
189
196
|
super.destroy();
|
|
190
197
|
}
|
|
191
198
|
};
|
|
192
|
-
__name(_CloudHSMClient, "CloudHSMClient");
|
|
193
|
-
var CloudHSMClient = _CloudHSMClient;
|
|
194
199
|
|
|
195
200
|
// src/CloudHSM.ts
|
|
196
201
|
|
|
@@ -207,7 +212,10 @@ var import_core2 = require("@aws-sdk/core");
|
|
|
207
212
|
|
|
208
213
|
// src/models/CloudHSMServiceException.ts
|
|
209
214
|
|
|
210
|
-
var
|
|
215
|
+
var CloudHSMServiceException = class _CloudHSMServiceException extends import_smithy_client.ServiceException {
|
|
216
|
+
static {
|
|
217
|
+
__name(this, "CloudHSMServiceException");
|
|
218
|
+
}
|
|
211
219
|
/**
|
|
212
220
|
* @internal
|
|
213
221
|
*/
|
|
@@ -216,11 +224,19 @@ var _CloudHSMServiceException = class _CloudHSMServiceException extends import_s
|
|
|
216
224
|
Object.setPrototypeOf(this, _CloudHSMServiceException.prototype);
|
|
217
225
|
}
|
|
218
226
|
};
|
|
219
|
-
__name(_CloudHSMServiceException, "CloudHSMServiceException");
|
|
220
|
-
var CloudHSMServiceException = _CloudHSMServiceException;
|
|
221
227
|
|
|
222
228
|
// src/models/models_0.ts
|
|
223
|
-
var
|
|
229
|
+
var CloudHsmInternalException = class _CloudHsmInternalException extends CloudHSMServiceException {
|
|
230
|
+
static {
|
|
231
|
+
__name(this, "CloudHsmInternalException");
|
|
232
|
+
}
|
|
233
|
+
name = "CloudHsmInternalException";
|
|
234
|
+
$fault = "server";
|
|
235
|
+
/**
|
|
236
|
+
* <p>Indicates if the action can be retried.</p>
|
|
237
|
+
* @public
|
|
238
|
+
*/
|
|
239
|
+
retryable;
|
|
224
240
|
/**
|
|
225
241
|
* @internal
|
|
226
242
|
*/
|
|
@@ -230,15 +246,21 @@ var _CloudHsmInternalException = class _CloudHsmInternalException extends CloudH
|
|
|
230
246
|
$fault: "server",
|
|
231
247
|
...opts
|
|
232
248
|
});
|
|
233
|
-
this.name = "CloudHsmInternalException";
|
|
234
|
-
this.$fault = "server";
|
|
235
249
|
Object.setPrototypeOf(this, _CloudHsmInternalException.prototype);
|
|
236
250
|
this.retryable = opts.retryable;
|
|
237
251
|
}
|
|
238
252
|
};
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
253
|
+
var CloudHsmServiceException = class _CloudHsmServiceException extends CloudHSMServiceException {
|
|
254
|
+
static {
|
|
255
|
+
__name(this, "CloudHsmServiceException");
|
|
256
|
+
}
|
|
257
|
+
name = "CloudHsmServiceException";
|
|
258
|
+
$fault = "client";
|
|
259
|
+
/**
|
|
260
|
+
* <p>Indicates if the action can be retried.</p>
|
|
261
|
+
* @public
|
|
262
|
+
*/
|
|
263
|
+
retryable;
|
|
242
264
|
/**
|
|
243
265
|
* @internal
|
|
244
266
|
*/
|
|
@@ -248,15 +270,21 @@ var _CloudHsmServiceException = class _CloudHsmServiceException extends CloudHSM
|
|
|
248
270
|
$fault: "client",
|
|
249
271
|
...opts
|
|
250
272
|
});
|
|
251
|
-
this.name = "CloudHsmServiceException";
|
|
252
|
-
this.$fault = "client";
|
|
253
273
|
Object.setPrototypeOf(this, _CloudHsmServiceException.prototype);
|
|
254
274
|
this.retryable = opts.retryable;
|
|
255
275
|
}
|
|
256
276
|
};
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
277
|
+
var InvalidRequestException = class _InvalidRequestException extends CloudHSMServiceException {
|
|
278
|
+
static {
|
|
279
|
+
__name(this, "InvalidRequestException");
|
|
280
|
+
}
|
|
281
|
+
name = "InvalidRequestException";
|
|
282
|
+
$fault = "client";
|
|
283
|
+
/**
|
|
284
|
+
* <p>Indicates if the action can be retried.</p>
|
|
285
|
+
* @public
|
|
286
|
+
*/
|
|
287
|
+
retryable;
|
|
260
288
|
/**
|
|
261
289
|
* @internal
|
|
262
290
|
*/
|
|
@@ -266,14 +294,10 @@ var _InvalidRequestException = class _InvalidRequestException extends CloudHSMSe
|
|
|
266
294
|
$fault: "client",
|
|
267
295
|
...opts
|
|
268
296
|
});
|
|
269
|
-
this.name = "InvalidRequestException";
|
|
270
|
-
this.$fault = "client";
|
|
271
297
|
Object.setPrototypeOf(this, _InvalidRequestException.prototype);
|
|
272
298
|
this.retryable = opts.retryable;
|
|
273
299
|
}
|
|
274
300
|
};
|
|
275
|
-
__name(_InvalidRequestException, "InvalidRequestException");
|
|
276
|
-
var InvalidRequestException = _InvalidRequestException;
|
|
277
301
|
var ClientVersion = {
|
|
278
302
|
FIVE_ONE: "5.1",
|
|
279
303
|
FIVE_THREE: "5.3"
|
|
@@ -763,281 +787,301 @@ function sharedHeaders(operation) {
|
|
|
763
787
|
__name(sharedHeaders, "sharedHeaders");
|
|
764
788
|
|
|
765
789
|
// src/commands/AddTagsToResourceCommand.ts
|
|
766
|
-
var
|
|
790
|
+
var AddTagsToResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
767
791
|
return [
|
|
768
792
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
769
793
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
770
794
|
];
|
|
771
795
|
}).s("CloudHsmFrontendService", "AddTagsToResource", {}).n("CloudHSMClient", "AddTagsToResourceCommand").f(void 0, void 0).ser(se_AddTagsToResourceCommand).de(de_AddTagsToResourceCommand).build() {
|
|
796
|
+
static {
|
|
797
|
+
__name(this, "AddTagsToResourceCommand");
|
|
798
|
+
}
|
|
772
799
|
};
|
|
773
|
-
__name(_AddTagsToResourceCommand, "AddTagsToResourceCommand");
|
|
774
|
-
var AddTagsToResourceCommand = _AddTagsToResourceCommand;
|
|
775
800
|
|
|
776
801
|
// src/commands/CreateHapgCommand.ts
|
|
777
802
|
|
|
778
803
|
|
|
779
804
|
|
|
780
|
-
var
|
|
805
|
+
var CreateHapgCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
781
806
|
return [
|
|
782
807
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
783
808
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
784
809
|
];
|
|
785
810
|
}).s("CloudHsmFrontendService", "CreateHapg", {}).n("CloudHSMClient", "CreateHapgCommand").f(void 0, void 0).ser(se_CreateHapgCommand).de(de_CreateHapgCommand).build() {
|
|
811
|
+
static {
|
|
812
|
+
__name(this, "CreateHapgCommand");
|
|
813
|
+
}
|
|
786
814
|
};
|
|
787
|
-
__name(_CreateHapgCommand, "CreateHapgCommand");
|
|
788
|
-
var CreateHapgCommand = _CreateHapgCommand;
|
|
789
815
|
|
|
790
816
|
// src/commands/CreateHsmCommand.ts
|
|
791
817
|
|
|
792
818
|
|
|
793
819
|
|
|
794
|
-
var
|
|
820
|
+
var CreateHsmCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
795
821
|
return [
|
|
796
822
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
797
823
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
798
824
|
];
|
|
799
825
|
}).s("CloudHsmFrontendService", "CreateHsm", {}).n("CloudHSMClient", "CreateHsmCommand").f(void 0, void 0).ser(se_CreateHsmCommand).de(de_CreateHsmCommand).build() {
|
|
826
|
+
static {
|
|
827
|
+
__name(this, "CreateHsmCommand");
|
|
828
|
+
}
|
|
800
829
|
};
|
|
801
|
-
__name(_CreateHsmCommand, "CreateHsmCommand");
|
|
802
|
-
var CreateHsmCommand = _CreateHsmCommand;
|
|
803
830
|
|
|
804
831
|
// src/commands/CreateLunaClientCommand.ts
|
|
805
832
|
|
|
806
833
|
|
|
807
834
|
|
|
808
|
-
var
|
|
835
|
+
var CreateLunaClientCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
809
836
|
return [
|
|
810
837
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
811
838
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
812
839
|
];
|
|
813
840
|
}).s("CloudHsmFrontendService", "CreateLunaClient", {}).n("CloudHSMClient", "CreateLunaClientCommand").f(void 0, void 0).ser(se_CreateLunaClientCommand).de(de_CreateLunaClientCommand).build() {
|
|
841
|
+
static {
|
|
842
|
+
__name(this, "CreateLunaClientCommand");
|
|
843
|
+
}
|
|
814
844
|
};
|
|
815
|
-
__name(_CreateLunaClientCommand, "CreateLunaClientCommand");
|
|
816
|
-
var CreateLunaClientCommand = _CreateLunaClientCommand;
|
|
817
845
|
|
|
818
846
|
// src/commands/DeleteHapgCommand.ts
|
|
819
847
|
|
|
820
848
|
|
|
821
849
|
|
|
822
|
-
var
|
|
850
|
+
var DeleteHapgCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
823
851
|
return [
|
|
824
852
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
825
853
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
826
854
|
];
|
|
827
855
|
}).s("CloudHsmFrontendService", "DeleteHapg", {}).n("CloudHSMClient", "DeleteHapgCommand").f(void 0, void 0).ser(se_DeleteHapgCommand).de(de_DeleteHapgCommand).build() {
|
|
856
|
+
static {
|
|
857
|
+
__name(this, "DeleteHapgCommand");
|
|
858
|
+
}
|
|
828
859
|
};
|
|
829
|
-
__name(_DeleteHapgCommand, "DeleteHapgCommand");
|
|
830
|
-
var DeleteHapgCommand = _DeleteHapgCommand;
|
|
831
860
|
|
|
832
861
|
// src/commands/DeleteHsmCommand.ts
|
|
833
862
|
|
|
834
863
|
|
|
835
864
|
|
|
836
|
-
var
|
|
865
|
+
var DeleteHsmCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
837
866
|
return [
|
|
838
867
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
839
868
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
840
869
|
];
|
|
841
870
|
}).s("CloudHsmFrontendService", "DeleteHsm", {}).n("CloudHSMClient", "DeleteHsmCommand").f(void 0, void 0).ser(se_DeleteHsmCommand).de(de_DeleteHsmCommand).build() {
|
|
871
|
+
static {
|
|
872
|
+
__name(this, "DeleteHsmCommand");
|
|
873
|
+
}
|
|
842
874
|
};
|
|
843
|
-
__name(_DeleteHsmCommand, "DeleteHsmCommand");
|
|
844
|
-
var DeleteHsmCommand = _DeleteHsmCommand;
|
|
845
875
|
|
|
846
876
|
// src/commands/DeleteLunaClientCommand.ts
|
|
847
877
|
|
|
848
878
|
|
|
849
879
|
|
|
850
|
-
var
|
|
880
|
+
var DeleteLunaClientCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
851
881
|
return [
|
|
852
882
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
853
883
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
854
884
|
];
|
|
855
885
|
}).s("CloudHsmFrontendService", "DeleteLunaClient", {}).n("CloudHSMClient", "DeleteLunaClientCommand").f(void 0, void 0).ser(se_DeleteLunaClientCommand).de(de_DeleteLunaClientCommand).build() {
|
|
886
|
+
static {
|
|
887
|
+
__name(this, "DeleteLunaClientCommand");
|
|
888
|
+
}
|
|
856
889
|
};
|
|
857
|
-
__name(_DeleteLunaClientCommand, "DeleteLunaClientCommand");
|
|
858
|
-
var DeleteLunaClientCommand = _DeleteLunaClientCommand;
|
|
859
890
|
|
|
860
891
|
// src/commands/DescribeHapgCommand.ts
|
|
861
892
|
|
|
862
893
|
|
|
863
894
|
|
|
864
|
-
var
|
|
895
|
+
var DescribeHapgCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
865
896
|
return [
|
|
866
897
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
867
898
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
868
899
|
];
|
|
869
900
|
}).s("CloudHsmFrontendService", "DescribeHapg", {}).n("CloudHSMClient", "DescribeHapgCommand").f(void 0, void 0).ser(se_DescribeHapgCommand).de(de_DescribeHapgCommand).build() {
|
|
901
|
+
static {
|
|
902
|
+
__name(this, "DescribeHapgCommand");
|
|
903
|
+
}
|
|
870
904
|
};
|
|
871
|
-
__name(_DescribeHapgCommand, "DescribeHapgCommand");
|
|
872
|
-
var DescribeHapgCommand = _DescribeHapgCommand;
|
|
873
905
|
|
|
874
906
|
// src/commands/DescribeHsmCommand.ts
|
|
875
907
|
|
|
876
908
|
|
|
877
909
|
|
|
878
|
-
var
|
|
910
|
+
var DescribeHsmCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
879
911
|
return [
|
|
880
912
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
881
913
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
882
914
|
];
|
|
883
915
|
}).s("CloudHsmFrontendService", "DescribeHsm", {}).n("CloudHSMClient", "DescribeHsmCommand").f(void 0, void 0).ser(se_DescribeHsmCommand).de(de_DescribeHsmCommand).build() {
|
|
916
|
+
static {
|
|
917
|
+
__name(this, "DescribeHsmCommand");
|
|
918
|
+
}
|
|
884
919
|
};
|
|
885
|
-
__name(_DescribeHsmCommand, "DescribeHsmCommand");
|
|
886
|
-
var DescribeHsmCommand = _DescribeHsmCommand;
|
|
887
920
|
|
|
888
921
|
// src/commands/DescribeLunaClientCommand.ts
|
|
889
922
|
|
|
890
923
|
|
|
891
924
|
|
|
892
|
-
var
|
|
925
|
+
var DescribeLunaClientCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
893
926
|
return [
|
|
894
927
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
895
928
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
896
929
|
];
|
|
897
930
|
}).s("CloudHsmFrontendService", "DescribeLunaClient", {}).n("CloudHSMClient", "DescribeLunaClientCommand").f(void 0, void 0).ser(se_DescribeLunaClientCommand).de(de_DescribeLunaClientCommand).build() {
|
|
931
|
+
static {
|
|
932
|
+
__name(this, "DescribeLunaClientCommand");
|
|
933
|
+
}
|
|
898
934
|
};
|
|
899
|
-
__name(_DescribeLunaClientCommand, "DescribeLunaClientCommand");
|
|
900
|
-
var DescribeLunaClientCommand = _DescribeLunaClientCommand;
|
|
901
935
|
|
|
902
936
|
// src/commands/GetConfigCommand.ts
|
|
903
937
|
|
|
904
938
|
|
|
905
939
|
|
|
906
|
-
var
|
|
940
|
+
var GetConfigCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
907
941
|
return [
|
|
908
942
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
909
943
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
910
944
|
];
|
|
911
945
|
}).s("CloudHsmFrontendService", "GetConfig", {}).n("CloudHSMClient", "GetConfigCommand").f(void 0, void 0).ser(se_GetConfigCommand).de(de_GetConfigCommand).build() {
|
|
946
|
+
static {
|
|
947
|
+
__name(this, "GetConfigCommand");
|
|
948
|
+
}
|
|
912
949
|
};
|
|
913
|
-
__name(_GetConfigCommand, "GetConfigCommand");
|
|
914
|
-
var GetConfigCommand = _GetConfigCommand;
|
|
915
950
|
|
|
916
951
|
// src/commands/ListAvailableZonesCommand.ts
|
|
917
952
|
|
|
918
953
|
|
|
919
954
|
|
|
920
|
-
var
|
|
955
|
+
var ListAvailableZonesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
921
956
|
return [
|
|
922
957
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
923
958
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
924
959
|
];
|
|
925
960
|
}).s("CloudHsmFrontendService", "ListAvailableZones", {}).n("CloudHSMClient", "ListAvailableZonesCommand").f(void 0, void 0).ser(se_ListAvailableZonesCommand).de(de_ListAvailableZonesCommand).build() {
|
|
961
|
+
static {
|
|
962
|
+
__name(this, "ListAvailableZonesCommand");
|
|
963
|
+
}
|
|
926
964
|
};
|
|
927
|
-
__name(_ListAvailableZonesCommand, "ListAvailableZonesCommand");
|
|
928
|
-
var ListAvailableZonesCommand = _ListAvailableZonesCommand;
|
|
929
965
|
|
|
930
966
|
// src/commands/ListHapgsCommand.ts
|
|
931
967
|
|
|
932
968
|
|
|
933
969
|
|
|
934
|
-
var
|
|
970
|
+
var ListHapgsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
935
971
|
return [
|
|
936
972
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
937
973
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
938
974
|
];
|
|
939
975
|
}).s("CloudHsmFrontendService", "ListHapgs", {}).n("CloudHSMClient", "ListHapgsCommand").f(void 0, void 0).ser(se_ListHapgsCommand).de(de_ListHapgsCommand).build() {
|
|
976
|
+
static {
|
|
977
|
+
__name(this, "ListHapgsCommand");
|
|
978
|
+
}
|
|
940
979
|
};
|
|
941
|
-
__name(_ListHapgsCommand, "ListHapgsCommand");
|
|
942
|
-
var ListHapgsCommand = _ListHapgsCommand;
|
|
943
980
|
|
|
944
981
|
// src/commands/ListHsmsCommand.ts
|
|
945
982
|
|
|
946
983
|
|
|
947
984
|
|
|
948
|
-
var
|
|
985
|
+
var ListHsmsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
949
986
|
return [
|
|
950
987
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
951
988
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
952
989
|
];
|
|
953
990
|
}).s("CloudHsmFrontendService", "ListHsms", {}).n("CloudHSMClient", "ListHsmsCommand").f(void 0, void 0).ser(se_ListHsmsCommand).de(de_ListHsmsCommand).build() {
|
|
991
|
+
static {
|
|
992
|
+
__name(this, "ListHsmsCommand");
|
|
993
|
+
}
|
|
954
994
|
};
|
|
955
|
-
__name(_ListHsmsCommand, "ListHsmsCommand");
|
|
956
|
-
var ListHsmsCommand = _ListHsmsCommand;
|
|
957
995
|
|
|
958
996
|
// src/commands/ListLunaClientsCommand.ts
|
|
959
997
|
|
|
960
998
|
|
|
961
999
|
|
|
962
|
-
var
|
|
1000
|
+
var ListLunaClientsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
963
1001
|
return [
|
|
964
1002
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
965
1003
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
966
1004
|
];
|
|
967
1005
|
}).s("CloudHsmFrontendService", "ListLunaClients", {}).n("CloudHSMClient", "ListLunaClientsCommand").f(void 0, void 0).ser(se_ListLunaClientsCommand).de(de_ListLunaClientsCommand).build() {
|
|
1006
|
+
static {
|
|
1007
|
+
__name(this, "ListLunaClientsCommand");
|
|
1008
|
+
}
|
|
968
1009
|
};
|
|
969
|
-
__name(_ListLunaClientsCommand, "ListLunaClientsCommand");
|
|
970
|
-
var ListLunaClientsCommand = _ListLunaClientsCommand;
|
|
971
1010
|
|
|
972
1011
|
// src/commands/ListTagsForResourceCommand.ts
|
|
973
1012
|
|
|
974
1013
|
|
|
975
1014
|
|
|
976
|
-
var
|
|
1015
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
977
1016
|
return [
|
|
978
1017
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
979
1018
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
980
1019
|
];
|
|
981
1020
|
}).s("CloudHsmFrontendService", "ListTagsForResource", {}).n("CloudHSMClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
1021
|
+
static {
|
|
1022
|
+
__name(this, "ListTagsForResourceCommand");
|
|
1023
|
+
}
|
|
982
1024
|
};
|
|
983
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
984
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
985
1025
|
|
|
986
1026
|
// src/commands/ModifyHapgCommand.ts
|
|
987
1027
|
|
|
988
1028
|
|
|
989
1029
|
|
|
990
|
-
var
|
|
1030
|
+
var ModifyHapgCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
991
1031
|
return [
|
|
992
1032
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
993
1033
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
994
1034
|
];
|
|
995
1035
|
}).s("CloudHsmFrontendService", "ModifyHapg", {}).n("CloudHSMClient", "ModifyHapgCommand").f(void 0, void 0).ser(se_ModifyHapgCommand).de(de_ModifyHapgCommand).build() {
|
|
1036
|
+
static {
|
|
1037
|
+
__name(this, "ModifyHapgCommand");
|
|
1038
|
+
}
|
|
996
1039
|
};
|
|
997
|
-
__name(_ModifyHapgCommand, "ModifyHapgCommand");
|
|
998
|
-
var ModifyHapgCommand = _ModifyHapgCommand;
|
|
999
1040
|
|
|
1000
1041
|
// src/commands/ModifyHsmCommand.ts
|
|
1001
1042
|
|
|
1002
1043
|
|
|
1003
1044
|
|
|
1004
|
-
var
|
|
1045
|
+
var ModifyHsmCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1005
1046
|
return [
|
|
1006
1047
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1007
1048
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1008
1049
|
];
|
|
1009
1050
|
}).s("CloudHsmFrontendService", "ModifyHsm", {}).n("CloudHSMClient", "ModifyHsmCommand").f(void 0, void 0).ser(se_ModifyHsmCommand).de(de_ModifyHsmCommand).build() {
|
|
1051
|
+
static {
|
|
1052
|
+
__name(this, "ModifyHsmCommand");
|
|
1053
|
+
}
|
|
1010
1054
|
};
|
|
1011
|
-
__name(_ModifyHsmCommand, "ModifyHsmCommand");
|
|
1012
|
-
var ModifyHsmCommand = _ModifyHsmCommand;
|
|
1013
1055
|
|
|
1014
1056
|
// src/commands/ModifyLunaClientCommand.ts
|
|
1015
1057
|
|
|
1016
1058
|
|
|
1017
1059
|
|
|
1018
|
-
var
|
|
1060
|
+
var ModifyLunaClientCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1019
1061
|
return [
|
|
1020
1062
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1021
1063
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1022
1064
|
];
|
|
1023
1065
|
}).s("CloudHsmFrontendService", "ModifyLunaClient", {}).n("CloudHSMClient", "ModifyLunaClientCommand").f(void 0, void 0).ser(se_ModifyLunaClientCommand).de(de_ModifyLunaClientCommand).build() {
|
|
1066
|
+
static {
|
|
1067
|
+
__name(this, "ModifyLunaClientCommand");
|
|
1068
|
+
}
|
|
1024
1069
|
};
|
|
1025
|
-
__name(_ModifyLunaClientCommand, "ModifyLunaClientCommand");
|
|
1026
|
-
var ModifyLunaClientCommand = _ModifyLunaClientCommand;
|
|
1027
1070
|
|
|
1028
1071
|
// src/commands/RemoveTagsFromResourceCommand.ts
|
|
1029
1072
|
|
|
1030
1073
|
|
|
1031
1074
|
|
|
1032
|
-
var
|
|
1075
|
+
var RemoveTagsFromResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1033
1076
|
return [
|
|
1034
1077
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1035
1078
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1036
1079
|
];
|
|
1037
1080
|
}).s("CloudHsmFrontendService", "RemoveTagsFromResource", {}).n("CloudHSMClient", "RemoveTagsFromResourceCommand").f(void 0, void 0).ser(se_RemoveTagsFromResourceCommand).de(de_RemoveTagsFromResourceCommand).build() {
|
|
1081
|
+
static {
|
|
1082
|
+
__name(this, "RemoveTagsFromResourceCommand");
|
|
1083
|
+
}
|
|
1038
1084
|
};
|
|
1039
|
-
__name(_RemoveTagsFromResourceCommand, "RemoveTagsFromResourceCommand");
|
|
1040
|
-
var RemoveTagsFromResourceCommand = _RemoveTagsFromResourceCommand;
|
|
1041
1085
|
|
|
1042
1086
|
// src/CloudHSM.ts
|
|
1043
1087
|
var commands = {
|
|
@@ -1062,10 +1106,11 @@ var commands = {
|
|
|
1062
1106
|
ModifyLunaClientCommand,
|
|
1063
1107
|
RemoveTagsFromResourceCommand
|
|
1064
1108
|
};
|
|
1065
|
-
var
|
|
1109
|
+
var CloudHSM = class extends CloudHSMClient {
|
|
1110
|
+
static {
|
|
1111
|
+
__name(this, "CloudHSM");
|
|
1112
|
+
}
|
|
1066
1113
|
};
|
|
1067
|
-
__name(_CloudHSM, "CloudHSM");
|
|
1068
|
-
var CloudHSM = _CloudHSM;
|
|
1069
1114
|
(0, import_smithy_client.createAggregatedClient)(commands, CloudHSM);
|
|
1070
1115
|
// Annotate the CommonJS export names for ESM import in node:
|
|
1071
1116
|
|
|
@@ -14,6 +14,7 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
|
14
14
|
import { resolveRuntimeExtensions } from "./runtimeExtensions";
|
|
15
15
|
export { __Client };
|
|
16
16
|
export class CloudHSMClient extends __Client {
|
|
17
|
+
config;
|
|
17
18
|
constructor(...[configuration]) {
|
|
18
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -1,39 +1,42 @@
|
|
|
1
1
|
import { CloudHSMServiceException as __BaseException } from "./CloudHSMServiceException";
|
|
2
2
|
export class CloudHsmInternalException extends __BaseException {
|
|
3
|
+
name = "CloudHsmInternalException";
|
|
4
|
+
$fault = "server";
|
|
5
|
+
retryable;
|
|
3
6
|
constructor(opts) {
|
|
4
7
|
super({
|
|
5
8
|
name: "CloudHsmInternalException",
|
|
6
9
|
$fault: "server",
|
|
7
10
|
...opts,
|
|
8
11
|
});
|
|
9
|
-
this.name = "CloudHsmInternalException";
|
|
10
|
-
this.$fault = "server";
|
|
11
12
|
Object.setPrototypeOf(this, CloudHsmInternalException.prototype);
|
|
12
13
|
this.retryable = opts.retryable;
|
|
13
14
|
}
|
|
14
15
|
}
|
|
15
16
|
export class CloudHsmServiceException extends __BaseException {
|
|
17
|
+
name = "CloudHsmServiceException";
|
|
18
|
+
$fault = "client";
|
|
19
|
+
retryable;
|
|
16
20
|
constructor(opts) {
|
|
17
21
|
super({
|
|
18
22
|
name: "CloudHsmServiceException",
|
|
19
23
|
$fault: "client",
|
|
20
24
|
...opts,
|
|
21
25
|
});
|
|
22
|
-
this.name = "CloudHsmServiceException";
|
|
23
|
-
this.$fault = "client";
|
|
24
26
|
Object.setPrototypeOf(this, CloudHsmServiceException.prototype);
|
|
25
27
|
this.retryable = opts.retryable;
|
|
26
28
|
}
|
|
27
29
|
}
|
|
28
30
|
export class InvalidRequestException extends __BaseException {
|
|
31
|
+
name = "InvalidRequestException";
|
|
32
|
+
$fault = "client";
|
|
33
|
+
retryable;
|
|
29
34
|
constructor(opts) {
|
|
30
35
|
super({
|
|
31
36
|
name: "InvalidRequestException",
|
|
32
37
|
$fault: "client",
|
|
33
38
|
...opts,
|
|
34
39
|
});
|
|
35
|
-
this.name = "InvalidRequestException";
|
|
36
|
-
this.$fault = "client";
|
|
37
40
|
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
38
41
|
this.retryable = opts.retryable;
|
|
39
42
|
}
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: CloudHSMClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<any>;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: CloudHSMClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<string>;
|
|
@@ -22,7 +22,7 @@ export declare const getRuntimeConfig: (config: CloudHSMClientConfig) => {
|
|
|
22
22
|
region: string | import("@smithy/types").Provider<any>;
|
|
23
23
|
profile?: string | undefined;
|
|
24
24
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
25
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
25
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
26
26
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: CloudHSMClientConfig) => {
|
|
|
31
31
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
32
32
|
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
|
|
33
33
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
34
|
-
endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
|
|
34
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
35
35
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
36
36
|
logger?: import("@smithy/types").Logger | undefined;
|
|
37
37
|
}) => import("@smithy/types").EndpointV2;
|
|
@@ -6,9 +6,11 @@ export declare const getRuntimeConfig: (config: CloudHSMClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
input: any
|
|
11
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
_: unknown
|
|
13
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
12
14
|
defaultUserAgentProvider: (
|
|
13
15
|
config?:
|
|
14
16
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
@@ -6,13 +6,15 @@ export declare const getRuntimeConfig: (config: CloudHSMClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
init?:
|
|
13
|
+
| import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
14
|
+
| undefined
|
|
15
|
+
) => import("@smithy/types").MemoizedProvider<
|
|
16
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
17
|
+
>);
|
|
16
18
|
defaultUserAgentProvider: (
|
|
17
19
|
config?:
|
|
18
20
|
| import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
@@ -28,9 +28,11 @@ export declare const getRuntimeConfig: (config: CloudHSMClientConfig) => {
|
|
|
28
28
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
29
29
|
| undefined
|
|
30
30
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
31
|
-
credentialDefaultProvider:
|
|
32
|
-
input: any
|
|
33
|
-
|
|
31
|
+
credentialDefaultProvider:
|
|
32
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
33
|
+
| ((
|
|
34
|
+
_: unknown
|
|
35
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
34
36
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
35
37
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
36
38
|
logger: import("@smithy/types").Logger;
|
|
@@ -50,11 +52,21 @@ export declare const getRuntimeConfig: (config: CloudHSMClientConfig) => {
|
|
|
50
52
|
| import("@smithy/types").RetryStrategyV2
|
|
51
53
|
| undefined;
|
|
52
54
|
endpoint?:
|
|
53
|
-
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
55
|
+
| ((
|
|
56
|
+
| string
|
|
57
|
+
| import("@smithy/types").Endpoint
|
|
58
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
59
|
+
| import("@smithy/types").EndpointV2
|
|
60
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
61
|
+
) &
|
|
62
|
+
(
|
|
63
|
+
| string
|
|
64
|
+
| import("@smithy/types").Provider<string>
|
|
65
|
+
| import("@smithy/types").Endpoint
|
|
66
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
67
|
+
| import("@smithy/types").EndpointV2
|
|
68
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
69
|
+
))
|
|
58
70
|
| undefined;
|
|
59
71
|
endpointProvider: (
|
|
60
72
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cloudhsm",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cloudhsm Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.723.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-cloudhsm",
|
|
@@ -20,56 +20,56 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^
|
|
37
|
-
"@smithy/core": "^
|
|
38
|
-
"@smithy/fetch-http-handler": "^
|
|
39
|
-
"@smithy/hash-node": "^
|
|
40
|
-
"@smithy/invalid-dependency": "^
|
|
41
|
-
"@smithy/middleware-content-length": "^
|
|
42
|
-
"@smithy/middleware-endpoint": "^
|
|
43
|
-
"@smithy/middleware-retry": "^
|
|
44
|
-
"@smithy/middleware-serde": "^
|
|
45
|
-
"@smithy/middleware-stack": "^
|
|
46
|
-
"@smithy/node-config-provider": "^
|
|
47
|
-
"@smithy/node-http-handler": "^
|
|
48
|
-
"@smithy/protocol-http": "^
|
|
49
|
-
"@smithy/smithy-client": "^
|
|
50
|
-
"@smithy/types": "^
|
|
51
|
-
"@smithy/url-parser": "^
|
|
52
|
-
"@smithy/util-base64": "^
|
|
53
|
-
"@smithy/util-body-length-browser": "^
|
|
54
|
-
"@smithy/util-body-length-node": "^
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^
|
|
57
|
-
"@smithy/util-endpoints": "^
|
|
58
|
-
"@smithy/util-middleware": "^
|
|
59
|
-
"@smithy/util-retry": "^
|
|
60
|
-
"@smithy/util-utf8": "^
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.723.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.723.0",
|
|
25
|
+
"@aws-sdk/core": "3.723.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.723.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.723.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.723.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.723.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.723.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.723.0",
|
|
32
|
+
"@aws-sdk/types": "3.723.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.723.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.723.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.723.0",
|
|
36
|
+
"@smithy/config-resolver": "^4.0.0",
|
|
37
|
+
"@smithy/core": "^3.0.0",
|
|
38
|
+
"@smithy/fetch-http-handler": "^5.0.0",
|
|
39
|
+
"@smithy/hash-node": "^4.0.0",
|
|
40
|
+
"@smithy/invalid-dependency": "^4.0.0",
|
|
41
|
+
"@smithy/middleware-content-length": "^4.0.0",
|
|
42
|
+
"@smithy/middleware-endpoint": "^4.0.0",
|
|
43
|
+
"@smithy/middleware-retry": "^4.0.0",
|
|
44
|
+
"@smithy/middleware-serde": "^4.0.0",
|
|
45
|
+
"@smithy/middleware-stack": "^4.0.0",
|
|
46
|
+
"@smithy/node-config-provider": "^4.0.0",
|
|
47
|
+
"@smithy/node-http-handler": "^4.0.0",
|
|
48
|
+
"@smithy/protocol-http": "^5.0.0",
|
|
49
|
+
"@smithy/smithy-client": "^4.0.0",
|
|
50
|
+
"@smithy/types": "^4.0.0",
|
|
51
|
+
"@smithy/url-parser": "^4.0.0",
|
|
52
|
+
"@smithy/util-base64": "^4.0.0",
|
|
53
|
+
"@smithy/util-body-length-browser": "^4.0.0",
|
|
54
|
+
"@smithy/util-body-length-node": "^4.0.0",
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^4.0.0",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^4.0.0",
|
|
57
|
+
"@smithy/util-endpoints": "^3.0.0",
|
|
58
|
+
"@smithy/util-middleware": "^4.0.0",
|
|
59
|
+
"@smithy/util-retry": "^4.0.0",
|
|
60
|
+
"@smithy/util-utf8": "^4.0.0",
|
|
61
61
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
|
-
"@tsconfig/
|
|
65
|
-
"@types/node": "^
|
|
64
|
+
"@tsconfig/node18": "18.2.4",
|
|
65
|
+
"@types/node": "^18.19.69",
|
|
66
66
|
"concurrently": "7.0.0",
|
|
67
67
|
"downlevel-dts": "0.10.1",
|
|
68
68
|
"rimraf": "3.0.2",
|
|
69
|
-
"typescript": "~
|
|
69
|
+
"typescript": "~5.2.2"
|
|
70
70
|
},
|
|
71
71
|
"engines": {
|
|
72
|
-
"node": ">=
|
|
72
|
+
"node": ">=18.0.0"
|
|
73
73
|
},
|
|
74
74
|
"typesVersions": {
|
|
75
75
|
"<4.0": {
|