aws-sdk-ec2 1.117.0 → 1.118.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/lib/aws-sdk-ec2.rb +2 -1
- data/lib/aws-sdk-ec2/client.rb +208 -5
- data/lib/aws-sdk-ec2/client_api.rb +169 -0
- data/lib/aws-sdk-ec2/nat_gateway.rb +369 -0
- data/lib/aws-sdk-ec2/resource.rb +97 -0
- data/lib/aws-sdk-ec2/snapshot.rb +1 -0
- data/lib/aws-sdk-ec2/subnet.rb +58 -0
- data/lib/aws-sdk-ec2/types.rb +532 -37
- data/lib/aws-sdk-ec2/volume.rb +6 -0
- data/lib/aws-sdk-ec2/waiters.rb +43 -0
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a28162fa8a14e2263a8026d59a1dffbb40f35c2d
|
4
|
+
data.tar.gz: b06662263e1c83b1f49d2aee15b94577137043bb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 18f0e436e70c33b9754d4cf836730136907f7b9cbb2ebb42be25d262d8558efe4d444384eedc4ef6116bd96f98e5b4a51981a60de6b51e116f1f79311ebbd70c
|
7
|
+
data.tar.gz: b486d8acfda341d87ea0e4009c825250b7821dcc3181381e94ec434e1b61e384da16b681e32f382192f090713ac41df3c6c05e2e3e9f70f0052121f71b5ab2da
|
data/lib/aws-sdk-ec2.rb
CHANGED
@@ -22,6 +22,7 @@ require_relative 'aws-sdk-ec2/internet_gateway'
|
|
22
22
|
require_relative 'aws-sdk-ec2/key_pair'
|
23
23
|
require_relative 'aws-sdk-ec2/key_pair_info'
|
24
24
|
require_relative 'aws-sdk-ec2/network_acl'
|
25
|
+
require_relative 'aws-sdk-ec2/nat_gateway'
|
25
26
|
require_relative 'aws-sdk-ec2/network_interface'
|
26
27
|
require_relative 'aws-sdk-ec2/network_interface_association'
|
27
28
|
require_relative 'aws-sdk-ec2/placement_group'
|
@@ -65,6 +66,6 @@ require_relative 'aws-sdk-ec2/customizations'
|
|
65
66
|
# @service
|
66
67
|
module Aws::EC2
|
67
68
|
|
68
|
-
GEM_VERSION = '1.
|
69
|
+
GEM_VERSION = '1.118.0'
|
69
70
|
|
70
71
|
end
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
@@ -3117,6 +3117,7 @@ module Aws::EC2
|
|
3117
3117
|
# The ID of the EBS snapshot to copy.
|
3118
3118
|
#
|
3119
3119
|
# @option params [Array<Types::TagSpecification>] :tag_specifications
|
3120
|
+
# The tags to apply to the new snapshot.
|
3120
3121
|
#
|
3121
3122
|
# @option params [Boolean] :dry_run
|
3122
3123
|
# Checks whether you have the required permissions for the action,
|
@@ -6663,10 +6664,10 @@ module Aws::EC2
|
|
6663
6664
|
# Tags to apply to every snapshot specified by the instance.
|
6664
6665
|
#
|
6665
6666
|
# @option params [Boolean] :dry_run
|
6666
|
-
# Checks whether you have the required permissions for the action
|
6667
|
-
# without actually making the request
|
6668
|
-
# you have the required permissions, the error response is
|
6669
|
-
# DryRunOperation
|
6667
|
+
# Checks whether you have the required permissions for the action,
|
6668
|
+
# without actually making the request, and provides an error response.
|
6669
|
+
# If you have the required permissions, the error response is
|
6670
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
6670
6671
|
#
|
6671
6672
|
# @option params [String] :copy_tags_from_source
|
6672
6673
|
# Copies the tags from the specified volume to corresponding snapshot.
|
@@ -7892,6 +7893,7 @@ module Aws::EC2
|
|
7892
7893
|
# * {Types::Volume#iops #iops} => Integer
|
7893
7894
|
# * {Types::Volume#tags #tags} => Array<Types::Tag>
|
7894
7895
|
# * {Types::Volume#volume_type #volume_type} => String
|
7896
|
+
# * {Types::Volume#fast_restored #fast_restored} => Boolean
|
7895
7897
|
#
|
7896
7898
|
#
|
7897
7899
|
# @example Example: To create a new volume
|
@@ -7991,6 +7993,7 @@ module Aws::EC2
|
|
7991
7993
|
# resp.tags[0].key #=> String
|
7992
7994
|
# resp.tags[0].value #=> String
|
7993
7995
|
# resp.volume_type #=> String, one of "standard", "io1", "gp2", "sc1", "st1"
|
7996
|
+
# resp.fast_restored #=> Boolean
|
7994
7997
|
#
|
7995
7998
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVolume AWS API Documentation
|
7996
7999
|
#
|
@@ -12521,6 +12524,79 @@ module Aws::EC2
|
|
12521
12524
|
req.send_request(options)
|
12522
12525
|
end
|
12523
12526
|
|
12527
|
+
# Describes the state of fast snapshot restores for your snapshots.
|
12528
|
+
#
|
12529
|
+
# @option params [Array<Types::Filter>] :filters
|
12530
|
+
# The filters. The possible values are:
|
12531
|
+
#
|
12532
|
+
# * `availability-zone`\: The Availability Zone of the snapshot.
|
12533
|
+
#
|
12534
|
+
# * `owner-id`\: The ID of the AWS account that owns the snapshot.
|
12535
|
+
#
|
12536
|
+
# * `snapshot-id`\: The ID of the snapshot.
|
12537
|
+
#
|
12538
|
+
# * `state`\: The state of fast snapshot restores for the snapshot
|
12539
|
+
# (`enabling` \| `optimizing` \| `enabled` \| `disabling` \|
|
12540
|
+
# `disabled`).
|
12541
|
+
#
|
12542
|
+
# @option params [Integer] :max_results
|
12543
|
+
# The maximum number of results to return with a single call. To
|
12544
|
+
# retrieve the remaining results, make another call with the returned
|
12545
|
+
# `nextToken` value.
|
12546
|
+
#
|
12547
|
+
# @option params [String] :next_token
|
12548
|
+
# The token for the next page of results.
|
12549
|
+
#
|
12550
|
+
# @option params [Boolean] :dry_run
|
12551
|
+
# Checks whether you have the required permissions for the action,
|
12552
|
+
# without actually making the request, and provides an error response.
|
12553
|
+
# If you have the required permissions, the error response is
|
12554
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
12555
|
+
#
|
12556
|
+
# @return [Types::DescribeFastSnapshotRestoresResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
12557
|
+
#
|
12558
|
+
# * {Types::DescribeFastSnapshotRestoresResult#fast_snapshot_restores #fast_snapshot_restores} => Array<Types::DescribeFastSnapshotRestoreSuccessItem>
|
12559
|
+
# * {Types::DescribeFastSnapshotRestoresResult#next_token #next_token} => String
|
12560
|
+
#
|
12561
|
+
# @example Request syntax with placeholder values
|
12562
|
+
#
|
12563
|
+
# resp = client.describe_fast_snapshot_restores({
|
12564
|
+
# filters: [
|
12565
|
+
# {
|
12566
|
+
# name: "String",
|
12567
|
+
# values: ["String"],
|
12568
|
+
# },
|
12569
|
+
# ],
|
12570
|
+
# max_results: 1,
|
12571
|
+
# next_token: "NextToken",
|
12572
|
+
# dry_run: false,
|
12573
|
+
# })
|
12574
|
+
#
|
12575
|
+
# @example Response structure
|
12576
|
+
#
|
12577
|
+
# resp.fast_snapshot_restores #=> Array
|
12578
|
+
# resp.fast_snapshot_restores[0].snapshot_id #=> String
|
12579
|
+
# resp.fast_snapshot_restores[0].availability_zone #=> String
|
12580
|
+
# resp.fast_snapshot_restores[0].state #=> String, one of "enabling", "optimizing", "enabled", "disabling", "disabled"
|
12581
|
+
# resp.fast_snapshot_restores[0].state_transition_reason #=> String
|
12582
|
+
# resp.fast_snapshot_restores[0].owner_id #=> String
|
12583
|
+
# resp.fast_snapshot_restores[0].owner_alias #=> String
|
12584
|
+
# resp.fast_snapshot_restores[0].enabling_time #=> Time
|
12585
|
+
# resp.fast_snapshot_restores[0].optimizing_time #=> Time
|
12586
|
+
# resp.fast_snapshot_restores[0].enabled_time #=> Time
|
12587
|
+
# resp.fast_snapshot_restores[0].disabling_time #=> Time
|
12588
|
+
# resp.fast_snapshot_restores[0].disabled_time #=> Time
|
12589
|
+
# resp.next_token #=> String
|
12590
|
+
#
|
12591
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeFastSnapshotRestores AWS API Documentation
|
12592
|
+
#
|
12593
|
+
# @overload describe_fast_snapshot_restores(params = {})
|
12594
|
+
# @param [Hash] params ({})
|
12595
|
+
def describe_fast_snapshot_restores(params = {}, options = {})
|
12596
|
+
req = build_request(:describe_fast_snapshot_restores, params)
|
12597
|
+
req.send_request(options)
|
12598
|
+
end
|
12599
|
+
|
12524
12600
|
# Describes the events for the specified EC2 Fleet during the specified
|
12525
12601
|
# time.
|
12526
12602
|
#
|
@@ -20943,6 +21019,7 @@ module Aws::EC2
|
|
20943
21019
|
# resp.volumes[0].tags[0].key #=> String
|
20944
21020
|
# resp.volumes[0].tags[0].value #=> String
|
20945
21021
|
# resp.volumes[0].volume_type #=> String, one of "standard", "io1", "gp2", "sc1", "st1"
|
21022
|
+
# resp.volumes[0].fast_restored #=> Boolean
|
20946
21023
|
# resp.next_token #=> String
|
20947
21024
|
#
|
20948
21025
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVolumes AWS API Documentation
|
@@ -22595,6 +22672,65 @@ module Aws::EC2
|
|
22595
22672
|
req.send_request(options)
|
22596
22673
|
end
|
22597
22674
|
|
22675
|
+
# Disables fast snapshot restores for the specified snapshots in the
|
22676
|
+
# specified Availability Zones.
|
22677
|
+
#
|
22678
|
+
# @option params [required, Array<String>] :availability_zones
|
22679
|
+
# One or more Availability Zones. For example, `us-east-2a`.
|
22680
|
+
#
|
22681
|
+
# @option params [required, Array<String>] :source_snapshot_ids
|
22682
|
+
# The IDs of one or more snapshots. For example,
|
22683
|
+
# `snap-1234567890abcdef0`.
|
22684
|
+
#
|
22685
|
+
# @option params [Boolean] :dry_run
|
22686
|
+
# Checks whether you have the required permissions for the action,
|
22687
|
+
# without actually making the request, and provides an error response.
|
22688
|
+
# If you have the required permissions, the error response is
|
22689
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
22690
|
+
#
|
22691
|
+
# @return [Types::DisableFastSnapshotRestoresResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
22692
|
+
#
|
22693
|
+
# * {Types::DisableFastSnapshotRestoresResult#successful #successful} => Array<Types::DisableFastSnapshotRestoreSuccessItem>
|
22694
|
+
# * {Types::DisableFastSnapshotRestoresResult#unsuccessful #unsuccessful} => Array<Types::DisableFastSnapshotRestoreErrorItem>
|
22695
|
+
#
|
22696
|
+
# @example Request syntax with placeholder values
|
22697
|
+
#
|
22698
|
+
# resp = client.disable_fast_snapshot_restores({
|
22699
|
+
# availability_zones: ["String"], # required
|
22700
|
+
# source_snapshot_ids: ["String"], # required
|
22701
|
+
# dry_run: false,
|
22702
|
+
# })
|
22703
|
+
#
|
22704
|
+
# @example Response structure
|
22705
|
+
#
|
22706
|
+
# resp.successful #=> Array
|
22707
|
+
# resp.successful[0].snapshot_id #=> String
|
22708
|
+
# resp.successful[0].availability_zone #=> String
|
22709
|
+
# resp.successful[0].state #=> String, one of "enabling", "optimizing", "enabled", "disabling", "disabled"
|
22710
|
+
# resp.successful[0].state_transition_reason #=> String
|
22711
|
+
# resp.successful[0].owner_id #=> String
|
22712
|
+
# resp.successful[0].owner_alias #=> String
|
22713
|
+
# resp.successful[0].enabling_time #=> Time
|
22714
|
+
# resp.successful[0].optimizing_time #=> Time
|
22715
|
+
# resp.successful[0].enabled_time #=> Time
|
22716
|
+
# resp.successful[0].disabling_time #=> Time
|
22717
|
+
# resp.successful[0].disabled_time #=> Time
|
22718
|
+
# resp.unsuccessful #=> Array
|
22719
|
+
# resp.unsuccessful[0].snapshot_id #=> String
|
22720
|
+
# resp.unsuccessful[0].fast_snapshot_restore_state_errors #=> Array
|
22721
|
+
# resp.unsuccessful[0].fast_snapshot_restore_state_errors[0].availability_zone #=> String
|
22722
|
+
# resp.unsuccessful[0].fast_snapshot_restore_state_errors[0].error.code #=> String
|
22723
|
+
# resp.unsuccessful[0].fast_snapshot_restore_state_errors[0].error.message #=> String
|
22724
|
+
#
|
22725
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisableFastSnapshotRestores AWS API Documentation
|
22726
|
+
#
|
22727
|
+
# @overload disable_fast_snapshot_restores(params = {})
|
22728
|
+
# @param [Hash] params ({})
|
22729
|
+
def disable_fast_snapshot_restores(params = {}, options = {})
|
22730
|
+
req = build_request(:disable_fast_snapshot_restores, params)
|
22731
|
+
req.send_request(options)
|
22732
|
+
end
|
22733
|
+
|
22598
22734
|
# Disables the specified resource attachment from propagating routes to
|
22599
22735
|
# the specified propagation route table.
|
22600
22736
|
#
|
@@ -23147,6 +23283,71 @@ module Aws::EC2
|
|
23147
23283
|
req.send_request(options)
|
23148
23284
|
end
|
23149
23285
|
|
23286
|
+
# Enables fast snapshot restores for the specified snapshots in the
|
23287
|
+
# specified Availability Zones.
|
23288
|
+
#
|
23289
|
+
# You get the full benefit of fast snapshot restores after they enter
|
23290
|
+
# the `enabled` state. To get the current state of fast snapshot
|
23291
|
+
# restores, use DescribeFastSnapshotRestores. To disable fast snapshot
|
23292
|
+
# restores, use DisableFastSnapshotRestores.
|
23293
|
+
#
|
23294
|
+
# @option params [required, Array<String>] :availability_zones
|
23295
|
+
# One or more Availability Zones. For example, `us-east-2a`.
|
23296
|
+
#
|
23297
|
+
# @option params [required, Array<String>] :source_snapshot_ids
|
23298
|
+
# The IDs of one or more snapshots. For example,
|
23299
|
+
# `snap-1234567890abcdef0`. You can specify a snapshot that was shared
|
23300
|
+
# with you from another AWS account.
|
23301
|
+
#
|
23302
|
+
# @option params [Boolean] :dry_run
|
23303
|
+
# Checks whether you have the required permissions for the action,
|
23304
|
+
# without actually making the request, and provides an error response.
|
23305
|
+
# If you have the required permissions, the error response is
|
23306
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
23307
|
+
#
|
23308
|
+
# @return [Types::EnableFastSnapshotRestoresResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
23309
|
+
#
|
23310
|
+
# * {Types::EnableFastSnapshotRestoresResult#successful #successful} => Array<Types::EnableFastSnapshotRestoreSuccessItem>
|
23311
|
+
# * {Types::EnableFastSnapshotRestoresResult#unsuccessful #unsuccessful} => Array<Types::EnableFastSnapshotRestoreErrorItem>
|
23312
|
+
#
|
23313
|
+
# @example Request syntax with placeholder values
|
23314
|
+
#
|
23315
|
+
# resp = client.enable_fast_snapshot_restores({
|
23316
|
+
# availability_zones: ["String"], # required
|
23317
|
+
# source_snapshot_ids: ["String"], # required
|
23318
|
+
# dry_run: false,
|
23319
|
+
# })
|
23320
|
+
#
|
23321
|
+
# @example Response structure
|
23322
|
+
#
|
23323
|
+
# resp.successful #=> Array
|
23324
|
+
# resp.successful[0].snapshot_id #=> String
|
23325
|
+
# resp.successful[0].availability_zone #=> String
|
23326
|
+
# resp.successful[0].state #=> String, one of "enabling", "optimizing", "enabled", "disabling", "disabled"
|
23327
|
+
# resp.successful[0].state_transition_reason #=> String
|
23328
|
+
# resp.successful[0].owner_id #=> String
|
23329
|
+
# resp.successful[0].owner_alias #=> String
|
23330
|
+
# resp.successful[0].enabling_time #=> Time
|
23331
|
+
# resp.successful[0].optimizing_time #=> Time
|
23332
|
+
# resp.successful[0].enabled_time #=> Time
|
23333
|
+
# resp.successful[0].disabling_time #=> Time
|
23334
|
+
# resp.successful[0].disabled_time #=> Time
|
23335
|
+
# resp.unsuccessful #=> Array
|
23336
|
+
# resp.unsuccessful[0].snapshot_id #=> String
|
23337
|
+
# resp.unsuccessful[0].fast_snapshot_restore_state_errors #=> Array
|
23338
|
+
# resp.unsuccessful[0].fast_snapshot_restore_state_errors[0].availability_zone #=> String
|
23339
|
+
# resp.unsuccessful[0].fast_snapshot_restore_state_errors[0].error.code #=> String
|
23340
|
+
# resp.unsuccessful[0].fast_snapshot_restore_state_errors[0].error.message #=> String
|
23341
|
+
#
|
23342
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EnableFastSnapshotRestores AWS API Documentation
|
23343
|
+
#
|
23344
|
+
# @overload enable_fast_snapshot_restores(params = {})
|
23345
|
+
# @param [Hash] params ({})
|
23346
|
+
def enable_fast_snapshot_restores(params = {}, options = {})
|
23347
|
+
req = build_request(:enable_fast_snapshot_restores, params)
|
23348
|
+
req.send_request(options)
|
23349
|
+
end
|
23350
|
+
|
23150
23351
|
# Enables the specified attachment to propagate routes to the specified
|
23151
23352
|
# propagation route table.
|
23152
23353
|
#
|
@@ -32872,7 +33073,7 @@ module Aws::EC2
|
|
32872
33073
|
params: params,
|
32873
33074
|
config: config)
|
32874
33075
|
context[:gem_name] = 'aws-sdk-ec2'
|
32875
|
-
context[:gem_version] = '1.
|
33076
|
+
context[:gem_version] = '1.118.0'
|
32876
33077
|
Seahorse::Client::Request.new(handlers, context)
|
32877
33078
|
end
|
32878
33079
|
|
@@ -32958,6 +33159,7 @@ module Aws::EC2
|
|
32958
33159
|
# | nat_gateway_available | {#describe_nat_gateways} | 15 | 40 |
|
32959
33160
|
# | network_interface_available | {#describe_network_interfaces} | 20 | 10 |
|
32960
33161
|
# | password_data_available | {#get_password_data} | 15 | 40 |
|
33162
|
+
# | security_group_exists | {#describe_security_groups} | 5 | 6 |
|
32961
33163
|
# | snapshot_completed | {#describe_snapshots} | 15 | 40 |
|
32962
33164
|
# | spot_instance_request_fulfilled | {#describe_spot_instance_requests} | 15 | 40 |
|
32963
33165
|
# | subnet_available | {#describe_subnets} | 15 | 40 |
|
@@ -33039,6 +33241,7 @@ module Aws::EC2
|
|
33039
33241
|
nat_gateway_available: Waiters::NatGatewayAvailable,
|
33040
33242
|
network_interface_available: Waiters::NetworkInterfaceAvailable,
|
33041
33243
|
password_data_available: Waiters::PasswordDataAvailable,
|
33244
|
+
security_group_exists: Waiters::SecurityGroupExists,
|
33042
33245
|
snapshot_completed: Waiters::SnapshotCompleted,
|
33043
33246
|
spot_instance_request_fulfilled: Waiters::SpotInstanceRequestFulfilled,
|
33044
33247
|
subnet_available: Waiters::SubnetAvailable,
|
@@ -98,6 +98,7 @@ module Aws::EC2
|
|
98
98
|
AvailabilityZoneMessage = Shapes::StructureShape.new(name: 'AvailabilityZoneMessage')
|
99
99
|
AvailabilityZoneMessageList = Shapes::ListShape.new(name: 'AvailabilityZoneMessageList')
|
100
100
|
AvailabilityZoneState = Shapes::StringShape.new(name: 'AvailabilityZoneState')
|
101
|
+
AvailabilityZoneStringList = Shapes::ListShape.new(name: 'AvailabilityZoneStringList')
|
101
102
|
AvailableCapacity = Shapes::StructureShape.new(name: 'AvailableCapacity')
|
102
103
|
AvailableInstanceCapacityList = Shapes::ListShape.new(name: 'AvailableInstanceCapacityList')
|
103
104
|
BatchState = Shapes::StringShape.new(name: 'BatchState')
|
@@ -457,6 +458,11 @@ module Aws::EC2
|
|
457
458
|
DescribeExportImageTasksResult = Shapes::StructureShape.new(name: 'DescribeExportImageTasksResult')
|
458
459
|
DescribeExportTasksRequest = Shapes::StructureShape.new(name: 'DescribeExportTasksRequest')
|
459
460
|
DescribeExportTasksResult = Shapes::StructureShape.new(name: 'DescribeExportTasksResult')
|
461
|
+
DescribeFastSnapshotRestoreSuccessItem = Shapes::StructureShape.new(name: 'DescribeFastSnapshotRestoreSuccessItem')
|
462
|
+
DescribeFastSnapshotRestoreSuccessSet = Shapes::ListShape.new(name: 'DescribeFastSnapshotRestoreSuccessSet')
|
463
|
+
DescribeFastSnapshotRestoresMaxResults = Shapes::IntegerShape.new(name: 'DescribeFastSnapshotRestoresMaxResults')
|
464
|
+
DescribeFastSnapshotRestoresRequest = Shapes::StructureShape.new(name: 'DescribeFastSnapshotRestoresRequest')
|
465
|
+
DescribeFastSnapshotRestoresResult = Shapes::StructureShape.new(name: 'DescribeFastSnapshotRestoresResult')
|
460
466
|
DescribeFleetError = Shapes::StructureShape.new(name: 'DescribeFleetError')
|
461
467
|
DescribeFleetHistoryRequest = Shapes::StructureShape.new(name: 'DescribeFleetHistoryRequest')
|
462
468
|
DescribeFleetHistoryResult = Shapes::StructureShape.new(name: 'DescribeFleetHistoryResult')
|
@@ -659,6 +665,15 @@ module Aws::EC2
|
|
659
665
|
DirectoryServiceAuthenticationRequest = Shapes::StructureShape.new(name: 'DirectoryServiceAuthenticationRequest')
|
660
666
|
DisableEbsEncryptionByDefaultRequest = Shapes::StructureShape.new(name: 'DisableEbsEncryptionByDefaultRequest')
|
661
667
|
DisableEbsEncryptionByDefaultResult = Shapes::StructureShape.new(name: 'DisableEbsEncryptionByDefaultResult')
|
668
|
+
DisableFastSnapshotRestoreErrorItem = Shapes::StructureShape.new(name: 'DisableFastSnapshotRestoreErrorItem')
|
669
|
+
DisableFastSnapshotRestoreErrorSet = Shapes::ListShape.new(name: 'DisableFastSnapshotRestoreErrorSet')
|
670
|
+
DisableFastSnapshotRestoreStateError = Shapes::StructureShape.new(name: 'DisableFastSnapshotRestoreStateError')
|
671
|
+
DisableFastSnapshotRestoreStateErrorItem = Shapes::StructureShape.new(name: 'DisableFastSnapshotRestoreStateErrorItem')
|
672
|
+
DisableFastSnapshotRestoreStateErrorSet = Shapes::ListShape.new(name: 'DisableFastSnapshotRestoreStateErrorSet')
|
673
|
+
DisableFastSnapshotRestoreSuccessItem = Shapes::StructureShape.new(name: 'DisableFastSnapshotRestoreSuccessItem')
|
674
|
+
DisableFastSnapshotRestoreSuccessSet = Shapes::ListShape.new(name: 'DisableFastSnapshotRestoreSuccessSet')
|
675
|
+
DisableFastSnapshotRestoresRequest = Shapes::StructureShape.new(name: 'DisableFastSnapshotRestoresRequest')
|
676
|
+
DisableFastSnapshotRestoresResult = Shapes::StructureShape.new(name: 'DisableFastSnapshotRestoresResult')
|
662
677
|
DisableTransitGatewayRouteTablePropagationRequest = Shapes::StructureShape.new(name: 'DisableTransitGatewayRouteTablePropagationRequest')
|
663
678
|
DisableTransitGatewayRouteTablePropagationResult = Shapes::StructureShape.new(name: 'DisableTransitGatewayRouteTablePropagationResult')
|
664
679
|
DisableVgwRoutePropagationRequest = Shapes::StructureShape.new(name: 'DisableVgwRoutePropagationRequest')
|
@@ -716,6 +731,15 @@ module Aws::EC2
|
|
716
731
|
ElasticInferenceAccelerators = Shapes::ListShape.new(name: 'ElasticInferenceAccelerators')
|
717
732
|
EnableEbsEncryptionByDefaultRequest = Shapes::StructureShape.new(name: 'EnableEbsEncryptionByDefaultRequest')
|
718
733
|
EnableEbsEncryptionByDefaultResult = Shapes::StructureShape.new(name: 'EnableEbsEncryptionByDefaultResult')
|
734
|
+
EnableFastSnapshotRestoreErrorItem = Shapes::StructureShape.new(name: 'EnableFastSnapshotRestoreErrorItem')
|
735
|
+
EnableFastSnapshotRestoreErrorSet = Shapes::ListShape.new(name: 'EnableFastSnapshotRestoreErrorSet')
|
736
|
+
EnableFastSnapshotRestoreStateError = Shapes::StructureShape.new(name: 'EnableFastSnapshotRestoreStateError')
|
737
|
+
EnableFastSnapshotRestoreStateErrorItem = Shapes::StructureShape.new(name: 'EnableFastSnapshotRestoreStateErrorItem')
|
738
|
+
EnableFastSnapshotRestoreStateErrorSet = Shapes::ListShape.new(name: 'EnableFastSnapshotRestoreStateErrorSet')
|
739
|
+
EnableFastSnapshotRestoreSuccessItem = Shapes::StructureShape.new(name: 'EnableFastSnapshotRestoreSuccessItem')
|
740
|
+
EnableFastSnapshotRestoreSuccessSet = Shapes::ListShape.new(name: 'EnableFastSnapshotRestoreSuccessSet')
|
741
|
+
EnableFastSnapshotRestoresRequest = Shapes::StructureShape.new(name: 'EnableFastSnapshotRestoresRequest')
|
742
|
+
EnableFastSnapshotRestoresResult = Shapes::StructureShape.new(name: 'EnableFastSnapshotRestoresResult')
|
719
743
|
EnableTransitGatewayRouteTablePropagationRequest = Shapes::StructureShape.new(name: 'EnableTransitGatewayRouteTablePropagationRequest')
|
720
744
|
EnableTransitGatewayRouteTablePropagationResult = Shapes::StructureShape.new(name: 'EnableTransitGatewayRouteTablePropagationResult')
|
721
745
|
EnableVgwRoutePropagationRequest = Shapes::StructureShape.new(name: 'EnableVgwRoutePropagationRequest')
|
@@ -754,6 +778,7 @@ module Aws::EC2
|
|
754
778
|
ExportTransitGatewayRoutesResult = Shapes::StructureShape.new(name: 'ExportTransitGatewayRoutesResult')
|
755
779
|
FailedQueuedPurchaseDeletion = Shapes::StructureShape.new(name: 'FailedQueuedPurchaseDeletion')
|
756
780
|
FailedQueuedPurchaseDeletionSet = Shapes::ListShape.new(name: 'FailedQueuedPurchaseDeletionSet')
|
781
|
+
FastSnapshotRestoreStateCode = Shapes::StringShape.new(name: 'FastSnapshotRestoreStateCode')
|
757
782
|
Filter = Shapes::StructureShape.new(name: 'Filter')
|
758
783
|
FilterList = Shapes::ListShape.new(name: 'FilterList')
|
759
784
|
FleetActivityStatus = Shapes::StringShape.new(name: 'FleetActivityStatus')
|
@@ -1998,6 +2023,8 @@ module Aws::EC2
|
|
1998
2023
|
|
1999
2024
|
AvailabilityZoneMessageList.member = Shapes::ShapeRef.new(shape: AvailabilityZoneMessage, location_name: "item")
|
2000
2025
|
|
2026
|
+
AvailabilityZoneStringList.member = Shapes::ShapeRef.new(shape: String, location_name: "AvailabilityZone")
|
2027
|
+
|
2001
2028
|
AvailableCapacity.add_member(:available_instance_capacity, Shapes::ShapeRef.new(shape: AvailableInstanceCapacityList, location_name: "availableInstanceCapacity"))
|
2002
2029
|
AvailableCapacity.add_member(:available_v_cpus, Shapes::ShapeRef.new(shape: Integer, location_name: "availableVCpus"))
|
2003
2030
|
AvailableCapacity.struct_class = Types::AvailableCapacity
|
@@ -3448,6 +3475,31 @@ module Aws::EC2
|
|
3448
3475
|
DescribeExportTasksResult.add_member(:export_tasks, Shapes::ShapeRef.new(shape: ExportTaskList, location_name: "exportTaskSet"))
|
3449
3476
|
DescribeExportTasksResult.struct_class = Types::DescribeExportTasksResult
|
3450
3477
|
|
3478
|
+
DescribeFastSnapshotRestoreSuccessItem.add_member(:snapshot_id, Shapes::ShapeRef.new(shape: String, location_name: "snapshotId"))
|
3479
|
+
DescribeFastSnapshotRestoreSuccessItem.add_member(:availability_zone, Shapes::ShapeRef.new(shape: String, location_name: "availabilityZone"))
|
3480
|
+
DescribeFastSnapshotRestoreSuccessItem.add_member(:state, Shapes::ShapeRef.new(shape: FastSnapshotRestoreStateCode, location_name: "state"))
|
3481
|
+
DescribeFastSnapshotRestoreSuccessItem.add_member(:state_transition_reason, Shapes::ShapeRef.new(shape: String, location_name: "stateTransitionReason"))
|
3482
|
+
DescribeFastSnapshotRestoreSuccessItem.add_member(:owner_id, Shapes::ShapeRef.new(shape: String, location_name: "ownerId"))
|
3483
|
+
DescribeFastSnapshotRestoreSuccessItem.add_member(:owner_alias, Shapes::ShapeRef.new(shape: String, location_name: "ownerAlias"))
|
3484
|
+
DescribeFastSnapshotRestoreSuccessItem.add_member(:enabling_time, Shapes::ShapeRef.new(shape: MillisecondDateTime, location_name: "enablingTime"))
|
3485
|
+
DescribeFastSnapshotRestoreSuccessItem.add_member(:optimizing_time, Shapes::ShapeRef.new(shape: MillisecondDateTime, location_name: "optimizingTime"))
|
3486
|
+
DescribeFastSnapshotRestoreSuccessItem.add_member(:enabled_time, Shapes::ShapeRef.new(shape: MillisecondDateTime, location_name: "enabledTime"))
|
3487
|
+
DescribeFastSnapshotRestoreSuccessItem.add_member(:disabling_time, Shapes::ShapeRef.new(shape: MillisecondDateTime, location_name: "disablingTime"))
|
3488
|
+
DescribeFastSnapshotRestoreSuccessItem.add_member(:disabled_time, Shapes::ShapeRef.new(shape: MillisecondDateTime, location_name: "disabledTime"))
|
3489
|
+
DescribeFastSnapshotRestoreSuccessItem.struct_class = Types::DescribeFastSnapshotRestoreSuccessItem
|
3490
|
+
|
3491
|
+
DescribeFastSnapshotRestoreSuccessSet.member = Shapes::ShapeRef.new(shape: DescribeFastSnapshotRestoreSuccessItem, location_name: "item")
|
3492
|
+
|
3493
|
+
DescribeFastSnapshotRestoresRequest.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "Filter"))
|
3494
|
+
DescribeFastSnapshotRestoresRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: DescribeFastSnapshotRestoresMaxResults, location_name: "MaxResults"))
|
3495
|
+
DescribeFastSnapshotRestoresRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
3496
|
+
DescribeFastSnapshotRestoresRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
3497
|
+
DescribeFastSnapshotRestoresRequest.struct_class = Types::DescribeFastSnapshotRestoresRequest
|
3498
|
+
|
3499
|
+
DescribeFastSnapshotRestoresResult.add_member(:fast_snapshot_restores, Shapes::ShapeRef.new(shape: DescribeFastSnapshotRestoreSuccessSet, location_name: "fastSnapshotRestoreSet"))
|
3500
|
+
DescribeFastSnapshotRestoresResult.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
3501
|
+
DescribeFastSnapshotRestoresResult.struct_class = Types::DescribeFastSnapshotRestoresResult
|
3502
|
+
|
3451
3503
|
DescribeFleetError.add_member(:launch_template_and_overrides, Shapes::ShapeRef.new(shape: LaunchTemplateAndOverridesResponse, location_name: "launchTemplateAndOverrides"))
|
3452
3504
|
DescribeFleetError.add_member(:lifecycle, Shapes::ShapeRef.new(shape: InstanceLifecycle, location_name: "lifecycle"))
|
3453
3505
|
DescribeFleetError.add_member(:error_code, Shapes::ShapeRef.new(shape: String, location_name: "errorCode"))
|
@@ -4360,6 +4412,46 @@ module Aws::EC2
|
|
4360
4412
|
DisableEbsEncryptionByDefaultResult.add_member(:ebs_encryption_by_default, Shapes::ShapeRef.new(shape: Boolean, location_name: "ebsEncryptionByDefault"))
|
4361
4413
|
DisableEbsEncryptionByDefaultResult.struct_class = Types::DisableEbsEncryptionByDefaultResult
|
4362
4414
|
|
4415
|
+
DisableFastSnapshotRestoreErrorItem.add_member(:snapshot_id, Shapes::ShapeRef.new(shape: String, location_name: "snapshotId"))
|
4416
|
+
DisableFastSnapshotRestoreErrorItem.add_member(:fast_snapshot_restore_state_errors, Shapes::ShapeRef.new(shape: DisableFastSnapshotRestoreStateErrorSet, location_name: "fastSnapshotRestoreStateErrorSet"))
|
4417
|
+
DisableFastSnapshotRestoreErrorItem.struct_class = Types::DisableFastSnapshotRestoreErrorItem
|
4418
|
+
|
4419
|
+
DisableFastSnapshotRestoreErrorSet.member = Shapes::ShapeRef.new(shape: DisableFastSnapshotRestoreErrorItem, location_name: "item")
|
4420
|
+
|
4421
|
+
DisableFastSnapshotRestoreStateError.add_member(:code, Shapes::ShapeRef.new(shape: String, location_name: "code"))
|
4422
|
+
DisableFastSnapshotRestoreStateError.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
4423
|
+
DisableFastSnapshotRestoreStateError.struct_class = Types::DisableFastSnapshotRestoreStateError
|
4424
|
+
|
4425
|
+
DisableFastSnapshotRestoreStateErrorItem.add_member(:availability_zone, Shapes::ShapeRef.new(shape: String, location_name: "availabilityZone"))
|
4426
|
+
DisableFastSnapshotRestoreStateErrorItem.add_member(:error, Shapes::ShapeRef.new(shape: DisableFastSnapshotRestoreStateError, location_name: "error"))
|
4427
|
+
DisableFastSnapshotRestoreStateErrorItem.struct_class = Types::DisableFastSnapshotRestoreStateErrorItem
|
4428
|
+
|
4429
|
+
DisableFastSnapshotRestoreStateErrorSet.member = Shapes::ShapeRef.new(shape: DisableFastSnapshotRestoreStateErrorItem, location_name: "item")
|
4430
|
+
|
4431
|
+
DisableFastSnapshotRestoreSuccessItem.add_member(:snapshot_id, Shapes::ShapeRef.new(shape: String, location_name: "snapshotId"))
|
4432
|
+
DisableFastSnapshotRestoreSuccessItem.add_member(:availability_zone, Shapes::ShapeRef.new(shape: String, location_name: "availabilityZone"))
|
4433
|
+
DisableFastSnapshotRestoreSuccessItem.add_member(:state, Shapes::ShapeRef.new(shape: FastSnapshotRestoreStateCode, location_name: "state"))
|
4434
|
+
DisableFastSnapshotRestoreSuccessItem.add_member(:state_transition_reason, Shapes::ShapeRef.new(shape: String, location_name: "stateTransitionReason"))
|
4435
|
+
DisableFastSnapshotRestoreSuccessItem.add_member(:owner_id, Shapes::ShapeRef.new(shape: String, location_name: "ownerId"))
|
4436
|
+
DisableFastSnapshotRestoreSuccessItem.add_member(:owner_alias, Shapes::ShapeRef.new(shape: String, location_name: "ownerAlias"))
|
4437
|
+
DisableFastSnapshotRestoreSuccessItem.add_member(:enabling_time, Shapes::ShapeRef.new(shape: MillisecondDateTime, location_name: "enablingTime"))
|
4438
|
+
DisableFastSnapshotRestoreSuccessItem.add_member(:optimizing_time, Shapes::ShapeRef.new(shape: MillisecondDateTime, location_name: "optimizingTime"))
|
4439
|
+
DisableFastSnapshotRestoreSuccessItem.add_member(:enabled_time, Shapes::ShapeRef.new(shape: MillisecondDateTime, location_name: "enabledTime"))
|
4440
|
+
DisableFastSnapshotRestoreSuccessItem.add_member(:disabling_time, Shapes::ShapeRef.new(shape: MillisecondDateTime, location_name: "disablingTime"))
|
4441
|
+
DisableFastSnapshotRestoreSuccessItem.add_member(:disabled_time, Shapes::ShapeRef.new(shape: MillisecondDateTime, location_name: "disabledTime"))
|
4442
|
+
DisableFastSnapshotRestoreSuccessItem.struct_class = Types::DisableFastSnapshotRestoreSuccessItem
|
4443
|
+
|
4444
|
+
DisableFastSnapshotRestoreSuccessSet.member = Shapes::ShapeRef.new(shape: DisableFastSnapshotRestoreSuccessItem, location_name: "item")
|
4445
|
+
|
4446
|
+
DisableFastSnapshotRestoresRequest.add_member(:availability_zones, Shapes::ShapeRef.new(shape: AvailabilityZoneStringList, required: true, location_name: "AvailabilityZone"))
|
4447
|
+
DisableFastSnapshotRestoresRequest.add_member(:source_snapshot_ids, Shapes::ShapeRef.new(shape: SnapshotIdStringList, required: true, location_name: "SourceSnapshotId"))
|
4448
|
+
DisableFastSnapshotRestoresRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
4449
|
+
DisableFastSnapshotRestoresRequest.struct_class = Types::DisableFastSnapshotRestoresRequest
|
4450
|
+
|
4451
|
+
DisableFastSnapshotRestoresResult.add_member(:successful, Shapes::ShapeRef.new(shape: DisableFastSnapshotRestoreSuccessSet, location_name: "successful"))
|
4452
|
+
DisableFastSnapshotRestoresResult.add_member(:unsuccessful, Shapes::ShapeRef.new(shape: DisableFastSnapshotRestoreErrorSet, location_name: "unsuccessful"))
|
4453
|
+
DisableFastSnapshotRestoresResult.struct_class = Types::DisableFastSnapshotRestoresResult
|
4454
|
+
|
4363
4455
|
DisableTransitGatewayRouteTablePropagationRequest.add_member(:transit_gateway_route_table_id, Shapes::ShapeRef.new(shape: TransitGatewayRouteTableId, required: true, location_name: "TransitGatewayRouteTableId"))
|
4364
4456
|
DisableTransitGatewayRouteTablePropagationRequest.add_member(:transit_gateway_attachment_id, Shapes::ShapeRef.new(shape: TransitGatewayAttachmentId, required: true, location_name: "TransitGatewayAttachmentId"))
|
4365
4457
|
DisableTransitGatewayRouteTablePropagationRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
@@ -4545,6 +4637,46 @@ module Aws::EC2
|
|
4545
4637
|
EnableEbsEncryptionByDefaultResult.add_member(:ebs_encryption_by_default, Shapes::ShapeRef.new(shape: Boolean, location_name: "ebsEncryptionByDefault"))
|
4546
4638
|
EnableEbsEncryptionByDefaultResult.struct_class = Types::EnableEbsEncryptionByDefaultResult
|
4547
4639
|
|
4640
|
+
EnableFastSnapshotRestoreErrorItem.add_member(:snapshot_id, Shapes::ShapeRef.new(shape: String, location_name: "snapshotId"))
|
4641
|
+
EnableFastSnapshotRestoreErrorItem.add_member(:fast_snapshot_restore_state_errors, Shapes::ShapeRef.new(shape: EnableFastSnapshotRestoreStateErrorSet, location_name: "fastSnapshotRestoreStateErrorSet"))
|
4642
|
+
EnableFastSnapshotRestoreErrorItem.struct_class = Types::EnableFastSnapshotRestoreErrorItem
|
4643
|
+
|
4644
|
+
EnableFastSnapshotRestoreErrorSet.member = Shapes::ShapeRef.new(shape: EnableFastSnapshotRestoreErrorItem, location_name: "item")
|
4645
|
+
|
4646
|
+
EnableFastSnapshotRestoreStateError.add_member(:code, Shapes::ShapeRef.new(shape: String, location_name: "code"))
|
4647
|
+
EnableFastSnapshotRestoreStateError.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
4648
|
+
EnableFastSnapshotRestoreStateError.struct_class = Types::EnableFastSnapshotRestoreStateError
|
4649
|
+
|
4650
|
+
EnableFastSnapshotRestoreStateErrorItem.add_member(:availability_zone, Shapes::ShapeRef.new(shape: String, location_name: "availabilityZone"))
|
4651
|
+
EnableFastSnapshotRestoreStateErrorItem.add_member(:error, Shapes::ShapeRef.new(shape: EnableFastSnapshotRestoreStateError, location_name: "error"))
|
4652
|
+
EnableFastSnapshotRestoreStateErrorItem.struct_class = Types::EnableFastSnapshotRestoreStateErrorItem
|
4653
|
+
|
4654
|
+
EnableFastSnapshotRestoreStateErrorSet.member = Shapes::ShapeRef.new(shape: EnableFastSnapshotRestoreStateErrorItem, location_name: "item")
|
4655
|
+
|
4656
|
+
EnableFastSnapshotRestoreSuccessItem.add_member(:snapshot_id, Shapes::ShapeRef.new(shape: String, location_name: "snapshotId"))
|
4657
|
+
EnableFastSnapshotRestoreSuccessItem.add_member(:availability_zone, Shapes::ShapeRef.new(shape: String, location_name: "availabilityZone"))
|
4658
|
+
EnableFastSnapshotRestoreSuccessItem.add_member(:state, Shapes::ShapeRef.new(shape: FastSnapshotRestoreStateCode, location_name: "state"))
|
4659
|
+
EnableFastSnapshotRestoreSuccessItem.add_member(:state_transition_reason, Shapes::ShapeRef.new(shape: String, location_name: "stateTransitionReason"))
|
4660
|
+
EnableFastSnapshotRestoreSuccessItem.add_member(:owner_id, Shapes::ShapeRef.new(shape: String, location_name: "ownerId"))
|
4661
|
+
EnableFastSnapshotRestoreSuccessItem.add_member(:owner_alias, Shapes::ShapeRef.new(shape: String, location_name: "ownerAlias"))
|
4662
|
+
EnableFastSnapshotRestoreSuccessItem.add_member(:enabling_time, Shapes::ShapeRef.new(shape: MillisecondDateTime, location_name: "enablingTime"))
|
4663
|
+
EnableFastSnapshotRestoreSuccessItem.add_member(:optimizing_time, Shapes::ShapeRef.new(shape: MillisecondDateTime, location_name: "optimizingTime"))
|
4664
|
+
EnableFastSnapshotRestoreSuccessItem.add_member(:enabled_time, Shapes::ShapeRef.new(shape: MillisecondDateTime, location_name: "enabledTime"))
|
4665
|
+
EnableFastSnapshotRestoreSuccessItem.add_member(:disabling_time, Shapes::ShapeRef.new(shape: MillisecondDateTime, location_name: "disablingTime"))
|
4666
|
+
EnableFastSnapshotRestoreSuccessItem.add_member(:disabled_time, Shapes::ShapeRef.new(shape: MillisecondDateTime, location_name: "disabledTime"))
|
4667
|
+
EnableFastSnapshotRestoreSuccessItem.struct_class = Types::EnableFastSnapshotRestoreSuccessItem
|
4668
|
+
|
4669
|
+
EnableFastSnapshotRestoreSuccessSet.member = Shapes::ShapeRef.new(shape: EnableFastSnapshotRestoreSuccessItem, location_name: "item")
|
4670
|
+
|
4671
|
+
EnableFastSnapshotRestoresRequest.add_member(:availability_zones, Shapes::ShapeRef.new(shape: AvailabilityZoneStringList, required: true, location_name: "AvailabilityZone"))
|
4672
|
+
EnableFastSnapshotRestoresRequest.add_member(:source_snapshot_ids, Shapes::ShapeRef.new(shape: SnapshotIdStringList, required: true, location_name: "SourceSnapshotId"))
|
4673
|
+
EnableFastSnapshotRestoresRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
4674
|
+
EnableFastSnapshotRestoresRequest.struct_class = Types::EnableFastSnapshotRestoresRequest
|
4675
|
+
|
4676
|
+
EnableFastSnapshotRestoresResult.add_member(:successful, Shapes::ShapeRef.new(shape: EnableFastSnapshotRestoreSuccessSet, location_name: "successful"))
|
4677
|
+
EnableFastSnapshotRestoresResult.add_member(:unsuccessful, Shapes::ShapeRef.new(shape: EnableFastSnapshotRestoreErrorSet, location_name: "unsuccessful"))
|
4678
|
+
EnableFastSnapshotRestoresResult.struct_class = Types::EnableFastSnapshotRestoresResult
|
4679
|
+
|
4548
4680
|
EnableTransitGatewayRouteTablePropagationRequest.add_member(:transit_gateway_route_table_id, Shapes::ShapeRef.new(shape: TransitGatewayRouteTableId, required: true, location_name: "TransitGatewayRouteTableId"))
|
4549
4681
|
EnableTransitGatewayRouteTablePropagationRequest.add_member(:transit_gateway_attachment_id, Shapes::ShapeRef.new(shape: TransitGatewayAttachmentId, required: true, location_name: "TransitGatewayAttachmentId"))
|
4550
4682
|
EnableTransitGatewayRouteTablePropagationRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
@@ -8127,6 +8259,7 @@ module Aws::EC2
|
|
8127
8259
|
Volume.add_member(:iops, Shapes::ShapeRef.new(shape: Integer, location_name: "iops"))
|
8128
8260
|
Volume.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tagSet"))
|
8129
8261
|
Volume.add_member(:volume_type, Shapes::ShapeRef.new(shape: VolumeType, location_name: "volumeType"))
|
8262
|
+
Volume.add_member(:fast_restored, Shapes::ShapeRef.new(shape: Boolean, location_name: "fastRestored"))
|
8130
8263
|
Volume.struct_class = Types::Volume
|
8131
8264
|
|
8132
8265
|
VolumeAttachment.add_member(:attach_time, Shapes::ShapeRef.new(shape: DateTime, location_name: "attachTime"))
|
@@ -9674,6 +9807,12 @@ module Aws::EC2
|
|
9674
9807
|
o.http_request_uri = "/"
|
9675
9808
|
o.input = Shapes::ShapeRef.new(shape: DescribeExportImageTasksRequest)
|
9676
9809
|
o.output = Shapes::ShapeRef.new(shape: DescribeExportImageTasksResult)
|
9810
|
+
o[:pager] = Aws::Pager.new(
|
9811
|
+
limit_key: "max_results",
|
9812
|
+
tokens: {
|
9813
|
+
"next_token" => "next_token"
|
9814
|
+
}
|
9815
|
+
)
|
9677
9816
|
end)
|
9678
9817
|
|
9679
9818
|
api.add_operation(:describe_export_tasks, Seahorse::Model::Operation.new.tap do |o|
|
@@ -9684,6 +9823,20 @@ module Aws::EC2
|
|
9684
9823
|
o.output = Shapes::ShapeRef.new(shape: DescribeExportTasksResult)
|
9685
9824
|
end)
|
9686
9825
|
|
9826
|
+
api.add_operation(:describe_fast_snapshot_restores, Seahorse::Model::Operation.new.tap do |o|
|
9827
|
+
o.name = "DescribeFastSnapshotRestores"
|
9828
|
+
o.http_method = "POST"
|
9829
|
+
o.http_request_uri = "/"
|
9830
|
+
o.input = Shapes::ShapeRef.new(shape: DescribeFastSnapshotRestoresRequest)
|
9831
|
+
o.output = Shapes::ShapeRef.new(shape: DescribeFastSnapshotRestoresResult)
|
9832
|
+
o[:pager] = Aws::Pager.new(
|
9833
|
+
limit_key: "max_results",
|
9834
|
+
tokens: {
|
9835
|
+
"next_token" => "next_token"
|
9836
|
+
}
|
9837
|
+
)
|
9838
|
+
end)
|
9839
|
+
|
9687
9840
|
api.add_operation(:describe_fleet_history, Seahorse::Model::Operation.new.tap do |o|
|
9688
9841
|
o.name = "DescribeFleetHistory"
|
9689
9842
|
o.http_method = "POST"
|
@@ -10687,6 +10840,14 @@ module Aws::EC2
|
|
10687
10840
|
o.output = Shapes::ShapeRef.new(shape: DisableEbsEncryptionByDefaultResult)
|
10688
10841
|
end)
|
10689
10842
|
|
10843
|
+
api.add_operation(:disable_fast_snapshot_restores, Seahorse::Model::Operation.new.tap do |o|
|
10844
|
+
o.name = "DisableFastSnapshotRestores"
|
10845
|
+
o.http_method = "POST"
|
10846
|
+
o.http_request_uri = "/"
|
10847
|
+
o.input = Shapes::ShapeRef.new(shape: DisableFastSnapshotRestoresRequest)
|
10848
|
+
o.output = Shapes::ShapeRef.new(shape: DisableFastSnapshotRestoresResult)
|
10849
|
+
end)
|
10850
|
+
|
10690
10851
|
api.add_operation(:disable_transit_gateway_route_table_propagation, Seahorse::Model::Operation.new.tap do |o|
|
10691
10852
|
o.name = "DisableTransitGatewayRouteTablePropagation"
|
10692
10853
|
o.http_method = "POST"
|
@@ -10783,6 +10944,14 @@ module Aws::EC2
|
|
10783
10944
|
o.output = Shapes::ShapeRef.new(shape: EnableEbsEncryptionByDefaultResult)
|
10784
10945
|
end)
|
10785
10946
|
|
10947
|
+
api.add_operation(:enable_fast_snapshot_restores, Seahorse::Model::Operation.new.tap do |o|
|
10948
|
+
o.name = "EnableFastSnapshotRestores"
|
10949
|
+
o.http_method = "POST"
|
10950
|
+
o.http_request_uri = "/"
|
10951
|
+
o.input = Shapes::ShapeRef.new(shape: EnableFastSnapshotRestoresRequest)
|
10952
|
+
o.output = Shapes::ShapeRef.new(shape: EnableFastSnapshotRestoresResult)
|
10953
|
+
end)
|
10954
|
+
|
10786
10955
|
api.add_operation(:enable_transit_gateway_route_table_propagation, Seahorse::Model::Operation.new.tap do |o|
|
10787
10956
|
o.name = "EnableTransitGatewayRouteTablePropagation"
|
10788
10957
|
o.http_method = "POST"
|