aws-sdk-ec2 1.493.0 → 1.494.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +110 -16
- data/lib/aws-sdk-ec2/client_api.rb +26 -0
- data/lib/aws-sdk-ec2/instance.rb +9 -3
- data/lib/aws-sdk-ec2/placement_group.rb +13 -0
- data/lib/aws-sdk-ec2/resource.rb +29 -3
- data/lib/aws-sdk-ec2/snapshot.rb +51 -0
- data/lib/aws-sdk-ec2/subnet.rb +20 -0
- data/lib/aws-sdk-ec2/types.rb +193 -19
- data/lib/aws-sdk-ec2/vpc.rb +20 -0
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/client.rbs +12 -3
- data/sig/snapshot.rbs +10 -0
- data/sig/types.rbs +21 -0
- metadata +2 -2
data/sig/snapshot.rbs
CHANGED
@@ -36,6 +36,15 @@ module Aws
|
|
36
36
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Snapshot.html#sse_type-instance_method
|
37
37
|
def sse_type: () -> ("sse-ebs" | "sse-kms" | "none")
|
38
38
|
|
39
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Snapshot.html#transfer_type-instance_method
|
40
|
+
def transfer_type: () -> ("time-based" | "standard")
|
41
|
+
|
42
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Snapshot.html#completion_duration_minutes-instance_method
|
43
|
+
def completion_duration_minutes: () -> ::Integer
|
44
|
+
|
45
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Snapshot.html#completion_time-instance_method
|
46
|
+
def completion_time: () -> ::Time
|
47
|
+
|
39
48
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Snapshot.html#volume_id-instance_method
|
40
49
|
def volume_id: () -> ::String
|
41
50
|
|
@@ -106,6 +115,7 @@ module Aws
|
|
106
115
|
]?
|
107
116
|
},
|
108
117
|
],
|
118
|
+
?completion_duration_minutes: ::Integer,
|
109
119
|
?dry_run: bool
|
110
120
|
) -> Types::CopySnapshotResult
|
111
121
|
| (?Hash[Symbol, untyped]) -> Types::CopySnapshotResult
|
data/sig/types.rbs
CHANGED
@@ -1591,6 +1591,7 @@ module Aws::EC2
|
|
1591
1591
|
attr_accessor connection_notification_arn: ::String
|
1592
1592
|
attr_accessor connection_events: ::Array[::String]
|
1593
1593
|
attr_accessor connection_notification_state: ("Enabled" | "Disabled")
|
1594
|
+
attr_accessor service_region: ::String
|
1594
1595
|
SENSITIVE: []
|
1595
1596
|
end
|
1596
1597
|
|
@@ -1678,6 +1679,7 @@ module Aws::EC2
|
|
1678
1679
|
attr_accessor source_region: ::String
|
1679
1680
|
attr_accessor source_snapshot_id: ::String
|
1680
1681
|
attr_accessor tag_specifications: ::Array[Types::TagSpecification]
|
1682
|
+
attr_accessor completion_duration_minutes: ::Integer
|
1681
1683
|
attr_accessor dry_run: bool
|
1682
1684
|
SENSITIVE: [:presigned_url]
|
1683
1685
|
end
|
@@ -3058,6 +3060,7 @@ module Aws::EC2
|
|
3058
3060
|
attr_accessor private_dns_enabled: bool
|
3059
3061
|
attr_accessor tag_specifications: ::Array[Types::TagSpecification]
|
3060
3062
|
attr_accessor subnet_configurations: ::Array[Types::SubnetConfiguration]
|
3063
|
+
attr_accessor service_region: ::String
|
3061
3064
|
SENSITIVE: []
|
3062
3065
|
end
|
3063
3066
|
|
@@ -3074,6 +3077,7 @@ module Aws::EC2
|
|
3074
3077
|
attr_accessor network_load_balancer_arns: ::Array[::String]
|
3075
3078
|
attr_accessor gateway_load_balancer_arns: ::Array[::String]
|
3076
3079
|
attr_accessor supported_ip_address_types: ::Array[::String]
|
3080
|
+
attr_accessor supported_regions: ::Array[::String]
|
3077
3081
|
attr_accessor client_token: ::String
|
3078
3082
|
attr_accessor tag_specifications: ::Array[Types::TagSpecification]
|
3079
3083
|
SENSITIVE: []
|
@@ -6408,6 +6412,7 @@ module Aws::EC2
|
|
6408
6412
|
attr_accessor filters: ::Array[Types::Filter]
|
6409
6413
|
attr_accessor max_results: ::Integer
|
6410
6414
|
attr_accessor next_token: ::String
|
6415
|
+
attr_accessor service_regions: ::Array[::String]
|
6411
6416
|
SENSITIVE: []
|
6412
6417
|
end
|
6413
6418
|
|
@@ -11609,6 +11614,8 @@ module Aws::EC2
|
|
11609
11614
|
attr_accessor remove_gateway_load_balancer_arns: ::Array[::String]
|
11610
11615
|
attr_accessor add_supported_ip_address_types: ::Array[::String]
|
11611
11616
|
attr_accessor remove_supported_ip_address_types: ::Array[::String]
|
11617
|
+
attr_accessor add_supported_regions: ::Array[::String]
|
11618
|
+
attr_accessor remove_supported_regions: ::Array[::String]
|
11612
11619
|
SENSITIVE: []
|
11613
11620
|
end
|
11614
11621
|
|
@@ -13938,6 +13945,8 @@ module Aws::EC2
|
|
13938
13945
|
attr_accessor private_dns_name_configuration: Types::PrivateDnsNameConfiguration
|
13939
13946
|
attr_accessor payer_responsibility: ("ServiceOwner")
|
13940
13947
|
attr_accessor tags: ::Array[Types::Tag]
|
13948
|
+
attr_accessor supported_regions: ::Array[Types::SupportedRegionDetail]
|
13949
|
+
attr_accessor remote_access_enabled: bool
|
13941
13950
|
SENSITIVE: []
|
13942
13951
|
end
|
13943
13952
|
|
@@ -13945,6 +13954,7 @@ module Aws::EC2
|
|
13945
13954
|
attr_accessor service_name: ::String
|
13946
13955
|
attr_accessor service_id: ::String
|
13947
13956
|
attr_accessor service_type: ::Array[Types::ServiceTypeDetail]
|
13957
|
+
attr_accessor service_region: ::String
|
13948
13958
|
attr_accessor availability_zones: ::Array[::String]
|
13949
13959
|
attr_accessor owner: ::String
|
13950
13960
|
attr_accessor base_endpoint_dns_names: ::Array[::String]
|
@@ -13984,6 +13994,9 @@ module Aws::EC2
|
|
13984
13994
|
attr_accessor storage_tier: ("archive" | "standard")
|
13985
13995
|
attr_accessor restore_expiry_time: ::Time
|
13986
13996
|
attr_accessor sse_type: ("sse-ebs" | "sse-kms" | "none")
|
13997
|
+
attr_accessor transfer_type: ("time-based" | "standard")
|
13998
|
+
attr_accessor completion_duration_minutes: ::Integer
|
13999
|
+
attr_accessor completion_time: ::Time
|
13987
14000
|
attr_accessor snapshot_id: ::String
|
13988
14001
|
attr_accessor volume_id: ::String
|
13989
14002
|
attr_accessor state: ("pending" | "completed" | "error" | "recoverable" | "recovering")
|
@@ -14459,6 +14472,12 @@ module Aws::EC2
|
|
14459
14472
|
SENSITIVE: []
|
14460
14473
|
end
|
14461
14474
|
|
14475
|
+
class SupportedRegionDetail
|
14476
|
+
attr_accessor region: ::String
|
14477
|
+
attr_accessor service_state: ::String
|
14478
|
+
SENSITIVE: []
|
14479
|
+
end
|
14480
|
+
|
14462
14481
|
class Tag
|
14463
14482
|
attr_accessor key: ::String
|
14464
14483
|
attr_accessor value: ::String
|
@@ -15621,6 +15640,7 @@ module Aws::EC2
|
|
15621
15640
|
attr_accessor tags: ::Array[Types::Tag]
|
15622
15641
|
attr_accessor owner_id: ::String
|
15623
15642
|
attr_accessor last_error: Types::LastError
|
15643
|
+
attr_accessor service_region: ::String
|
15624
15644
|
SENSITIVE: []
|
15625
15645
|
end
|
15626
15646
|
|
@@ -15636,6 +15656,7 @@ module Aws::EC2
|
|
15636
15656
|
attr_accessor ip_address_type: ("ipv4" | "dualstack" | "ipv6")
|
15637
15657
|
attr_accessor vpc_endpoint_connection_id: ::String
|
15638
15658
|
attr_accessor tags: ::Array[Types::Tag]
|
15659
|
+
attr_accessor vpc_endpoint_region: ::String
|
15639
15660
|
SENSITIVE: []
|
15640
15661
|
end
|
15641
15662
|
|
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.494.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-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|