aws-sdk-ec2 1.489.0 → 1.491.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 +561 -62
- data/lib/aws-sdk-ec2/client_api.rb +173 -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 +55 -40
- data/lib/aws-sdk-ec2/subnet.rb +21 -5
- data/lib/aws-sdk-ec2/types.rb +632 -58
- data/lib/aws-sdk-ec2/volume.rb +6 -0
- data/lib/aws-sdk-ec2/vpc.rb +36 -30
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/client.rbs +109 -2
- data/sig/instance.rbs +3 -0
- data/sig/network_interface.rbs +3 -0
- data/sig/resource.rbs +9 -0
- data/sig/subnet.rbs +9 -0
- data/sig/types.rbs +129 -0
- data/sig/volume.rbs +3 -0
- data/sig/vpc.rbs +3 -0
- metadata +2 -2
data/sig/types.rbs
CHANGED
@@ -947,6 +947,11 @@ module Aws::EC2
|
|
947
947
|
SENSITIVE: []
|
948
948
|
end
|
949
949
|
|
950
|
+
class BlockPublicAccessStates
|
951
|
+
attr_accessor internet_gateway_block_mode: ("off" | "block-bidirectional" | "block-ingress")
|
952
|
+
SENSITIVE: []
|
953
|
+
end
|
954
|
+
|
950
955
|
class BundleInstanceRequest
|
951
956
|
attr_accessor instance_id: ::String
|
952
957
|
attr_accessor storage: Types::Storage
|
@@ -2109,6 +2114,7 @@ module Aws::EC2
|
|
2109
2114
|
attr_accessor launch_template_name: ::String
|
2110
2115
|
attr_accessor version_description: ::String
|
2111
2116
|
attr_accessor launch_template_data: Types::RequestLaunchTemplateData
|
2117
|
+
attr_accessor operator: Types::OperatorRequest
|
2112
2118
|
attr_accessor tag_specifications: ::Array[Types::TagSpecification]
|
2113
2119
|
SENSITIVE: []
|
2114
2120
|
end
|
@@ -2314,6 +2320,7 @@ module Aws::EC2
|
|
2314
2320
|
attr_accessor client_token: ::String
|
2315
2321
|
attr_accessor enable_primary_ipv_6: bool
|
2316
2322
|
attr_accessor connection_tracking_specification: Types::ConnectionTrackingSpecificationRequest
|
2323
|
+
attr_accessor operator: Types::OperatorRequest
|
2317
2324
|
attr_accessor subnet_id: ::String
|
2318
2325
|
attr_accessor description: ::String
|
2319
2326
|
attr_accessor private_ip_address: ::String
|
@@ -2931,10 +2938,25 @@ module Aws::EC2
|
|
2931
2938
|
attr_accessor multi_attach_enabled: bool
|
2932
2939
|
attr_accessor throughput: ::Integer
|
2933
2940
|
attr_accessor client_token: ::String
|
2941
|
+
attr_accessor operator: Types::OperatorRequest
|
2934
2942
|
attr_accessor dry_run: bool
|
2935
2943
|
SENSITIVE: []
|
2936
2944
|
end
|
2937
2945
|
|
2946
|
+
class CreateVpcBlockPublicAccessExclusionRequest
|
2947
|
+
attr_accessor dry_run: bool
|
2948
|
+
attr_accessor subnet_id: ::String
|
2949
|
+
attr_accessor vpc_id: ::String
|
2950
|
+
attr_accessor internet_gateway_exclusion_mode: ("allow-bidirectional" | "allow-egress")
|
2951
|
+
attr_accessor tag_specifications: ::Array[Types::TagSpecification]
|
2952
|
+
SENSITIVE: []
|
2953
|
+
end
|
2954
|
+
|
2955
|
+
class CreateVpcBlockPublicAccessExclusionResult
|
2956
|
+
attr_accessor vpc_block_public_access_exclusion: Types::VpcBlockPublicAccessExclusion
|
2957
|
+
SENSITIVE: []
|
2958
|
+
end
|
2959
|
+
|
2938
2960
|
class CreateVpcEndpointConnectionNotificationRequest
|
2939
2961
|
attr_accessor dry_run: bool
|
2940
2962
|
attr_accessor service_id: ::String
|
@@ -3842,6 +3864,17 @@ module Aws::EC2
|
|
3842
3864
|
SENSITIVE: []
|
3843
3865
|
end
|
3844
3866
|
|
3867
|
+
class DeleteVpcBlockPublicAccessExclusionRequest
|
3868
|
+
attr_accessor dry_run: bool
|
3869
|
+
attr_accessor exclusion_id: ::String
|
3870
|
+
SENSITIVE: []
|
3871
|
+
end
|
3872
|
+
|
3873
|
+
class DeleteVpcBlockPublicAccessExclusionResult
|
3874
|
+
attr_accessor vpc_block_public_access_exclusion: Types::VpcBlockPublicAccessExclusion
|
3875
|
+
SENSITIVE: []
|
3876
|
+
end
|
3877
|
+
|
3845
3878
|
class DeleteVpcEndpointConnectionNotificationsRequest
|
3846
3879
|
attr_accessor dry_run: bool
|
3847
3880
|
attr_accessor connection_notification_ids: ::Array[::String]
|
@@ -6160,6 +6193,31 @@ module Aws::EC2
|
|
6160
6193
|
SENSITIVE: []
|
6161
6194
|
end
|
6162
6195
|
|
6196
|
+
class DescribeVpcBlockPublicAccessExclusionsRequest
|
6197
|
+
attr_accessor dry_run: bool
|
6198
|
+
attr_accessor filters: ::Array[Types::Filter]
|
6199
|
+
attr_accessor exclusion_ids: ::Array[::String]
|
6200
|
+
attr_accessor next_token: ::String
|
6201
|
+
attr_accessor max_results: ::Integer
|
6202
|
+
SENSITIVE: []
|
6203
|
+
end
|
6204
|
+
|
6205
|
+
class DescribeVpcBlockPublicAccessExclusionsResult
|
6206
|
+
attr_accessor vpc_block_public_access_exclusions: ::Array[Types::VpcBlockPublicAccessExclusion]
|
6207
|
+
attr_accessor next_token: ::String
|
6208
|
+
SENSITIVE: []
|
6209
|
+
end
|
6210
|
+
|
6211
|
+
class DescribeVpcBlockPublicAccessOptionsRequest
|
6212
|
+
attr_accessor dry_run: bool
|
6213
|
+
SENSITIVE: []
|
6214
|
+
end
|
6215
|
+
|
6216
|
+
class DescribeVpcBlockPublicAccessOptionsResult
|
6217
|
+
attr_accessor vpc_block_public_access_options: Types::VpcBlockPublicAccessOptions
|
6218
|
+
SENSITIVE: []
|
6219
|
+
end
|
6220
|
+
|
6163
6221
|
class DescribeVpcClassicLinkDnsSupportRequest
|
6164
6222
|
attr_accessor vpc_ids: ::Array[::String]
|
6165
6223
|
attr_accessor max_results: ::Integer
|
@@ -6926,6 +6984,7 @@ module Aws::EC2
|
|
6926
6984
|
attr_accessor volume_id: ::String
|
6927
6985
|
attr_accessor associated_resource: ::String
|
6928
6986
|
attr_accessor volume_owner_id: ::String
|
6987
|
+
attr_accessor operator: Types::OperatorResponse
|
6929
6988
|
SENSITIVE: []
|
6930
6989
|
end
|
6931
6990
|
|
@@ -8964,6 +9023,7 @@ module Aws::EC2
|
|
8964
9023
|
attr_accessor tpm_support: ::String
|
8965
9024
|
attr_accessor maintenance_options: Types::InstanceMaintenanceOptions
|
8966
9025
|
attr_accessor current_instance_boot_mode: ("legacy-bios" | "uefi")
|
9026
|
+
attr_accessor operator: Types::OperatorResponse
|
8967
9027
|
attr_accessor instance_id: ::String
|
8968
9028
|
attr_accessor image_id: ::String
|
8969
9029
|
attr_accessor state: Types::InstanceState
|
@@ -9134,6 +9194,7 @@ module Aws::EC2
|
|
9134
9194
|
attr_accessor owner_id: ::String
|
9135
9195
|
attr_accessor tags: ::Array[Types::Tag]
|
9136
9196
|
attr_accessor image_metadata: Types::ImageMetadata
|
9197
|
+
attr_accessor operator: Types::OperatorResponse
|
9137
9198
|
SENSITIVE: []
|
9138
9199
|
end
|
9139
9200
|
|
@@ -9227,6 +9288,7 @@ module Aws::EC2
|
|
9227
9288
|
attr_accessor ipv_4_prefixes: ::Array[Types::InstanceIpv4Prefix]
|
9228
9289
|
attr_accessor ipv_6_prefixes: ::Array[Types::InstanceIpv6Prefix]
|
9229
9290
|
attr_accessor connection_tracking_configuration: Types::ConnectionTrackingSpecificationResponse
|
9291
|
+
attr_accessor operator: Types::OperatorResponse
|
9230
9292
|
SENSITIVE: []
|
9231
9293
|
end
|
9232
9294
|
|
@@ -9370,6 +9432,7 @@ module Aws::EC2
|
|
9370
9432
|
class InstanceStatus
|
9371
9433
|
attr_accessor availability_zone: ::String
|
9372
9434
|
attr_accessor outpost_arn: ::String
|
9435
|
+
attr_accessor operator: Types::OperatorResponse
|
9373
9436
|
attr_accessor events: ::Array[Types::InstanceStatusEvent]
|
9374
9437
|
attr_accessor instance_id: ::String
|
9375
9438
|
attr_accessor instance_state: Types::InstanceState
|
@@ -9910,6 +9973,7 @@ module Aws::EC2
|
|
9910
9973
|
attr_accessor default_version_number: ::Integer
|
9911
9974
|
attr_accessor latest_version_number: ::Integer
|
9912
9975
|
attr_accessor tags: ::Array[Types::Tag]
|
9976
|
+
attr_accessor operator: Types::OperatorResponse
|
9913
9977
|
SENSITIVE: []
|
9914
9978
|
end
|
9915
9979
|
|
@@ -10246,6 +10310,7 @@ module Aws::EC2
|
|
10246
10310
|
attr_accessor created_by: ::String
|
10247
10311
|
attr_accessor default_version: bool
|
10248
10312
|
attr_accessor launch_template_data: Types::ResponseLaunchTemplateData
|
10313
|
+
attr_accessor operator: Types::OperatorResponse
|
10249
10314
|
SENSITIVE: []
|
10250
10315
|
end
|
10251
10316
|
|
@@ -11362,6 +11427,29 @@ module Aws::EC2
|
|
11362
11427
|
SENSITIVE: []
|
11363
11428
|
end
|
11364
11429
|
|
11430
|
+
class ModifyVpcBlockPublicAccessExclusionRequest
|
11431
|
+
attr_accessor dry_run: bool
|
11432
|
+
attr_accessor exclusion_id: ::String
|
11433
|
+
attr_accessor internet_gateway_exclusion_mode: ("allow-bidirectional" | "allow-egress")
|
11434
|
+
SENSITIVE: []
|
11435
|
+
end
|
11436
|
+
|
11437
|
+
class ModifyVpcBlockPublicAccessExclusionResult
|
11438
|
+
attr_accessor vpc_block_public_access_exclusion: Types::VpcBlockPublicAccessExclusion
|
11439
|
+
SENSITIVE: []
|
11440
|
+
end
|
11441
|
+
|
11442
|
+
class ModifyVpcBlockPublicAccessOptionsRequest
|
11443
|
+
attr_accessor dry_run: bool
|
11444
|
+
attr_accessor internet_gateway_block_mode: ("off" | "block-bidirectional" | "block-ingress")
|
11445
|
+
SENSITIVE: []
|
11446
|
+
end
|
11447
|
+
|
11448
|
+
class ModifyVpcBlockPublicAccessOptionsResult
|
11449
|
+
attr_accessor vpc_block_public_access_options: Types::VpcBlockPublicAccessOptions
|
11450
|
+
SENSITIVE: []
|
11451
|
+
end
|
11452
|
+
|
11365
11453
|
class ModifyVpcEndpointConnectionNotificationRequest
|
11366
11454
|
attr_accessor dry_run: bool
|
11367
11455
|
attr_accessor connection_notification_id: ::String
|
@@ -11805,6 +11893,7 @@ module Aws::EC2
|
|
11805
11893
|
attr_accessor deny_all_igw_traffic: bool
|
11806
11894
|
attr_accessor ipv_6_native: bool
|
11807
11895
|
attr_accessor ipv_6_address: ::String
|
11896
|
+
attr_accessor operator: Types::OperatorResponse
|
11808
11897
|
SENSITIVE: []
|
11809
11898
|
end
|
11810
11899
|
|
@@ -11947,6 +12036,17 @@ module Aws::EC2
|
|
11947
12036
|
SENSITIVE: []
|
11948
12037
|
end
|
11949
12038
|
|
12039
|
+
class OperatorRequest
|
12040
|
+
attr_accessor principal: ::String
|
12041
|
+
SENSITIVE: []
|
12042
|
+
end
|
12043
|
+
|
12044
|
+
class OperatorResponse
|
12045
|
+
attr_accessor managed: bool
|
12046
|
+
attr_accessor principal: ::String
|
12047
|
+
SENSITIVE: []
|
12048
|
+
end
|
12049
|
+
|
11950
12050
|
class PacketHeaderStatement
|
11951
12051
|
attr_accessor source_addresses: ::Array[::String]
|
11952
12052
|
attr_accessor destination_addresses: ::Array[::String]
|
@@ -12822,6 +12922,7 @@ module Aws::EC2
|
|
12822
12922
|
attr_accessor private_dns_name_options: Types::LaunchTemplatePrivateDnsNameOptionsRequest
|
12823
12923
|
attr_accessor maintenance_options: Types::LaunchTemplateInstanceMaintenanceOptionsRequest
|
12824
12924
|
attr_accessor disable_api_stop: bool
|
12925
|
+
attr_accessor operator: Types::OperatorRequest
|
12825
12926
|
SENSITIVE: [:user_data]
|
12826
12927
|
end
|
12827
12928
|
|
@@ -13117,6 +13218,7 @@ module Aws::EC2
|
|
13117
13218
|
attr_accessor private_dns_name_options: Types::LaunchTemplatePrivateDnsNameOptions
|
13118
13219
|
attr_accessor maintenance_options: Types::LaunchTemplateInstanceMaintenanceOptions
|
13119
13220
|
attr_accessor disable_api_stop: bool
|
13221
|
+
attr_accessor operator: Types::OperatorResponse
|
13120
13222
|
SENSITIVE: [:user_data]
|
13121
13223
|
end
|
13122
13224
|
|
@@ -13368,6 +13470,7 @@ module Aws::EC2
|
|
13368
13470
|
attr_accessor maintenance_options: Types::InstanceMaintenanceOptionsRequest
|
13369
13471
|
attr_accessor disable_api_stop: bool
|
13370
13472
|
attr_accessor enable_primary_ipv_6: bool
|
13473
|
+
attr_accessor operator: Types::OperatorRequest
|
13371
13474
|
attr_accessor dry_run: bool
|
13372
13475
|
attr_accessor disable_api_termination: bool
|
13373
13476
|
attr_accessor instance_initiated_shutdown_behavior: ("stop" | "terminate")
|
@@ -14148,6 +14251,7 @@ module Aws::EC2
|
|
14148
14251
|
attr_accessor enable_dns_64: bool
|
14149
14252
|
attr_accessor ipv_6_native: bool
|
14150
14253
|
attr_accessor private_dns_name_options_on_launch: Types::PrivateDnsNameOptionsOnLaunch
|
14254
|
+
attr_accessor block_public_access_states: Types::BlockPublicAccessStates
|
14151
14255
|
attr_accessor subnet_id: ::String
|
14152
14256
|
attr_accessor state: ("pending" | "available" | "unavailable")
|
14153
14257
|
attr_accessor vpc_id: ::String
|
@@ -15198,6 +15302,7 @@ module Aws::EC2
|
|
15198
15302
|
attr_accessor multi_attach_enabled: bool
|
15199
15303
|
attr_accessor throughput: ::Integer
|
15200
15304
|
attr_accessor sse_type: ("sse-ebs" | "sse-kms" | "none")
|
15305
|
+
attr_accessor operator: Types::OperatorResponse
|
15201
15306
|
attr_accessor volume_id: ::String
|
15202
15307
|
attr_accessor size: ::Integer
|
15203
15308
|
attr_accessor snapshot_id: ::String
|
@@ -15301,6 +15406,7 @@ module Aws::EC2
|
|
15301
15406
|
attr_accessor cidr_block_association_set: ::Array[Types::VpcCidrBlockAssociation]
|
15302
15407
|
attr_accessor is_default: bool
|
15303
15408
|
attr_accessor tags: ::Array[Types::Tag]
|
15409
|
+
attr_accessor block_public_access_states: Types::BlockPublicAccessStates
|
15304
15410
|
attr_accessor vpc_id: ::String
|
15305
15411
|
attr_accessor state: ("pending" | "available")
|
15306
15412
|
attr_accessor cidr_block: ::String
|
@@ -15314,6 +15420,29 @@ module Aws::EC2
|
|
15314
15420
|
SENSITIVE: []
|
15315
15421
|
end
|
15316
15422
|
|
15423
|
+
class VpcBlockPublicAccessExclusion
|
15424
|
+
attr_accessor exclusion_id: ::String
|
15425
|
+
attr_accessor internet_gateway_exclusion_mode: ("allow-bidirectional" | "allow-egress")
|
15426
|
+
attr_accessor resource_arn: ::String
|
15427
|
+
attr_accessor state: ("create-in-progress" | "create-complete" | "create-failed" | "update-in-progress" | "update-complete" | "update-failed" | "delete-in-progress" | "delete-complete" | "disable-in-progress" | "disable-complete")
|
15428
|
+
attr_accessor reason: ::String
|
15429
|
+
attr_accessor creation_timestamp: ::Time
|
15430
|
+
attr_accessor last_update_timestamp: ::Time
|
15431
|
+
attr_accessor deletion_timestamp: ::Time
|
15432
|
+
attr_accessor tags: ::Array[Types::Tag]
|
15433
|
+
SENSITIVE: []
|
15434
|
+
end
|
15435
|
+
|
15436
|
+
class VpcBlockPublicAccessOptions
|
15437
|
+
attr_accessor aws_account_id: ::String
|
15438
|
+
attr_accessor aws_region: ::String
|
15439
|
+
attr_accessor state: ("default-state" | "update-in-progress" | "update-complete")
|
15440
|
+
attr_accessor internet_gateway_block_mode: ("off" | "block-bidirectional" | "block-ingress")
|
15441
|
+
attr_accessor reason: ::String
|
15442
|
+
attr_accessor last_update_timestamp: ::Time
|
15443
|
+
SENSITIVE: []
|
15444
|
+
end
|
15445
|
+
|
15317
15446
|
class VpcCidrBlockAssociation
|
15318
15447
|
attr_accessor association_id: ::String
|
15319
15448
|
attr_accessor cidr_block: ::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
|
|
data/sig/vpc.rbs
CHANGED
@@ -36,6 +36,9 @@ module Aws
|
|
36
36
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Vpc.html#tags-instance_method
|
37
37
|
def tags: () -> ::Array[Types::Tag]
|
38
38
|
|
39
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Vpc.html#block_public_access_states-instance_method
|
40
|
+
def block_public_access_states: () -> Types::BlockPublicAccessStates
|
41
|
+
|
39
42
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Vpc.html#state-instance_method
|
40
43
|
def state: () -> ("pending" | "available")
|
41
44
|
|
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.491.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-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|