aws-sdk-dlm 1.100.0 → 1.101.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fe9ebdab355bb685cd54e5fadb11bd8b61561e22641aae2fde317bd9e14e53f1
4
- data.tar.gz: bb687baef31572b89bb5f300d3efe552c16ec45dfb193707d8b88e45ff0d2ab8
3
+ metadata.gz: 3e11a1b84d148fd58e83861f5ae904983cf94862f7dc8a5699682564110a92d4
4
+ data.tar.gz: 9c7ce6ad6db7afa9ab832a2c8cbee16d710f69fae0eb90b8762515e21e19092b
5
5
  SHA512:
6
- metadata.gz: cef798bd8617693c5ad87a5e0916544cea7602bffae6a27490c7fbed85150c36f40be7b954cb5ea219ce3eb515c5f16288c8761d3490fed6a42c6a037d8ef459
7
- data.tar.gz: 51c6b76275845187f5857c6e6ab1b354b3bcc26369eb7b165e9b16688937c546098302b41e458f5ceecf09f398f9e78bb27c8b64d8f66f7c99b60f25232c17e2
6
+ metadata.gz: 33dadd5ac5701fac5588ce00b81331d0769a6b51b2b42e75dda2bc51a23d1860c8b266fb8d935c8dc2a4d0e5b6d1bbdf2f6edff091c29fe97896890cf43a3f6d
7
+ data.tar.gz: 78a397f17a0d051c14291b5a7d0a120e9a1ad6b258bacf7c6ad4f0f4eeb45e66cf8eb38cd49f10069bc5ff9a8a1275097c09b84bbd109f988c9f9cf3a637a17c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.101.0 (2026-04-06)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for Fast Snapshot Restore AvailabilityZone Ids in Amazon Data Lifecycle Manager EBS snapshot lifecycle policies.
8
+
4
9
  1.100.0 (2026-03-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.100.0
1
+ 1.101.0
@@ -654,7 +654,8 @@ module Aws::DLM
654
654
  # count: 1,
655
655
  # interval: 1,
656
656
  # interval_unit: "DAYS", # accepts DAYS, WEEKS, MONTHS, YEARS
657
- # availability_zones: ["AvailabilityZone"], # required
657
+ # availability_zones: ["AvailabilityZone"],
658
+ # availability_zone_ids: ["AvailabilityZoneId"],
658
659
  # },
659
660
  # cross_region_copy_rules: [
660
661
  # {
@@ -962,6 +963,8 @@ module Aws::DLM
962
963
  # resp.policy.policy_details.schedules[0].fast_restore_rule.interval_unit #=> String, one of "DAYS", "WEEKS", "MONTHS", "YEARS"
963
964
  # resp.policy.policy_details.schedules[0].fast_restore_rule.availability_zones #=> Array
964
965
  # resp.policy.policy_details.schedules[0].fast_restore_rule.availability_zones[0] #=> String
966
+ # resp.policy.policy_details.schedules[0].fast_restore_rule.availability_zone_ids #=> Array
967
+ # resp.policy.policy_details.schedules[0].fast_restore_rule.availability_zone_ids[0] #=> String
965
968
  # resp.policy.policy_details.schedules[0].cross_region_copy_rules #=> Array
966
969
  # resp.policy.policy_details.schedules[0].cross_region_copy_rules[0].target_region #=> String
967
970
  # resp.policy.policy_details.schedules[0].cross_region_copy_rules[0].target #=> String
@@ -1250,7 +1253,8 @@ module Aws::DLM
1250
1253
  # count: 1,
1251
1254
  # interval: 1,
1252
1255
  # interval_unit: "DAYS", # accepts DAYS, WEEKS, MONTHS, YEARS
1253
- # availability_zones: ["AvailabilityZone"], # required
1256
+ # availability_zones: ["AvailabilityZone"],
1257
+ # availability_zone_ids: ["AvailabilityZoneId"],
1254
1258
  # },
1255
1259
  # cross_region_copy_rules: [
1256
1260
  # {
@@ -1398,7 +1402,7 @@ module Aws::DLM
1398
1402
  tracer: tracer
1399
1403
  )
1400
1404
  context[:gem_name] = 'aws-sdk-dlm'
1401
- context[:gem_version] = '1.100.0'
1405
+ context[:gem_version] = '1.101.0'
1402
1406
  Seahorse::Client::Request.new(handlers, context)
1403
1407
  end
1404
1408
 
@@ -20,6 +20,8 @@ module Aws::DLM
20
20
  ArchiveRetainRule = Shapes::StructureShape.new(name: 'ArchiveRetainRule')
21
21
  ArchiveRule = Shapes::StructureShape.new(name: 'ArchiveRule')
22
22
  AvailabilityZone = Shapes::StringShape.new(name: 'AvailabilityZone')
23
+ AvailabilityZoneId = Shapes::StringShape.new(name: 'AvailabilityZoneId')
24
+ AvailabilityZoneIdList = Shapes::ListShape.new(name: 'AvailabilityZoneIdList')
23
25
  AvailabilityZoneList = Shapes::ListShape.new(name: 'AvailabilityZoneList')
24
26
  AwsAccountId = Shapes::StringShape.new(name: 'AwsAccountId')
25
27
  CmkArn = Shapes::StringShape.new(name: 'CmkArn')
@@ -156,6 +158,8 @@ module Aws::DLM
156
158
  ArchiveRule.add_member(:retain_rule, Shapes::ShapeRef.new(shape: ArchiveRetainRule, required: true, location_name: "RetainRule"))
157
159
  ArchiveRule.struct_class = Types::ArchiveRule
158
160
 
161
+ AvailabilityZoneIdList.member = Shapes::ShapeRef.new(shape: AvailabilityZoneId)
162
+
159
163
  AvailabilityZoneList.member = Shapes::ShapeRef.new(shape: AvailabilityZone)
160
164
 
161
165
  CreateLifecyclePolicyRequest.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: ExecutionRoleArn, required: true, location_name: "ExecutionRoleArn"))
@@ -251,7 +255,8 @@ module Aws::DLM
251
255
  FastRestoreRule.add_member(:count, Shapes::ShapeRef.new(shape: Count, location_name: "Count"))
252
256
  FastRestoreRule.add_member(:interval, Shapes::ShapeRef.new(shape: Interval, location_name: "Interval"))
253
257
  FastRestoreRule.add_member(:interval_unit, Shapes::ShapeRef.new(shape: RetentionIntervalUnitValues, location_name: "IntervalUnit"))
254
- FastRestoreRule.add_member(:availability_zones, Shapes::ShapeRef.new(shape: AvailabilityZoneList, required: true, location_name: "AvailabilityZones"))
258
+ FastRestoreRule.add_member(:availability_zones, Shapes::ShapeRef.new(shape: AvailabilityZoneList, location_name: "AvailabilityZones"))
259
+ FastRestoreRule.add_member(:availability_zone_ids, Shapes::ShapeRef.new(shape: AvailabilityZoneIdList, location_name: "AvailabilityZoneIds"))
255
260
  FastRestoreRule.struct_class = Types::FastRestoreRule
256
261
 
257
262
  GetLifecyclePoliciesRequest.add_member(:policy_ids, Shapes::ShapeRef.new(shape: PolicyIdList, location: "querystring", location_name: "policyIds"))
@@ -680,13 +680,18 @@ module Aws::DLM
680
680
  # The Availability Zones in which to enable fast snapshot restore.
681
681
  # @return [Array<String>]
682
682
  #
683
+ # @!attribute [rw] availability_zone_ids
684
+ # The Availability Zone Ids in which to enable fast snapshot restore.
685
+ # @return [Array<String>]
686
+ #
683
687
  # @see http://docs.aws.amazon.com/goto/WebAPI/dlm-2018-01-12/FastRestoreRule AWS API Documentation
684
688
  #
685
689
  class FastRestoreRule < Struct.new(
686
690
  :count,
687
691
  :interval,
688
692
  :interval_unit,
689
- :availability_zones)
693
+ :availability_zones,
694
+ :availability_zone_ids)
690
695
  SENSITIVE = []
691
696
  include Aws::Structure
692
697
  end
data/lib/aws-sdk-dlm.rb CHANGED
@@ -54,7 +54,7 @@ module Aws::DLM
54
54
  autoload :EndpointProvider, 'aws-sdk-dlm/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-dlm/endpoints'
56
56
 
57
- GEM_VERSION = '1.100.0'
57
+ GEM_VERSION = '1.101.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -139,7 +139,8 @@ module Aws
139
139
  count: ::Integer?,
140
140
  interval: ::Integer?,
141
141
  interval_unit: ("DAYS" | "WEEKS" | "MONTHS" | "YEARS")?,
142
- availability_zones: Array[::String]
142
+ availability_zones: Array[::String]?,
143
+ availability_zone_ids: Array[::String]?
143
144
  }?,
144
145
  cross_region_copy_rules: Array[
145
146
  {
@@ -388,7 +389,8 @@ module Aws
388
389
  count: ::Integer?,
389
390
  interval: ::Integer?,
390
391
  interval_unit: ("DAYS" | "WEEKS" | "MONTHS" | "YEARS")?,
391
- availability_zones: Array[::String]
392
+ availability_zones: Array[::String]?,
393
+ availability_zone_ids: Array[::String]?
392
394
  }?,
393
395
  cross_region_copy_rules: Array[
394
396
  {
data/sig/types.rbs CHANGED
@@ -136,6 +136,7 @@ module Aws::DLM
136
136
  attr_accessor interval: ::Integer
137
137
  attr_accessor interval_unit: ("DAYS" | "WEEKS" | "MONTHS" | "YEARS")
138
138
  attr_accessor availability_zones: ::Array[::String]
139
+ attr_accessor availability_zone_ids: ::Array[::String]
139
140
  SENSITIVE: []
140
141
  end
141
142
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-dlm
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.100.0
4
+ version: 1.101.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services