@aws-sdk/client-backup-gateway 3.427.0 → 3.429.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.
|
@@ -304,7 +304,7 @@ export interface CreateGatewayInput {
|
|
|
304
304
|
* @public
|
|
305
305
|
* <p>The type of created gateway.</p>
|
|
306
306
|
*/
|
|
307
|
-
GatewayType: GatewayType |
|
|
307
|
+
GatewayType: GatewayType | undefined;
|
|
308
308
|
/**
|
|
309
309
|
* @public
|
|
310
310
|
* <p>A list of up to 50 tags to assign to the gateway. Each tag is a key-value pair.</p>
|
|
@@ -424,7 +424,7 @@ export interface GatewayDetails {
|
|
|
424
424
|
* @public
|
|
425
425
|
* <p>The type of the gateway type.</p>
|
|
426
426
|
*/
|
|
427
|
-
GatewayType?: GatewayType
|
|
427
|
+
GatewayType?: GatewayType;
|
|
428
428
|
/**
|
|
429
429
|
* @public
|
|
430
430
|
* <p>The hypervisor ID of the gateway.</p>
|
|
@@ -505,7 +505,7 @@ export interface Gateway {
|
|
|
505
505
|
* @public
|
|
506
506
|
* <p>The type of the gateway.</p>
|
|
507
507
|
*/
|
|
508
|
-
GatewayType?: GatewayType
|
|
508
|
+
GatewayType?: GatewayType;
|
|
509
509
|
/**
|
|
510
510
|
* @public
|
|
511
511
|
* <p>The hypervisor ID of the gateway.</p>
|
|
@@ -757,7 +757,7 @@ export interface HypervisorDetails {
|
|
|
757
757
|
* <p>The possible states are <code>PENDING</code>, <code>ONLINE</code>,
|
|
758
758
|
* <code>OFFLINE</code>, or <code>ERROR</code>.</p>
|
|
759
759
|
*/
|
|
760
|
-
State?: HypervisorState
|
|
760
|
+
State?: HypervisorState;
|
|
761
761
|
/**
|
|
762
762
|
* @public
|
|
763
763
|
* <p>This is the time when the most recent successful sync
|
|
@@ -773,7 +773,7 @@ export interface HypervisorDetails {
|
|
|
773
773
|
* @public
|
|
774
774
|
* <p>This is the most recent status for the indicated metadata sync.</p>
|
|
775
775
|
*/
|
|
776
|
-
LatestMetadataSyncStatus?: SyncMetadataStatus
|
|
776
|
+
LatestMetadataSyncStatus?: SyncMetadataStatus;
|
|
777
777
|
}
|
|
778
778
|
/**
|
|
779
779
|
* @public
|
|
@@ -971,7 +971,7 @@ export interface Hypervisor {
|
|
|
971
971
|
* @public
|
|
972
972
|
* <p>The state of the hypervisor.</p>
|
|
973
973
|
*/
|
|
974
|
-
State?: HypervisorState
|
|
974
|
+
State?: HypervisorState;
|
|
975
975
|
}
|
|
976
976
|
/**
|
|
977
977
|
* @public
|
|
@@ -92,7 +92,7 @@ export interface Tag {
|
|
|
92
92
|
export interface CreateGatewayInput {
|
|
93
93
|
ActivationKey: string | undefined;
|
|
94
94
|
GatewayDisplayName: string | undefined;
|
|
95
|
-
GatewayType: GatewayType |
|
|
95
|
+
GatewayType: GatewayType | undefined;
|
|
96
96
|
Tags?: Tag[];
|
|
97
97
|
}
|
|
98
98
|
export interface CreateGatewayOutput {
|
|
@@ -122,7 +122,7 @@ export interface MaintenanceStartTime {
|
|
|
122
122
|
export interface GatewayDetails {
|
|
123
123
|
GatewayArn?: string;
|
|
124
124
|
GatewayDisplayName?: string;
|
|
125
|
-
GatewayType?: GatewayType
|
|
125
|
+
GatewayType?: GatewayType;
|
|
126
126
|
HypervisorId?: string;
|
|
127
127
|
LastSeenTime?: Date;
|
|
128
128
|
MaintenanceStartTime?: MaintenanceStartTime;
|
|
@@ -139,7 +139,7 @@ export interface ListGatewaysInput {
|
|
|
139
139
|
export interface Gateway {
|
|
140
140
|
GatewayArn?: string;
|
|
141
141
|
GatewayDisplayName?: string;
|
|
142
|
-
GatewayType?: GatewayType
|
|
142
|
+
GatewayType?: GatewayType;
|
|
143
143
|
HypervisorId?: string;
|
|
144
144
|
LastSeenTime?: Date;
|
|
145
145
|
}
|
|
@@ -209,10 +209,10 @@ export interface HypervisorDetails {
|
|
|
209
209
|
KmsKeyArn?: string;
|
|
210
210
|
Name?: string;
|
|
211
211
|
LogGroupArn?: string;
|
|
212
|
-
State?: HypervisorState
|
|
212
|
+
State?: HypervisorState;
|
|
213
213
|
LastSuccessfulMetadataSyncTime?: Date;
|
|
214
214
|
LatestMetadataSyncStatusMessage?: string;
|
|
215
|
-
LatestMetadataSyncStatus?: SyncMetadataStatus
|
|
215
|
+
LatestMetadataSyncStatus?: SyncMetadataStatus;
|
|
216
216
|
}
|
|
217
217
|
export interface GetHypervisorOutput {
|
|
218
218
|
Hypervisor?: HypervisorDetails;
|
|
@@ -259,7 +259,7 @@ export interface Hypervisor {
|
|
|
259
259
|
HypervisorArn?: string;
|
|
260
260
|
KmsKeyArn?: string;
|
|
261
261
|
Name?: string;
|
|
262
|
-
State?: HypervisorState
|
|
262
|
+
State?: HypervisorState;
|
|
263
263
|
}
|
|
264
264
|
export interface ListHypervisorsOutput {
|
|
265
265
|
Hypervisors?: Hypervisor[];
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-backup-gateway",
|
|
3
3
|
"description": "AWS SDK for JavaScript Backup Gateway Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.429.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,39 +21,39 @@
|
|
|
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.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-signing": "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": "^2.0.
|
|
37
|
-
"@smithy/fetch-http-handler": "^2.2.
|
|
38
|
-
"@smithy/hash-node": "^2.0.
|
|
39
|
-
"@smithy/invalid-dependency": "^2.0.
|
|
40
|
-
"@smithy/middleware-content-length": "^2.0.
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.
|
|
42
|
-
"@smithy/middleware-retry": "^2.0.
|
|
43
|
-
"@smithy/middleware-serde": "^2.0.
|
|
44
|
-
"@smithy/middleware-stack": "^2.0.
|
|
45
|
-
"@smithy/node-config-provider": "^2.
|
|
46
|
-
"@smithy/node-http-handler": "^2.1.
|
|
47
|
-
"@smithy/protocol-http": "^3.0.
|
|
48
|
-
"@smithy/smithy-client": "^2.1.
|
|
49
|
-
"@smithy/types": "^2.3.
|
|
50
|
-
"@smithy/url-parser": "^2.0.
|
|
24
|
+
"@aws-sdk/client-sts": "3.429.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.429.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
|
+
"@aws-sdk/middleware-signing": "3.428.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.428.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.428.0",
|
|
32
|
+
"@aws-sdk/types": "3.428.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.428.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.428.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.428.0",
|
|
36
|
+
"@smithy/config-resolver": "^2.0.14",
|
|
37
|
+
"@smithy/fetch-http-handler": "^2.2.3",
|
|
38
|
+
"@smithy/hash-node": "^2.0.11",
|
|
39
|
+
"@smithy/invalid-dependency": "^2.0.11",
|
|
40
|
+
"@smithy/middleware-content-length": "^2.0.13",
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.1",
|
|
42
|
+
"@smithy/middleware-retry": "^2.0.16",
|
|
43
|
+
"@smithy/middleware-serde": "^2.0.11",
|
|
44
|
+
"@smithy/middleware-stack": "^2.0.5",
|
|
45
|
+
"@smithy/node-config-provider": "^2.1.1",
|
|
46
|
+
"@smithy/node-http-handler": "^2.1.7",
|
|
47
|
+
"@smithy/protocol-http": "^3.0.7",
|
|
48
|
+
"@smithy/smithy-client": "^2.1.11",
|
|
49
|
+
"@smithy/types": "^2.3.5",
|
|
50
|
+
"@smithy/url-parser": "^2.0.11",
|
|
51
51
|
"@smithy/util-base64": "^2.0.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^2.0.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^2.1.0",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^2.0.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^2.0.
|
|
56
|
-
"@smithy/util-retry": "^2.0.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^2.0.15",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^2.0.19",
|
|
56
|
+
"@smithy/util-retry": "^2.0.4",
|
|
57
57
|
"@smithy/util-utf8": "^2.0.0",
|
|
58
58
|
"tslib": "^2.5.0"
|
|
59
59
|
},
|