aws-sdk-ec2 1.485.0 → 1.487.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 +259 -22
- data/lib/aws-sdk-ec2/client_api.rb +98 -0
- data/lib/aws-sdk-ec2/resource.rb +14 -9
- data/lib/aws-sdk-ec2/security_group.rb +6 -0
- data/lib/aws-sdk-ec2/subnet.rb +12 -7
- data/lib/aws-sdk-ec2/types.rb +323 -28
- data/lib/aws-sdk-ec2/vpc.rb +8 -8
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/client.rbs +46 -0
- data/sig/security_group.rbs +3 -0
- data/sig/types.rbs +67 -0
- metadata +2 -2
data/sig/types.rbs
CHANGED
@@ -610,6 +610,18 @@ module Aws::EC2
|
|
610
610
|
SENSITIVE: []
|
611
611
|
end
|
612
612
|
|
613
|
+
class AssociateSecurityGroupVpcRequest
|
614
|
+
attr_accessor group_id: ::String
|
615
|
+
attr_accessor vpc_id: ::String
|
616
|
+
attr_accessor dry_run: bool
|
617
|
+
SENSITIVE: []
|
618
|
+
end
|
619
|
+
|
620
|
+
class AssociateSecurityGroupVpcResult
|
621
|
+
attr_accessor state: ("associating" | "associated" | "association-failed" | "disassociating" | "disassociated" | "disassociation-failed")
|
622
|
+
SENSITIVE: []
|
623
|
+
end
|
624
|
+
|
613
625
|
class AssociateSubnetCidrBlockRequest
|
614
626
|
attr_accessor ipv_6_ipam_pool_id: ::String
|
615
627
|
attr_accessor ipv_6_netmask_length: ::Integer
|
@@ -2441,6 +2453,7 @@ module Aws::EC2
|
|
2441
2453
|
class CreateSecurityGroupResult
|
2442
2454
|
attr_accessor group_id: ::String
|
2443
2455
|
attr_accessor tags: ::Array[Types::Tag]
|
2456
|
+
attr_accessor security_group_arn: ::String
|
2444
2457
|
SENSITIVE: []
|
2445
2458
|
end
|
2446
2459
|
|
@@ -5544,6 +5557,20 @@ module Aws::EC2
|
|
5544
5557
|
SENSITIVE: []
|
5545
5558
|
end
|
5546
5559
|
|
5560
|
+
class DescribeSecurityGroupVpcAssociationsRequest
|
5561
|
+
attr_accessor filters: ::Array[Types::Filter]
|
5562
|
+
attr_accessor next_token: ::String
|
5563
|
+
attr_accessor max_results: ::Integer
|
5564
|
+
attr_accessor dry_run: bool
|
5565
|
+
SENSITIVE: []
|
5566
|
+
end
|
5567
|
+
|
5568
|
+
class DescribeSecurityGroupVpcAssociationsResult
|
5569
|
+
attr_accessor security_group_vpc_associations: ::Array[Types::SecurityGroupVpcAssociation]
|
5570
|
+
attr_accessor next_token: ::String
|
5571
|
+
SENSITIVE: []
|
5572
|
+
end
|
5573
|
+
|
5547
5574
|
class DescribeSecurityGroupsRequest
|
5548
5575
|
attr_accessor group_ids: ::Array[::String]
|
5549
5576
|
attr_accessor group_names: ::Array[::String]
|
@@ -6727,6 +6754,18 @@ module Aws::EC2
|
|
6727
6754
|
SENSITIVE: []
|
6728
6755
|
end
|
6729
6756
|
|
6757
|
+
class DisassociateSecurityGroupVpcRequest
|
6758
|
+
attr_accessor group_id: ::String
|
6759
|
+
attr_accessor vpc_id: ::String
|
6760
|
+
attr_accessor dry_run: bool
|
6761
|
+
SENSITIVE: []
|
6762
|
+
end
|
6763
|
+
|
6764
|
+
class DisassociateSecurityGroupVpcResult
|
6765
|
+
attr_accessor state: ("associating" | "associated" | "association-failed" | "disassociating" | "disassociated" | "disassociation-failed")
|
6766
|
+
SENSITIVE: []
|
6767
|
+
end
|
6768
|
+
|
6730
6769
|
class DisassociateSubnetCidrBlockRequest
|
6731
6770
|
attr_accessor association_id: ::String
|
6732
6771
|
SENSITIVE: []
|
@@ -13183,6 +13222,7 @@ module Aws::EC2
|
|
13183
13222
|
class RevokeSecurityGroupEgressResult
|
13184
13223
|
attr_accessor return: bool
|
13185
13224
|
attr_accessor unknown_ip_permissions: ::Array[Types::IpPermission]
|
13225
|
+
attr_accessor revoked_security_group_rules: ::Array[Types::RevokedSecurityGroupRule]
|
13186
13226
|
SENSITIVE: []
|
13187
13227
|
end
|
13188
13228
|
|
@@ -13204,6 +13244,22 @@ module Aws::EC2
|
|
13204
13244
|
class RevokeSecurityGroupIngressResult
|
13205
13245
|
attr_accessor return: bool
|
13206
13246
|
attr_accessor unknown_ip_permissions: ::Array[Types::IpPermission]
|
13247
|
+
attr_accessor revoked_security_group_rules: ::Array[Types::RevokedSecurityGroupRule]
|
13248
|
+
SENSITIVE: []
|
13249
|
+
end
|
13250
|
+
|
13251
|
+
class RevokedSecurityGroupRule
|
13252
|
+
attr_accessor security_group_rule_id: ::String
|
13253
|
+
attr_accessor group_id: ::String
|
13254
|
+
attr_accessor is_egress: bool
|
13255
|
+
attr_accessor ip_protocol: ::String
|
13256
|
+
attr_accessor from_port: ::Integer
|
13257
|
+
attr_accessor to_port: ::Integer
|
13258
|
+
attr_accessor cidr_ipv_4: ::String
|
13259
|
+
attr_accessor cidr_ipv_6: ::String
|
13260
|
+
attr_accessor prefix_list_id: ::String
|
13261
|
+
attr_accessor referenced_group_id: ::String
|
13262
|
+
attr_accessor description: ::String
|
13207
13263
|
SENSITIVE: []
|
13208
13264
|
end
|
13209
13265
|
|
@@ -13534,6 +13590,7 @@ module Aws::EC2
|
|
13534
13590
|
attr_accessor ip_permissions_egress: ::Array[Types::IpPermission]
|
13535
13591
|
attr_accessor tags: ::Array[Types::Tag]
|
13536
13592
|
attr_accessor vpc_id: ::String
|
13593
|
+
attr_accessor security_group_arn: ::String
|
13537
13594
|
attr_accessor owner_id: ::String
|
13538
13595
|
attr_accessor group_name: ::String
|
13539
13596
|
attr_accessor description: ::String
|
@@ -13579,6 +13636,7 @@ module Aws::EC2
|
|
13579
13636
|
attr_accessor referenced_group_info: Types::ReferencedSecurityGroup
|
13580
13637
|
attr_accessor description: ::String
|
13581
13638
|
attr_accessor tags: ::Array[Types::Tag]
|
13639
|
+
attr_accessor security_group_rule_arn: ::String
|
13582
13640
|
SENSITIVE: []
|
13583
13641
|
end
|
13584
13642
|
|
@@ -13606,6 +13664,15 @@ module Aws::EC2
|
|
13606
13664
|
SENSITIVE: []
|
13607
13665
|
end
|
13608
13666
|
|
13667
|
+
class SecurityGroupVpcAssociation
|
13668
|
+
attr_accessor group_id: ::String
|
13669
|
+
attr_accessor vpc_id: ::String
|
13670
|
+
attr_accessor vpc_owner_id: ::String
|
13671
|
+
attr_accessor state: ("associating" | "associated" | "association-failed" | "disassociating" | "disassociated" | "disassociation-failed")
|
13672
|
+
attr_accessor state_reason: ::String
|
13673
|
+
SENSITIVE: []
|
13674
|
+
end
|
13675
|
+
|
13609
13676
|
class SendDiagnosticInterruptRequest
|
13610
13677
|
attr_accessor instance_id: ::String
|
13611
13678
|
attr_accessor dry_run: bool
|
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.487.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
|
+
date: 2024-11-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|