@aws-sdk/client-backup 3.932.0 → 3.934.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/README.md +40 -0
- package/dist-cjs/index.js +277 -8
- package/dist-es/Backup.js +10 -0
- package/dist-es/commands/CreateTieringConfigurationCommand.js +16 -0
- package/dist-es/commands/DeleteTieringConfigurationCommand.js +16 -0
- package/dist-es/commands/GetTieringConfigurationCommand.js +16 -0
- package/dist-es/commands/ListTieringConfigurationsCommand.js +16 -0
- package/dist-es/commands/UpdateTieringConfigurationCommand.js +16 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/models_0.js +3 -0
- package/dist-es/pagination/ListTieringConfigurationsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +200 -8
- package/dist-types/Backup.d.ts +36 -0
- package/dist-types/BackupClient.d.ts +7 -2
- package/dist-types/commands/CreateBackupPlanCommand.d.ts +3 -0
- package/dist-types/commands/CreateTieringConfigurationCommand.d.ts +115 -0
- package/dist-types/commands/DeleteTieringConfigurationCommand.d.ts +85 -0
- package/dist-types/commands/DescribeBackupJobCommand.d.ts +1 -0
- package/dist-types/commands/DescribeCopyJobCommand.d.ts +2 -0
- package/dist-types/commands/DescribeRecoveryPointCommand.d.ts +1 -0
- package/dist-types/commands/GetBackupPlanCommand.d.ts +3 -0
- package/dist-types/commands/GetBackupPlanFromJSONCommand.d.ts +3 -0
- package/dist-types/commands/GetBackupPlanFromTemplateCommand.d.ts +3 -0
- package/dist-types/commands/GetTieringConfigurationCommand.d.ts +105 -0
- package/dist-types/commands/ListBackupJobsCommand.d.ts +1 -0
- package/dist-types/commands/ListCopyJobsCommand.d.ts +3 -0
- package/dist-types/commands/ListRecoveryPointsByBackupVaultCommand.d.ts +1 -0
- package/dist-types/commands/ListTieringConfigurationsCommand.d.ts +91 -0
- package/dist-types/commands/StartBackupJobCommand.d.ts +2 -0
- package/dist-types/commands/StartCopyJobCommand.d.ts +1 -0
- package/dist-types/commands/UpdateBackupPlanCommand.d.ts +3 -0
- package/dist-types/commands/UpdateRecoveryPointLifecycleCommand.d.ts +2 -0
- package/dist-types/commands/UpdateTieringConfigurationCommand.d.ts +134 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +395 -2
- package/dist-types/pagination/ListTieringConfigurationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +22 -0
- package/dist-types/ts3.4/Backup.d.ts +86 -0
- package/dist-types/ts3.4/BackupClient.d.ts +32 -2
- package/dist-types/ts3.4/commands/CreateTieringConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteTieringConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetTieringConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListTieringConfigurationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateTieringConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +79 -0
- package/dist-types/ts3.4/pagination/ListTieringConfigurationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +22 -0
- package/package.json +6 -6
|
@@ -94,10 +94,16 @@ export interface RecoveryPointCreator {
|
|
|
94
94
|
BackupRuleCron?: string | undefined;
|
|
95
95
|
BackupRuleTimezone?: string | undefined;
|
|
96
96
|
}
|
|
97
|
+
export declare const LifecycleDeleteAfterEvent: {
|
|
98
|
+
readonly DELETE_AFTER_COPY: "DELETE_AFTER_COPY";
|
|
99
|
+
};
|
|
100
|
+
export type LifecycleDeleteAfterEvent =
|
|
101
|
+
(typeof LifecycleDeleteAfterEvent)[keyof typeof LifecycleDeleteAfterEvent];
|
|
97
102
|
export interface Lifecycle {
|
|
98
103
|
MoveToColdStorageAfterDays?: number | undefined;
|
|
99
104
|
DeleteAfterDays?: number | undefined;
|
|
100
105
|
OptInToArchiveForSupportedResources?: boolean | undefined;
|
|
106
|
+
DeleteAfterEvent?: LifecycleDeleteAfterEvent | undefined;
|
|
101
107
|
}
|
|
102
108
|
export declare const BackupJobState: {
|
|
103
109
|
readonly ABORTED: "ABORTED";
|
|
@@ -179,6 +185,7 @@ export interface IndexAction {
|
|
|
179
185
|
export interface BackupRule {
|
|
180
186
|
RuleName: string | undefined;
|
|
181
187
|
TargetBackupVaultName: string | undefined;
|
|
188
|
+
TargetLogicallyAirGappedBackupVaultArn?: string | undefined;
|
|
182
189
|
ScheduleExpression?: string | undefined;
|
|
183
190
|
StartWindowMinutes?: number | undefined;
|
|
184
191
|
CompletionWindowMinutes?: number | undefined;
|
|
@@ -198,6 +205,7 @@ export interface BackupPlan {
|
|
|
198
205
|
export interface BackupRuleInput {
|
|
199
206
|
RuleName: string | undefined;
|
|
200
207
|
TargetBackupVaultName: string | undefined;
|
|
208
|
+
TargetLogicallyAirGappedBackupVaultArn?: string | undefined;
|
|
201
209
|
ScheduleExpression?: string | undefined;
|
|
202
210
|
StartWindowMinutes?: number | undefined;
|
|
203
211
|
CompletionWindowMinutes?: number | undefined;
|
|
@@ -387,6 +395,7 @@ export interface CopyJob {
|
|
|
387
395
|
BackupSizeInBytes?: number | undefined;
|
|
388
396
|
IamRoleArn?: string | undefined;
|
|
389
397
|
CreatedBy?: RecoveryPointCreator | undefined;
|
|
398
|
+
CreatedByBackupJobId?: string | undefined;
|
|
390
399
|
ResourceType?: string | undefined;
|
|
391
400
|
ParentJobId?: string | undefined;
|
|
392
401
|
IsParent?: boolean | undefined;
|
|
@@ -630,6 +639,26 @@ export interface CreateRestoreTestingSelectionOutput {
|
|
|
630
639
|
RestoreTestingPlanName: string | undefined;
|
|
631
640
|
RestoreTestingSelectionName: string | undefined;
|
|
632
641
|
}
|
|
642
|
+
export interface ResourceSelection {
|
|
643
|
+
Resources: string[] | undefined;
|
|
644
|
+
TieringDownSettingsInDays: number | undefined;
|
|
645
|
+
ResourceType: string | undefined;
|
|
646
|
+
}
|
|
647
|
+
export interface TieringConfigurationInputForCreate {
|
|
648
|
+
TieringConfigurationName: string | undefined;
|
|
649
|
+
BackupVaultName: string | undefined;
|
|
650
|
+
ResourceSelection: ResourceSelection[] | undefined;
|
|
651
|
+
}
|
|
652
|
+
export interface CreateTieringConfigurationInput {
|
|
653
|
+
TieringConfiguration: TieringConfigurationInputForCreate | undefined;
|
|
654
|
+
TieringConfigurationTags?: Record<string, string> | undefined;
|
|
655
|
+
CreatorRequestId?: string | undefined;
|
|
656
|
+
}
|
|
657
|
+
export interface CreateTieringConfigurationOutput {
|
|
658
|
+
TieringConfigurationArn?: string | undefined;
|
|
659
|
+
TieringConfigurationName?: string | undefined;
|
|
660
|
+
CreationTime?: Date | undefined;
|
|
661
|
+
}
|
|
633
662
|
export interface DeleteBackupPlanInput {
|
|
634
663
|
BackupPlanId: string | undefined;
|
|
635
664
|
}
|
|
@@ -672,6 +701,10 @@ export interface DeleteRestoreTestingSelectionInput {
|
|
|
672
701
|
RestoreTestingPlanName: string | undefined;
|
|
673
702
|
RestoreTestingSelectionName: string | undefined;
|
|
674
703
|
}
|
|
704
|
+
export interface DeleteTieringConfigurationInput {
|
|
705
|
+
TieringConfigurationName: string | undefined;
|
|
706
|
+
}
|
|
707
|
+
export interface DeleteTieringConfigurationOutput {}
|
|
675
708
|
export declare class DependencyFailureException extends __BaseException {
|
|
676
709
|
readonly name: "DependencyFailureException";
|
|
677
710
|
readonly $fault: "server";
|
|
@@ -1134,6 +1167,21 @@ export interface GetRestoreTestingSelectionOutput {
|
|
|
1134
1167
|
export interface GetSupportedResourceTypesOutput {
|
|
1135
1168
|
ResourceTypes?: string[] | undefined;
|
|
1136
1169
|
}
|
|
1170
|
+
export interface GetTieringConfigurationInput {
|
|
1171
|
+
TieringConfigurationName: string | undefined;
|
|
1172
|
+
}
|
|
1173
|
+
export interface TieringConfiguration {
|
|
1174
|
+
TieringConfigurationName: string | undefined;
|
|
1175
|
+
TieringConfigurationArn?: string | undefined;
|
|
1176
|
+
BackupVaultName: string | undefined;
|
|
1177
|
+
ResourceSelection: ResourceSelection[] | undefined;
|
|
1178
|
+
CreatorRequestId?: string | undefined;
|
|
1179
|
+
CreationTime?: Date | undefined;
|
|
1180
|
+
LastUpdatedTime?: Date | undefined;
|
|
1181
|
+
}
|
|
1182
|
+
export interface GetTieringConfigurationOutput {
|
|
1183
|
+
TieringConfiguration?: TieringConfiguration | undefined;
|
|
1184
|
+
}
|
|
1137
1185
|
export interface ListBackupJobsInput {
|
|
1138
1186
|
NextToken?: string | undefined;
|
|
1139
1187
|
MaxResults?: number | undefined;
|
|
@@ -1226,6 +1274,7 @@ export interface ListCopyJobsInput {
|
|
|
1226
1274
|
ByCompleteAfter?: Date | undefined;
|
|
1227
1275
|
ByParentJobId?: string | undefined;
|
|
1228
1276
|
ByMessageCategory?: string | undefined;
|
|
1277
|
+
BySourceRecoveryPointArn?: string | undefined;
|
|
1229
1278
|
}
|
|
1230
1279
|
export interface ListCopyJobsOutput {
|
|
1231
1280
|
CopyJobs?: CopyJob[] | undefined;
|
|
@@ -1595,6 +1644,21 @@ export interface ListTagsOutput {
|
|
|
1595
1644
|
NextToken?: string | undefined;
|
|
1596
1645
|
Tags?: Record<string, string> | undefined;
|
|
1597
1646
|
}
|
|
1647
|
+
export interface ListTieringConfigurationsInput {
|
|
1648
|
+
MaxResults?: number | undefined;
|
|
1649
|
+
NextToken?: string | undefined;
|
|
1650
|
+
}
|
|
1651
|
+
export interface TieringConfigurationsListMember {
|
|
1652
|
+
TieringConfigurationArn?: string | undefined;
|
|
1653
|
+
TieringConfigurationName?: string | undefined;
|
|
1654
|
+
BackupVaultName?: string | undefined;
|
|
1655
|
+
CreationTime?: Date | undefined;
|
|
1656
|
+
LastUpdatedTime?: Date | undefined;
|
|
1657
|
+
}
|
|
1658
|
+
export interface ListTieringConfigurationsOutput {
|
|
1659
|
+
TieringConfigurations?: TieringConfigurationsListMember[] | undefined;
|
|
1660
|
+
NextToken?: string | undefined;
|
|
1661
|
+
}
|
|
1598
1662
|
export interface PutBackupVaultAccessPolicyInput {
|
|
1599
1663
|
BackupVaultName: string | undefined;
|
|
1600
1664
|
Policy?: string | undefined;
|
|
@@ -1627,6 +1691,7 @@ export declare const Index: {
|
|
|
1627
1691
|
export type Index = (typeof Index)[keyof typeof Index];
|
|
1628
1692
|
export interface StartBackupJobInput {
|
|
1629
1693
|
BackupVaultName: string | undefined;
|
|
1694
|
+
LogicallyAirGappedBackupVaultArn?: string | undefined;
|
|
1630
1695
|
ResourceArn: string | undefined;
|
|
1631
1696
|
IamRoleArn: string | undefined;
|
|
1632
1697
|
IdempotencyToken?: string | undefined;
|
|
@@ -1784,3 +1849,17 @@ export interface UpdateRestoreTestingSelectionOutput {
|
|
|
1784
1849
|
RestoreTestingSelectionName: string | undefined;
|
|
1785
1850
|
UpdateTime: Date | undefined;
|
|
1786
1851
|
}
|
|
1852
|
+
export interface TieringConfigurationInputForUpdate {
|
|
1853
|
+
ResourceSelection: ResourceSelection[] | undefined;
|
|
1854
|
+
BackupVaultName: string | undefined;
|
|
1855
|
+
}
|
|
1856
|
+
export interface UpdateTieringConfigurationInput {
|
|
1857
|
+
TieringConfigurationName: string | undefined;
|
|
1858
|
+
TieringConfiguration: TieringConfigurationInputForUpdate | undefined;
|
|
1859
|
+
}
|
|
1860
|
+
export interface UpdateTieringConfigurationOutput {
|
|
1861
|
+
TieringConfigurationArn?: string | undefined;
|
|
1862
|
+
TieringConfigurationName?: string | undefined;
|
|
1863
|
+
CreationTime?: Date | undefined;
|
|
1864
|
+
LastUpdatedTime?: Date | undefined;
|
|
1865
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListTieringConfigurationsCommandInput,
|
|
4
|
+
ListTieringConfigurationsCommandOutput,
|
|
5
|
+
} from "../commands/ListTieringConfigurationsCommand";
|
|
6
|
+
import { BackupPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListTieringConfigurations: (
|
|
8
|
+
config: BackupPaginationConfiguration,
|
|
9
|
+
input: ListTieringConfigurationsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListTieringConfigurationsCommandOutput>;
|
|
@@ -53,6 +53,8 @@ export declare var CreateRestoreTestingPlanInput: StaticStructureSchema;
|
|
|
53
53
|
export declare var CreateRestoreTestingPlanOutput: StaticStructureSchema;
|
|
54
54
|
export declare var CreateRestoreTestingSelectionInput: StaticStructureSchema;
|
|
55
55
|
export declare var CreateRestoreTestingSelectionOutput: StaticStructureSchema;
|
|
56
|
+
export declare var CreateTieringConfigurationInput: StaticStructureSchema;
|
|
57
|
+
export declare var CreateTieringConfigurationOutput: StaticStructureSchema;
|
|
56
58
|
export declare var DateRange: StaticStructureSchema;
|
|
57
59
|
export declare var DeleteBackupPlanInput: StaticStructureSchema;
|
|
58
60
|
export declare var DeleteBackupPlanOutput: StaticStructureSchema;
|
|
@@ -66,6 +68,8 @@ export declare var DeleteRecoveryPointInput: StaticStructureSchema;
|
|
|
66
68
|
export declare var DeleteReportPlanInput: StaticStructureSchema;
|
|
67
69
|
export declare var DeleteRestoreTestingPlanInput: StaticStructureSchema;
|
|
68
70
|
export declare var DeleteRestoreTestingSelectionInput: StaticStructureSchema;
|
|
71
|
+
export declare var DeleteTieringConfigurationInput: StaticStructureSchema;
|
|
72
|
+
export declare var DeleteTieringConfigurationOutput: StaticStructureSchema;
|
|
69
73
|
export declare var DependencyFailureException: StaticErrorSchema;
|
|
70
74
|
export declare var DescribeBackupJobInput: StaticStructureSchema;
|
|
71
75
|
export declare var DescribeBackupJobOutput: StaticStructureSchema;
|
|
@@ -123,6 +127,8 @@ export declare var GetRestoreTestingPlanOutput: StaticStructureSchema;
|
|
|
123
127
|
export declare var GetRestoreTestingSelectionInput: StaticStructureSchema;
|
|
124
128
|
export declare var GetRestoreTestingSelectionOutput: StaticStructureSchema;
|
|
125
129
|
export declare var GetSupportedResourceTypesOutput: StaticStructureSchema;
|
|
130
|
+
export declare var GetTieringConfigurationInput: StaticStructureSchema;
|
|
131
|
+
export declare var GetTieringConfigurationOutput: StaticStructureSchema;
|
|
126
132
|
export declare var IndexAction: StaticStructureSchema;
|
|
127
133
|
export declare var IndexedRecoveryPoint: StaticStructureSchema;
|
|
128
134
|
export declare var InvalidParameterValueException: StaticErrorSchema;
|
|
@@ -186,6 +192,8 @@ export declare var ListRestoreTestingSelectionsInput: StaticStructureSchema;
|
|
|
186
192
|
export declare var ListRestoreTestingSelectionsOutput: StaticStructureSchema;
|
|
187
193
|
export declare var ListTagsInput: StaticStructureSchema;
|
|
188
194
|
export declare var ListTagsOutput: StaticStructureSchema;
|
|
195
|
+
export declare var ListTieringConfigurationsInput: StaticStructureSchema;
|
|
196
|
+
export declare var ListTieringConfigurationsOutput: StaticStructureSchema;
|
|
189
197
|
export declare var MissingParameterValueException: StaticErrorSchema;
|
|
190
198
|
export declare var ProtectedResource: StaticStructureSchema;
|
|
191
199
|
export declare var ProtectedResourceConditions: StaticStructureSchema;
|
|
@@ -204,6 +212,7 @@ export declare var ReportJob: StaticStructureSchema;
|
|
|
204
212
|
export declare var ReportPlan: StaticStructureSchema;
|
|
205
213
|
export declare var ReportSetting: StaticStructureSchema;
|
|
206
214
|
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
215
|
+
export declare var ResourceSelection: StaticStructureSchema;
|
|
207
216
|
export declare var RestoreAccessBackupVaultListMember: StaticStructureSchema;
|
|
208
217
|
export declare var RestoreJobCreator: StaticStructureSchema;
|
|
209
218
|
export declare var RestoreJobsListMember: StaticStructureSchema;
|
|
@@ -230,6 +239,10 @@ export declare var StartRestoreJobInput: StaticStructureSchema;
|
|
|
230
239
|
export declare var StartRestoreJobOutput: StaticStructureSchema;
|
|
231
240
|
export declare var StopBackupJobInput: StaticStructureSchema;
|
|
232
241
|
export declare var TagResourceInput: StaticStructureSchema;
|
|
242
|
+
export declare var TieringConfiguration: StaticStructureSchema;
|
|
243
|
+
export declare var TieringConfigurationInputForCreate: StaticStructureSchema;
|
|
244
|
+
export declare var TieringConfigurationInputForUpdate: StaticStructureSchema;
|
|
245
|
+
export declare var TieringConfigurationsListMember: StaticStructureSchema;
|
|
233
246
|
export declare var UntagResourceInput: StaticStructureSchema;
|
|
234
247
|
export declare var UpdateBackupPlanInput: StaticStructureSchema;
|
|
235
248
|
export declare var UpdateBackupPlanOutput: StaticStructureSchema;
|
|
@@ -247,6 +260,8 @@ export declare var UpdateRestoreTestingPlanInput: StaticStructureSchema;
|
|
|
247
260
|
export declare var UpdateRestoreTestingPlanOutput: StaticStructureSchema;
|
|
248
261
|
export declare var UpdateRestoreTestingSelectionInput: StaticStructureSchema;
|
|
249
262
|
export declare var UpdateRestoreTestingSelectionOutput: StaticStructureSchema;
|
|
263
|
+
export declare var UpdateTieringConfigurationInput: StaticStructureSchema;
|
|
264
|
+
export declare var UpdateTieringConfigurationOutput: StaticStructureSchema;
|
|
250
265
|
export declare var __Unit: "unit";
|
|
251
266
|
export declare var BackupServiceException: StaticErrorSchema;
|
|
252
267
|
export declare var AdvancedBackupSettings: StaticListSchema;
|
|
@@ -282,6 +297,7 @@ export declare var ReportJobList: StaticListSchema;
|
|
|
282
297
|
export declare var ReportPlanList: StaticListSchema;
|
|
283
298
|
export declare var ResourceArns: number;
|
|
284
299
|
export declare var ResourceIdentifiers: number;
|
|
300
|
+
export declare var ResourceSelections: StaticListSchema;
|
|
285
301
|
export declare var ResourceTypeList: number;
|
|
286
302
|
export declare var ResourceTypes: number;
|
|
287
303
|
export declare var RestoreAccessBackupVaultList: StaticListSchema;
|
|
@@ -293,6 +309,7 @@ export declare var RestoreTestingSelections: StaticListSchema;
|
|
|
293
309
|
export declare var ScheduledRunsPreview: StaticListSchema;
|
|
294
310
|
export declare var stringList: number;
|
|
295
311
|
export declare var TagKeyList: StaticListSchema;
|
|
312
|
+
export declare var TieringConfigurationsList: StaticListSchema;
|
|
296
313
|
export declare var VaultNames: number;
|
|
297
314
|
export declare var BackupJobChildJobsInState: number;
|
|
298
315
|
export declare var BackupOptions: number;
|
|
@@ -316,6 +333,7 @@ export declare var CreateReportPlan: StaticOperationSchema;
|
|
|
316
333
|
export declare var CreateRestoreAccessBackupVault: StaticOperationSchema;
|
|
317
334
|
export declare var CreateRestoreTestingPlan: StaticOperationSchema;
|
|
318
335
|
export declare var CreateRestoreTestingSelection: StaticOperationSchema;
|
|
336
|
+
export declare var CreateTieringConfiguration: StaticOperationSchema;
|
|
319
337
|
export declare var DeleteBackupPlan: StaticOperationSchema;
|
|
320
338
|
export declare var DeleteBackupSelection: StaticOperationSchema;
|
|
321
339
|
export declare var DeleteBackupVault: StaticOperationSchema;
|
|
@@ -327,6 +345,7 @@ export declare var DeleteRecoveryPoint: StaticOperationSchema;
|
|
|
327
345
|
export declare var DeleteReportPlan: StaticOperationSchema;
|
|
328
346
|
export declare var DeleteRestoreTestingPlan: StaticOperationSchema;
|
|
329
347
|
export declare var DeleteRestoreTestingSelection: StaticOperationSchema;
|
|
348
|
+
export declare var DeleteTieringConfiguration: StaticOperationSchema;
|
|
330
349
|
export declare var DescribeBackupJob: StaticOperationSchema;
|
|
331
350
|
export declare var DescribeBackupVault: StaticOperationSchema;
|
|
332
351
|
export declare var DescribeCopyJob: StaticOperationSchema;
|
|
@@ -356,6 +375,7 @@ export declare var GetRestoreTestingInferredMetadata: StaticOperationSchema;
|
|
|
356
375
|
export declare var GetRestoreTestingPlan: StaticOperationSchema;
|
|
357
376
|
export declare var GetRestoreTestingSelection: StaticOperationSchema;
|
|
358
377
|
export declare var GetSupportedResourceTypes: StaticOperationSchema;
|
|
378
|
+
export declare var GetTieringConfiguration: StaticOperationSchema;
|
|
359
379
|
export declare var ListBackupJobs: StaticOperationSchema;
|
|
360
380
|
export declare var ListBackupJobSummaries: StaticOperationSchema;
|
|
361
381
|
export declare var ListBackupPlans: StaticOperationSchema;
|
|
@@ -382,6 +402,7 @@ export declare var ListRestoreJobSummaries: StaticOperationSchema;
|
|
|
382
402
|
export declare var ListRestoreTestingPlans: StaticOperationSchema;
|
|
383
403
|
export declare var ListRestoreTestingSelections: StaticOperationSchema;
|
|
384
404
|
export declare var ListTags: StaticOperationSchema;
|
|
405
|
+
export declare var ListTieringConfigurations: StaticOperationSchema;
|
|
385
406
|
export declare var PutBackupVaultAccessPolicy: StaticOperationSchema;
|
|
386
407
|
export declare var PutBackupVaultLockConfiguration: StaticOperationSchema;
|
|
387
408
|
export declare var PutBackupVaultNotifications: StaticOperationSchema;
|
|
@@ -403,3 +424,4 @@ export declare var UpdateRegionSettings: StaticOperationSchema;
|
|
|
403
424
|
export declare var UpdateReportPlan: StaticOperationSchema;
|
|
404
425
|
export declare var UpdateRestoreTestingPlan: StaticOperationSchema;
|
|
405
426
|
export declare var UpdateRestoreTestingSelection: StaticOperationSchema;
|
|
427
|
+
export declare var UpdateTieringConfiguration: StaticOperationSchema;
|
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.934.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/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.934.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.934.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.930.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.930.0",
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.933.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.934.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.930.0",
|
|
30
30
|
"@aws-sdk/types": "3.930.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.930.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.930.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.934.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
35
|
"@smithy/core": "^3.18.2",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|