aws-sdk-ec2 1.285.0 → 1.417.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 +663 -1
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/classic_address.rb +33 -36
- data/lib/aws-sdk-ec2/client.rb +13859 -2170
- data/lib/aws-sdk-ec2/client_api.rb +4203 -86
- data/lib/aws-sdk-ec2/customizations/instance.rb +3 -1
- data/lib/aws-sdk-ec2/customizations/resource.rb +3 -1
- data/lib/aws-sdk-ec2/dhcp_options.rb +19 -7
- data/lib/aws-sdk-ec2/endpoint_parameters.rb +66 -0
- data/lib/aws-sdk-ec2/endpoint_provider.rb +57 -0
- data/lib/aws-sdk-ec2/endpoints.rb +8444 -0
- data/lib/aws-sdk-ec2/image.rb +96 -22
- data/lib/aws-sdk-ec2/instance.rb +232 -95
- data/lib/aws-sdk-ec2/internet_gateway.rb +21 -7
- data/lib/aws-sdk-ec2/key_pair.rb +13 -4
- data/lib/aws-sdk-ec2/key_pair_info.rb +32 -4
- data/lib/aws-sdk-ec2/nat_gateway.rb +22 -12
- data/lib/aws-sdk-ec2/network_acl.rb +28 -10
- data/lib/aws-sdk-ec2/network_interface.rb +76 -17
- data/lib/aws-sdk-ec2/network_interface_association.rb +11 -5
- data/lib/aws-sdk-ec2/placement_group.rb +198 -33
- data/lib/aws-sdk-ec2/plugins/copy_encrypted_snapshot.rb +17 -12
- data/lib/aws-sdk-ec2/plugins/endpoints.rb +1272 -0
- data/lib/aws-sdk-ec2/plugins/region_validation.rb +1 -1
- data/lib/aws-sdk-ec2/resource.rb +793 -282
- data/lib/aws-sdk-ec2/route.rb +9 -3
- data/lib/aws-sdk-ec2/route_table.rb +21 -7
- data/lib/aws-sdk-ec2/route_table_association.rb +9 -3
- data/lib/aws-sdk-ec2/security_group.rb +74 -57
- data/lib/aws-sdk-ec2/snapshot.rb +38 -12
- data/lib/aws-sdk-ec2/subnet.rb +394 -137
- data/lib/aws-sdk-ec2/tag.rb +12 -4
- data/lib/aws-sdk-ec2/types.rb +15645 -13412
- data/lib/aws-sdk-ec2/volume.rb +65 -34
- data/lib/aws-sdk-ec2/vpc.rb +368 -123
- data/lib/aws-sdk-ec2/vpc_address.rb +29 -34
- data/lib/aws-sdk-ec2/vpc_peering_connection.rb +18 -6
- data/lib/aws-sdk-ec2/waiters.rb +184 -0
- data/lib/aws-sdk-ec2.rb +6 -2
- metadata +8 -4
@@ -46,15 +46,13 @@ module Aws::EC2
|
|
46
46
|
data[:public_ip]
|
47
47
|
end
|
48
48
|
|
49
|
-
# The ID representing the association of the address with an instance
|
50
|
-
# a VPC.
|
49
|
+
# The ID representing the association of the address with an instance.
|
51
50
|
# @return [String]
|
52
51
|
def association_id
|
53
52
|
data[:association_id]
|
54
53
|
end
|
55
54
|
|
56
|
-
#
|
57
|
-
# EC2-Classic (`standard`) or instances in a VPC (`vpc`).
|
55
|
+
# The network (`vpc`).
|
58
56
|
# @return [String]
|
59
57
|
def domain
|
60
58
|
data[:domain]
|
@@ -133,7 +131,9 @@ module Aws::EC2
|
|
133
131
|
#
|
134
132
|
# @return [self]
|
135
133
|
def load
|
136
|
-
resp =
|
134
|
+
resp = Aws::Plugins::UserAgent.feature('resource') do
|
135
|
+
@client.describe_addresses(allocation_ids: [@allocation_id])
|
136
|
+
end
|
137
137
|
@data = resp.addresses[0]
|
138
138
|
self
|
139
139
|
end
|
@@ -248,7 +248,9 @@ module Aws::EC2
|
|
248
248
|
:retry
|
249
249
|
end
|
250
250
|
end
|
251
|
-
Aws::
|
251
|
+
Aws::Plugins::UserAgent.feature('resource') do
|
252
|
+
Aws::Waiters::Waiter.new(options).wait({})
|
253
|
+
end
|
252
254
|
end
|
253
255
|
|
254
256
|
# @!group Actions
|
@@ -257,7 +259,7 @@ module Aws::EC2
|
|
257
259
|
#
|
258
260
|
# vpc_address.associate({
|
259
261
|
# instance_id: "InstanceId",
|
260
|
-
# public_ip: "
|
262
|
+
# public_ip: "EipAllocationPublicIp",
|
261
263
|
# allow_reassociation: false,
|
262
264
|
# dry_run: false,
|
263
265
|
# network_interface_id: "NetworkInterfaceId",
|
@@ -266,40 +268,35 @@ module Aws::EC2
|
|
266
268
|
# @param [Hash] options ({})
|
267
269
|
# @option options [String] :instance_id
|
268
270
|
# The ID of the instance. The instance must have exactly one attached
|
269
|
-
# network interface.
|
270
|
-
#
|
271
|
-
# specify an instance ID and the instance must be in the running state.
|
271
|
+
# network interface. You can specify either the instance ID or the
|
272
|
+
# network interface ID, but not both.
|
272
273
|
# @option options [String] :public_ip
|
273
|
-
#
|
274
|
-
# This is required for EC2-Classic.
|
274
|
+
# Deprecated.
|
275
275
|
# @option options [Boolean] :allow_reassociation
|
276
|
-
#
|
277
|
-
#
|
278
|
-
#
|
279
|
-
# network interface. Otherwise, the operation fails. In a VPC in an
|
280
|
-
# EC2-VPC-only account, reassociation is automatic, therefore you can
|
281
|
-
# specify false to ensure the operation fails if the Elastic IP address
|
282
|
-
# is already associated with another resource.
|
276
|
+
# Reassociation is automatic, but you can specify false to ensure the
|
277
|
+
# operation fails if the Elastic IP address is already associated with
|
278
|
+
# another resource.
|
283
279
|
# @option options [Boolean] :dry_run
|
284
280
|
# Checks whether you have the required permissions for the action,
|
285
281
|
# without actually making the request, and provides an error response.
|
286
282
|
# If you have the required permissions, the error response is
|
287
283
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
288
284
|
# @option options [String] :network_interface_id
|
289
|
-
#
|
290
|
-
#
|
285
|
+
# The ID of the network interface. If the instance has more than one
|
286
|
+
# network interface, you must specify a network interface ID.
|
291
287
|
#
|
292
|
-
#
|
293
|
-
#
|
288
|
+
# You can specify either the instance ID or the network interface ID,
|
289
|
+
# but not both.
|
294
290
|
# @option options [String] :private_ip_address
|
295
|
-
#
|
296
|
-
#
|
297
|
-
#
|
298
|
-
# address.
|
291
|
+
# The primary or secondary private IP address to associate with the
|
292
|
+
# Elastic IP address. If no private IP address is specified, the Elastic
|
293
|
+
# IP address is associated with the primary private IP address.
|
299
294
|
# @return [Types::AssociateAddressResult]
|
300
295
|
def associate(options = {})
|
301
296
|
options = options.merge(allocation_id: @allocation_id)
|
302
|
-
resp =
|
297
|
+
resp = Aws::Plugins::UserAgent.feature('resource') do
|
298
|
+
@client.associate_address(options)
|
299
|
+
end
|
303
300
|
resp.data
|
304
301
|
end
|
305
302
|
|
@@ -312,17 +309,13 @@ module Aws::EC2
|
|
312
309
|
# })
|
313
310
|
# @param [Hash] options ({})
|
314
311
|
# @option options [String] :public_ip
|
315
|
-
#
|
312
|
+
# Deprecated.
|
316
313
|
# @option options [String] :network_border_group
|
317
314
|
# The set of Availability Zones, Local Zones, or Wavelength Zones from
|
318
315
|
# which Amazon Web Services advertises IP addresses.
|
319
316
|
#
|
320
317
|
# If you provide an incorrect network border group, you receive an
|
321
318
|
# `InvalidAddress.NotFound` error.
|
322
|
-
#
|
323
|
-
# You cannot use a network border group with EC2 Classic. If you attempt
|
324
|
-
# this operation on EC2 classic, you receive an
|
325
|
-
# `InvalidParameterCombination` error.
|
326
319
|
# @option options [Boolean] :dry_run
|
327
320
|
# Checks whether you have the required permissions for the action,
|
328
321
|
# without actually making the request, and provides an error response.
|
@@ -331,7 +324,9 @@ module Aws::EC2
|
|
331
324
|
# @return [EmptyStructure]
|
332
325
|
def release(options = {})
|
333
326
|
options = options.merge(allocation_id: data[:allocation_id])
|
334
|
-
resp =
|
327
|
+
resp = Aws::Plugins::UserAgent.feature('resource') do
|
328
|
+
@client.release_address(options)
|
329
|
+
end
|
335
330
|
resp.data
|
336
331
|
end
|
337
332
|
|
@@ -81,7 +81,9 @@ module Aws::EC2
|
|
81
81
|
#
|
82
82
|
# @return [self]
|
83
83
|
def load
|
84
|
-
resp =
|
84
|
+
resp = Aws::Plugins::UserAgent.feature('resource') do
|
85
|
+
@client.describe_vpc_peering_connections(vpc_peering_connection_ids: [@id])
|
86
|
+
end
|
85
87
|
@data = resp.vpc_peering_connections[0]
|
86
88
|
self
|
87
89
|
end
|
@@ -126,7 +128,9 @@ module Aws::EC2
|
|
126
128
|
options, params = separate_params_and_options(options)
|
127
129
|
waiter = Waiters::VpcPeeringConnectionExists.new(options)
|
128
130
|
yield_waiter_and_warn(waiter, &block) if block_given?
|
129
|
-
resp =
|
131
|
+
resp = Aws::Plugins::UserAgent.feature('resource') do
|
132
|
+
waiter.wait(params.merge(vpc_peering_connection_ids: [@id]))
|
133
|
+
end
|
130
134
|
VpcPeeringConnection.new({
|
131
135
|
id: @id,
|
132
136
|
data: resp.data.vpc_peering_connections[0],
|
@@ -228,7 +232,9 @@ module Aws::EC2
|
|
228
232
|
:retry
|
229
233
|
end
|
230
234
|
end
|
231
|
-
Aws::
|
235
|
+
Aws::Plugins::UserAgent.feature('resource') do
|
236
|
+
Aws::Waiters::Waiter.new(options).wait({})
|
237
|
+
end
|
232
238
|
end
|
233
239
|
|
234
240
|
# @!group Actions
|
@@ -247,7 +253,9 @@ module Aws::EC2
|
|
247
253
|
# @return [Types::AcceptVpcPeeringConnectionResult]
|
248
254
|
def accept(options = {})
|
249
255
|
options = options.merge(vpc_peering_connection_id: @id)
|
250
|
-
resp =
|
256
|
+
resp = Aws::Plugins::UserAgent.feature('resource') do
|
257
|
+
@client.accept_vpc_peering_connection(options)
|
258
|
+
end
|
251
259
|
resp.data
|
252
260
|
end
|
253
261
|
|
@@ -265,7 +273,9 @@ module Aws::EC2
|
|
265
273
|
# @return [Types::DeleteVpcPeeringConnectionResult]
|
266
274
|
def delete(options = {})
|
267
275
|
options = options.merge(vpc_peering_connection_id: @id)
|
268
|
-
resp =
|
276
|
+
resp = Aws::Plugins::UserAgent.feature('resource') do
|
277
|
+
@client.delete_vpc_peering_connection(options)
|
278
|
+
end
|
269
279
|
resp.data
|
270
280
|
end
|
271
281
|
|
@@ -283,7 +293,9 @@ module Aws::EC2
|
|
283
293
|
# @return [Types::RejectVpcPeeringConnectionResult]
|
284
294
|
def reject(options = {})
|
285
295
|
options = options.merge(vpc_peering_connection_id: @id)
|
286
|
-
resp =
|
296
|
+
resp = Aws::Plugins::UserAgent.feature('resource') do
|
297
|
+
@client.reject_vpc_peering_connection(options)
|
298
|
+
end
|
287
299
|
resp.data
|
288
300
|
end
|
289
301
|
|
data/lib/aws-sdk-ec2/waiters.rb
CHANGED
@@ -83,13 +83,17 @@ module Aws::EC2
|
|
83
83
|
# | instance_status_ok | {Client#describe_instance_status} | 15 | 40 |
|
84
84
|
# | instance_stopped | {Client#describe_instances} | 15 | 40 |
|
85
85
|
# | instance_terminated | {Client#describe_instances} | 15 | 40 |
|
86
|
+
# | internet_gateway_exists | {Client#describe_internet_gateways} | 5 | 6 |
|
86
87
|
# | key_pair_exists | {Client#describe_key_pairs} | 5 | 6 |
|
87
88
|
# | nat_gateway_available | {Client#describe_nat_gateways} | 15 | 40 |
|
89
|
+
# | nat_gateway_deleted | {Client#describe_nat_gateways} | 15 | 40 |
|
88
90
|
# | network_interface_available | {Client#describe_network_interfaces} | 20 | 10 |
|
89
91
|
# | password_data_available | {Client#get_password_data} | 15 | 40 |
|
90
92
|
# | security_group_exists | {Client#describe_security_groups} | 5 | 6 |
|
91
93
|
# | snapshot_completed | {Client#describe_snapshots} | 15 | 40 |
|
94
|
+
# | snapshot_imported | {Client#describe_import_snapshot_tasks} | 15 | 40 |
|
92
95
|
# | spot_instance_request_fulfilled | {Client#describe_spot_instance_requests} | 15 | 40 |
|
96
|
+
# | store_image_task_complete | {Client#describe_store_image_tasks} | 5 | 40 |
|
93
97
|
# | subnet_available | {Client#describe_subnets} | 15 | 40 |
|
94
98
|
# | system_status_ok | {Client#describe_instance_status} | 15 | 40 |
|
95
99
|
# | volume_available | {Client#describe_volumes} | 15 | 40 |
|
@@ -726,6 +730,49 @@ module Aws::EC2
|
|
726
730
|
|
727
731
|
end
|
728
732
|
|
733
|
+
class InternetGatewayExists
|
734
|
+
|
735
|
+
# @param [Hash] options
|
736
|
+
# @option options [required, Client] :client
|
737
|
+
# @option options [Integer] :max_attempts (6)
|
738
|
+
# @option options [Integer] :delay (5)
|
739
|
+
# @option options [Proc] :before_attempt
|
740
|
+
# @option options [Proc] :before_wait
|
741
|
+
def initialize(options)
|
742
|
+
@client = options.fetch(:client)
|
743
|
+
@waiter = Aws::Waiters::Waiter.new({
|
744
|
+
max_attempts: 6,
|
745
|
+
delay: 5,
|
746
|
+
poller: Aws::Waiters::Poller.new(
|
747
|
+
operation_name: :describe_internet_gateways,
|
748
|
+
acceptors: [
|
749
|
+
{
|
750
|
+
"expected" => true,
|
751
|
+
"matcher" => "path",
|
752
|
+
"state" => "success",
|
753
|
+
"argument" => "length(internet_gateways[].internet_gateway_id) > `0`"
|
754
|
+
},
|
755
|
+
{
|
756
|
+
"expected" => "InvalidInternetGateway.NotFound",
|
757
|
+
"matcher" => "error",
|
758
|
+
"state" => "retry"
|
759
|
+
}
|
760
|
+
]
|
761
|
+
)
|
762
|
+
}.merge(options))
|
763
|
+
end
|
764
|
+
|
765
|
+
# @option (see Client#describe_internet_gateways)
|
766
|
+
# @return (see Client#describe_internet_gateways)
|
767
|
+
def wait(params = {})
|
768
|
+
@waiter.wait(client: @client, params: params)
|
769
|
+
end
|
770
|
+
|
771
|
+
# @api private
|
772
|
+
attr_reader :waiter
|
773
|
+
|
774
|
+
end
|
775
|
+
|
729
776
|
class KeyPairExists
|
730
777
|
|
731
778
|
# @param [Hash] options
|
@@ -830,6 +877,49 @@ module Aws::EC2
|
|
830
877
|
|
831
878
|
end
|
832
879
|
|
880
|
+
class NatGatewayDeleted
|
881
|
+
|
882
|
+
# @param [Hash] options
|
883
|
+
# @option options [required, Client] :client
|
884
|
+
# @option options [Integer] :max_attempts (40)
|
885
|
+
# @option options [Integer] :delay (15)
|
886
|
+
# @option options [Proc] :before_attempt
|
887
|
+
# @option options [Proc] :before_wait
|
888
|
+
def initialize(options)
|
889
|
+
@client = options.fetch(:client)
|
890
|
+
@waiter = Aws::Waiters::Waiter.new({
|
891
|
+
max_attempts: 40,
|
892
|
+
delay: 15,
|
893
|
+
poller: Aws::Waiters::Poller.new(
|
894
|
+
operation_name: :describe_nat_gateways,
|
895
|
+
acceptors: [
|
896
|
+
{
|
897
|
+
"state" => "success",
|
898
|
+
"matcher" => "pathAll",
|
899
|
+
"argument" => "nat_gateways[].state",
|
900
|
+
"expected" => "deleted"
|
901
|
+
},
|
902
|
+
{
|
903
|
+
"state" => "success",
|
904
|
+
"matcher" => "error",
|
905
|
+
"expected" => "NatGatewayNotFound"
|
906
|
+
}
|
907
|
+
]
|
908
|
+
)
|
909
|
+
}.merge(options))
|
910
|
+
end
|
911
|
+
|
912
|
+
# @option (see Client#describe_nat_gateways)
|
913
|
+
# @return (see Client#describe_nat_gateways)
|
914
|
+
def wait(params = {})
|
915
|
+
@waiter.wait(client: @client, params: params)
|
916
|
+
end
|
917
|
+
|
918
|
+
# @api private
|
919
|
+
attr_reader :waiter
|
920
|
+
|
921
|
+
end
|
922
|
+
|
833
923
|
class NetworkInterfaceAvailable
|
834
924
|
|
835
925
|
# @param [Hash] options
|
@@ -996,6 +1086,50 @@ module Aws::EC2
|
|
996
1086
|
|
997
1087
|
end
|
998
1088
|
|
1089
|
+
class SnapshotImported
|
1090
|
+
|
1091
|
+
# @param [Hash] options
|
1092
|
+
# @option options [required, Client] :client
|
1093
|
+
# @option options [Integer] :max_attempts (40)
|
1094
|
+
# @option options [Integer] :delay (15)
|
1095
|
+
# @option options [Proc] :before_attempt
|
1096
|
+
# @option options [Proc] :before_wait
|
1097
|
+
def initialize(options)
|
1098
|
+
@client = options.fetch(:client)
|
1099
|
+
@waiter = Aws::Waiters::Waiter.new({
|
1100
|
+
max_attempts: 40,
|
1101
|
+
delay: 15,
|
1102
|
+
poller: Aws::Waiters::Poller.new(
|
1103
|
+
operation_name: :describe_import_snapshot_tasks,
|
1104
|
+
acceptors: [
|
1105
|
+
{
|
1106
|
+
"expected" => "completed",
|
1107
|
+
"matcher" => "pathAll",
|
1108
|
+
"state" => "success",
|
1109
|
+
"argument" => "import_snapshot_tasks[].snapshot_task_detail.status"
|
1110
|
+
},
|
1111
|
+
{
|
1112
|
+
"expected" => "error",
|
1113
|
+
"matcher" => "pathAny",
|
1114
|
+
"state" => "failure",
|
1115
|
+
"argument" => "import_snapshot_tasks[].snapshot_task_detail.status"
|
1116
|
+
}
|
1117
|
+
]
|
1118
|
+
)
|
1119
|
+
}.merge(options))
|
1120
|
+
end
|
1121
|
+
|
1122
|
+
# @option (see Client#describe_import_snapshot_tasks)
|
1123
|
+
# @return (see Client#describe_import_snapshot_tasks)
|
1124
|
+
def wait(params = {})
|
1125
|
+
@waiter.wait(client: @client, params: params)
|
1126
|
+
end
|
1127
|
+
|
1128
|
+
# @api private
|
1129
|
+
attr_reader :waiter
|
1130
|
+
|
1131
|
+
end
|
1132
|
+
|
999
1133
|
class SpotInstanceRequestFulfilled
|
1000
1134
|
|
1001
1135
|
# @param [Hash] options
|
@@ -1069,6 +1203,56 @@ module Aws::EC2
|
|
1069
1203
|
|
1070
1204
|
end
|
1071
1205
|
|
1206
|
+
class StoreImageTaskComplete
|
1207
|
+
|
1208
|
+
# @param [Hash] options
|
1209
|
+
# @option options [required, Client] :client
|
1210
|
+
# @option options [Integer] :max_attempts (40)
|
1211
|
+
# @option options [Integer] :delay (5)
|
1212
|
+
# @option options [Proc] :before_attempt
|
1213
|
+
# @option options [Proc] :before_wait
|
1214
|
+
def initialize(options)
|
1215
|
+
@client = options.fetch(:client)
|
1216
|
+
@waiter = Aws::Waiters::Waiter.new({
|
1217
|
+
max_attempts: 40,
|
1218
|
+
delay: 5,
|
1219
|
+
poller: Aws::Waiters::Poller.new(
|
1220
|
+
operation_name: :describe_store_image_tasks,
|
1221
|
+
acceptors: [
|
1222
|
+
{
|
1223
|
+
"expected" => "Completed",
|
1224
|
+
"matcher" => "pathAll",
|
1225
|
+
"state" => "success",
|
1226
|
+
"argument" => "store_image_task_results[].store_task_state"
|
1227
|
+
},
|
1228
|
+
{
|
1229
|
+
"expected" => "Failed",
|
1230
|
+
"matcher" => "pathAny",
|
1231
|
+
"state" => "failure",
|
1232
|
+
"argument" => "store_image_task_results[].store_task_state"
|
1233
|
+
},
|
1234
|
+
{
|
1235
|
+
"expected" => "InProgress",
|
1236
|
+
"matcher" => "pathAny",
|
1237
|
+
"state" => "retry",
|
1238
|
+
"argument" => "store_image_task_results[].store_task_state"
|
1239
|
+
}
|
1240
|
+
]
|
1241
|
+
)
|
1242
|
+
}.merge(options))
|
1243
|
+
end
|
1244
|
+
|
1245
|
+
# @option (see Client#describe_store_image_tasks)
|
1246
|
+
# @return (see Client#describe_store_image_tasks)
|
1247
|
+
def wait(params = {})
|
1248
|
+
@waiter.wait(client: @client, params: params)
|
1249
|
+
end
|
1250
|
+
|
1251
|
+
# @api private
|
1252
|
+
attr_reader :waiter
|
1253
|
+
|
1254
|
+
end
|
1255
|
+
|
1072
1256
|
class SubnetAvailable
|
1073
1257
|
|
1074
1258
|
# @param [Hash] options
|
data/lib/aws-sdk-ec2.rb
CHANGED
@@ -13,10 +13,14 @@ require 'aws-sdk-core'
|
|
13
13
|
|
14
14
|
require_relative 'aws-sdk-ec2/types'
|
15
15
|
require_relative 'aws-sdk-ec2/client_api'
|
16
|
+
require_relative 'aws-sdk-ec2/plugins/endpoints.rb'
|
16
17
|
require_relative 'aws-sdk-ec2/client'
|
17
18
|
require_relative 'aws-sdk-ec2/errors'
|
18
19
|
require_relative 'aws-sdk-ec2/waiters'
|
19
20
|
require_relative 'aws-sdk-ec2/resource'
|
21
|
+
require_relative 'aws-sdk-ec2/endpoint_parameters'
|
22
|
+
require_relative 'aws-sdk-ec2/endpoint_provider'
|
23
|
+
require_relative 'aws-sdk-ec2/endpoints'
|
20
24
|
require_relative 'aws-sdk-ec2/classic_address'
|
21
25
|
require_relative 'aws-sdk-ec2/dhcp_options'
|
22
26
|
require_relative 'aws-sdk-ec2/image'
|
@@ -52,7 +56,7 @@ require_relative 'aws-sdk-ec2/customizations'
|
|
52
56
|
# structure.
|
53
57
|
#
|
54
58
|
# ec2 = Aws::EC2::Client.new
|
55
|
-
# resp = ec2.
|
59
|
+
# resp = ec2.accept_address_transfer(params)
|
56
60
|
#
|
57
61
|
# See {Client} for more information.
|
58
62
|
#
|
@@ -72,6 +76,6 @@ require_relative 'aws-sdk-ec2/customizations'
|
|
72
76
|
# @!group service
|
73
77
|
module Aws::EC2
|
74
78
|
|
75
|
-
GEM_VERSION = '1.
|
79
|
+
GEM_VERSION = '1.417.0'
|
76
80
|
|
77
81
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-ec2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.417.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-10-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|
@@ -33,7 +33,7 @@ dependencies:
|
|
33
33
|
version: '3'
|
34
34
|
- - ">="
|
35
35
|
- !ruby/object:Gem::Version
|
36
|
-
version: 3.
|
36
|
+
version: 3.184.0
|
37
37
|
type: :runtime
|
38
38
|
prerelease: false
|
39
39
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -43,7 +43,7 @@ dependencies:
|
|
43
43
|
version: '3'
|
44
44
|
- - ">="
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: 3.
|
46
|
+
version: 3.184.0
|
47
47
|
description: Official AWS Ruby gem for Amazon Elastic Compute Cloud (Amazon EC2).
|
48
48
|
This gem is part of the AWS SDK for Ruby.
|
49
49
|
email:
|
@@ -63,6 +63,9 @@ files:
|
|
63
63
|
- lib/aws-sdk-ec2/customizations/instance.rb
|
64
64
|
- lib/aws-sdk-ec2/customizations/resource.rb
|
65
65
|
- lib/aws-sdk-ec2/dhcp_options.rb
|
66
|
+
- lib/aws-sdk-ec2/endpoint_parameters.rb
|
67
|
+
- lib/aws-sdk-ec2/endpoint_provider.rb
|
68
|
+
- lib/aws-sdk-ec2/endpoints.rb
|
66
69
|
- lib/aws-sdk-ec2/errors.rb
|
67
70
|
- lib/aws-sdk-ec2/image.rb
|
68
71
|
- lib/aws-sdk-ec2/instance.rb
|
@@ -75,6 +78,7 @@ files:
|
|
75
78
|
- lib/aws-sdk-ec2/network_interface_association.rb
|
76
79
|
- lib/aws-sdk-ec2/placement_group.rb
|
77
80
|
- lib/aws-sdk-ec2/plugins/copy_encrypted_snapshot.rb
|
81
|
+
- lib/aws-sdk-ec2/plugins/endpoints.rb
|
78
82
|
- lib/aws-sdk-ec2/plugins/region_validation.rb
|
79
83
|
- lib/aws-sdk-ec2/resource.rb
|
80
84
|
- lib/aws-sdk-ec2/route.rb
|