@aws-sdk/client-backup 3.100.0 → 3.105.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/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.105.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.104.0...v3.105.0) (2022-06-06)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **clients:** support recursion detection in Lambda ([#3654](https://github.com/aws/aws-sdk-js-v3/issues/3654)) ([ecfe46e](https://github.com/aws/aws-sdk-js-v3/commit/ecfe46ea1fd8b6e3812b75b3dc6c03554fb4b3fa))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [3.100.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.99.0...v3.100.0) (2022-05-26)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @aws-sdk/client-backup
|
package/dist-cjs/BackupClient.js
CHANGED
|
@@ -5,6 +5,7 @@ const config_resolver_1 = require("@aws-sdk/config-resolver");
|
|
|
5
5
|
const middleware_content_length_1 = require("@aws-sdk/middleware-content-length");
|
|
6
6
|
const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
|
|
7
7
|
const middleware_logger_1 = require("@aws-sdk/middleware-logger");
|
|
8
|
+
const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
|
|
8
9
|
const middleware_retry_1 = require("@aws-sdk/middleware-retry");
|
|
9
10
|
const middleware_signing_1 = require("@aws-sdk/middleware-signing");
|
|
10
11
|
const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
|
|
@@ -25,6 +26,7 @@ class BackupClient extends smithy_client_1.Client {
|
|
|
25
26
|
this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
|
|
26
27
|
this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
|
|
27
28
|
this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
|
|
29
|
+
this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
|
|
28
30
|
this.middlewareStack.use((0, middleware_signing_1.getAwsAuthPlugin)(this.config));
|
|
29
31
|
this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
|
|
30
32
|
}
|
package/dist-es/BackupClient.js
CHANGED
|
@@ -3,6 +3,7 @@ import { resolveEndpointsConfig, resolveRegionConfig, } from "@aws-sdk/config-re
|
|
|
3
3
|
import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
|
|
4
4
|
import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header";
|
|
5
5
|
import { getLoggerPlugin } from "@aws-sdk/middleware-logger";
|
|
6
|
+
import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection";
|
|
6
7
|
import { getRetryPlugin, resolveRetryConfig } from "@aws-sdk/middleware-retry";
|
|
7
8
|
import { getAwsAuthPlugin, resolveAwsAuthConfig, } from "@aws-sdk/middleware-signing";
|
|
8
9
|
import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
|
|
@@ -25,6 +26,7 @@ var BackupClient = (function (_super) {
|
|
|
25
26
|
_this.middlewareStack.use(getContentLengthPlugin(_this.config));
|
|
26
27
|
_this.middlewareStack.use(getHostHeaderPlugin(_this.config));
|
|
27
28
|
_this.middlewareStack.use(getLoggerPlugin(_this.config));
|
|
29
|
+
_this.middlewareStack.use(getRecursionDetectionPlugin(_this.config));
|
|
28
30
|
_this.middlewareStack.use(getAwsAuthPlugin(_this.config));
|
|
29
31
|
_this.middlewareStack.use(getUserAgentPlugin(_this.config));
|
|
30
32
|
return _this;
|
|
@@ -25,9 +25,7 @@ export interface AdvancedBackupSetting {
|
|
|
25
25
|
* <p>For more information about Windows VSS backups, see <a href="https://docs.aws.amazon.com/aws-backup/latest/devguide/windows-backups.html">Creating a VSS-Enabled Windows
|
|
26
26
|
* Backup</a>.</p>
|
|
27
27
|
*/
|
|
28
|
-
BackupOptions?:
|
|
29
|
-
[key: string]: string;
|
|
30
|
-
};
|
|
28
|
+
BackupOptions?: Record<string, string>;
|
|
31
29
|
}
|
|
32
30
|
export declare namespace AdvancedBackupSetting {
|
|
33
31
|
/**
|
|
@@ -217,9 +215,7 @@ export interface BackupJob {
|
|
|
217
215
|
* <code>"WindowsVSS":"disabled"</code> to create a regular backup. If you specify an
|
|
218
216
|
* invalid option, you get an <code>InvalidParameterValueException</code> exception.</p>
|
|
219
217
|
*/
|
|
220
|
-
BackupOptions?:
|
|
221
|
-
[key: string]: string;
|
|
222
|
-
};
|
|
218
|
+
BackupOptions?: Record<string, string>;
|
|
223
219
|
/**
|
|
224
220
|
* <p>Represents the type of backup for a backup job.</p>
|
|
225
221
|
*/
|
|
@@ -347,9 +343,7 @@ export interface BackupRule {
|
|
|
347
343
|
* <p>An array of key-value pair strings that are assigned to resources that are associated
|
|
348
344
|
* with this rule when restored from backup.</p>
|
|
349
345
|
*/
|
|
350
|
-
RecoveryPointTags?:
|
|
351
|
-
[key: string]: string;
|
|
352
|
-
};
|
|
346
|
+
RecoveryPointTags?: Record<string, string>;
|
|
353
347
|
/**
|
|
354
348
|
* <p>Uniquely identifies a rule that is used to schedule the backup of a selection of
|
|
355
349
|
* resources.</p>
|
|
@@ -450,9 +444,7 @@ export interface BackupRuleInput {
|
|
|
450
444
|
* <p>To help organize your resources, you can assign your own metadata to the resources that
|
|
451
445
|
* you create. Each tag is a key-value pair.</p>
|
|
452
446
|
*/
|
|
453
|
-
RecoveryPointTags?:
|
|
454
|
-
[key: string]: string;
|
|
455
|
-
};
|
|
447
|
+
RecoveryPointTags?: Record<string, string>;
|
|
456
448
|
/**
|
|
457
449
|
* <p>An array of <code>CopyAction</code> objects, which contains the details of the copy
|
|
458
450
|
* operation.</p>
|
|
@@ -1005,9 +997,7 @@ export interface ControlScope {
|
|
|
1005
997
|
* value is optional, but it cannot be an empty string. The structure to assign a tag is:
|
|
1006
998
|
* <code>[{"Key":"string","Value":"string"}]</code>.</p>
|
|
1007
999
|
*/
|
|
1008
|
-
Tags?:
|
|
1009
|
-
[key: string]: string;
|
|
1010
|
-
};
|
|
1000
|
+
Tags?: Record<string, string>;
|
|
1011
1001
|
}
|
|
1012
1002
|
export declare namespace ControlScope {
|
|
1013
1003
|
/**
|
|
@@ -1115,9 +1105,7 @@ export interface CreateBackupPlanInput {
|
|
|
1115
1105
|
* you create. Each tag is a key-value pair. The specified tags are assigned to all backups
|
|
1116
1106
|
* created with this plan.</p>
|
|
1117
1107
|
*/
|
|
1118
|
-
BackupPlanTags?:
|
|
1119
|
-
[key: string]: string;
|
|
1120
|
-
};
|
|
1108
|
+
BackupPlanTags?: Record<string, string>;
|
|
1121
1109
|
/**
|
|
1122
1110
|
* <p>Identifies the request and allows failed requests to be retried without the risk of
|
|
1123
1111
|
* running the operation twice. If the request includes a <code>CreatorRequestId</code> that
|
|
@@ -1310,9 +1298,7 @@ export interface CreateBackupVaultInput {
|
|
|
1310
1298
|
* <p>Metadata that you can assign to help organize the resources that you create. Each tag is
|
|
1311
1299
|
* a key-value pair.</p>
|
|
1312
1300
|
*/
|
|
1313
|
-
BackupVaultTags?:
|
|
1314
|
-
[key: string]: string;
|
|
1315
|
-
};
|
|
1301
|
+
BackupVaultTags?: Record<string, string>;
|
|
1316
1302
|
/**
|
|
1317
1303
|
* <p>The server-side encryption key that is used to protect your backups; for example,
|
|
1318
1304
|
* <code>arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab</code>.</p>
|
|
@@ -1411,9 +1397,7 @@ export interface CreateFrameworkInput {
|
|
|
1411
1397
|
* <p>Metadata that you can assign to help organize the frameworks that you create. Each tag
|
|
1412
1398
|
* is a key-value pair.</p>
|
|
1413
1399
|
*/
|
|
1414
|
-
FrameworkTags?:
|
|
1415
|
-
[key: string]: string;
|
|
1416
|
-
};
|
|
1400
|
+
FrameworkTags?: Record<string, string>;
|
|
1417
1401
|
}
|
|
1418
1402
|
export declare namespace CreateFrameworkInput {
|
|
1419
1403
|
/**
|
|
@@ -1529,9 +1513,7 @@ export interface CreateReportPlanInput {
|
|
|
1529
1513
|
* <p>Metadata that you can assign to help organize the report plans that you create. Each tag
|
|
1530
1514
|
* is a key-value pair.</p>
|
|
1531
1515
|
*/
|
|
1532
|
-
ReportPlanTags?:
|
|
1533
|
-
[key: string]: string;
|
|
1534
|
-
};
|
|
1516
|
+
ReportPlanTags?: Record<string, string>;
|
|
1535
1517
|
/**
|
|
1536
1518
|
* <p>A customer-chosen string that you can use to distinguish between otherwise identical
|
|
1537
1519
|
* calls to <code>CreateReportPlanInput</code>. Retrying a successful request with the same
|
|
@@ -1926,9 +1908,7 @@ export interface DescribeBackupJobOutput {
|
|
|
1926
1908
|
/**
|
|
1927
1909
|
* <p>Represents the options specified as part of backup plan or on-demand backup job.</p>
|
|
1928
1910
|
*/
|
|
1929
|
-
BackupOptions?:
|
|
1930
|
-
[key: string]: string;
|
|
1931
|
-
};
|
|
1911
|
+
BackupOptions?: Record<string, string>;
|
|
1932
1912
|
/**
|
|
1933
1913
|
* <p>Represents the actual backup type selected for a backup job. For example, if a
|
|
1934
1914
|
* successful Windows Volume Shadow Copy Service (VSS) backup was taken,
|
|
@@ -2163,9 +2143,7 @@ export interface DescribeGlobalSettingsOutput {
|
|
|
2163
2143
|
/**
|
|
2164
2144
|
* <p>The status of the flag <code>isCrossAccountBackupEnabled</code>.</p>
|
|
2165
2145
|
*/
|
|
2166
|
-
GlobalSettings?:
|
|
2167
|
-
[key: string]: string;
|
|
2168
|
-
};
|
|
2146
|
+
GlobalSettings?: Record<string, string>;
|
|
2169
2147
|
/**
|
|
2170
2148
|
* <p>The date and time that the flag <code>isCrossAccountBackupEnabled</code> was last
|
|
2171
2149
|
* updated. This update is in Unix format and Coordinated Universal Time (UTC). The value of
|
|
@@ -2393,9 +2371,7 @@ export interface DescribeRegionSettingsOutput {
|
|
|
2393
2371
|
/**
|
|
2394
2372
|
* <p>Returns a list of all services along with the opt-in preferences in the Region.</p>
|
|
2395
2373
|
*/
|
|
2396
|
-
ResourceTypeOptInPreference?:
|
|
2397
|
-
[key: string]: boolean;
|
|
2398
|
-
};
|
|
2374
|
+
ResourceTypeOptInPreference?: Record<string, boolean>;
|
|
2399
2375
|
/**
|
|
2400
2376
|
* <p>Returns whether Backup fully manages the backups for a resource type.</p>
|
|
2401
2377
|
* <p>For the benefits of full Backup management, see <a href="https://docs.aws.amazon.com/aws-backup/latest/devguide/whatisbackup.html#full-management"> Full Backup management</a>.</p>
|
|
@@ -2406,9 +2382,7 @@ export interface DescribeRegionSettingsOutput {
|
|
|
2406
2382
|
* DynamoDB backup by enabling <a href="https://docs.aws.amazon.com/aws-backup/latest/devguide/advanced-ddb-backup.html#advanced-ddb-backup-enable-cli">
|
|
2407
2383
|
* Backup's advanced DynamoDB backup features</a>.</p>
|
|
2408
2384
|
*/
|
|
2409
|
-
ResourceTypeManagementPreference?:
|
|
2410
|
-
[key: string]: boolean;
|
|
2411
|
-
};
|
|
2385
|
+
ResourceTypeManagementPreference?: Record<string, boolean>;
|
|
2412
2386
|
}
|
|
2413
2387
|
export declare namespace DescribeRegionSettingsOutput {
|
|
2414
2388
|
/**
|
|
@@ -3057,9 +3031,7 @@ export interface GetRecoveryPointRestoreMetadataOutput {
|
|
|
3057
3031
|
* backed-up resource. These values vary depending on the service that is being
|
|
3058
3032
|
* restored.</p>
|
|
3059
3033
|
*/
|
|
3060
|
-
RestoreMetadata?:
|
|
3061
|
-
[key: string]: string;
|
|
3062
|
-
};
|
|
3034
|
+
RestoreMetadata?: Record<string, string>;
|
|
3063
3035
|
}
|
|
3064
3036
|
export declare namespace GetRecoveryPointRestoreMetadataOutput {
|
|
3065
3037
|
/**
|
|
@@ -4307,9 +4279,7 @@ export interface ListTagsOutput {
|
|
|
4307
4279
|
* <p>To help organize your resources, you can assign your own metadata to the resources you
|
|
4308
4280
|
* create. Each tag is a key-value pair.</p>
|
|
4309
4281
|
*/
|
|
4310
|
-
Tags?:
|
|
4311
|
-
[key: string]: string;
|
|
4312
|
-
};
|
|
4282
|
+
Tags?: Record<string, string>;
|
|
4313
4283
|
}
|
|
4314
4284
|
export declare namespace ListTagsOutput {
|
|
4315
4285
|
/**
|
|
@@ -4510,9 +4480,7 @@ export interface StartBackupJobInput {
|
|
|
4510
4480
|
* <p>To help organize your resources, you can assign your own metadata to the resources that
|
|
4511
4481
|
* you create. Each tag is a key-value pair.</p>
|
|
4512
4482
|
*/
|
|
4513
|
-
RecoveryPointTags?:
|
|
4514
|
-
[key: string]: string;
|
|
4515
|
-
};
|
|
4483
|
+
RecoveryPointTags?: Record<string, string>;
|
|
4516
4484
|
/**
|
|
4517
4485
|
* <p>Specifies the backup option for a selected resource. This option is only available for
|
|
4518
4486
|
* Windows Volume Shadow Copy Service (VSS) backup jobs.</p>
|
|
@@ -4521,9 +4489,7 @@ export interface StartBackupJobInput {
|
|
|
4521
4489
|
* <code>"WindowsVSS""disabled"</code> to create a regular backup. The
|
|
4522
4490
|
* <code>WindowsVSS</code> option is not enabled by default.</p>
|
|
4523
4491
|
*/
|
|
4524
|
-
BackupOptions?:
|
|
4525
|
-
[key: string]: string;
|
|
4526
|
-
};
|
|
4492
|
+
BackupOptions?: Record<string, string>;
|
|
4527
4493
|
}
|
|
4528
4494
|
export declare namespace StartBackupJobInput {
|
|
4529
4495
|
/**
|
|
@@ -4713,9 +4679,7 @@ export interface StartRestoreJobInput {
|
|
|
4713
4679
|
* </li>
|
|
4714
4680
|
* </ul>
|
|
4715
4681
|
*/
|
|
4716
|
-
Metadata:
|
|
4717
|
-
[key: string]: string;
|
|
4718
|
-
} | undefined;
|
|
4682
|
+
Metadata: Record<string, string> | undefined;
|
|
4719
4683
|
/**
|
|
4720
4684
|
* <p>The Amazon Resource Name (ARN) of the IAM role that Backup uses to create
|
|
4721
4685
|
* the target recovery point; for example,
|
|
@@ -4824,9 +4788,7 @@ export interface TagResourceInput {
|
|
|
4824
4788
|
* metadata to the resources you create. For clarity, this is the structure to assign tags:
|
|
4825
4789
|
* <code>[{"Key":"string","Value":"string"}]</code>.</p>
|
|
4826
4790
|
*/
|
|
4827
|
-
Tags:
|
|
4828
|
-
[key: string]: string;
|
|
4829
|
-
} | undefined;
|
|
4791
|
+
Tags: Record<string, string> | undefined;
|
|
4830
4792
|
}
|
|
4831
4793
|
export declare namespace TagResourceInput {
|
|
4832
4794
|
/**
|
|
@@ -4960,9 +4922,7 @@ export interface UpdateGlobalSettingsInput {
|
|
|
4960
4922
|
* <code>update-global-settings --global-settings isCrossAccountBackupEnabled=false
|
|
4961
4923
|
* --region us-west-2</code>.</p>
|
|
4962
4924
|
*/
|
|
4963
|
-
GlobalSettings?:
|
|
4964
|
-
[key: string]: string;
|
|
4965
|
-
};
|
|
4925
|
+
GlobalSettings?: Record<string, string>;
|
|
4966
4926
|
}
|
|
4967
4927
|
export declare namespace UpdateGlobalSettingsInput {
|
|
4968
4928
|
/**
|
|
@@ -5042,18 +5002,14 @@ export interface UpdateRegionSettingsInput {
|
|
|
5042
5002
|
/**
|
|
5043
5003
|
* <p>Updates the list of services along with the opt-in preferences for the Region.</p>
|
|
5044
5004
|
*/
|
|
5045
|
-
ResourceTypeOptInPreference?:
|
|
5046
|
-
[key: string]: boolean;
|
|
5047
|
-
};
|
|
5005
|
+
ResourceTypeOptInPreference?: Record<string, boolean>;
|
|
5048
5006
|
/**
|
|
5049
5007
|
* <p>Enables or disables full Backup management of backups for a resource type.
|
|
5050
5008
|
* To enable full Backup management for DynamoDB along with <a href="https://docs.aws.amazon.com/aws-backup/latest/devguide/advanced-ddb-backup.html">
|
|
5051
5009
|
* Backup's advanced DynamoDB backup features</a>, follow the
|
|
5052
5010
|
* procedure to <a href="https://docs.aws.amazon.com/aws-backup/latest/devguide/advanced-ddb-backup.html#advanced-ddb-backup-enable-cli"> enable advanced DynamoDB backup programmatically</a>.</p>
|
|
5053
5011
|
*/
|
|
5054
|
-
ResourceTypeManagementPreference?:
|
|
5055
|
-
[key: string]: boolean;
|
|
5056
|
-
};
|
|
5012
|
+
ResourceTypeManagementPreference?: Record<string, boolean>;
|
|
5057
5013
|
}
|
|
5058
5014
|
export declare namespace UpdateRegionSettingsInput {
|
|
5059
5015
|
/**
|
|
@@ -5,9 +5,7 @@ export interface AdvancedBackupSetting {
|
|
|
5
5
|
|
|
6
6
|
ResourceType?: string;
|
|
7
7
|
|
|
8
|
-
BackupOptions?:
|
|
9
|
-
[key: string]: string;
|
|
10
|
-
};
|
|
8
|
+
BackupOptions?: Record<string, string>;
|
|
11
9
|
}
|
|
12
10
|
export declare namespace AdvancedBackupSetting {
|
|
13
11
|
|
|
@@ -94,9 +92,7 @@ export interface BackupJob {
|
|
|
94
92
|
|
|
95
93
|
BytesTransferred?: number;
|
|
96
94
|
|
|
97
|
-
BackupOptions?:
|
|
98
|
-
[key: string]: string;
|
|
99
|
-
};
|
|
95
|
+
BackupOptions?: Record<string, string>;
|
|
100
96
|
|
|
101
97
|
BackupType?: string;
|
|
102
98
|
}
|
|
@@ -141,9 +137,7 @@ export interface BackupRule {
|
|
|
141
137
|
|
|
142
138
|
Lifecycle?: Lifecycle;
|
|
143
139
|
|
|
144
|
-
RecoveryPointTags?:
|
|
145
|
-
[key: string]: string;
|
|
146
|
-
};
|
|
140
|
+
RecoveryPointTags?: Record<string, string>;
|
|
147
141
|
|
|
148
142
|
RuleId?: string;
|
|
149
143
|
|
|
@@ -183,9 +177,7 @@ export interface BackupRuleInput {
|
|
|
183
177
|
|
|
184
178
|
Lifecycle?: Lifecycle;
|
|
185
179
|
|
|
186
|
-
RecoveryPointTags?:
|
|
187
|
-
[key: string]: string;
|
|
188
|
-
};
|
|
180
|
+
RecoveryPointTags?: Record<string, string>;
|
|
189
181
|
|
|
190
182
|
CopyActions?: CopyAction[];
|
|
191
183
|
|
|
@@ -412,9 +404,7 @@ export interface ControlScope {
|
|
|
412
404
|
|
|
413
405
|
ComplianceResourceTypes?: string[];
|
|
414
406
|
|
|
415
|
-
Tags?:
|
|
416
|
-
[key: string]: string;
|
|
417
|
-
};
|
|
407
|
+
Tags?: Record<string, string>;
|
|
418
408
|
}
|
|
419
409
|
export declare namespace ControlScope {
|
|
420
410
|
|
|
@@ -467,9 +457,7 @@ export interface CreateBackupPlanInput {
|
|
|
467
457
|
|
|
468
458
|
BackupPlan: BackupPlanInput | undefined;
|
|
469
459
|
|
|
470
|
-
BackupPlanTags?:
|
|
471
|
-
[key: string]: string;
|
|
472
|
-
};
|
|
460
|
+
BackupPlanTags?: Record<string, string>;
|
|
473
461
|
|
|
474
462
|
CreatorRequestId?: string;
|
|
475
463
|
}
|
|
@@ -573,9 +561,7 @@ export interface CreateBackupVaultInput {
|
|
|
573
561
|
|
|
574
562
|
BackupVaultName: string | undefined;
|
|
575
563
|
|
|
576
|
-
BackupVaultTags?:
|
|
577
|
-
[key: string]: string;
|
|
578
|
-
};
|
|
564
|
+
BackupVaultTags?: Record<string, string>;
|
|
579
565
|
|
|
580
566
|
EncryptionKeyArn?: string;
|
|
581
567
|
|
|
@@ -620,9 +606,7 @@ export interface CreateFrameworkInput {
|
|
|
620
606
|
|
|
621
607
|
IdempotencyToken?: string;
|
|
622
608
|
|
|
623
|
-
FrameworkTags?:
|
|
624
|
-
[key: string]: string;
|
|
625
|
-
};
|
|
609
|
+
FrameworkTags?: Record<string, string>;
|
|
626
610
|
}
|
|
627
611
|
export declare namespace CreateFrameworkInput {
|
|
628
612
|
|
|
@@ -674,9 +658,7 @@ export interface CreateReportPlanInput {
|
|
|
674
658
|
|
|
675
659
|
ReportSetting: ReportSetting | undefined;
|
|
676
660
|
|
|
677
|
-
ReportPlanTags?:
|
|
678
|
-
[key: string]: string;
|
|
679
|
-
};
|
|
661
|
+
ReportPlanTags?: Record<string, string>;
|
|
680
662
|
|
|
681
663
|
IdempotencyToken?: string;
|
|
682
664
|
}
|
|
@@ -884,9 +866,7 @@ export interface DescribeBackupJobOutput {
|
|
|
884
866
|
|
|
885
867
|
StartBy?: Date;
|
|
886
868
|
|
|
887
|
-
BackupOptions?:
|
|
888
|
-
[key: string]: string;
|
|
889
|
-
};
|
|
869
|
+
BackupOptions?: Record<string, string>;
|
|
890
870
|
|
|
891
871
|
BackupType?: string;
|
|
892
872
|
}
|
|
@@ -982,9 +962,7 @@ export declare namespace DescribeGlobalSettingsInput {
|
|
|
982
962
|
}
|
|
983
963
|
export interface DescribeGlobalSettingsOutput {
|
|
984
964
|
|
|
985
|
-
GlobalSettings?:
|
|
986
|
-
[key: string]: string;
|
|
987
|
-
};
|
|
965
|
+
GlobalSettings?: Record<string, string>;
|
|
988
966
|
|
|
989
967
|
LastUpdateTime?: Date;
|
|
990
968
|
}
|
|
@@ -1085,13 +1063,9 @@ export declare namespace DescribeRegionSettingsInput {
|
|
|
1085
1063
|
}
|
|
1086
1064
|
export interface DescribeRegionSettingsOutput {
|
|
1087
1065
|
|
|
1088
|
-
ResourceTypeOptInPreference?:
|
|
1089
|
-
[key: string]: boolean;
|
|
1090
|
-
};
|
|
1066
|
+
ResourceTypeOptInPreference?: Record<string, boolean>;
|
|
1091
1067
|
|
|
1092
|
-
ResourceTypeManagementPreference?:
|
|
1093
|
-
[key: string]: boolean;
|
|
1094
|
-
};
|
|
1068
|
+
ResourceTypeManagementPreference?: Record<string, boolean>;
|
|
1095
1069
|
}
|
|
1096
1070
|
export declare namespace DescribeRegionSettingsOutput {
|
|
1097
1071
|
|
|
@@ -1411,9 +1385,7 @@ export interface GetRecoveryPointRestoreMetadataOutput {
|
|
|
1411
1385
|
|
|
1412
1386
|
RecoveryPointArn?: string;
|
|
1413
1387
|
|
|
1414
|
-
RestoreMetadata?:
|
|
1415
|
-
[key: string]: string;
|
|
1416
|
-
};
|
|
1388
|
+
RestoreMetadata?: Record<string, string>;
|
|
1417
1389
|
}
|
|
1418
1390
|
export declare namespace GetRecoveryPointRestoreMetadataOutput {
|
|
1419
1391
|
|
|
@@ -1928,9 +1900,7 @@ export interface ListTagsOutput {
|
|
|
1928
1900
|
|
|
1929
1901
|
NextToken?: string;
|
|
1930
1902
|
|
|
1931
|
-
Tags?:
|
|
1932
|
-
[key: string]: string;
|
|
1933
|
-
};
|
|
1903
|
+
Tags?: Record<string, string>;
|
|
1934
1904
|
}
|
|
1935
1905
|
export declare namespace ListTagsOutput {
|
|
1936
1906
|
|
|
@@ -1988,13 +1958,9 @@ export interface StartBackupJobInput {
|
|
|
1988
1958
|
|
|
1989
1959
|
Lifecycle?: Lifecycle;
|
|
1990
1960
|
|
|
1991
|
-
RecoveryPointTags?:
|
|
1992
|
-
[key: string]: string;
|
|
1993
|
-
};
|
|
1961
|
+
RecoveryPointTags?: Record<string, string>;
|
|
1994
1962
|
|
|
1995
|
-
BackupOptions?:
|
|
1996
|
-
[key: string]: string;
|
|
1997
|
-
};
|
|
1963
|
+
BackupOptions?: Record<string, string>;
|
|
1998
1964
|
}
|
|
1999
1965
|
export declare namespace StartBackupJobInput {
|
|
2000
1966
|
|
|
@@ -2062,9 +2028,7 @@ export interface StartRestoreJobInput {
|
|
|
2062
2028
|
|
|
2063
2029
|
RecoveryPointArn: string | undefined;
|
|
2064
2030
|
|
|
2065
|
-
Metadata:
|
|
2066
|
-
[key: string]: string;
|
|
2067
|
-
} | undefined;
|
|
2031
|
+
Metadata: Record<string, string> | undefined;
|
|
2068
2032
|
|
|
2069
2033
|
IamRoleArn: string | undefined;
|
|
2070
2034
|
|
|
@@ -2096,9 +2060,7 @@ export interface TagResourceInput {
|
|
|
2096
2060
|
|
|
2097
2061
|
ResourceArn: string | undefined;
|
|
2098
2062
|
|
|
2099
|
-
Tags:
|
|
2100
|
-
[key: string]: string;
|
|
2101
|
-
} | undefined;
|
|
2063
|
+
Tags: Record<string, string> | undefined;
|
|
2102
2064
|
}
|
|
2103
2065
|
export declare namespace TagResourceInput {
|
|
2104
2066
|
|
|
@@ -2168,9 +2130,7 @@ export declare namespace UpdateFrameworkOutput {
|
|
|
2168
2130
|
}
|
|
2169
2131
|
export interface UpdateGlobalSettingsInput {
|
|
2170
2132
|
|
|
2171
|
-
GlobalSettings?:
|
|
2172
|
-
[key: string]: string;
|
|
2173
|
-
};
|
|
2133
|
+
GlobalSettings?: Record<string, string>;
|
|
2174
2134
|
}
|
|
2175
2135
|
export declare namespace UpdateGlobalSettingsInput {
|
|
2176
2136
|
|
|
@@ -2204,13 +2164,9 @@ export declare namespace UpdateRecoveryPointLifecycleOutput {
|
|
|
2204
2164
|
}
|
|
2205
2165
|
export interface UpdateRegionSettingsInput {
|
|
2206
2166
|
|
|
2207
|
-
ResourceTypeOptInPreference?:
|
|
2208
|
-
[key: string]: boolean;
|
|
2209
|
-
};
|
|
2167
|
+
ResourceTypeOptInPreference?: Record<string, boolean>;
|
|
2210
2168
|
|
|
2211
|
-
ResourceTypeManagementPreference?:
|
|
2212
|
-
[key: string]: boolean;
|
|
2213
|
-
};
|
|
2169
|
+
ResourceTypeManagementPreference?: Record<string, boolean>;
|
|
2214
2170
|
}
|
|
2215
2171
|
export declare namespace UpdateRegionSettingsInput {
|
|
2216
2172
|
|
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.105.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",
|
|
@@ -18,15 +18,16 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.105.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.80.0",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.105.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.78.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.78.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.78.0",
|
|
27
27
|
"@aws-sdk/middleware-content-length": "3.78.0",
|
|
28
28
|
"@aws-sdk/middleware-host-header": "3.78.0",
|
|
29
29
|
"@aws-sdk/middleware-logger": "3.78.0",
|
|
30
|
+
"@aws-sdk/middleware-recursion-detection": "3.105.0",
|
|
30
31
|
"@aws-sdk/middleware-retry": "3.80.0",
|
|
31
32
|
"@aws-sdk/middleware-serde": "3.78.0",
|
|
32
33
|
"@aws-sdk/middleware-signing": "3.78.0",
|