aws-sdk-ec2 1.441.0 → 1.443.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +304 -278
- data/lib/aws-sdk-ec2/client_api.rb +56 -0
- data/lib/aws-sdk-ec2/resource.rb +11 -13
- data/lib/aws-sdk-ec2/security_group.rb +46 -57
- data/lib/aws-sdk-ec2/snapshot.rb +6 -7
- data/lib/aws-sdk-ec2/subnet.rb +4 -4
- data/lib/aws-sdk-ec2/types.rb +366 -231
- data/lib/aws-sdk-ec2/volume.rb +2 -2
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/types.rbs +46 -0
- metadata +2 -2
data/lib/aws-sdk-ec2/volume.rb
CHANGED
@@ -337,11 +337,11 @@ module Aws::EC2
|
|
337
337
|
# The snapshot must be created on the same Outpost as the volume.
|
338
338
|
#
|
339
339
|
# For more information, see [Create local snapshots from volumes on an
|
340
|
-
# Outpost][1] in the *Amazon
|
340
|
+
# Outpost][1] in the *Amazon EBS User Guide*.
|
341
341
|
#
|
342
342
|
#
|
343
343
|
#
|
344
|
-
# [1]: https://docs.aws.amazon.com/
|
344
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/snapshots-outposts.html#create-snapshot
|
345
345
|
# @option options [Array<Types::TagSpecification>] :tag_specifications
|
346
346
|
# The tags to apply to the snapshot during creation.
|
347
347
|
# @option options [Boolean] :dry_run
|
data/lib/aws-sdk-ec2.rb
CHANGED
data/sig/types.rbs
CHANGED
@@ -9136,6 +9136,8 @@ module Aws::EC2
|
|
9136
9136
|
attr_accessor nitro_enclaves_support: ("unsupported" | "supported")
|
9137
9137
|
attr_accessor nitro_tpm_support: ("unsupported" | "supported")
|
9138
9138
|
attr_accessor nitro_tpm_info: Types::NitroTpmInfo
|
9139
|
+
attr_accessor media_accelerator_info: Types::MediaAcceleratorInfo
|
9140
|
+
attr_accessor neuron_info: Types::NeuronInfo
|
9139
9141
|
SENSITIVE: []
|
9140
9142
|
end
|
9141
9143
|
|
@@ -10118,6 +10120,25 @@ module Aws::EC2
|
|
10118
10120
|
SENSITIVE: []
|
10119
10121
|
end
|
10120
10122
|
|
10123
|
+
class MediaAcceleratorInfo
|
10124
|
+
attr_accessor accelerators: ::Array[Types::MediaDeviceInfo]
|
10125
|
+
attr_accessor total_media_memory_in_mi_b: ::Integer
|
10126
|
+
SENSITIVE: []
|
10127
|
+
end
|
10128
|
+
|
10129
|
+
class MediaDeviceInfo
|
10130
|
+
attr_accessor count: ::Integer
|
10131
|
+
attr_accessor name: ::String
|
10132
|
+
attr_accessor manufacturer: ::String
|
10133
|
+
attr_accessor memory_info: Types::MediaDeviceMemoryInfo
|
10134
|
+
SENSITIVE: []
|
10135
|
+
end
|
10136
|
+
|
10137
|
+
class MediaDeviceMemoryInfo
|
10138
|
+
attr_accessor size_in_mi_b: ::Integer
|
10139
|
+
SENSITIVE: []
|
10140
|
+
end
|
10141
|
+
|
10121
10142
|
class MemoryGiBPerVCpu
|
10122
10143
|
attr_accessor min: ::Float
|
10123
10144
|
attr_accessor max: ::Float
|
@@ -11465,6 +11486,31 @@ module Aws::EC2
|
|
11465
11486
|
SENSITIVE: []
|
11466
11487
|
end
|
11467
11488
|
|
11489
|
+
class NeuronDeviceCoreInfo
|
11490
|
+
attr_accessor count: ::Integer
|
11491
|
+
attr_accessor version: ::Integer
|
11492
|
+
SENSITIVE: []
|
11493
|
+
end
|
11494
|
+
|
11495
|
+
class NeuronDeviceInfo
|
11496
|
+
attr_accessor count: ::Integer
|
11497
|
+
attr_accessor name: ::String
|
11498
|
+
attr_accessor core_info: Types::NeuronDeviceCoreInfo
|
11499
|
+
attr_accessor memory_info: Types::NeuronDeviceMemoryInfo
|
11500
|
+
SENSITIVE: []
|
11501
|
+
end
|
11502
|
+
|
11503
|
+
class NeuronDeviceMemoryInfo
|
11504
|
+
attr_accessor size_in_mi_b: ::Integer
|
11505
|
+
SENSITIVE: []
|
11506
|
+
end
|
11507
|
+
|
11508
|
+
class NeuronInfo
|
11509
|
+
attr_accessor neuron_devices: ::Array[Types::NeuronDeviceInfo]
|
11510
|
+
attr_accessor total_neuron_device_memory_in_mi_b: ::Integer
|
11511
|
+
SENSITIVE: []
|
11512
|
+
end
|
11513
|
+
|
11468
11514
|
class NewDhcpConfiguration
|
11469
11515
|
attr_accessor key: ::String
|
11470
11516
|
attr_accessor values: ::Array[::String]
|
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.443.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: 2024-03-
|
11
|
+
date: 2024-03-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|