aws-sdk-ec2 1.569.0 → 1.570.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +35 -6
- data/lib/aws-sdk-ec2/client_api.rb +12 -2
- data/lib/aws-sdk-ec2/types.rb +130 -70
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/client.rbs +4 -2
- data/sig/types.rbs +7 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 49c0b9667d3a0f6e3610fcf7309d11713ba7efd113940565a244946c1c39df0f
|
|
4
|
+
data.tar.gz: adad33e5f49dd0446f90f1ecdfc246a63158f56ac891adaae675da22a3b05eee
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: aa655d4d0b0a7673e489b9b3b4cb452c2469b7c7d58b31df6d8f91b9e1843278b82ba6b87fb685b2bd7f59faf516cd6fb1a809345fcfe2139574dc49e971af67
|
|
7
|
+
data.tar.gz: bbeb11d5aca934bc62b2a414c7763a66e07f6aedf1a015700e21dd5fb4d92aa006d5905e6a49b82d776b41b697df04fed1dd5403890ae20e730d6c7e0e60a421
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.570.0 (2025-11-05)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This release adds AvailabilityZoneId support for DescribeFastSnapshotRestores, DisableFastSnapshotRestores, and EnableFastSnapshotRestores APIs.
|
|
8
|
+
|
|
4
9
|
1.569.0 (2025-11-03)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.570.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
|
@@ -26342,7 +26342,11 @@ module Aws::EC2
|
|
|
26342
26342
|
# @option params [Array<Types::Filter>] :filters
|
|
26343
26343
|
# The filters. The possible values are:
|
|
26344
26344
|
#
|
|
26345
|
-
# * `availability-zone`: The Availability Zone of the snapshot.
|
|
26345
|
+
# * `availability-zone`: The Availability Zone of the snapshot. For
|
|
26346
|
+
# example, `us-east-2a`.
|
|
26347
|
+
#
|
|
26348
|
+
# * `availability-zone-id`: The ID of the Availability Zone of the
|
|
26349
|
+
# snapshot. For example, `use2-az1`.
|
|
26346
26350
|
#
|
|
26347
26351
|
# * `owner-id`: The ID of the Amazon Web Services account that enabled
|
|
26348
26352
|
# fast snapshot restore on the snapshot.
|
|
@@ -26398,6 +26402,7 @@ module Aws::EC2
|
|
|
26398
26402
|
# resp.fast_snapshot_restores #=> Array
|
|
26399
26403
|
# resp.fast_snapshot_restores[0].snapshot_id #=> String
|
|
26400
26404
|
# resp.fast_snapshot_restores[0].availability_zone #=> String
|
|
26405
|
+
# resp.fast_snapshot_restores[0].availability_zone_id #=> String
|
|
26401
26406
|
# resp.fast_snapshot_restores[0].state #=> String, one of "enabling", "optimizing", "enabled", "disabling", "disabled"
|
|
26402
26407
|
# resp.fast_snapshot_restores[0].state_transition_reason #=> String
|
|
26403
26408
|
# resp.fast_snapshot_restores[0].owner_id #=> String
|
|
@@ -45012,9 +45017,18 @@ module Aws::EC2
|
|
|
45012
45017
|
# Disables fast snapshot restores for the specified snapshots in the
|
|
45013
45018
|
# specified Availability Zones.
|
|
45014
45019
|
#
|
|
45015
|
-
# @option params [
|
|
45020
|
+
# @option params [Array<String>] :availability_zones
|
|
45016
45021
|
# One or more Availability Zones. For example, `us-east-2a`.
|
|
45017
45022
|
#
|
|
45023
|
+
# Either `AvailabilityZone` or `AvailabilityZoneId` must be specified in
|
|
45024
|
+
# the request, but not both.
|
|
45025
|
+
#
|
|
45026
|
+
# @option params [Array<String>] :availability_zone_ids
|
|
45027
|
+
# One or more Availability Zone IDs. For example, `use2-az1`.
|
|
45028
|
+
#
|
|
45029
|
+
# Either `AvailabilityZone` or `AvailabilityZoneId` must be specified in
|
|
45030
|
+
# the request, but not both.
|
|
45031
|
+
#
|
|
45018
45032
|
# @option params [required, Array<String>] :source_snapshot_ids
|
|
45019
45033
|
# The IDs of one or more snapshots. For example,
|
|
45020
45034
|
# `snap-1234567890abcdef0`.
|
|
@@ -45033,7 +45047,8 @@ module Aws::EC2
|
|
|
45033
45047
|
# @example Request syntax with placeholder values
|
|
45034
45048
|
#
|
|
45035
45049
|
# resp = client.disable_fast_snapshot_restores({
|
|
45036
|
-
# availability_zones: ["String"],
|
|
45050
|
+
# availability_zones: ["String"],
|
|
45051
|
+
# availability_zone_ids: ["String"],
|
|
45037
45052
|
# source_snapshot_ids: ["SnapshotId"], # required
|
|
45038
45053
|
# dry_run: false,
|
|
45039
45054
|
# })
|
|
@@ -45043,6 +45058,7 @@ module Aws::EC2
|
|
|
45043
45058
|
# resp.successful #=> Array
|
|
45044
45059
|
# resp.successful[0].snapshot_id #=> String
|
|
45045
45060
|
# resp.successful[0].availability_zone #=> String
|
|
45061
|
+
# resp.successful[0].availability_zone_id #=> String
|
|
45046
45062
|
# resp.successful[0].state #=> String, one of "enabling", "optimizing", "enabled", "disabling", "disabled"
|
|
45047
45063
|
# resp.successful[0].state_transition_reason #=> String
|
|
45048
45064
|
# resp.successful[0].owner_id #=> String
|
|
@@ -45056,6 +45072,7 @@ module Aws::EC2
|
|
|
45056
45072
|
# resp.unsuccessful[0].snapshot_id #=> String
|
|
45057
45073
|
# resp.unsuccessful[0].fast_snapshot_restore_state_errors #=> Array
|
|
45058
45074
|
# resp.unsuccessful[0].fast_snapshot_restore_state_errors[0].availability_zone #=> String
|
|
45075
|
+
# resp.unsuccessful[0].fast_snapshot_restore_state_errors[0].availability_zone_id #=> String
|
|
45059
45076
|
# resp.unsuccessful[0].fast_snapshot_restore_state_errors[0].error.code #=> String
|
|
45060
45077
|
# resp.unsuccessful[0].fast_snapshot_restore_state_errors[0].error.message #=> String
|
|
45061
45078
|
#
|
|
@@ -46938,9 +46955,18 @@ module Aws::EC2
|
|
|
46938
46955
|
#
|
|
46939
46956
|
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-fast-snapshot-restore.html
|
|
46940
46957
|
#
|
|
46941
|
-
# @option params [
|
|
46958
|
+
# @option params [Array<String>] :availability_zones
|
|
46942
46959
|
# One or more Availability Zones. For example, `us-east-2a`.
|
|
46943
46960
|
#
|
|
46961
|
+
# Either `AvailabilityZone` or `AvailabilityZoneId` must be specified in
|
|
46962
|
+
# the request, but not both.
|
|
46963
|
+
#
|
|
46964
|
+
# @option params [Array<String>] :availability_zone_ids
|
|
46965
|
+
# One or more Availability Zone IDs. For example, `use2-az1`.
|
|
46966
|
+
#
|
|
46967
|
+
# Either `AvailabilityZone` or `AvailabilityZoneId` must be specified in
|
|
46968
|
+
# the request, but not both.
|
|
46969
|
+
#
|
|
46944
46970
|
# @option params [required, Array<String>] :source_snapshot_ids
|
|
46945
46971
|
# The IDs of one or more snapshots. For example,
|
|
46946
46972
|
# `snap-1234567890abcdef0`. You can specify a snapshot that was shared
|
|
@@ -46960,7 +46986,8 @@ module Aws::EC2
|
|
|
46960
46986
|
# @example Request syntax with placeholder values
|
|
46961
46987
|
#
|
|
46962
46988
|
# resp = client.enable_fast_snapshot_restores({
|
|
46963
|
-
# availability_zones: ["String"],
|
|
46989
|
+
# availability_zones: ["String"],
|
|
46990
|
+
# availability_zone_ids: ["String"],
|
|
46964
46991
|
# source_snapshot_ids: ["SnapshotId"], # required
|
|
46965
46992
|
# dry_run: false,
|
|
46966
46993
|
# })
|
|
@@ -46970,6 +46997,7 @@ module Aws::EC2
|
|
|
46970
46997
|
# resp.successful #=> Array
|
|
46971
46998
|
# resp.successful[0].snapshot_id #=> String
|
|
46972
46999
|
# resp.successful[0].availability_zone #=> String
|
|
47000
|
+
# resp.successful[0].availability_zone_id #=> String
|
|
46973
47001
|
# resp.successful[0].state #=> String, one of "enabling", "optimizing", "enabled", "disabling", "disabled"
|
|
46974
47002
|
# resp.successful[0].state_transition_reason #=> String
|
|
46975
47003
|
# resp.successful[0].owner_id #=> String
|
|
@@ -46983,6 +47011,7 @@ module Aws::EC2
|
|
|
46983
47011
|
# resp.unsuccessful[0].snapshot_id #=> String
|
|
46984
47012
|
# resp.unsuccessful[0].fast_snapshot_restore_state_errors #=> Array
|
|
46985
47013
|
# resp.unsuccessful[0].fast_snapshot_restore_state_errors[0].availability_zone #=> String
|
|
47014
|
+
# resp.unsuccessful[0].fast_snapshot_restore_state_errors[0].availability_zone_id #=> String
|
|
46986
47015
|
# resp.unsuccessful[0].fast_snapshot_restore_state_errors[0].error.code #=> String
|
|
46987
47016
|
# resp.unsuccessful[0].fast_snapshot_restore_state_errors[0].error.message #=> String
|
|
46988
47017
|
#
|
|
@@ -69054,7 +69083,7 @@ module Aws::EC2
|
|
|
69054
69083
|
tracer: tracer
|
|
69055
69084
|
)
|
|
69056
69085
|
context[:gem_name] = 'aws-sdk-ec2'
|
|
69057
|
-
context[:gem_version] = '1.
|
|
69086
|
+
context[:gem_version] = '1.570.0'
|
|
69058
69087
|
Seahorse::Client::Request.new(handlers, context)
|
|
69059
69088
|
end
|
|
69060
69089
|
|
|
@@ -215,6 +215,7 @@ module Aws::EC2
|
|
|
215
215
|
AutoRecoveryFlag = Shapes::BooleanShape.new(name: 'AutoRecoveryFlag')
|
|
216
216
|
AvailabilityZone = Shapes::StructureShape.new(name: 'AvailabilityZone')
|
|
217
217
|
AvailabilityZoneId = Shapes::StringShape.new(name: 'AvailabilityZoneId')
|
|
218
|
+
AvailabilityZoneIdStringList = Shapes::ListShape.new(name: 'AvailabilityZoneIdStringList')
|
|
218
219
|
AvailabilityZoneList = Shapes::ListShape.new(name: 'AvailabilityZoneList')
|
|
219
220
|
AvailabilityZoneMessage = Shapes::StructureShape.new(name: 'AvailabilityZoneMessage')
|
|
220
221
|
AvailabilityZoneMessageList = Shapes::ListShape.new(name: 'AvailabilityZoneMessageList')
|
|
@@ -4526,6 +4527,8 @@ module Aws::EC2
|
|
|
4526
4527
|
AvailabilityZone.add_member(:state, Shapes::ShapeRef.new(shape: AvailabilityZoneState, location_name: "zoneState"))
|
|
4527
4528
|
AvailabilityZone.struct_class = Types::AvailabilityZone
|
|
4528
4529
|
|
|
4530
|
+
AvailabilityZoneIdStringList.member = Shapes::ShapeRef.new(shape: String, location_name: "AvailabilityZoneId")
|
|
4531
|
+
|
|
4529
4532
|
AvailabilityZoneList.member = Shapes::ShapeRef.new(shape: AvailabilityZone, location_name: "item")
|
|
4530
4533
|
|
|
4531
4534
|
AvailabilityZoneMessage.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
|
@@ -7776,6 +7779,7 @@ module Aws::EC2
|
|
|
7776
7779
|
|
|
7777
7780
|
DescribeFastSnapshotRestoreSuccessItem.add_member(:snapshot_id, Shapes::ShapeRef.new(shape: String, location_name: "snapshotId"))
|
|
7778
7781
|
DescribeFastSnapshotRestoreSuccessItem.add_member(:availability_zone, Shapes::ShapeRef.new(shape: String, location_name: "availabilityZone"))
|
|
7782
|
+
DescribeFastSnapshotRestoreSuccessItem.add_member(:availability_zone_id, Shapes::ShapeRef.new(shape: String, location_name: "availabilityZoneId"))
|
|
7779
7783
|
DescribeFastSnapshotRestoreSuccessItem.add_member(:state, Shapes::ShapeRef.new(shape: FastSnapshotRestoreStateCode, location_name: "state"))
|
|
7780
7784
|
DescribeFastSnapshotRestoreSuccessItem.add_member(:state_transition_reason, Shapes::ShapeRef.new(shape: String, location_name: "stateTransitionReason"))
|
|
7781
7785
|
DescribeFastSnapshotRestoreSuccessItem.add_member(:owner_id, Shapes::ShapeRef.new(shape: String, location_name: "ownerId"))
|
|
@@ -9484,6 +9488,7 @@ module Aws::EC2
|
|
|
9484
9488
|
DisableFastSnapshotRestoreStateError.struct_class = Types::DisableFastSnapshotRestoreStateError
|
|
9485
9489
|
|
|
9486
9490
|
DisableFastSnapshotRestoreStateErrorItem.add_member(:availability_zone, Shapes::ShapeRef.new(shape: String, location_name: "availabilityZone"))
|
|
9491
|
+
DisableFastSnapshotRestoreStateErrorItem.add_member(:availability_zone_id, Shapes::ShapeRef.new(shape: String, location_name: "availabilityZoneId"))
|
|
9487
9492
|
DisableFastSnapshotRestoreStateErrorItem.add_member(:error, Shapes::ShapeRef.new(shape: DisableFastSnapshotRestoreStateError, location_name: "error"))
|
|
9488
9493
|
DisableFastSnapshotRestoreStateErrorItem.struct_class = Types::DisableFastSnapshotRestoreStateErrorItem
|
|
9489
9494
|
|
|
@@ -9491,6 +9496,7 @@ module Aws::EC2
|
|
|
9491
9496
|
|
|
9492
9497
|
DisableFastSnapshotRestoreSuccessItem.add_member(:snapshot_id, Shapes::ShapeRef.new(shape: String, location_name: "snapshotId"))
|
|
9493
9498
|
DisableFastSnapshotRestoreSuccessItem.add_member(:availability_zone, Shapes::ShapeRef.new(shape: String, location_name: "availabilityZone"))
|
|
9499
|
+
DisableFastSnapshotRestoreSuccessItem.add_member(:availability_zone_id, Shapes::ShapeRef.new(shape: String, location_name: "availabilityZoneId"))
|
|
9494
9500
|
DisableFastSnapshotRestoreSuccessItem.add_member(:state, Shapes::ShapeRef.new(shape: FastSnapshotRestoreStateCode, location_name: "state"))
|
|
9495
9501
|
DisableFastSnapshotRestoreSuccessItem.add_member(:state_transition_reason, Shapes::ShapeRef.new(shape: String, location_name: "stateTransitionReason"))
|
|
9496
9502
|
DisableFastSnapshotRestoreSuccessItem.add_member(:owner_id, Shapes::ShapeRef.new(shape: String, location_name: "ownerId"))
|
|
@@ -9504,7 +9510,8 @@ module Aws::EC2
|
|
|
9504
9510
|
|
|
9505
9511
|
DisableFastSnapshotRestoreSuccessSet.member = Shapes::ShapeRef.new(shape: DisableFastSnapshotRestoreSuccessItem, location_name: "item")
|
|
9506
9512
|
|
|
9507
|
-
DisableFastSnapshotRestoresRequest.add_member(:availability_zones, Shapes::ShapeRef.new(shape: AvailabilityZoneStringList,
|
|
9513
|
+
DisableFastSnapshotRestoresRequest.add_member(:availability_zones, Shapes::ShapeRef.new(shape: AvailabilityZoneStringList, location_name: "AvailabilityZone"))
|
|
9514
|
+
DisableFastSnapshotRestoresRequest.add_member(:availability_zone_ids, Shapes::ShapeRef.new(shape: AvailabilityZoneIdStringList, location_name: "AvailabilityZoneId"))
|
|
9508
9515
|
DisableFastSnapshotRestoresRequest.add_member(:source_snapshot_ids, Shapes::ShapeRef.new(shape: SnapshotIdStringList, required: true, location_name: "SourceSnapshotId"))
|
|
9509
9516
|
DisableFastSnapshotRestoresRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
|
9510
9517
|
DisableFastSnapshotRestoresRequest.struct_class = Types::DisableFastSnapshotRestoresRequest
|
|
@@ -10010,6 +10017,7 @@ module Aws::EC2
|
|
|
10010
10017
|
EnableFastSnapshotRestoreStateError.struct_class = Types::EnableFastSnapshotRestoreStateError
|
|
10011
10018
|
|
|
10012
10019
|
EnableFastSnapshotRestoreStateErrorItem.add_member(:availability_zone, Shapes::ShapeRef.new(shape: String, location_name: "availabilityZone"))
|
|
10020
|
+
EnableFastSnapshotRestoreStateErrorItem.add_member(:availability_zone_id, Shapes::ShapeRef.new(shape: String, location_name: "availabilityZoneId"))
|
|
10013
10021
|
EnableFastSnapshotRestoreStateErrorItem.add_member(:error, Shapes::ShapeRef.new(shape: EnableFastSnapshotRestoreStateError, location_name: "error"))
|
|
10014
10022
|
EnableFastSnapshotRestoreStateErrorItem.struct_class = Types::EnableFastSnapshotRestoreStateErrorItem
|
|
10015
10023
|
|
|
@@ -10017,6 +10025,7 @@ module Aws::EC2
|
|
|
10017
10025
|
|
|
10018
10026
|
EnableFastSnapshotRestoreSuccessItem.add_member(:snapshot_id, Shapes::ShapeRef.new(shape: String, location_name: "snapshotId"))
|
|
10019
10027
|
EnableFastSnapshotRestoreSuccessItem.add_member(:availability_zone, Shapes::ShapeRef.new(shape: String, location_name: "availabilityZone"))
|
|
10028
|
+
EnableFastSnapshotRestoreSuccessItem.add_member(:availability_zone_id, Shapes::ShapeRef.new(shape: String, location_name: "availabilityZoneId"))
|
|
10020
10029
|
EnableFastSnapshotRestoreSuccessItem.add_member(:state, Shapes::ShapeRef.new(shape: FastSnapshotRestoreStateCode, location_name: "state"))
|
|
10021
10030
|
EnableFastSnapshotRestoreSuccessItem.add_member(:state_transition_reason, Shapes::ShapeRef.new(shape: String, location_name: "stateTransitionReason"))
|
|
10022
10031
|
EnableFastSnapshotRestoreSuccessItem.add_member(:owner_id, Shapes::ShapeRef.new(shape: String, location_name: "ownerId"))
|
|
@@ -10030,7 +10039,8 @@ module Aws::EC2
|
|
|
10030
10039
|
|
|
10031
10040
|
EnableFastSnapshotRestoreSuccessSet.member = Shapes::ShapeRef.new(shape: EnableFastSnapshotRestoreSuccessItem, location_name: "item")
|
|
10032
10041
|
|
|
10033
|
-
EnableFastSnapshotRestoresRequest.add_member(:availability_zones, Shapes::ShapeRef.new(shape: AvailabilityZoneStringList,
|
|
10042
|
+
EnableFastSnapshotRestoresRequest.add_member(:availability_zones, Shapes::ShapeRef.new(shape: AvailabilityZoneStringList, location_name: "AvailabilityZone"))
|
|
10043
|
+
EnableFastSnapshotRestoresRequest.add_member(:availability_zone_ids, Shapes::ShapeRef.new(shape: AvailabilityZoneIdStringList, location_name: "AvailabilityZoneId"))
|
|
10034
10044
|
EnableFastSnapshotRestoresRequest.add_member(:source_snapshot_ids, Shapes::ShapeRef.new(shape: SnapshotIdStringList, required: true, location_name: "SourceSnapshotId"))
|
|
10035
10045
|
EnableFastSnapshotRestoresRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
|
10036
10046
|
EnableFastSnapshotRestoresRequest.struct_class = Types::EnableFastSnapshotRestoresRequest
|
data/lib/aws-sdk-ec2/types.rb
CHANGED
|
@@ -22516,6 +22516,10 @@ module Aws::EC2
|
|
|
22516
22516
|
# The Availability Zone.
|
|
22517
22517
|
# @return [String]
|
|
22518
22518
|
#
|
|
22519
|
+
# @!attribute [rw] availability_zone_id
|
|
22520
|
+
# The ID of the Availability Zone.
|
|
22521
|
+
# @return [String]
|
|
22522
|
+
#
|
|
22519
22523
|
# @!attribute [rw] state
|
|
22520
22524
|
# The state of fast snapshot restores.
|
|
22521
22525
|
# @return [String]
|
|
@@ -22572,6 +22576,7 @@ module Aws::EC2
|
|
|
22572
22576
|
class DescribeFastSnapshotRestoreSuccessItem < Struct.new(
|
|
22573
22577
|
:snapshot_id,
|
|
22574
22578
|
:availability_zone,
|
|
22579
|
+
:availability_zone_id,
|
|
22575
22580
|
:state,
|
|
22576
22581
|
:state_transition_reason,
|
|
22577
22582
|
:owner_id,
|
|
@@ -22588,7 +22593,11 @@ module Aws::EC2
|
|
|
22588
22593
|
# @!attribute [rw] filters
|
|
22589
22594
|
# The filters. The possible values are:
|
|
22590
22595
|
#
|
|
22591
|
-
# * `availability-zone`: The Availability Zone of the snapshot.
|
|
22596
|
+
# * `availability-zone`: The Availability Zone of the snapshot. For
|
|
22597
|
+
# example, `us-east-2a`.
|
|
22598
|
+
#
|
|
22599
|
+
# * `availability-zone-id`: The ID of the Availability Zone of the
|
|
22600
|
+
# snapshot. For example, `use2-az1`.
|
|
22592
22601
|
#
|
|
22593
22602
|
# * `owner-id`: The ID of the Amazon Web Services account that enabled
|
|
22594
22603
|
# fast snapshot restore on the snapshot.
|
|
@@ -34640,6 +34649,10 @@ module Aws::EC2
|
|
|
34640
34649
|
# The Availability Zone.
|
|
34641
34650
|
# @return [String]
|
|
34642
34651
|
#
|
|
34652
|
+
# @!attribute [rw] availability_zone_id
|
|
34653
|
+
# The ID of the Availability Zone.
|
|
34654
|
+
# @return [String]
|
|
34655
|
+
#
|
|
34643
34656
|
# @!attribute [rw] error
|
|
34644
34657
|
# The error.
|
|
34645
34658
|
# @return [Types::DisableFastSnapshotRestoreStateError]
|
|
@@ -34648,6 +34661,7 @@ module Aws::EC2
|
|
|
34648
34661
|
#
|
|
34649
34662
|
class DisableFastSnapshotRestoreStateErrorItem < Struct.new(
|
|
34650
34663
|
:availability_zone,
|
|
34664
|
+
:availability_zone_id,
|
|
34651
34665
|
:error)
|
|
34652
34666
|
SENSITIVE = []
|
|
34653
34667
|
include Aws::Structure
|
|
@@ -34663,6 +34677,10 @@ module Aws::EC2
|
|
|
34663
34677
|
# The Availability Zone.
|
|
34664
34678
|
# @return [String]
|
|
34665
34679
|
#
|
|
34680
|
+
# @!attribute [rw] availability_zone_id
|
|
34681
|
+
# The ID of the Availability Zone.
|
|
34682
|
+
# @return [String]
|
|
34683
|
+
#
|
|
34666
34684
|
# @!attribute [rw] state
|
|
34667
34685
|
# The state of fast snapshot restores for the snapshot.
|
|
34668
34686
|
# @return [String]
|
|
@@ -34719,6 +34737,7 @@ module Aws::EC2
|
|
|
34719
34737
|
class DisableFastSnapshotRestoreSuccessItem < Struct.new(
|
|
34720
34738
|
:snapshot_id,
|
|
34721
34739
|
:availability_zone,
|
|
34740
|
+
:availability_zone_id,
|
|
34722
34741
|
:state,
|
|
34723
34742
|
:state_transition_reason,
|
|
34724
34743
|
:owner_id,
|
|
@@ -34734,6 +34753,16 @@ module Aws::EC2
|
|
|
34734
34753
|
|
|
34735
34754
|
# @!attribute [rw] availability_zones
|
|
34736
34755
|
# One or more Availability Zones. For example, `us-east-2a`.
|
|
34756
|
+
#
|
|
34757
|
+
# Either `AvailabilityZone` or `AvailabilityZoneId` must be specified
|
|
34758
|
+
# in the request, but not both.
|
|
34759
|
+
# @return [Array<String>]
|
|
34760
|
+
#
|
|
34761
|
+
# @!attribute [rw] availability_zone_ids
|
|
34762
|
+
# One or more Availability Zone IDs. For example, `use2-az1`.
|
|
34763
|
+
#
|
|
34764
|
+
# Either `AvailabilityZone` or `AvailabilityZoneId` must be specified
|
|
34765
|
+
# in the request, but not both.
|
|
34737
34766
|
# @return [Array<String>]
|
|
34738
34767
|
#
|
|
34739
34768
|
# @!attribute [rw] source_snapshot_ids
|
|
@@ -34752,6 +34781,7 @@ module Aws::EC2
|
|
|
34752
34781
|
#
|
|
34753
34782
|
class DisableFastSnapshotRestoresRequest < Struct.new(
|
|
34754
34783
|
:availability_zones,
|
|
34784
|
+
:availability_zone_ids,
|
|
34755
34785
|
:source_snapshot_ids,
|
|
34756
34786
|
:dry_run)
|
|
34757
34787
|
SENSITIVE = []
|
|
@@ -37383,6 +37413,10 @@ module Aws::EC2
|
|
|
37383
37413
|
# The Availability Zone.
|
|
37384
37414
|
# @return [String]
|
|
37385
37415
|
#
|
|
37416
|
+
# @!attribute [rw] availability_zone_id
|
|
37417
|
+
# The ID of the Availability Zone.
|
|
37418
|
+
# @return [String]
|
|
37419
|
+
#
|
|
37386
37420
|
# @!attribute [rw] error
|
|
37387
37421
|
# The error.
|
|
37388
37422
|
# @return [Types::EnableFastSnapshotRestoreStateError]
|
|
@@ -37391,6 +37425,7 @@ module Aws::EC2
|
|
|
37391
37425
|
#
|
|
37392
37426
|
class EnableFastSnapshotRestoreStateErrorItem < Struct.new(
|
|
37393
37427
|
:availability_zone,
|
|
37428
|
+
:availability_zone_id,
|
|
37394
37429
|
:error)
|
|
37395
37430
|
SENSITIVE = []
|
|
37396
37431
|
include Aws::Structure
|
|
@@ -37406,6 +37441,10 @@ module Aws::EC2
|
|
|
37406
37441
|
# The Availability Zone.
|
|
37407
37442
|
# @return [String]
|
|
37408
37443
|
#
|
|
37444
|
+
# @!attribute [rw] availability_zone_id
|
|
37445
|
+
# The ID of the Availability Zone.
|
|
37446
|
+
# @return [String]
|
|
37447
|
+
#
|
|
37409
37448
|
# @!attribute [rw] state
|
|
37410
37449
|
# The state of fast snapshot restores.
|
|
37411
37450
|
# @return [String]
|
|
@@ -37462,6 +37501,7 @@ module Aws::EC2
|
|
|
37462
37501
|
class EnableFastSnapshotRestoreSuccessItem < Struct.new(
|
|
37463
37502
|
:snapshot_id,
|
|
37464
37503
|
:availability_zone,
|
|
37504
|
+
:availability_zone_id,
|
|
37465
37505
|
:state,
|
|
37466
37506
|
:state_transition_reason,
|
|
37467
37507
|
:owner_id,
|
|
@@ -37477,6 +37517,16 @@ module Aws::EC2
|
|
|
37477
37517
|
|
|
37478
37518
|
# @!attribute [rw] availability_zones
|
|
37479
37519
|
# One or more Availability Zones. For example, `us-east-2a`.
|
|
37520
|
+
#
|
|
37521
|
+
# Either `AvailabilityZone` or `AvailabilityZoneId` must be specified
|
|
37522
|
+
# in the request, but not both.
|
|
37523
|
+
# @return [Array<String>]
|
|
37524
|
+
#
|
|
37525
|
+
# @!attribute [rw] availability_zone_ids
|
|
37526
|
+
# One or more Availability Zone IDs. For example, `use2-az1`.
|
|
37527
|
+
#
|
|
37528
|
+
# Either `AvailabilityZone` or `AvailabilityZoneId` must be specified
|
|
37529
|
+
# in the request, but not both.
|
|
37480
37530
|
# @return [Array<String>]
|
|
37481
37531
|
#
|
|
37482
37532
|
# @!attribute [rw] source_snapshot_ids
|
|
@@ -37496,6 +37546,7 @@ module Aws::EC2
|
|
|
37496
37546
|
#
|
|
37497
37547
|
class EnableFastSnapshotRestoresRequest < Struct.new(
|
|
37498
37548
|
:availability_zones,
|
|
37549
|
+
:availability_zone_ids,
|
|
37499
37550
|
:source_snapshot_ids,
|
|
37500
37551
|
:dry_run)
|
|
37501
37552
|
SENSITIVE = []
|
|
@@ -51861,42 +51912,47 @@ module Aws::EC2
|
|
|
51861
51912
|
# selection rules, but it will generate empty versions (containing no
|
|
51862
51913
|
# CIDRs) until you add rules.
|
|
51863
51914
|
#
|
|
51864
|
-
# There are three rule types
|
|
51915
|
+
# There are three rule types. Only 2 of the 3 rule types support
|
|
51916
|
+
# conditions - **IPAM pool CIDR** and **Scope resource CIDR**. **Static
|
|
51917
|
+
# CIDR** rules cannot have conditions.
|
|
51865
51918
|
#
|
|
51866
51919
|
# * **Static CIDR**: A fixed list of CIDRs that do not change (like a
|
|
51867
|
-
# manual list replicated across Regions)
|
|
51920
|
+
# manual list replicated across Regions)
|
|
51868
51921
|
#
|
|
51869
51922
|
# * **IPAM pool CIDR**: CIDRs from specific IPAM pools (like all CIDRs
|
|
51870
|
-
# from your IPAM production pool)
|
|
51923
|
+
# from your IPAM production pool)
|
|
51871
51924
|
#
|
|
51872
|
-
#
|
|
51873
|
-
# like VPCs, subnets, and EIPs within a specific IPAM scope.
|
|
51925
|
+
# If you choose this option, choose the following:
|
|
51874
51926
|
#
|
|
51875
|
-
#
|
|
51927
|
+
# * **IPAM scope**: Select the IPAM scope to search for resources
|
|
51876
51928
|
#
|
|
51877
|
-
#
|
|
51878
|
-
# and **Scope resource CIDR**. **Static CIDR** rules cannot have
|
|
51879
|
-
# conditions.
|
|
51929
|
+
# * **Conditions:**
|
|
51880
51930
|
#
|
|
51881
|
-
#
|
|
51931
|
+
# * **Property**
|
|
51882
51932
|
#
|
|
51883
|
-
#
|
|
51933
|
+
# * **IPAM pool ID**: Select an IPAM pool that contains the
|
|
51934
|
+
# resources
|
|
51884
51935
|
#
|
|
51885
|
-
# *
|
|
51936
|
+
# * **CIDR** (like 10.24.34.0/23)
|
|
51937
|
+
# * **Operation**: Equals/Not equals
|
|
51886
51938
|
#
|
|
51887
|
-
#
|
|
51888
|
-
#
|
|
51939
|
+
# * **Value**: The value on which to match the condition
|
|
51940
|
+
# * **Scope resource CIDR**: CIDRs from Amazon Web Services resources
|
|
51941
|
+
# like VPCs, subnets, EIPs within an IPAM scope
|
|
51942
|
+
#
|
|
51943
|
+
# If you choose this option, choose the following:
|
|
51889
51944
|
#
|
|
51890
|
-
#
|
|
51891
|
-
# * Conditions for the **Scope resource CIDR** resource type:
|
|
51945
|
+
# * **IPAM scope**: Select the IPAM scope to search for resources
|
|
51892
51946
|
#
|
|
51893
|
-
#
|
|
51947
|
+
# * **Resource type**: Select a resource, like a VPC or subnet.
|
|
51948
|
+
#
|
|
51949
|
+
# * **Conditions**:
|
|
51950
|
+
#
|
|
51951
|
+
# * **Property**:
|
|
51894
51952
|
#
|
|
51895
51953
|
# * Resource ID: The unique ID of a resource (like
|
|
51896
51954
|
# vpc-1234567890abcdef0)
|
|
51897
51955
|
#
|
|
51898
|
-
# * Resource type (like VPC or Subnet)
|
|
51899
|
-
#
|
|
51900
51956
|
# * Resource owner (like 111122223333)
|
|
51901
51957
|
#
|
|
51902
51958
|
# * Resource region (like us-east-1)
|
|
@@ -51904,11 +51960,9 @@ module Aws::EC2
|
|
|
51904
51960
|
# * Resource tag (like key: name, value: dev-vpc-1)
|
|
51905
51961
|
#
|
|
51906
51962
|
# * CIDR (like 10.24.34.0/23)
|
|
51907
|
-
# * Operation
|
|
51963
|
+
# * **Operation**: Equals/Not equals
|
|
51908
51964
|
#
|
|
51909
|
-
# * Value
|
|
51910
|
-
# * When setting conditions for a rule, one or more conditions is
|
|
51911
|
-
# required.
|
|
51965
|
+
# * **Value**: The value on which to match the condition
|
|
51912
51966
|
#
|
|
51913
51967
|
# @!attribute [rw] operation
|
|
51914
51968
|
# The operation to perform when evaluating this condition. Valid
|
|
@@ -51970,42 +52024,47 @@ module Aws::EC2
|
|
|
51970
52024
|
# selection rules, but it will generate empty versions (containing no
|
|
51971
52025
|
# CIDRs) until you add rules.
|
|
51972
52026
|
#
|
|
51973
|
-
# There are three rule types
|
|
52027
|
+
# There are three rule types. Only 2 of the 3 rule types support
|
|
52028
|
+
# conditions - **IPAM pool CIDR** and **Scope resource CIDR**. **Static
|
|
52029
|
+
# CIDR** rules cannot have conditions.
|
|
51974
52030
|
#
|
|
51975
52031
|
# * **Static CIDR**: A fixed list of CIDRs that do not change (like a
|
|
51976
|
-
# manual list replicated across Regions)
|
|
52032
|
+
# manual list replicated across Regions)
|
|
51977
52033
|
#
|
|
51978
52034
|
# * **IPAM pool CIDR**: CIDRs from specific IPAM pools (like all CIDRs
|
|
51979
|
-
# from your IPAM production pool)
|
|
52035
|
+
# from your IPAM production pool)
|
|
51980
52036
|
#
|
|
51981
|
-
#
|
|
51982
|
-
# like VPCs, subnets, and EIPs within a specific IPAM scope.
|
|
52037
|
+
# If you choose this option, choose the following:
|
|
51983
52038
|
#
|
|
51984
|
-
#
|
|
52039
|
+
# * **IPAM scope**: Select the IPAM scope to search for resources
|
|
51985
52040
|
#
|
|
51986
|
-
#
|
|
51987
|
-
# and **Scope resource CIDR**. **Static CIDR** rules cannot have
|
|
51988
|
-
# conditions.
|
|
52041
|
+
# * **Conditions:**
|
|
51989
52042
|
#
|
|
51990
|
-
#
|
|
52043
|
+
# * **Property**
|
|
51991
52044
|
#
|
|
51992
|
-
#
|
|
52045
|
+
# * **IPAM pool ID**: Select an IPAM pool that contains the
|
|
52046
|
+
# resources
|
|
51993
52047
|
#
|
|
51994
|
-
# *
|
|
52048
|
+
# * **CIDR** (like 10.24.34.0/23)
|
|
52049
|
+
# * **Operation**: Equals/Not equals
|
|
51995
52050
|
#
|
|
51996
|
-
#
|
|
51997
|
-
#
|
|
52051
|
+
# * **Value**: The value on which to match the condition
|
|
52052
|
+
# * **Scope resource CIDR**: CIDRs from Amazon Web Services resources
|
|
52053
|
+
# like VPCs, subnets, EIPs within an IPAM scope
|
|
52054
|
+
#
|
|
52055
|
+
# If you choose this option, choose the following:
|
|
52056
|
+
#
|
|
52057
|
+
# * **IPAM scope**: Select the IPAM scope to search for resources
|
|
52058
|
+
#
|
|
52059
|
+
# * **Resource type**: Select a resource, like a VPC or subnet.
|
|
51998
52060
|
#
|
|
51999
|
-
#
|
|
52000
|
-
# * Conditions for the **Scope resource CIDR** resource type:
|
|
52061
|
+
# * **Conditions**:
|
|
52001
52062
|
#
|
|
52002
|
-
# * Property
|
|
52063
|
+
# * **Property**:
|
|
52003
52064
|
#
|
|
52004
52065
|
# * Resource ID: The unique ID of a resource (like
|
|
52005
52066
|
# vpc-1234567890abcdef0)
|
|
52006
52067
|
#
|
|
52007
|
-
# * Resource type (like VPC or Subnet)
|
|
52008
|
-
#
|
|
52009
52068
|
# * Resource owner (like 111122223333)
|
|
52010
52069
|
#
|
|
52011
52070
|
# * Resource region (like us-east-1)
|
|
@@ -52013,11 +52072,9 @@ module Aws::EC2
|
|
|
52013
52072
|
# * Resource tag (like key: name, value: dev-vpc-1)
|
|
52014
52073
|
#
|
|
52015
52074
|
# * CIDR (like 10.24.34.0/23)
|
|
52016
|
-
# * Operation
|
|
52075
|
+
# * **Operation**: Equals/Not equals
|
|
52017
52076
|
#
|
|
52018
|
-
# * Value
|
|
52019
|
-
# * When setting conditions for a rule, one or more conditions is
|
|
52020
|
-
# required.
|
|
52077
|
+
# * **Value**: The value on which to match the condition
|
|
52021
52078
|
#
|
|
52022
52079
|
# @!attribute [rw] operation
|
|
52023
52080
|
# The operation to perform when evaluating this condition.
|
|
@@ -52078,42 +52135,47 @@ module Aws::EC2
|
|
|
52078
52135
|
# selection rules, but it will generate empty versions (containing no
|
|
52079
52136
|
# CIDRs) until you add rules.
|
|
52080
52137
|
#
|
|
52081
|
-
# There are three rule types
|
|
52138
|
+
# There are three rule types. Only 2 of the 3 rule types support
|
|
52139
|
+
# conditions - **IPAM pool CIDR** and **Scope resource CIDR**. **Static
|
|
52140
|
+
# CIDR** rules cannot have conditions.
|
|
52082
52141
|
#
|
|
52083
52142
|
# * **Static CIDR**: A fixed list of CIDRs that do not change (like a
|
|
52084
|
-
# manual list replicated across Regions)
|
|
52143
|
+
# manual list replicated across Regions)
|
|
52085
52144
|
#
|
|
52086
52145
|
# * **IPAM pool CIDR**: CIDRs from specific IPAM pools (like all CIDRs
|
|
52087
|
-
# from your IPAM production pool)
|
|
52146
|
+
# from your IPAM production pool)
|
|
52088
52147
|
#
|
|
52089
|
-
#
|
|
52090
|
-
# like VPCs, subnets, and EIPs within a specific IPAM scope.
|
|
52148
|
+
# If you choose this option, choose the following:
|
|
52091
52149
|
#
|
|
52092
|
-
#
|
|
52150
|
+
# * **IPAM scope**: Select the IPAM scope to search for resources
|
|
52093
52151
|
#
|
|
52094
|
-
#
|
|
52095
|
-
# and **Scope resource CIDR**. **Static CIDR** rules cannot have
|
|
52096
|
-
# conditions.
|
|
52152
|
+
# * **Conditions:**
|
|
52097
52153
|
#
|
|
52098
|
-
#
|
|
52154
|
+
# * **Property**
|
|
52099
52155
|
#
|
|
52100
|
-
#
|
|
52156
|
+
# * **IPAM pool ID**: Select an IPAM pool that contains the
|
|
52157
|
+
# resources
|
|
52101
52158
|
#
|
|
52102
|
-
# *
|
|
52159
|
+
# * **CIDR** (like 10.24.34.0/23)
|
|
52160
|
+
# * **Operation**: Equals/Not equals
|
|
52103
52161
|
#
|
|
52104
|
-
#
|
|
52105
|
-
#
|
|
52162
|
+
# * **Value**: The value on which to match the condition
|
|
52163
|
+
# * **Scope resource CIDR**: CIDRs from Amazon Web Services resources
|
|
52164
|
+
# like VPCs, subnets, EIPs within an IPAM scope
|
|
52165
|
+
#
|
|
52166
|
+
# If you choose this option, choose the following:
|
|
52106
52167
|
#
|
|
52107
|
-
#
|
|
52108
|
-
# * Conditions for the **Scope resource CIDR** resource type:
|
|
52168
|
+
# * **IPAM scope**: Select the IPAM scope to search for resources
|
|
52109
52169
|
#
|
|
52110
|
-
#
|
|
52170
|
+
# * **Resource type**: Select a resource, like a VPC or subnet.
|
|
52171
|
+
#
|
|
52172
|
+
# * **Conditions**:
|
|
52173
|
+
#
|
|
52174
|
+
# * **Property**:
|
|
52111
52175
|
#
|
|
52112
52176
|
# * Resource ID: The unique ID of a resource (like
|
|
52113
52177
|
# vpc-1234567890abcdef0)
|
|
52114
52178
|
#
|
|
52115
|
-
# * Resource type (like VPC or Subnet)
|
|
52116
|
-
#
|
|
52117
52179
|
# * Resource owner (like 111122223333)
|
|
52118
52180
|
#
|
|
52119
52181
|
# * Resource region (like us-east-1)
|
|
@@ -52121,11 +52183,9 @@ module Aws::EC2
|
|
|
52121
52183
|
# * Resource tag (like key: name, value: dev-vpc-1)
|
|
52122
52184
|
#
|
|
52123
52185
|
# * CIDR (like 10.24.34.0/23)
|
|
52124
|
-
# * Operation
|
|
52186
|
+
# * **Operation**: Equals/Not equals
|
|
52125
52187
|
#
|
|
52126
|
-
# * Value
|
|
52127
|
-
# * When setting conditions for a rule, one or more conditions is
|
|
52128
|
-
# required.
|
|
52188
|
+
# * **Value**: The value on which to match the condition
|
|
52129
52189
|
#
|
|
52130
52190
|
# @!attribute [rw] rule_type
|
|
52131
52191
|
# The type of CIDR selection rule. Valid values include `include` for
|
data/lib/aws-sdk-ec2.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -9165,7 +9165,8 @@ module Aws
|
|
|
9165
9165
|
end
|
|
9166
9166
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Client.html#disable_fast_snapshot_restores-instance_method
|
|
9167
9167
|
def disable_fast_snapshot_restores: (
|
|
9168
|
-
availability_zones: Array[::String],
|
|
9168
|
+
?availability_zones: Array[::String],
|
|
9169
|
+
?availability_zone_ids: Array[::String],
|
|
9169
9170
|
source_snapshot_ids: Array[::String],
|
|
9170
9171
|
?dry_run: bool
|
|
9171
9172
|
) -> _DisableFastSnapshotRestoresResponseSuccess
|
|
@@ -9612,7 +9613,8 @@ module Aws
|
|
|
9612
9613
|
end
|
|
9613
9614
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Client.html#enable_fast_snapshot_restores-instance_method
|
|
9614
9615
|
def enable_fast_snapshot_restores: (
|
|
9615
|
-
availability_zones: Array[::String],
|
|
9616
|
+
?availability_zones: Array[::String],
|
|
9617
|
+
?availability_zone_ids: Array[::String],
|
|
9616
9618
|
source_snapshot_ids: Array[::String],
|
|
9617
9619
|
?dry_run: bool
|
|
9618
9620
|
) -> _EnableFastSnapshotRestoresResponseSuccess
|
data/sig/types.rbs
CHANGED
|
@@ -5214,6 +5214,7 @@ module Aws::EC2
|
|
|
5214
5214
|
class DescribeFastSnapshotRestoreSuccessItem
|
|
5215
5215
|
attr_accessor snapshot_id: ::String
|
|
5216
5216
|
attr_accessor availability_zone: ::String
|
|
5217
|
+
attr_accessor availability_zone_id: ::String
|
|
5217
5218
|
attr_accessor state: ("enabling" | "optimizing" | "enabled" | "disabling" | "disabled")
|
|
5218
5219
|
attr_accessor state_transition_reason: ::String
|
|
5219
5220
|
attr_accessor owner_id: ::String
|
|
@@ -7518,6 +7519,7 @@ module Aws::EC2
|
|
|
7518
7519
|
|
|
7519
7520
|
class DisableFastSnapshotRestoreStateErrorItem
|
|
7520
7521
|
attr_accessor availability_zone: ::String
|
|
7522
|
+
attr_accessor availability_zone_id: ::String
|
|
7521
7523
|
attr_accessor error: Types::DisableFastSnapshotRestoreStateError
|
|
7522
7524
|
SENSITIVE: []
|
|
7523
7525
|
end
|
|
@@ -7525,6 +7527,7 @@ module Aws::EC2
|
|
|
7525
7527
|
class DisableFastSnapshotRestoreSuccessItem
|
|
7526
7528
|
attr_accessor snapshot_id: ::String
|
|
7527
7529
|
attr_accessor availability_zone: ::String
|
|
7530
|
+
attr_accessor availability_zone_id: ::String
|
|
7528
7531
|
attr_accessor state: ("enabling" | "optimizing" | "enabled" | "disabling" | "disabled")
|
|
7529
7532
|
attr_accessor state_transition_reason: ::String
|
|
7530
7533
|
attr_accessor owner_id: ::String
|
|
@@ -7539,6 +7542,7 @@ module Aws::EC2
|
|
|
7539
7542
|
|
|
7540
7543
|
class DisableFastSnapshotRestoresRequest
|
|
7541
7544
|
attr_accessor availability_zones: ::Array[::String]
|
|
7545
|
+
attr_accessor availability_zone_ids: ::Array[::String]
|
|
7542
7546
|
attr_accessor source_snapshot_ids: ::Array[::String]
|
|
7543
7547
|
attr_accessor dry_run: bool
|
|
7544
7548
|
SENSITIVE: []
|
|
@@ -8220,6 +8224,7 @@ module Aws::EC2
|
|
|
8220
8224
|
|
|
8221
8225
|
class EnableFastSnapshotRestoreStateErrorItem
|
|
8222
8226
|
attr_accessor availability_zone: ::String
|
|
8227
|
+
attr_accessor availability_zone_id: ::String
|
|
8223
8228
|
attr_accessor error: Types::EnableFastSnapshotRestoreStateError
|
|
8224
8229
|
SENSITIVE: []
|
|
8225
8230
|
end
|
|
@@ -8227,6 +8232,7 @@ module Aws::EC2
|
|
|
8227
8232
|
class EnableFastSnapshotRestoreSuccessItem
|
|
8228
8233
|
attr_accessor snapshot_id: ::String
|
|
8229
8234
|
attr_accessor availability_zone: ::String
|
|
8235
|
+
attr_accessor availability_zone_id: ::String
|
|
8230
8236
|
attr_accessor state: ("enabling" | "optimizing" | "enabled" | "disabling" | "disabled")
|
|
8231
8237
|
attr_accessor state_transition_reason: ::String
|
|
8232
8238
|
attr_accessor owner_id: ::String
|
|
@@ -8241,6 +8247,7 @@ module Aws::EC2
|
|
|
8241
8247
|
|
|
8242
8248
|
class EnableFastSnapshotRestoresRequest
|
|
8243
8249
|
attr_accessor availability_zones: ::Array[::String]
|
|
8250
|
+
attr_accessor availability_zone_ids: ::Array[::String]
|
|
8244
8251
|
attr_accessor source_snapshot_ids: ::Array[::String]
|
|
8245
8252
|
attr_accessor dry_run: bool
|
|
8246
8253
|
SENSITIVE: []
|