@aws-sdk/client-backup 3.933.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.
Files changed (37) hide show
  1. package/README.md +40 -0
  2. package/dist-cjs/index.js +251 -0
  3. package/dist-es/Backup.js +10 -0
  4. package/dist-es/commands/CreateTieringConfigurationCommand.js +16 -0
  5. package/dist-es/commands/DeleteTieringConfigurationCommand.js +16 -0
  6. package/dist-es/commands/GetTieringConfigurationCommand.js +16 -0
  7. package/dist-es/commands/ListTieringConfigurationsCommand.js +16 -0
  8. package/dist-es/commands/UpdateTieringConfigurationCommand.js +16 -0
  9. package/dist-es/commands/index.js +5 -0
  10. package/dist-es/pagination/ListTieringConfigurationsPaginator.js +4 -0
  11. package/dist-es/pagination/index.js +1 -0
  12. package/dist-es/schemas/schemas_0.js +178 -0
  13. package/dist-types/Backup.d.ts +36 -0
  14. package/dist-types/BackupClient.d.ts +7 -2
  15. package/dist-types/commands/CreateTieringConfigurationCommand.d.ts +115 -0
  16. package/dist-types/commands/DeleteTieringConfigurationCommand.d.ts +85 -0
  17. package/dist-types/commands/GetTieringConfigurationCommand.d.ts +105 -0
  18. package/dist-types/commands/ListTieringConfigurationsCommand.d.ts +91 -0
  19. package/dist-types/commands/UpdateTieringConfigurationCommand.d.ts +134 -0
  20. package/dist-types/commands/index.d.ts +5 -0
  21. package/dist-types/models/models_0.d.ts +333 -0
  22. package/dist-types/pagination/ListTieringConfigurationsPaginator.d.ts +7 -0
  23. package/dist-types/pagination/index.d.ts +1 -0
  24. package/dist-types/schemas/schemas_0.d.ts +22 -0
  25. package/dist-types/ts3.4/Backup.d.ts +86 -0
  26. package/dist-types/ts3.4/BackupClient.d.ts +32 -2
  27. package/dist-types/ts3.4/commands/CreateTieringConfigurationCommand.d.ts +51 -0
  28. package/dist-types/ts3.4/commands/DeleteTieringConfigurationCommand.d.ts +51 -0
  29. package/dist-types/ts3.4/commands/GetTieringConfigurationCommand.d.ts +51 -0
  30. package/dist-types/ts3.4/commands/ListTieringConfigurationsCommand.d.ts +51 -0
  31. package/dist-types/ts3.4/commands/UpdateTieringConfigurationCommand.d.ts +51 -0
  32. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  33. package/dist-types/ts3.4/models/models_0.d.ts +68 -0
  34. package/dist-types/ts3.4/pagination/ListTieringConfigurationsPaginator.d.ts +11 -0
  35. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  36. package/dist-types/ts3.4/schemas/schemas_0.d.ts +22 -0
  37. package/package.json +5 -5
@@ -3065,6 +3065,111 @@ export interface CreateRestoreTestingSelectionOutput {
3065
3065
  */
3066
3066
  RestoreTestingSelectionName: string | undefined;
3067
3067
  }
3068
+ /**
3069
+ * <p>This contains metadata about resource selection for tiering configurations.</p>
3070
+ * <p>You can specify up to 5 different resource selections per tiering configuration.
3071
+ * Data moved to lower-cost tier remains there until deletion (one-way transition).</p>
3072
+ * @public
3073
+ */
3074
+ export interface ResourceSelection {
3075
+ /**
3076
+ * <p>An array of strings that either contains ARNs of the associated resources
3077
+ * or contains a wildcard <code>*</code> to specify all resources.
3078
+ * You can specify up to 100 specific resources per tiering configuration.</p>
3079
+ * @public
3080
+ */
3081
+ Resources: string[] | undefined;
3082
+ /**
3083
+ * <p>The number of days after creation within a backup vault that an object can transition to the low cost warm storage tier.
3084
+ * Must be a positive integer between 60 and 36500 days.</p>
3085
+ * @public
3086
+ */
3087
+ TieringDownSettingsInDays: number | undefined;
3088
+ /**
3089
+ * <p>The type of Amazon Web Services resource; for example, <code>S3</code> for Amazon S3.
3090
+ * For tiering configurations, this is currently limited to <code>S3</code>.</p>
3091
+ * @public
3092
+ */
3093
+ ResourceType: string | undefined;
3094
+ }
3095
+ /**
3096
+ * <p>This contains metadata about a tiering configuration for create operations.</p>
3097
+ * @public
3098
+ */
3099
+ export interface TieringConfigurationInputForCreate {
3100
+ /**
3101
+ * <p>The unique name of the tiering configuration. This cannot be changed
3102
+ * after creation, and it must consist of only alphanumeric characters and underscores.</p>
3103
+ * @public
3104
+ */
3105
+ TieringConfigurationName: string | undefined;
3106
+ /**
3107
+ * <p>The name of the backup vault where the tiering configuration applies.
3108
+ * Use <code>*</code> to apply to all backup vaults.</p>
3109
+ * @public
3110
+ */
3111
+ BackupVaultName: string | undefined;
3112
+ /**
3113
+ * <p>An array of resource selection objects that specify which resources
3114
+ * are included in the tiering configuration and their tiering settings.</p>
3115
+ * @public
3116
+ */
3117
+ ResourceSelection: ResourceSelection[] | undefined;
3118
+ }
3119
+ /**
3120
+ * @public
3121
+ */
3122
+ export interface CreateTieringConfigurationInput {
3123
+ /**
3124
+ * <p>A tiering configuration must contain a unique <code>TieringConfigurationName</code> string
3125
+ * you create and must contain a <code>BackupVaultName</code> and <code>ResourceSelection</code>.
3126
+ * You may optionally include a <code>CreatorRequestId</code> string.</p>
3127
+ * <p>The <code>TieringConfigurationName</code> is a unique string that is the name of the
3128
+ * tiering configuration. This cannot be changed after creation, and it must consist of only
3129
+ * alphanumeric characters and underscores.</p>
3130
+ * @public
3131
+ */
3132
+ TieringConfiguration: TieringConfigurationInputForCreate | undefined;
3133
+ /**
3134
+ * <p>The tags to assign to the tiering configuration.</p>
3135
+ * @public
3136
+ */
3137
+ TieringConfigurationTags?: Record<string, string> | undefined;
3138
+ /**
3139
+ * <p>This is a unique string that identifies the request and
3140
+ * allows failed requests to be retried without the risk of running
3141
+ * the operation twice. This parameter is optional. If used, this
3142
+ * parameter must contain 1 to 50 alphanumeric or '-_.' characters.</p>
3143
+ * @public
3144
+ */
3145
+ CreatorRequestId?: string | undefined;
3146
+ }
3147
+ /**
3148
+ * @public
3149
+ */
3150
+ export interface CreateTieringConfigurationOutput {
3151
+ /**
3152
+ * <p>An Amazon Resource Name (ARN) that uniquely identifies the created
3153
+ * tiering configuration.</p>
3154
+ * @public
3155
+ */
3156
+ TieringConfigurationArn?: string | undefined;
3157
+ /**
3158
+ * <p>This unique string is the name of the tiering configuration.</p>
3159
+ * <p>The name cannot be changed after creation. The name consists of only
3160
+ * alphanumeric characters and underscores. Maximum length is 200.</p>
3161
+ * @public
3162
+ */
3163
+ TieringConfigurationName?: string | undefined;
3164
+ /**
3165
+ * <p>The date and time a tiering configuration was created, in Unix format
3166
+ * and Coordinated Universal Time (UTC). The value of <code>CreationTime</code>
3167
+ * is accurate to milliseconds. For example, the value 1516925490.087 represents
3168
+ * Friday, January 26, 2018 12:11:30.087AM.</p>
3169
+ * @public
3170
+ */
3171
+ CreationTime?: Date | undefined;
3172
+ }
3068
3173
  /**
3069
3174
  * @public
3070
3175
  */
@@ -3234,6 +3339,21 @@ export interface DeleteRestoreTestingSelectionInput {
3234
3339
  */
3235
3340
  RestoreTestingSelectionName: string | undefined;
3236
3341
  }
3342
+ /**
3343
+ * @public
3344
+ */
3345
+ export interface DeleteTieringConfigurationInput {
3346
+ /**
3347
+ * <p>The unique name of a tiering configuration.</p>
3348
+ * @public
3349
+ */
3350
+ TieringConfigurationName: string | undefined;
3351
+ }
3352
+ /**
3353
+ * @public
3354
+ */
3355
+ export interface DeleteTieringConfigurationOutput {
3356
+ }
3237
3357
  /**
3238
3358
  * <p>A dependent Amazon Web Services service or resource returned an error to the Backup service, and the action cannot be completed.</p>
3239
3359
  * @public
@@ -5576,6 +5696,79 @@ export interface GetSupportedResourceTypesOutput {
5576
5696
  */
5577
5697
  ResourceTypes?: string[] | undefined;
5578
5698
  }
5699
+ /**
5700
+ * @public
5701
+ */
5702
+ export interface GetTieringConfigurationInput {
5703
+ /**
5704
+ * <p>The unique name of a tiering configuration.</p>
5705
+ * @public
5706
+ */
5707
+ TieringConfigurationName: string | undefined;
5708
+ }
5709
+ /**
5710
+ * <p>This contains metadata about a tiering configuration.</p>
5711
+ * @public
5712
+ */
5713
+ export interface TieringConfiguration {
5714
+ /**
5715
+ * <p>The unique name of the tiering configuration. This cannot be changed
5716
+ * after creation, and it must consist of only alphanumeric characters and underscores.</p>
5717
+ * @public
5718
+ */
5719
+ TieringConfigurationName: string | undefined;
5720
+ /**
5721
+ * <p>An Amazon Resource Name (ARN) that uniquely identifies the
5722
+ * tiering configuration.</p>
5723
+ * @public
5724
+ */
5725
+ TieringConfigurationArn?: string | undefined;
5726
+ /**
5727
+ * <p>The name of the backup vault where the tiering configuration applies.
5728
+ * Use <code>*</code> to apply to all backup vaults.</p>
5729
+ * @public
5730
+ */
5731
+ BackupVaultName: string | undefined;
5732
+ /**
5733
+ * <p>An array of resource selection objects that specify which resources
5734
+ * are included in the tiering configuration and their tiering settings.</p>
5735
+ * @public
5736
+ */
5737
+ ResourceSelection: ResourceSelection[] | undefined;
5738
+ /**
5739
+ * <p>This is a unique string that identifies the request and
5740
+ * allows failed requests to be retried without the risk of running
5741
+ * the operation twice.</p>
5742
+ * @public
5743
+ */
5744
+ CreatorRequestId?: string | undefined;
5745
+ /**
5746
+ * <p>The date and time a tiering configuration was created, in Unix format
5747
+ * and Coordinated Universal Time (UTC). The value of <code>CreationTime</code>
5748
+ * is accurate to milliseconds. For example, the value 1516925490.087 represents
5749
+ * Friday, January 26, 2018 12:11:30.087AM.</p>
5750
+ * @public
5751
+ */
5752
+ CreationTime?: Date | undefined;
5753
+ /**
5754
+ * <p>The date and time a tiering configuration was updated, in Unix format
5755
+ * and Coordinated Universal Time (UTC). The value of <code>LastUpdatedTime</code>
5756
+ * is accurate to milliseconds. For example, the value 1516925490.087 represents
5757
+ * Friday, January 26, 2018 12:11:30.087AM.</p>
5758
+ * @public
5759
+ */
5760
+ LastUpdatedTime?: Date | undefined;
5761
+ }
5762
+ /**
5763
+ * @public
5764
+ */
5765
+ export interface GetTieringConfigurationOutput {
5766
+ /**
5767
+ * <p>Specifies the body of a tiering configuration. Includes <code>TieringConfigurationName</code>.</p>
5768
+ * @public
5769
+ */
5770
+ TieringConfiguration?: TieringConfiguration | undefined;
5771
+ }
5579
5772
  /**
5580
5773
  * @public
5581
5774
  */
@@ -8435,6 +8628,81 @@ export interface ListTagsOutput {
8435
8628
  */
8436
8629
  Tags?: Record<string, string> | undefined;
8437
8630
  }
8631
+ /**
8632
+ * @public
8633
+ */
8634
+ export interface ListTieringConfigurationsInput {
8635
+ /**
8636
+ * <p>The maximum number of items to be returned.</p>
8637
+ * @public
8638
+ */
8639
+ MaxResults?: number | undefined;
8640
+ /**
8641
+ * <p>The next item following a partial list of returned items. For example, if a request
8642
+ * is made to return <code>MaxResults</code> number of items, <code>NextToken</code>
8643
+ * allows you to return more items in your list starting at the location pointed to by the
8644
+ * next token.</p>
8645
+ * @public
8646
+ */
8647
+ NextToken?: string | undefined;
8648
+ }
8649
+ /**
8650
+ * <p>This contains metadata about a tiering configuration returned in a list.</p>
8651
+ * @public
8652
+ */
8653
+ export interface TieringConfigurationsListMember {
8654
+ /**
8655
+ * <p>An Amazon Resource Name (ARN) that uniquely identifies the
8656
+ * tiering configuration.</p>
8657
+ * @public
8658
+ */
8659
+ TieringConfigurationArn?: string | undefined;
8660
+ /**
8661
+ * <p>The unique name of the tiering configuration.</p>
8662
+ * @public
8663
+ */
8664
+ TieringConfigurationName?: string | undefined;
8665
+ /**
8666
+ * <p>The name of the backup vault where the tiering configuration applies.
8667
+ * Use <code>*</code> to apply to all backup vaults.</p>
8668
+ * @public
8669
+ */
8670
+ BackupVaultName?: string | undefined;
8671
+ /**
8672
+ * <p>The date and time a tiering configuration was created, in Unix format
8673
+ * and Coordinated Universal Time (UTC). The value of <code>CreationTime</code>
8674
+ * is accurate to milliseconds. For example, the value 1516925490.087 represents
8675
+ * Friday, January 26, 2018 12:11:30.087AM.</p>
8676
+ * @public
8677
+ */
8678
+ CreationTime?: Date | undefined;
8679
+ /**
8680
+ * <p>The date and time a tiering configuration was updated, in Unix format
8681
+ * and Coordinated Universal Time (UTC). The value of <code>LastUpdatedTime</code>
8682
+ * is accurate to milliseconds. For example, the value 1516925490.087 represents
8683
+ * Friday, January 26, 2018 12:11:30.087AM.</p>
8684
+ * @public
8685
+ */
8686
+ LastUpdatedTime?: Date | undefined;
8687
+ }
8688
+ /**
8689
+ * @public
8690
+ */
8691
+ export interface ListTieringConfigurationsOutput {
8692
+ /**
8693
+ * <p>An array of tiering configurations returned by the <code>ListTieringConfigurations</code> call.</p>
8694
+ * @public
8695
+ */
8696
+ TieringConfigurations?: TieringConfigurationsListMember[] | undefined;
8697
+ /**
8698
+ * <p>The next item following a partial list of returned items. For example, if a request
8699
+ * is made to return <code>MaxResults</code> number of items, <code>NextToken</code>
8700
+ * allows you to return more items in your list starting at the location pointed to by the
8701
+ * next token.</p>
8702
+ * @public
8703
+ */
8704
+ NextToken?: string | undefined;
8705
+ }
8438
8706
  /**
8439
8707
  * @public
8440
8708
  */
@@ -9634,3 +9902,68 @@ export interface UpdateRestoreTestingSelectionOutput {
9634
9902
  */
9635
9903
  UpdateTime: Date | undefined;
9636
9904
  }
9905
+ /**
9906
+ * <p>This contains metadata about a tiering configuration for update operations.</p>
9907
+ * @public
9908
+ */
9909
+ export interface TieringConfigurationInputForUpdate {
9910
+ /**
9911
+ * <p>An array of resource selection objects that specify which resources
9912
+ * are included in the tiering configuration and their tiering settings.</p>
9913
+ * @public
9914
+ */
9915
+ ResourceSelection: ResourceSelection[] | undefined;
9916
+ /**
9917
+ * <p>The name of the backup vault where the tiering configuration applies.
9918
+ * Use <code>*</code> to apply to all backup vaults.</p>
9919
+ * @public
9920
+ */
9921
+ BackupVaultName: string | undefined;
9922
+ }
9923
+ /**
9924
+ * @public
9925
+ */
9926
+ export interface UpdateTieringConfigurationInput {
9927
+ /**
9928
+ * <p>The name of a tiering configuration to update.</p>
9929
+ * @public
9930
+ */
9931
+ TieringConfigurationName: string | undefined;
9932
+ /**
9933
+ * <p>Specifies the body of a tiering configuration.</p>
9934
+ * @public
9935
+ */
9936
+ TieringConfiguration: TieringConfigurationInputForUpdate | undefined;
9937
+ }
9938
+ /**
9939
+ * @public
9940
+ */
9941
+ export interface UpdateTieringConfigurationOutput {
9942
+ /**
9943
+ * <p>An Amazon Resource Name (ARN) that uniquely identifies the updated
9944
+ * tiering configuration.</p>
9945
+ * @public
9946
+ */
9947
+ TieringConfigurationArn?: string | undefined;
9948
+ /**
9949
+ * <p>This unique string is the name of the tiering configuration.</p>
9950
+ * @public
9951
+ */
9952
+ TieringConfigurationName?: string | undefined;
9953
+ /**
9954
+ * <p>The date and time a tiering configuration was created, in Unix format
9955
+ * and Coordinated Universal Time (UTC). The value of <code>CreationTime</code>
9956
+ * is accurate to milliseconds. For example, the value 1516925490.087 represents
9957
+ * Friday, January 26, 2018 12:11:30.087AM.</p>
9958
+ * @public
9959
+ */
9960
+ CreationTime?: Date | undefined;
9961
+ /**
9962
+ * <p>The date and time a tiering configuration was updated, in Unix format
9963
+ * and Coordinated Universal Time (UTC). The value of <code>LastUpdatedTime</code>
9964
+ * is accurate to milliseconds. For example, the value 1516925490.087 represents
9965
+ * Friday, January 26, 2018 12:11:30.087AM.</p>
9966
+ * @public
9967
+ */
9968
+ LastUpdatedTime?: Date | undefined;
9969
+ }
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListTieringConfigurationsCommandInput, ListTieringConfigurationsCommandOutput } from "../commands/ListTieringConfigurationsCommand";
3
+ import { BackupPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListTieringConfigurations: (config: BackupPaginationConfiguration, input: ListTieringConfigurationsCommandInput, ...rest: any[]) => Paginator<ListTieringConfigurationsCommandOutput>;
@@ -25,3 +25,4 @@ export * from "./ListRestoreJobsPaginator";
25
25
  export * from "./ListRestoreTestingPlansPaginator";
26
26
  export * from "./ListRestoreTestingSelectionsPaginator";
27
27
  export * from "./ListTagsPaginator";
28
+ export * from "./ListTieringConfigurationsPaginator";
@@ -46,6 +46,8 @@ export declare var CreateRestoreTestingPlanInput: StaticStructureSchema;
46
46
  export declare var CreateRestoreTestingPlanOutput: StaticStructureSchema;
47
47
  export declare var CreateRestoreTestingSelectionInput: StaticStructureSchema;
48
48
  export declare var CreateRestoreTestingSelectionOutput: StaticStructureSchema;
49
+ export declare var CreateTieringConfigurationInput: StaticStructureSchema;
50
+ export declare var CreateTieringConfigurationOutput: StaticStructureSchema;
49
51
  export declare var DateRange: StaticStructureSchema;
50
52
  export declare var DeleteBackupPlanInput: StaticStructureSchema;
51
53
  export declare var DeleteBackupPlanOutput: StaticStructureSchema;
@@ -59,6 +61,8 @@ export declare var DeleteRecoveryPointInput: StaticStructureSchema;
59
61
  export declare var DeleteReportPlanInput: StaticStructureSchema;
60
62
  export declare var DeleteRestoreTestingPlanInput: StaticStructureSchema;
61
63
  export declare var DeleteRestoreTestingSelectionInput: StaticStructureSchema;
64
+ export declare var DeleteTieringConfigurationInput: StaticStructureSchema;
65
+ export declare var DeleteTieringConfigurationOutput: StaticStructureSchema;
62
66
  export declare var DependencyFailureException: StaticErrorSchema;
63
67
  export declare var DescribeBackupJobInput: StaticStructureSchema;
64
68
  export declare var DescribeBackupJobOutput: StaticStructureSchema;
@@ -116,6 +120,8 @@ export declare var GetRestoreTestingPlanOutput: StaticStructureSchema;
116
120
  export declare var GetRestoreTestingSelectionInput: StaticStructureSchema;
117
121
  export declare var GetRestoreTestingSelectionOutput: StaticStructureSchema;
118
122
  export declare var GetSupportedResourceTypesOutput: StaticStructureSchema;
123
+ export declare var GetTieringConfigurationInput: StaticStructureSchema;
124
+ export declare var GetTieringConfigurationOutput: StaticStructureSchema;
119
125
  export declare var IndexAction: StaticStructureSchema;
120
126
  export declare var IndexedRecoveryPoint: StaticStructureSchema;
121
127
  export declare var InvalidParameterValueException: StaticErrorSchema;
@@ -179,6 +185,8 @@ export declare var ListRestoreTestingSelectionsInput: StaticStructureSchema;
179
185
  export declare var ListRestoreTestingSelectionsOutput: StaticStructureSchema;
180
186
  export declare var ListTagsInput: StaticStructureSchema;
181
187
  export declare var ListTagsOutput: StaticStructureSchema;
188
+ export declare var ListTieringConfigurationsInput: StaticStructureSchema;
189
+ export declare var ListTieringConfigurationsOutput: StaticStructureSchema;
182
190
  export declare var MissingParameterValueException: StaticErrorSchema;
183
191
  export declare var ProtectedResource: StaticStructureSchema;
184
192
  export declare var ProtectedResourceConditions: StaticStructureSchema;
@@ -197,6 +205,7 @@ export declare var ReportJob: StaticStructureSchema;
197
205
  export declare var ReportPlan: StaticStructureSchema;
198
206
  export declare var ReportSetting: StaticStructureSchema;
199
207
  export declare var ResourceNotFoundException: StaticErrorSchema;
208
+ export declare var ResourceSelection: StaticStructureSchema;
200
209
  export declare var RestoreAccessBackupVaultListMember: StaticStructureSchema;
201
210
  export declare var RestoreJobCreator: StaticStructureSchema;
202
211
  export declare var RestoreJobsListMember: StaticStructureSchema;
@@ -223,6 +232,10 @@ export declare var StartRestoreJobInput: StaticStructureSchema;
223
232
  export declare var StartRestoreJobOutput: StaticStructureSchema;
224
233
  export declare var StopBackupJobInput: StaticStructureSchema;
225
234
  export declare var TagResourceInput: StaticStructureSchema;
235
+ export declare var TieringConfiguration: StaticStructureSchema;
236
+ export declare var TieringConfigurationInputForCreate: StaticStructureSchema;
237
+ export declare var TieringConfigurationInputForUpdate: StaticStructureSchema;
238
+ export declare var TieringConfigurationsListMember: StaticStructureSchema;
226
239
  export declare var UntagResourceInput: StaticStructureSchema;
227
240
  export declare var UpdateBackupPlanInput: StaticStructureSchema;
228
241
  export declare var UpdateBackupPlanOutput: StaticStructureSchema;
@@ -240,6 +253,8 @@ export declare var UpdateRestoreTestingPlanInput: StaticStructureSchema;
240
253
  export declare var UpdateRestoreTestingPlanOutput: StaticStructureSchema;
241
254
  export declare var UpdateRestoreTestingSelectionInput: StaticStructureSchema;
242
255
  export declare var UpdateRestoreTestingSelectionOutput: StaticStructureSchema;
256
+ export declare var UpdateTieringConfigurationInput: StaticStructureSchema;
257
+ export declare var UpdateTieringConfigurationOutput: StaticStructureSchema;
243
258
  export declare var __Unit: "unit";
244
259
  export declare var BackupServiceException: StaticErrorSchema;
245
260
  export declare var AdvancedBackupSettings: StaticListSchema;
@@ -275,6 +290,7 @@ export declare var ReportJobList: StaticListSchema;
275
290
  export declare var ReportPlanList: StaticListSchema;
276
291
  export declare var ResourceArns: number;
277
292
  export declare var ResourceIdentifiers: number;
293
+ export declare var ResourceSelections: StaticListSchema;
278
294
  export declare var ResourceTypeList: number;
279
295
  export declare var ResourceTypes: number;
280
296
  export declare var RestoreAccessBackupVaultList: StaticListSchema;
@@ -286,6 +302,7 @@ export declare var RestoreTestingSelections: StaticListSchema;
286
302
  export declare var ScheduledRunsPreview: StaticListSchema;
287
303
  export declare var stringList: number;
288
304
  export declare var TagKeyList: StaticListSchema;
305
+ export declare var TieringConfigurationsList: StaticListSchema;
289
306
  export declare var VaultNames: number;
290
307
  export declare var BackupJobChildJobsInState: number;
291
308
  export declare var BackupOptions: number;
@@ -309,6 +326,7 @@ export declare var CreateReportPlan: StaticOperationSchema;
309
326
  export declare var CreateRestoreAccessBackupVault: StaticOperationSchema;
310
327
  export declare var CreateRestoreTestingPlan: StaticOperationSchema;
311
328
  export declare var CreateRestoreTestingSelection: StaticOperationSchema;
329
+ export declare var CreateTieringConfiguration: StaticOperationSchema;
312
330
  export declare var DeleteBackupPlan: StaticOperationSchema;
313
331
  export declare var DeleteBackupSelection: StaticOperationSchema;
314
332
  export declare var DeleteBackupVault: StaticOperationSchema;
@@ -320,6 +338,7 @@ export declare var DeleteRecoveryPoint: StaticOperationSchema;
320
338
  export declare var DeleteReportPlan: StaticOperationSchema;
321
339
  export declare var DeleteRestoreTestingPlan: StaticOperationSchema;
322
340
  export declare var DeleteRestoreTestingSelection: StaticOperationSchema;
341
+ export declare var DeleteTieringConfiguration: StaticOperationSchema;
323
342
  export declare var DescribeBackupJob: StaticOperationSchema;
324
343
  export declare var DescribeBackupVault: StaticOperationSchema;
325
344
  export declare var DescribeCopyJob: StaticOperationSchema;
@@ -349,6 +368,7 @@ export declare var GetRestoreTestingInferredMetadata: StaticOperationSchema;
349
368
  export declare var GetRestoreTestingPlan: StaticOperationSchema;
350
369
  export declare var GetRestoreTestingSelection: StaticOperationSchema;
351
370
  export declare var GetSupportedResourceTypes: StaticOperationSchema;
371
+ export declare var GetTieringConfiguration: StaticOperationSchema;
352
372
  export declare var ListBackupJobs: StaticOperationSchema;
353
373
  export declare var ListBackupJobSummaries: StaticOperationSchema;
354
374
  export declare var ListBackupPlans: StaticOperationSchema;
@@ -375,6 +395,7 @@ export declare var ListRestoreJobSummaries: StaticOperationSchema;
375
395
  export declare var ListRestoreTestingPlans: StaticOperationSchema;
376
396
  export declare var ListRestoreTestingSelections: StaticOperationSchema;
377
397
  export declare var ListTags: StaticOperationSchema;
398
+ export declare var ListTieringConfigurations: StaticOperationSchema;
378
399
  export declare var PutBackupVaultAccessPolicy: StaticOperationSchema;
379
400
  export declare var PutBackupVaultLockConfiguration: StaticOperationSchema;
380
401
  export declare var PutBackupVaultNotifications: StaticOperationSchema;
@@ -396,3 +417,4 @@ export declare var UpdateRegionSettings: StaticOperationSchema;
396
417
  export declare var UpdateReportPlan: StaticOperationSchema;
397
418
  export declare var UpdateRestoreTestingPlan: StaticOperationSchema;
398
419
  export declare var UpdateRestoreTestingSelection: StaticOperationSchema;
420
+ export declare var UpdateTieringConfiguration: StaticOperationSchema;
@@ -48,6 +48,10 @@ import {
48
48
  CreateRestoreTestingSelectionCommandInput,
49
49
  CreateRestoreTestingSelectionCommandOutput,
50
50
  } from "./commands/CreateRestoreTestingSelectionCommand";
51
+ import {
52
+ CreateTieringConfigurationCommandInput,
53
+ CreateTieringConfigurationCommandOutput,
54
+ } from "./commands/CreateTieringConfigurationCommand";
51
55
  import {
52
56
  DeleteBackupPlanCommandInput,
53
57
  DeleteBackupPlanCommandOutput,
@@ -92,6 +96,10 @@ import {
92
96
  DeleteRestoreTestingSelectionCommandInput,
93
97
  DeleteRestoreTestingSelectionCommandOutput,
94
98
  } from "./commands/DeleteRestoreTestingSelectionCommand";
99
+ import {
100
+ DeleteTieringConfigurationCommandInput,
101
+ DeleteTieringConfigurationCommandOutput,
102
+ } from "./commands/DeleteTieringConfigurationCommand";
95
103
  import {
96
104
  DescribeBackupJobCommandInput,
97
105
  DescribeBackupJobCommandOutput,
@@ -208,6 +216,10 @@ import {
208
216
  GetSupportedResourceTypesCommandInput,
209
217
  GetSupportedResourceTypesCommandOutput,
210
218
  } from "./commands/GetSupportedResourceTypesCommand";
219
+ import {
220
+ GetTieringConfigurationCommandInput,
221
+ GetTieringConfigurationCommandOutput,
222
+ } from "./commands/GetTieringConfigurationCommand";
211
223
  import {
212
224
  ListBackupJobsCommandInput,
213
225
  ListBackupJobsCommandOutput,
@@ -312,6 +324,10 @@ import {
312
324
  ListTagsCommandInput,
313
325
  ListTagsCommandOutput,
314
326
  } from "./commands/ListTagsCommand";
327
+ import {
328
+ ListTieringConfigurationsCommandInput,
329
+ ListTieringConfigurationsCommandOutput,
330
+ } from "./commands/ListTieringConfigurationsCommand";
315
331
  import {
316
332
  PutBackupVaultAccessPolicyCommandInput,
317
333
  PutBackupVaultAccessPolicyCommandOutput,
@@ -396,6 +412,10 @@ import {
396
412
  UpdateRestoreTestingSelectionCommandInput,
397
413
  UpdateRestoreTestingSelectionCommandOutput,
398
414
  } from "./commands/UpdateRestoreTestingSelectionCommand";
415
+ import {
416
+ UpdateTieringConfigurationCommandInput,
417
+ UpdateTieringConfigurationCommandOutput,
418
+ } from "./commands/UpdateTieringConfigurationCommand";
399
419
  export interface Backup {
400
420
  associateBackupVaultMpaApprovalTeam(
401
421
  args: AssociateBackupVaultMpaApprovalTeamCommandInput,
@@ -565,6 +585,19 @@ export interface Backup {
565
585
  options: __HttpHandlerOptions,
566
586
  cb: (err: any, data?: CreateRestoreTestingSelectionCommandOutput) => void
567
587
  ): void;
588
+ createTieringConfiguration(
589
+ args: CreateTieringConfigurationCommandInput,
590
+ options?: __HttpHandlerOptions
591
+ ): Promise<CreateTieringConfigurationCommandOutput>;
592
+ createTieringConfiguration(
593
+ args: CreateTieringConfigurationCommandInput,
594
+ cb: (err: any, data?: CreateTieringConfigurationCommandOutput) => void
595
+ ): void;
596
+ createTieringConfiguration(
597
+ args: CreateTieringConfigurationCommandInput,
598
+ options: __HttpHandlerOptions,
599
+ cb: (err: any, data?: CreateTieringConfigurationCommandOutput) => void
600
+ ): void;
568
601
  deleteBackupPlan(
569
602
  args: DeleteBackupPlanCommandInput,
570
603
  options?: __HttpHandlerOptions
@@ -714,6 +747,19 @@ export interface Backup {
714
747
  options: __HttpHandlerOptions,
715
748
  cb: (err: any, data?: DeleteRestoreTestingSelectionCommandOutput) => void
716
749
  ): void;
750
+ deleteTieringConfiguration(
751
+ args: DeleteTieringConfigurationCommandInput,
752
+ options?: __HttpHandlerOptions
753
+ ): Promise<DeleteTieringConfigurationCommandOutput>;
754
+ deleteTieringConfiguration(
755
+ args: DeleteTieringConfigurationCommandInput,
756
+ cb: (err: any, data?: DeleteTieringConfigurationCommandOutput) => void
757
+ ): void;
758
+ deleteTieringConfiguration(
759
+ args: DeleteTieringConfigurationCommandInput,
760
+ options: __HttpHandlerOptions,
761
+ cb: (err: any, data?: DeleteTieringConfigurationCommandOutput) => void
762
+ ): void;
717
763
  describeBackupJob(
718
764
  args: DescribeBackupJobCommandInput,
719
765
  options?: __HttpHandlerOptions
@@ -1112,6 +1158,19 @@ export interface Backup {
1112
1158
  options: __HttpHandlerOptions,
1113
1159
  cb: (err: any, data?: GetSupportedResourceTypesCommandOutput) => void
1114
1160
  ): void;
1161
+ getTieringConfiguration(
1162
+ args: GetTieringConfigurationCommandInput,
1163
+ options?: __HttpHandlerOptions
1164
+ ): Promise<GetTieringConfigurationCommandOutput>;
1165
+ getTieringConfiguration(
1166
+ args: GetTieringConfigurationCommandInput,
1167
+ cb: (err: any, data?: GetTieringConfigurationCommandOutput) => void
1168
+ ): void;
1169
+ getTieringConfiguration(
1170
+ args: GetTieringConfigurationCommandInput,
1171
+ options: __HttpHandlerOptions,
1172
+ cb: (err: any, data?: GetTieringConfigurationCommandOutput) => void
1173
+ ): void;
1115
1174
  listBackupJobs(): Promise<ListBackupJobsCommandOutput>;
1116
1175
  listBackupJobs(
1117
1176
  args: ListBackupJobsCommandInput,
@@ -1478,6 +1537,20 @@ export interface Backup {
1478
1537
  options: __HttpHandlerOptions,
1479
1538
  cb: (err: any, data?: ListTagsCommandOutput) => void
1480
1539
  ): void;
1540
+ listTieringConfigurations(): Promise<ListTieringConfigurationsCommandOutput>;
1541
+ listTieringConfigurations(
1542
+ args: ListTieringConfigurationsCommandInput,
1543
+ options?: __HttpHandlerOptions
1544
+ ): Promise<ListTieringConfigurationsCommandOutput>;
1545
+ listTieringConfigurations(
1546
+ args: ListTieringConfigurationsCommandInput,
1547
+ cb: (err: any, data?: ListTieringConfigurationsCommandOutput) => void
1548
+ ): void;
1549
+ listTieringConfigurations(
1550
+ args: ListTieringConfigurationsCommandInput,
1551
+ options: __HttpHandlerOptions,
1552
+ cb: (err: any, data?: ListTieringConfigurationsCommandOutput) => void
1553
+ ): void;
1481
1554
  putBackupVaultAccessPolicy(
1482
1555
  args: PutBackupVaultAccessPolicyCommandInput,
1483
1556
  options?: __HttpHandlerOptions
@@ -1753,5 +1826,18 @@ export interface Backup {
1753
1826
  options: __HttpHandlerOptions,
1754
1827
  cb: (err: any, data?: UpdateRestoreTestingSelectionCommandOutput) => void
1755
1828
  ): void;
1829
+ updateTieringConfiguration(
1830
+ args: UpdateTieringConfigurationCommandInput,
1831
+ options?: __HttpHandlerOptions
1832
+ ): Promise<UpdateTieringConfigurationCommandOutput>;
1833
+ updateTieringConfiguration(
1834
+ args: UpdateTieringConfigurationCommandInput,
1835
+ cb: (err: any, data?: UpdateTieringConfigurationCommandOutput) => void
1836
+ ): void;
1837
+ updateTieringConfiguration(
1838
+ args: UpdateTieringConfigurationCommandInput,
1839
+ options: __HttpHandlerOptions,
1840
+ cb: (err: any, data?: UpdateTieringConfigurationCommandOutput) => void
1841
+ ): void;
1756
1842
  }
1757
1843
  export declare class Backup extends BackupClient implements Backup {}