@aws-sdk/client-backup 3.635.0 → 3.643.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 +15 -12
- package/dist-es/models/models_0.js +9 -9
- package/dist-es/protocols/Aws_restJson1.js +3 -0
- package/dist-types/commands/CancelLegalHoldCommand.d.ts +2 -2
- package/dist-types/commands/CreateLegalHoldCommand.d.ts +4 -4
- package/dist-types/commands/CreateLogicallyAirGappedBackupVaultCommand.d.ts +1 -1
- package/dist-types/commands/CreateRestoreTestingPlanCommand.d.ts +4 -5
- package/dist-types/commands/DescribeBackupVaultCommand.d.ts +1 -0
- package/dist-types/commands/ListBackupPlanTemplatesCommand.d.ts +1 -2
- package/dist-types/commands/ListBackupPlansCommand.d.ts +1 -3
- package/dist-types/commands/ListBackupVaultsCommand.d.ts +2 -0
- package/dist-types/commands/ListRecoveryPointsByResourceCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsCommand.d.ts +1 -5
- package/dist-types/commands/PutBackupVaultLockConfigurationCommand.d.ts +2 -1
- package/dist-types/commands/StopBackupJobCommand.d.ts +2 -2
- package/dist-types/commands/TagResourceCommand.d.ts +3 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +3 -0
- package/dist-types/commands/UpdateBackupPlanCommand.d.ts +1 -3
- package/dist-types/commands/UpdateFrameworkCommand.d.ts +1 -2
- package/dist-types/commands/UpdateRecoveryPointLifecycleCommand.d.ts +7 -4
- package/dist-types/commands/UpdateReportPlanCommand.d.ts +1 -2
- package/dist-types/commands/UpdateRestoreTestingSelectionCommand.d.ts +3 -7
- package/dist-types/models/models_0.d.ts +562 -547
- package/dist-types/ts3.4/models/models_0.d.ts +14 -11
- package/package.json +6 -6
|
@@ -210,9 +210,22 @@ export declare const BackupVaultEvent: {
|
|
|
210
210
|
};
|
|
211
211
|
export type BackupVaultEvent =
|
|
212
212
|
(typeof BackupVaultEvent)[keyof typeof BackupVaultEvent];
|
|
213
|
+
export declare const VaultState: {
|
|
214
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
215
|
+
readonly CREATING: "CREATING";
|
|
216
|
+
readonly FAILED: "FAILED";
|
|
217
|
+
};
|
|
218
|
+
export type VaultState = (typeof VaultState)[keyof typeof VaultState];
|
|
219
|
+
export declare const VaultType: {
|
|
220
|
+
readonly BACKUP_VAULT: "BACKUP_VAULT";
|
|
221
|
+
readonly LOGICALLY_AIR_GAPPED_BACKUP_VAULT: "LOGICALLY_AIR_GAPPED_BACKUP_VAULT";
|
|
222
|
+
};
|
|
223
|
+
export type VaultType = (typeof VaultType)[keyof typeof VaultType];
|
|
213
224
|
export interface BackupVaultListMember {
|
|
214
225
|
BackupVaultName?: string;
|
|
215
226
|
BackupVaultArn?: string;
|
|
227
|
+
VaultType?: VaultType;
|
|
228
|
+
VaultState?: VaultState;
|
|
216
229
|
CreationDate?: Date;
|
|
217
230
|
EncryptionKeyArn?: string;
|
|
218
231
|
CreatorRequestId?: string;
|
|
@@ -461,12 +474,6 @@ export interface CreateLogicallyAirGappedBackupVaultInput {
|
|
|
461
474
|
MinRetentionDays: number | undefined;
|
|
462
475
|
MaxRetentionDays: number | undefined;
|
|
463
476
|
}
|
|
464
|
-
export declare const VaultState: {
|
|
465
|
-
readonly AVAILABLE: "AVAILABLE";
|
|
466
|
-
readonly CREATING: "CREATING";
|
|
467
|
-
readonly FAILED: "FAILED";
|
|
468
|
-
};
|
|
469
|
-
export type VaultState = (typeof VaultState)[keyof typeof VaultState];
|
|
470
477
|
export interface CreateLogicallyAirGappedBackupVaultOutput {
|
|
471
478
|
BackupVaultName?: string;
|
|
472
479
|
BackupVaultArn?: string;
|
|
@@ -663,15 +670,11 @@ export interface DescribeBackupVaultInput {
|
|
|
663
670
|
BackupVaultName: string | undefined;
|
|
664
671
|
BackupVaultAccountId?: string;
|
|
665
672
|
}
|
|
666
|
-
export declare const VaultType: {
|
|
667
|
-
readonly BACKUP_VAULT: "BACKUP_VAULT";
|
|
668
|
-
readonly LOGICALLY_AIR_GAPPED_BACKUP_VAULT: "LOGICALLY_AIR_GAPPED_BACKUP_VAULT";
|
|
669
|
-
};
|
|
670
|
-
export type VaultType = (typeof VaultType)[keyof typeof VaultType];
|
|
671
673
|
export interface DescribeBackupVaultOutput {
|
|
672
674
|
BackupVaultName?: string;
|
|
673
675
|
BackupVaultArn?: string;
|
|
674
676
|
VaultType?: VaultType;
|
|
677
|
+
VaultState?: VaultState;
|
|
675
678
|
EncryptionKeyArn?: string;
|
|
676
679
|
CreationDate?: Date;
|
|
677
680
|
CreatorRequestId?: string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-backup",
|
|
3
3
|
"description": "AWS SDK for JavaScript Backup Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.643.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-backup",
|
|
@@ -20,17 +20,17 @@
|
|
|
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.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.637.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.637.0",
|
|
25
25
|
"@aws-sdk/core": "3.635.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.637.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.620.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.609.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.620.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.637.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.614.0",
|
|
32
32
|
"@aws-sdk/types": "3.609.0",
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.637.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.609.0",
|
|
35
35
|
"@aws-sdk/util-user-agent-node": "3.614.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.5",
|