@aws-sdk/client-cloudhsm 3.428.0 → 3.430.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.
|
@@ -187,7 +187,7 @@ export interface CreateHsmRequest {
|
|
|
187
187
|
* </li>
|
|
188
188
|
* </ul>
|
|
189
189
|
*/
|
|
190
|
-
SubscriptionType: SubscriptionType |
|
|
190
|
+
SubscriptionType: SubscriptionType | undefined;
|
|
191
191
|
/**
|
|
192
192
|
* @public
|
|
193
193
|
* <p>A user-defined token to ensure idempotence. Subsequent calls to this operation with the
|
|
@@ -378,7 +378,7 @@ export interface DescribeHapgResponse {
|
|
|
378
378
|
* @public
|
|
379
379
|
* <p>The state of the high-availability partition group.</p>
|
|
380
380
|
*/
|
|
381
|
-
State?: CloudHsmObjectState
|
|
381
|
+
State?: CloudHsmObjectState;
|
|
382
382
|
}
|
|
383
383
|
/**
|
|
384
384
|
* @public
|
|
@@ -429,7 +429,7 @@ export interface DescribeHsmResponse {
|
|
|
429
429
|
* @public
|
|
430
430
|
* <p>The status of the HSM.</p>
|
|
431
431
|
*/
|
|
432
|
-
Status?: HsmStatus
|
|
432
|
+
Status?: HsmStatus;
|
|
433
433
|
/**
|
|
434
434
|
* @public
|
|
435
435
|
* <p>Contains additional information about the status of the HSM.</p>
|
|
@@ -466,7 +466,7 @@ export interface DescribeHsmResponse {
|
|
|
466
466
|
* </li>
|
|
467
467
|
* </ul>
|
|
468
468
|
*/
|
|
469
|
-
SubscriptionType?: SubscriptionType
|
|
469
|
+
SubscriptionType?: SubscriptionType;
|
|
470
470
|
/**
|
|
471
471
|
* @public
|
|
472
472
|
* <p>The subscription start date.</p>
|
|
@@ -596,7 +596,7 @@ export interface GetConfigRequest {
|
|
|
596
596
|
* @public
|
|
597
597
|
* <p>The client version.</p>
|
|
598
598
|
*/
|
|
599
|
-
ClientVersion: ClientVersion |
|
|
599
|
+
ClientVersion: ClientVersion | undefined;
|
|
600
600
|
/**
|
|
601
601
|
* @public
|
|
602
602
|
* <p>A list of ARNs that identify the high-availability partition groups that are associated
|
|
@@ -57,7 +57,7 @@ export interface CreateHsmRequest {
|
|
|
57
57
|
EniIp?: string;
|
|
58
58
|
IamRoleArn: string | undefined;
|
|
59
59
|
ExternalId?: string;
|
|
60
|
-
SubscriptionType: SubscriptionType |
|
|
60
|
+
SubscriptionType: SubscriptionType | undefined;
|
|
61
61
|
ClientToken?: string;
|
|
62
62
|
SyslogIp?: string;
|
|
63
63
|
}
|
|
@@ -108,7 +108,7 @@ export interface DescribeHapgResponse {
|
|
|
108
108
|
Label?: string;
|
|
109
109
|
LastModifiedTimestamp?: string;
|
|
110
110
|
PartitionSerialList?: string[];
|
|
111
|
-
State?: CloudHsmObjectState
|
|
111
|
+
State?: CloudHsmObjectState;
|
|
112
112
|
}
|
|
113
113
|
export interface DescribeHsmRequest {
|
|
114
114
|
HsmArn?: string;
|
|
@@ -126,12 +126,12 @@ export declare const HsmStatus: {
|
|
|
126
126
|
export type HsmStatus = (typeof HsmStatus)[keyof typeof HsmStatus];
|
|
127
127
|
export interface DescribeHsmResponse {
|
|
128
128
|
HsmArn?: string;
|
|
129
|
-
Status?: HsmStatus
|
|
129
|
+
Status?: HsmStatus;
|
|
130
130
|
StatusDetails?: string;
|
|
131
131
|
AvailabilityZone?: string;
|
|
132
132
|
EniId?: string;
|
|
133
133
|
EniIp?: string;
|
|
134
|
-
SubscriptionType?: SubscriptionType
|
|
134
|
+
SubscriptionType?: SubscriptionType;
|
|
135
135
|
SubscriptionStartDate?: string;
|
|
136
136
|
SubscriptionEndDate?: string;
|
|
137
137
|
VpcId?: string;
|
|
@@ -160,7 +160,7 @@ export interface DescribeLunaClientResponse {
|
|
|
160
160
|
}
|
|
161
161
|
export interface GetConfigRequest {
|
|
162
162
|
ClientArn: string | undefined;
|
|
163
|
-
ClientVersion: ClientVersion |
|
|
163
|
+
ClientVersion: ClientVersion | undefined;
|
|
164
164
|
HapgList: string[] | undefined;
|
|
165
165
|
}
|
|
166
166
|
export interface GetConfigResponse {
|
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.430.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,28 +21,28 @@
|
|
|
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.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.430.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.430.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.428.0",
|
|
30
30
|
"@aws-sdk/middleware-user-agent": "3.428.0",
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.430.0",
|
|
32
32
|
"@aws-sdk/types": "3.428.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.428.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.428.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^2.0.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.430.0",
|
|
36
|
+
"@smithy/config-resolver": "^2.0.15",
|
|
37
37
|
"@smithy/fetch-http-handler": "^2.2.3",
|
|
38
38
|
"@smithy/hash-node": "^2.0.11",
|
|
39
39
|
"@smithy/invalid-dependency": "^2.0.11",
|
|
40
40
|
"@smithy/middleware-content-length": "^2.0.13",
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.1.
|
|
42
|
-
"@smithy/middleware-retry": "^2.0.
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.2",
|
|
42
|
+
"@smithy/middleware-retry": "^2.0.17",
|
|
43
43
|
"@smithy/middleware-serde": "^2.0.11",
|
|
44
44
|
"@smithy/middleware-stack": "^2.0.5",
|
|
45
|
-
"@smithy/node-config-provider": "^2.1.
|
|
45
|
+
"@smithy/node-config-provider": "^2.1.2",
|
|
46
46
|
"@smithy/node-http-handler": "^2.1.7",
|
|
47
47
|
"@smithy/protocol-http": "^3.0.7",
|
|
48
48
|
"@smithy/smithy-client": "^2.1.11",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"@smithy/util-body-length-browser": "^2.0.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^2.1.0",
|
|
54
54
|
"@smithy/util-defaults-mode-browser": "^2.0.15",
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^2.0.
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^2.0.20",
|
|
56
56
|
"@smithy/util-retry": "^2.0.4",
|
|
57
57
|
"@smithy/util-utf8": "^2.0.0",
|
|
58
58
|
"tslib": "^2.5.0"
|