aws-sdk-ec2 1.488.0 → 1.490.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 +78 -9
- data/lib/aws-sdk-ec2/client_api.rb +24 -0
- data/lib/aws-sdk-ec2/instance.rb +6 -0
- data/lib/aws-sdk-ec2/network_interface.rb +6 -0
- data/lib/aws-sdk-ec2/resource.rb +15 -0
- data/lib/aws-sdk-ec2/subnet.rb +10 -0
- data/lib/aws-sdk-ec2/types.rb +118 -14
- data/lib/aws-sdk-ec2/volume.rb +6 -0
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/client.rbs +22 -3
- data/sig/instance.rbs +3 -0
- data/sig/network_interface.rbs +3 -0
- data/sig/resource.rbs +9 -0
- data/sig/subnet.rbs +6 -0
- data/sig/types.rbs +28 -2
- data/sig/volume.rbs +3 -0
- metadata +2 -2
data/sig/types.rbs
CHANGED
@@ -1228,12 +1228,12 @@ module Aws::EC2
|
|
1228
1228
|
end
|
1229
1229
|
|
1230
1230
|
class CapacityReservationOptions
|
1231
|
-
attr_accessor usage_strategy: ("use-capacity-reservations-first"
|
1231
|
+
attr_accessor usage_strategy: ("use-capacity-reservations-first")
|
1232
1232
|
SENSITIVE: []
|
1233
1233
|
end
|
1234
1234
|
|
1235
1235
|
class CapacityReservationOptionsRequest
|
1236
|
-
attr_accessor usage_strategy: ("use-capacity-reservations-first"
|
1236
|
+
attr_accessor usage_strategy: ("use-capacity-reservations-first")
|
1237
1237
|
SENSITIVE: []
|
1238
1238
|
end
|
1239
1239
|
|
@@ -2109,6 +2109,7 @@ module Aws::EC2
|
|
2109
2109
|
attr_accessor launch_template_name: ::String
|
2110
2110
|
attr_accessor version_description: ::String
|
2111
2111
|
attr_accessor launch_template_data: Types::RequestLaunchTemplateData
|
2112
|
+
attr_accessor operator: Types::OperatorRequest
|
2112
2113
|
attr_accessor tag_specifications: ::Array[Types::TagSpecification]
|
2113
2114
|
SENSITIVE: []
|
2114
2115
|
end
|
@@ -2314,6 +2315,7 @@ module Aws::EC2
|
|
2314
2315
|
attr_accessor client_token: ::String
|
2315
2316
|
attr_accessor enable_primary_ipv_6: bool
|
2316
2317
|
attr_accessor connection_tracking_specification: Types::ConnectionTrackingSpecificationRequest
|
2318
|
+
attr_accessor operator: Types::OperatorRequest
|
2317
2319
|
attr_accessor subnet_id: ::String
|
2318
2320
|
attr_accessor description: ::String
|
2319
2321
|
attr_accessor private_ip_address: ::String
|
@@ -2931,6 +2933,7 @@ module Aws::EC2
|
|
2931
2933
|
attr_accessor multi_attach_enabled: bool
|
2932
2934
|
attr_accessor throughput: ::Integer
|
2933
2935
|
attr_accessor client_token: ::String
|
2936
|
+
attr_accessor operator: Types::OperatorRequest
|
2934
2937
|
attr_accessor dry_run: bool
|
2935
2938
|
SENSITIVE: []
|
2936
2939
|
end
|
@@ -6926,6 +6929,7 @@ module Aws::EC2
|
|
6926
6929
|
attr_accessor volume_id: ::String
|
6927
6930
|
attr_accessor associated_resource: ::String
|
6928
6931
|
attr_accessor volume_owner_id: ::String
|
6932
|
+
attr_accessor operator: Types::OperatorResponse
|
6929
6933
|
SENSITIVE: []
|
6930
6934
|
end
|
6931
6935
|
|
@@ -8964,6 +8968,7 @@ module Aws::EC2
|
|
8964
8968
|
attr_accessor tpm_support: ::String
|
8965
8969
|
attr_accessor maintenance_options: Types::InstanceMaintenanceOptions
|
8966
8970
|
attr_accessor current_instance_boot_mode: ("legacy-bios" | "uefi")
|
8971
|
+
attr_accessor operator: Types::OperatorResponse
|
8967
8972
|
attr_accessor instance_id: ::String
|
8968
8973
|
attr_accessor image_id: ::String
|
8969
8974
|
attr_accessor state: Types::InstanceState
|
@@ -9134,6 +9139,7 @@ module Aws::EC2
|
|
9134
9139
|
attr_accessor owner_id: ::String
|
9135
9140
|
attr_accessor tags: ::Array[Types::Tag]
|
9136
9141
|
attr_accessor image_metadata: Types::ImageMetadata
|
9142
|
+
attr_accessor operator: Types::OperatorResponse
|
9137
9143
|
SENSITIVE: []
|
9138
9144
|
end
|
9139
9145
|
|
@@ -9227,6 +9233,7 @@ module Aws::EC2
|
|
9227
9233
|
attr_accessor ipv_4_prefixes: ::Array[Types::InstanceIpv4Prefix]
|
9228
9234
|
attr_accessor ipv_6_prefixes: ::Array[Types::InstanceIpv6Prefix]
|
9229
9235
|
attr_accessor connection_tracking_configuration: Types::ConnectionTrackingSpecificationResponse
|
9236
|
+
attr_accessor operator: Types::OperatorResponse
|
9230
9237
|
SENSITIVE: []
|
9231
9238
|
end
|
9232
9239
|
|
@@ -9370,6 +9377,7 @@ module Aws::EC2
|
|
9370
9377
|
class InstanceStatus
|
9371
9378
|
attr_accessor availability_zone: ::String
|
9372
9379
|
attr_accessor outpost_arn: ::String
|
9380
|
+
attr_accessor operator: Types::OperatorResponse
|
9373
9381
|
attr_accessor events: ::Array[Types::InstanceStatusEvent]
|
9374
9382
|
attr_accessor instance_id: ::String
|
9375
9383
|
attr_accessor instance_state: Types::InstanceState
|
@@ -9910,6 +9918,7 @@ module Aws::EC2
|
|
9910
9918
|
attr_accessor default_version_number: ::Integer
|
9911
9919
|
attr_accessor latest_version_number: ::Integer
|
9912
9920
|
attr_accessor tags: ::Array[Types::Tag]
|
9921
|
+
attr_accessor operator: Types::OperatorResponse
|
9913
9922
|
SENSITIVE: []
|
9914
9923
|
end
|
9915
9924
|
|
@@ -10246,6 +10255,7 @@ module Aws::EC2
|
|
10246
10255
|
attr_accessor created_by: ::String
|
10247
10256
|
attr_accessor default_version: bool
|
10248
10257
|
attr_accessor launch_template_data: Types::ResponseLaunchTemplateData
|
10258
|
+
attr_accessor operator: Types::OperatorResponse
|
10249
10259
|
SENSITIVE: []
|
10250
10260
|
end
|
10251
10261
|
|
@@ -11805,6 +11815,7 @@ module Aws::EC2
|
|
11805
11815
|
attr_accessor deny_all_igw_traffic: bool
|
11806
11816
|
attr_accessor ipv_6_native: bool
|
11807
11817
|
attr_accessor ipv_6_address: ::String
|
11818
|
+
attr_accessor operator: Types::OperatorResponse
|
11808
11819
|
SENSITIVE: []
|
11809
11820
|
end
|
11810
11821
|
|
@@ -11947,6 +11958,17 @@ module Aws::EC2
|
|
11947
11958
|
SENSITIVE: []
|
11948
11959
|
end
|
11949
11960
|
|
11961
|
+
class OperatorRequest
|
11962
|
+
attr_accessor principal: ::String
|
11963
|
+
SENSITIVE: []
|
11964
|
+
end
|
11965
|
+
|
11966
|
+
class OperatorResponse
|
11967
|
+
attr_accessor managed: bool
|
11968
|
+
attr_accessor principal: ::String
|
11969
|
+
SENSITIVE: []
|
11970
|
+
end
|
11971
|
+
|
11950
11972
|
class PacketHeaderStatement
|
11951
11973
|
attr_accessor source_addresses: ::Array[::String]
|
11952
11974
|
attr_accessor destination_addresses: ::Array[::String]
|
@@ -12822,6 +12844,7 @@ module Aws::EC2
|
|
12822
12844
|
attr_accessor private_dns_name_options: Types::LaunchTemplatePrivateDnsNameOptionsRequest
|
12823
12845
|
attr_accessor maintenance_options: Types::LaunchTemplateInstanceMaintenanceOptionsRequest
|
12824
12846
|
attr_accessor disable_api_stop: bool
|
12847
|
+
attr_accessor operator: Types::OperatorRequest
|
12825
12848
|
SENSITIVE: [:user_data]
|
12826
12849
|
end
|
12827
12850
|
|
@@ -13117,6 +13140,7 @@ module Aws::EC2
|
|
13117
13140
|
attr_accessor private_dns_name_options: Types::LaunchTemplatePrivateDnsNameOptions
|
13118
13141
|
attr_accessor maintenance_options: Types::LaunchTemplateInstanceMaintenanceOptions
|
13119
13142
|
attr_accessor disable_api_stop: bool
|
13143
|
+
attr_accessor operator: Types::OperatorResponse
|
13120
13144
|
SENSITIVE: [:user_data]
|
13121
13145
|
end
|
13122
13146
|
|
@@ -13368,6 +13392,7 @@ module Aws::EC2
|
|
13368
13392
|
attr_accessor maintenance_options: Types::InstanceMaintenanceOptionsRequest
|
13369
13393
|
attr_accessor disable_api_stop: bool
|
13370
13394
|
attr_accessor enable_primary_ipv_6: bool
|
13395
|
+
attr_accessor operator: Types::OperatorRequest
|
13371
13396
|
attr_accessor dry_run: bool
|
13372
13397
|
attr_accessor disable_api_termination: bool
|
13373
13398
|
attr_accessor instance_initiated_shutdown_behavior: ("stop" | "terminate")
|
@@ -15198,6 +15223,7 @@ module Aws::EC2
|
|
15198
15223
|
attr_accessor multi_attach_enabled: bool
|
15199
15224
|
attr_accessor throughput: ::Integer
|
15200
15225
|
attr_accessor sse_type: ("sse-ebs" | "sse-kms" | "none")
|
15226
|
+
attr_accessor operator: Types::OperatorResponse
|
15201
15227
|
attr_accessor volume_id: ::String
|
15202
15228
|
attr_accessor size: ::Integer
|
15203
15229
|
attr_accessor snapshot_id: ::String
|
data/sig/volume.rbs
CHANGED
@@ -42,6 +42,9 @@ module Aws
|
|
42
42
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Volume.html#sse_type-instance_method
|
43
43
|
def sse_type: () -> ("sse-ebs" | "sse-kms" | "none")
|
44
44
|
|
45
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Volume.html#operator-instance_method
|
46
|
+
def operator: () -> Types::OperatorResponse
|
47
|
+
|
45
48
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Volume.html#size-instance_method
|
46
49
|
def size: () -> ::Integer
|
47
50
|
|
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.490.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-11-
|
11
|
+
date: 2024-11-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|