aws-sdk-ec2 1.435.0 → 1.436.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +1 -1
- data/lib/aws-sdk-ec2/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/classic_address.rbs +102 -0
- data/sig/client.rbs +13220 -0
- data/sig/dhcp_options.rbs +84 -0
- data/sig/errors.rbs +16 -0
- data/sig/image.rbs +213 -0
- data/sig/instance.rbs +557 -0
- data/sig/internet_gateway.rbs +91 -0
- data/sig/key_pair.rbs +54 -0
- data/sig/key_pair_info.rbs +63 -0
- data/sig/nat_gateway.rbs +107 -0
- data/sig/network_acl.rbs +144 -0
- data/sig/network_interface.rbs +232 -0
- data/sig/network_interface_association.rbs +62 -0
- data/sig/placement_group.rbs +78 -0
- data/sig/resource.rbs +1009 -0
- data/sig/route.rbs +113 -0
- data/sig/route_table.rbs +117 -0
- data/sig/route_table_association.rbs +69 -0
- data/sig/security_group.rbs +308 -0
- data/sig/snapshot.rbs +188 -0
- data/sig/subnet.rbs +422 -0
- data/sig/tag.rbs +63 -0
- data/sig/types.rbs +15047 -0
- data/sig/volume.rbs +203 -0
- data/sig/vpc.rbs +398 -0
- data/sig/vpc_address.rbs +98 -0
- data/sig/vpc_peering_connection.rbs +84 -0
- data/sig/waiters.rbs +664 -0
- metadata +32 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b384d939981e4c75f43073584ddcdaf9898a06045188ef8f4a12e51edc2fd972
|
4
|
+
data.tar.gz: b37f384eba738f49d039247154d9c5bb647e44dec2ab7efc8dfe01b1ff3d79d5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7613ff00e0d3221b4612d0948c02da9d3d42d9b507be6998755412ed3e962ac2be385f3fafcf3a85cb07c8eb0f921066245f661647cdbd9d64a3d715882b8368
|
7
|
+
data.tar.gz: 8d9c6d915164e9b0f2daee7fd4423f1b4970576fd8546cd2561a7190b31eb21df28b964fe591e54b60299e831e164b64246655aab57c271f60225973b386e927
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.436.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
@@ -58757,7 +58757,7 @@ module Aws::EC2
|
|
58757
58757
|
params: params,
|
58758
58758
|
config: config)
|
58759
58759
|
context[:gem_name] = 'aws-sdk-ec2'
|
58760
|
-
context[:gem_version] = '1.
|
58760
|
+
context[:gem_version] = '1.436.0'
|
58761
58761
|
Seahorse::Client::Request.new(handlers, context)
|
58762
58762
|
end
|
58763
58763
|
|
@@ -14,6 +14,7 @@ module Aws::EC2
|
|
14
14
|
option(
|
15
15
|
:endpoint_provider,
|
16
16
|
doc_type: 'Aws::EC2::EndpointProvider',
|
17
|
+
rbs_type: 'untyped',
|
17
18
|
docstring: 'The endpoint provider used to resolve endpoints. Any '\
|
18
19
|
'object that responds to `#resolve_endpoint(parameters)` '\
|
19
20
|
'where `parameters` is a Struct similar to '\
|
data/lib/aws-sdk-ec2.rb
CHANGED
@@ -0,0 +1,102 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module EC2
|
10
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/ClassicAddress.html
|
11
|
+
class ClassicAddress
|
12
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/ClassicAddress.html#initialize-instance_method
|
13
|
+
def initialize: (String public_ip, Hash[Symbol, untyped] options) -> void
|
14
|
+
| (public_ip: String, ?client: Client) -> void
|
15
|
+
| (Hash[Symbol, untyped] args) -> void
|
16
|
+
|
17
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/ClassicAddress.html#public_ip-instance_method
|
18
|
+
def public_ip: () -> String
|
19
|
+
|
20
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/ClassicAddress.html#instance_id-instance_method
|
21
|
+
def instance_id: () -> ::String
|
22
|
+
|
23
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/ClassicAddress.html#allocation_id-instance_method
|
24
|
+
def allocation_id: () -> ::String
|
25
|
+
|
26
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/ClassicAddress.html#association_id-instance_method
|
27
|
+
def association_id: () -> ::String
|
28
|
+
|
29
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/ClassicAddress.html#domain-instance_method
|
30
|
+
def domain: () -> ("vpc" | "standard")
|
31
|
+
|
32
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/ClassicAddress.html#network_interface_id-instance_method
|
33
|
+
def network_interface_id: () -> ::String
|
34
|
+
|
35
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/ClassicAddress.html#network_interface_owner_id-instance_method
|
36
|
+
def network_interface_owner_id: () -> ::String
|
37
|
+
|
38
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/ClassicAddress.html#private_ip_address-instance_method
|
39
|
+
def private_ip_address: () -> ::String
|
40
|
+
|
41
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/ClassicAddress.html#tags-instance_method
|
42
|
+
def tags: () -> ::Array[Types::Tag]
|
43
|
+
|
44
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/ClassicAddress.html#public_ipv_4_pool-instance_method
|
45
|
+
def public_ipv_4_pool: () -> ::String
|
46
|
+
|
47
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/ClassicAddress.html#network_border_group-instance_method
|
48
|
+
def network_border_group: () -> ::String
|
49
|
+
|
50
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/ClassicAddress.html#customer_owned_ip-instance_method
|
51
|
+
def customer_owned_ip: () -> ::String
|
52
|
+
|
53
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/ClassicAddress.html#customer_owned_ipv_4_pool-instance_method
|
54
|
+
def customer_owned_ipv_4_pool: () -> ::String
|
55
|
+
|
56
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/ClassicAddress.html#carrier_ip-instance_method
|
57
|
+
def carrier_ip: () -> ::String
|
58
|
+
|
59
|
+
def client: () -> Client
|
60
|
+
|
61
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/ClassicAddress.html#load-instance_method
|
62
|
+
def load: () -> self
|
63
|
+
alias reload load
|
64
|
+
|
65
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/ClassicAddress.html#data-instance_method
|
66
|
+
def data: () -> Types::Address
|
67
|
+
|
68
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/ClassicAddress.html#data_loaded?-instance_method
|
69
|
+
def data_loaded?: () -> bool
|
70
|
+
|
71
|
+
|
72
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/ClassicAddress.html#associate-instance_method
|
73
|
+
def associate: (
|
74
|
+
?allocation_id: ::String,
|
75
|
+
?instance_id: ::String,
|
76
|
+
?allow_reassociation: bool,
|
77
|
+
?dry_run: bool,
|
78
|
+
?network_interface_id: ::String,
|
79
|
+
?private_ip_address: ::String
|
80
|
+
) -> Types::AssociateAddressResult
|
81
|
+
| (?Hash[Symbol, untyped]) -> Types::AssociateAddressResult
|
82
|
+
|
83
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/ClassicAddress.html#disassociate-instance_method
|
84
|
+
def disassociate: (
|
85
|
+
?association_id: ::String,
|
86
|
+
?dry_run: bool
|
87
|
+
) -> ::Aws::EmptyStructure
|
88
|
+
| (?Hash[Symbol, untyped]) -> ::Aws::EmptyStructure
|
89
|
+
|
90
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/ClassicAddress.html#release-instance_method
|
91
|
+
def release: (
|
92
|
+
?allocation_id: ::String,
|
93
|
+
?network_border_group: ::String,
|
94
|
+
?dry_run: bool
|
95
|
+
) -> ::Aws::EmptyStructure
|
96
|
+
| (?Hash[Symbol, untyped]) -> ::Aws::EmptyStructure
|
97
|
+
|
98
|
+
class Collection < ::Aws::Resources::Collection[ClassicAddress]
|
99
|
+
end
|
100
|
+
end
|
101
|
+
end
|
102
|
+
end
|