@aws-sdk/client-backup 3.1012.0 → 3.1014.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.
|
@@ -27,9 +27,7 @@ declare const DescribeGlobalSettingsCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Describes whether the Amazon Web Services account
|
|
31
|
-
* Returns an error if the account is not a member of an Organizations organization.
|
|
32
|
-
* Example: <code>describe-global-settings --region us-west-2</code>
|
|
30
|
+
* <p>Describes whether the Amazon Web Services account has enabled different cross-account management options, including cross-account backup, multi-party approval, and delegated administrator. Returns an error if the account is not a member of an Organizations organization. Example: <code>describe-global-settings --region us-west-2</code>
|
|
33
31
|
* </p>
|
|
34
32
|
* @example
|
|
35
33
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -27,9 +27,7 @@ declare const UpdateGlobalSettingsCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Updates whether the Amazon Web Services account
|
|
31
|
-
* Returns an error if the account is not an Organizations management account. Use the
|
|
32
|
-
* <code>DescribeGlobalSettings</code> API to determine the current settings.</p>
|
|
30
|
+
* <p>Updates whether the Amazon Web Services account has enabled different cross-account management options, including cross-account backup, multi-party approval, and delegated administrator. Returns an error if the account is not an Organizations management account. Use the <code>DescribeGlobalSettings</code> API to determine the current settings.</p>
|
|
33
31
|
* @example
|
|
34
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
35
33
|
* ```javascript
|
|
@@ -21,8 +21,8 @@ export interface AdvancedBackupSetting {
|
|
|
21
21
|
* option and create a Windows VSS backup. </p>
|
|
22
22
|
* <p>Set to <code>"WindowsVSS":"disabled"</code> to create a regular backup. The
|
|
23
23
|
* <code>WindowsVSS</code> option is not enabled by default.</p>
|
|
24
|
-
* <p>For S3 backups, set to <code>"
|
|
25
|
-
* or <code>"
|
|
24
|
+
* <p>For S3 backups, set to <code>"BackupACLs":"disabled"</code> to exclude ACLs from the backup,
|
|
25
|
+
* or <code>"BackupObjectTags":"disabled"</code> to exclude object tags from the backup.
|
|
26
26
|
* By default, both ACLs and object tags are included in S3 backups.</p>
|
|
27
27
|
* <p>If you specify an invalid option, you get an <code>InvalidParameterValueException</code>
|
|
28
28
|
* exception.</p>
|
|
@@ -297,6 +297,9 @@ export interface BackupJob {
|
|
|
297
297
|
* backup.</p>
|
|
298
298
|
* </li>
|
|
299
299
|
* <li>
|
|
300
|
+
* <p>For Amazon EKS, this value refers to the size of your nested EKS recovery point.</p>
|
|
301
|
+
* </li>
|
|
302
|
+
* <li>
|
|
300
303
|
* <p>Amazon FSx does not populate this value from the operation
|
|
301
304
|
* <code>GetBackupJobStatus</code> for FSx file systems.</p>
|
|
302
305
|
* </li>
|
|
@@ -1061,6 +1064,9 @@ export interface BackupSelection {
|
|
|
1061
1064
|
* selection strategy, such as assigning all resources of a resource type or refining your
|
|
1062
1065
|
* resource selection using tags.</p>
|
|
1063
1066
|
* <p>If you specify multiple ARNs, the resources much match any of the ARNs (OR logic).</p>
|
|
1067
|
+
* <note>
|
|
1068
|
+
* <p>When using wildcards in ARN patterns for backup selections, the asterisk (*) must appear at the end of the ARN string (prefix pattern). For example, <code>arn:aws:s3:::my-bucket-*</code> is valid, but <code>arn:aws:s3:::*-logs</code> is not supported.</p>
|
|
1069
|
+
* </note>
|
|
1064
1070
|
* @public
|
|
1065
1071
|
*/
|
|
1066
1072
|
Resources?: string[] | undefined;
|
|
@@ -3127,6 +3133,9 @@ export interface DescribeBackupJobOutput {
|
|
|
3127
3133
|
* backup.</p>
|
|
3128
3134
|
* </li>
|
|
3129
3135
|
* <li>
|
|
3136
|
+
* <p>For Amazon EKS, this value refers to the size of your nested EKS recovery point.</p>
|
|
3137
|
+
* </li>
|
|
3138
|
+
* <li>
|
|
3130
3139
|
* <p>Amazon FSx does not populate this value from the operation
|
|
3131
3140
|
* <code>GetBackupJobStatus</code> for FSx file systems.</p>
|
|
3132
3141
|
* </li>
|
|
@@ -3534,16 +3543,26 @@ export interface DescribeGlobalSettingsInput {
|
|
|
3534
3543
|
*/
|
|
3535
3544
|
export interface DescribeGlobalSettingsOutput {
|
|
3536
3545
|
/**
|
|
3537
|
-
* <p>The status of the flags <code>isCrossAccountBackupEnabled</code>,
|
|
3538
|
-
* <
|
|
3546
|
+
* <p>The status of the flags <code>isCrossAccountBackupEnabled</code>, <code>isMpaEnabled</code> ('Mpa' refers to multi-party approval), and <code>isDelegatedAdministratorEnabled</code>.</p>
|
|
3547
|
+
* <ul>
|
|
3548
|
+
* <li>
|
|
3549
|
+
* <p>
|
|
3550
|
+
* <code>isCrossAccountBackupEnabled</code>: Allow accounts in your organization to copy backups to other accounts.</p>
|
|
3551
|
+
* </li>
|
|
3552
|
+
* <li>
|
|
3553
|
+
* <p>
|
|
3554
|
+
* <code>isMpaEnabled</code>: Add cross-account access to your organization with the option to assign a Multi-party approval team to a logically air-gapped vault.</p>
|
|
3555
|
+
* </li>
|
|
3556
|
+
* <li>
|
|
3557
|
+
* <p>
|
|
3558
|
+
* <code>isDelegatedAdministratorEnabled</code>: Allow Backup to automatically synchronize delegated administrator permissions with Organizations.</p>
|
|
3559
|
+
* </li>
|
|
3560
|
+
* </ul>
|
|
3539
3561
|
* @public
|
|
3540
3562
|
*/
|
|
3541
3563
|
GlobalSettings?: Record<string, string> | undefined;
|
|
3542
3564
|
/**
|
|
3543
|
-
* <p>The date and time that the
|
|
3544
|
-
* updated. This update is in Unix format and Coordinated Universal Time (UTC). The value of
|
|
3545
|
-
* <code>LastUpdateTime</code> is accurate to milliseconds. For example, the value
|
|
3546
|
-
* 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.</p>
|
|
3565
|
+
* <p>The date and time that the supported flags were last updated. This update is in Unix format and Coordinated Universal Time (UTC). The value of <code>LastUpdateTime</code> is accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.</p>
|
|
3547
3566
|
* @public
|
|
3548
3567
|
*/
|
|
3549
3568
|
LastUpdateTime?: Date | undefined;
|
|
@@ -5356,6 +5375,10 @@ export interface GetSupportedResourceTypesOutput {
|
|
|
5356
5375
|
* </li>
|
|
5357
5376
|
* <li>
|
|
5358
5377
|
* <p>
|
|
5378
|
+
* <code>EKS</code> for Amazon Elastic Kubernetes Service</p>
|
|
5379
|
+
* </li>
|
|
5380
|
+
* <li>
|
|
5381
|
+
* <p>
|
|
5359
5382
|
* <code>FSx</code> for Amazon FSx</p>
|
|
5360
5383
|
* </li>
|
|
5361
5384
|
* <li>
|
|
@@ -5557,6 +5580,10 @@ export interface ListBackupJobsInput {
|
|
|
5557
5580
|
* </li>
|
|
5558
5581
|
* <li>
|
|
5559
5582
|
* <p>
|
|
5583
|
+
* <code>EKS</code> for Amazon Elastic Kubernetes Service</p>
|
|
5584
|
+
* </li>
|
|
5585
|
+
* <li>
|
|
5586
|
+
* <p>
|
|
5560
5587
|
* <code>FSx</code> for Amazon FSx</p>
|
|
5561
5588
|
* </li>
|
|
5562
5589
|
* <li>
|
|
@@ -6073,6 +6100,10 @@ export interface ListCopyJobsInput {
|
|
|
6073
6100
|
* </li>
|
|
6074
6101
|
* <li>
|
|
6075
6102
|
* <p>
|
|
6103
|
+
* <code>EKS</code> for Amazon Elastic Kubernetes Service</p>
|
|
6104
|
+
* </li>
|
|
6105
|
+
* <li>
|
|
6106
|
+
* <p>
|
|
6076
6107
|
* <code>FSx</code> for Amazon FSx</p>
|
|
6077
6108
|
* </li>
|
|
6078
6109
|
* <li>
|
|
@@ -6847,6 +6878,10 @@ export interface ListRecoveryPointsByBackupVaultInput {
|
|
|
6847
6878
|
* </li>
|
|
6848
6879
|
* <li>
|
|
6849
6880
|
* <p>
|
|
6881
|
+
* <code>EKS</code> for Amazon Elastic Kubernetes Service</p>
|
|
6882
|
+
* </li>
|
|
6883
|
+
* <li>
|
|
6884
|
+
* <p>
|
|
6850
6885
|
* <code>FSx</code> for Amazon FSx</p>
|
|
6851
6886
|
* </li>
|
|
6852
6887
|
* <li>
|
|
@@ -7604,6 +7639,10 @@ export interface ListRestoreJobsInput {
|
|
|
7604
7639
|
* </li>
|
|
7605
7640
|
* <li>
|
|
7606
7641
|
* <p>
|
|
7642
|
+
* <code>EKS</code> for Amazon Elastic Kubernetes Service</p>
|
|
7643
|
+
* </li>
|
|
7644
|
+
* <li>
|
|
7645
|
+
* <p>
|
|
7607
7646
|
* <code>FSx</code> for Amazon FSx</p>
|
|
7608
7647
|
* </li>
|
|
7609
7648
|
* <li>
|
|
@@ -8875,6 +8914,7 @@ export interface PutBackupVaultLockConfigurationInput {
|
|
|
8875
8914
|
* <p>Backup enforces a 72-hour cooling-off period before Vault Lock takes effect
|
|
8876
8915
|
* and becomes immutable. Therefore, you must set <code>ChangeableForDays</code> to 3 or
|
|
8877
8916
|
* greater.</p>
|
|
8917
|
+
* <p>The maximum value you can specify is 36,500 days (approximately 100 years).</p>
|
|
8878
8918
|
* <p>Before the lock date, you can delete Vault Lock from the vault using
|
|
8879
8919
|
* <code>DeleteBackupVaultLockConfiguration</code> or change the Vault Lock configuration
|
|
8880
8920
|
* using <code>PutBackupVaultLockConfiguration</code>. On and after the lock date, the Vault
|
|
@@ -9265,6 +9305,11 @@ export interface StartRestoreJobInput {
|
|
|
9265
9305
|
* </li>
|
|
9266
9306
|
* <li>
|
|
9267
9307
|
* <p>
|
|
9308
|
+
* <a href="https://docs.aws.amazon.com/aws-backup/latest/devguide/restoring-eks.html#eks-restore-backup-section">Metadata for Amazon EKS</a>
|
|
9309
|
+
* </p>
|
|
9310
|
+
* </li>
|
|
9311
|
+
* <li>
|
|
9312
|
+
* <p>
|
|
9268
9313
|
* <a href="https://docs.aws.amazon.com/aws-backup/latest/devguide/restoring-fsx.html#fsx-restore-cli">Metadata for Amazon FSx</a>
|
|
9269
9314
|
* </p>
|
|
9270
9315
|
* </li>
|
|
@@ -9354,6 +9399,10 @@ export interface StartRestoreJobInput {
|
|
|
9354
9399
|
* </li>
|
|
9355
9400
|
* <li>
|
|
9356
9401
|
* <p>
|
|
9402
|
+
* <code>EKS</code> - Amazon Elastic Kubernetes Service</p>
|
|
9403
|
+
* </li>
|
|
9404
|
+
* <li>
|
|
9405
|
+
* <p>
|
|
9357
9406
|
* <code>FSx</code> - Amazon FSx</p>
|
|
9358
9407
|
* </li>
|
|
9359
9408
|
* <li>
|
|
@@ -9650,17 +9699,14 @@ export interface UpdateFrameworkOutput {
|
|
|
9650
9699
|
export interface UpdateGlobalSettingsInput {
|
|
9651
9700
|
/**
|
|
9652
9701
|
* <p>Inputs can include:</p>
|
|
9653
|
-
* <p>A value for <code>isCrossAccountBackupEnabled</code
|
|
9654
|
-
* <code>update-global-settings --global-settings isCrossAccountBackupEnabled=false
|
|
9655
|
-
*
|
|
9656
|
-
* <p>A value for Multi-party approval, styled as "Mpa": <code>isMpaEnabled</code>. Values can
|
|
9702
|
+
* <p>A value for <code>isCrossAccountBackupEnabled</code>. Values can be true or false. Example:
|
|
9703
|
+
* <code>update-global-settings --global-settings isCrossAccountBackupEnabled=false</code>.</p>
|
|
9704
|
+
* <p>A value for Multi-party approval, styled as <code>isMpaEnabled</code>. Values can
|
|
9657
9705
|
* be true or false. Example:
|
|
9658
|
-
* <code>update-global-settings --global-settings isMpaEnabled=false
|
|
9659
|
-
*
|
|
9660
|
-
* <p>A value for Backup Service-Linked Role creation, styled as<code>isDelegatedAdministratorEnabled</code>.
|
|
9706
|
+
* <code>update-global-settings --global-settings isMpaEnabled=false</code>.</p>
|
|
9707
|
+
* <p>A value for Backup Service-Linked Role creation, styled as <code>isDelegatedAdministratorEnabled</code>.
|
|
9661
9708
|
* Values can be true or false. Example:
|
|
9662
|
-
* <code>update-global-settings --global-settings isDelegatedAdministratorEnabled=false
|
|
9663
|
-
* --region us-west-2</code>.</p>
|
|
9709
|
+
* <code>update-global-settings --global-settings isDelegatedAdministratorEnabled=false</code>.</p>
|
|
9664
9710
|
* @public
|
|
9665
9711
|
*/
|
|
9666
9712
|
GlobalSettings?: Record<string, string> | undefined;
|
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.1014.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-backup",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.973.23",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.24",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "^3.972.8",
|
|
27
27
|
"@aws-sdk/middleware-logger": "^3.972.8",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "^3.972.8",
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.24",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.9",
|
|
31
31
|
"@aws-sdk/types": "^3.973.6",
|
|
32
32
|
"@aws-sdk/util-endpoints": "^3.996.5",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "^3.972.8",
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
35
|
-
"@smithy/config-resolver": "^4.4.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.973.10",
|
|
35
|
+
"@smithy/config-resolver": "^4.4.13",
|
|
36
36
|
"@smithy/core": "^3.23.12",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.15",
|
|
38
38
|
"@smithy/hash-node": "^4.2.12",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.12",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.12",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.27",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.44",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.15",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.12",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.12",
|
|
46
46
|
"@smithy/node-http-handler": "^4.5.0",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.12",
|
|
48
|
-
"@smithy/smithy-client": "^4.12.
|
|
48
|
+
"@smithy/smithy-client": "^4.12.7",
|
|
49
49
|
"@smithy/types": "^4.13.1",
|
|
50
50
|
"@smithy/url-parser": "^4.2.12",
|
|
51
51
|
"@smithy/util-base64": "^4.3.2",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.2",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.3",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.43",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.47",
|
|
56
56
|
"@smithy/util-endpoints": "^3.3.3",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.12",
|
|
58
58
|
"@smithy/util-retry": "^4.2.12",
|