aws-sdk-outposts 1.51.0 → 1.53.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-outposts/client.rb +3 -3
- data/lib/aws-sdk-outposts/client_api.rb +1 -1
- data/lib/aws-sdk-outposts/endpoint_provider.rb +2 -2
- data/lib/aws-sdk-outposts/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-outposts.rb +1 -1
- data/sig/client.rbs +454 -0
- data/sig/errors.rbs +36 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +531 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1c748050b2eb0d75186714a7e8de6c2de40642dcc3b1c472a4e6e928682c2417
|
4
|
+
data.tar.gz: e1c417aeac8e26c349ec7a26c929219b0b7706fbec0ffc75df2e5c0e5a7050a5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6320dcc6b45b499c3a033c095b1c87a08601d2de7d2c523e44cdb0f891f53d971ed673cab50180c02b27e50c918b5836dcfe5c3083c8d3abd9a79cafe7acdd2d
|
7
|
+
data.tar.gz: 26df66eee1be4d8210bbf5c27d053943e08ab5e28d09e8f60f5e87d043e4d090ea1eaa260c99dbcb3cc0490aa2ccf511996dd6e8905e9a02d69fce3763949928
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.53.0 (2024-01-26)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.52.0 (2024-01-24)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - DeviceSerialNumber parameter is now optional in StartConnection API
|
13
|
+
|
4
14
|
1.51.0 (2023-11-28)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.53.0
|
@@ -1388,7 +1388,7 @@ module Aws::Outposts
|
|
1388
1388
|
# [1]: https://docs.aws.amazon.com/outposts/latest/userguide/security-iam-awsmanpol.html
|
1389
1389
|
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/logging-using-cloudtrail.html
|
1390
1390
|
#
|
1391
|
-
# @option params [
|
1391
|
+
# @option params [String] :device_serial_number
|
1392
1392
|
# The serial number of the dongle.
|
1393
1393
|
#
|
1394
1394
|
# @option params [required, String] :asset_id
|
@@ -1408,7 +1408,7 @@ module Aws::Outposts
|
|
1408
1408
|
# @example Request syntax with placeholder values
|
1409
1409
|
#
|
1410
1410
|
# resp = client.start_connection({
|
1411
|
-
# device_serial_number: "DeviceSerialNumber",
|
1411
|
+
# device_serial_number: "DeviceSerialNumber",
|
1412
1412
|
# asset_id: "AssetId", # required
|
1413
1413
|
# client_public_key: "WireGuardPublicKey", # required
|
1414
1414
|
# network_interface_device_index: 1, # required
|
@@ -1833,7 +1833,7 @@ module Aws::Outposts
|
|
1833
1833
|
params: params,
|
1834
1834
|
config: config)
|
1835
1835
|
context[:gem_name] = 'aws-sdk-outposts'
|
1836
|
-
context[:gem_version] = '1.
|
1836
|
+
context[:gem_version] = '1.53.0'
|
1837
1837
|
Seahorse::Client::Request.new(handlers, context)
|
1838
1838
|
end
|
1839
1839
|
|
@@ -550,7 +550,7 @@ module Aws::Outposts
|
|
550
550
|
Site.add_member(:rack_physical_properties, Shapes::ShapeRef.new(shape: RackPhysicalProperties, location_name: "RackPhysicalProperties"))
|
551
551
|
Site.struct_class = Types::Site
|
552
552
|
|
553
|
-
StartConnectionRequest.add_member(:device_serial_number, Shapes::ShapeRef.new(shape: DeviceSerialNumber,
|
553
|
+
StartConnectionRequest.add_member(:device_serial_number, Shapes::ShapeRef.new(shape: DeviceSerialNumber, location_name: "DeviceSerialNumber"))
|
554
554
|
StartConnectionRequest.add_member(:asset_id, Shapes::ShapeRef.new(shape: AssetId, required: true, location_name: "AssetId"))
|
555
555
|
StartConnectionRequest.add_member(:client_public_key, Shapes::ShapeRef.new(shape: WireGuardPublicKey, required: true, location_name: "ClientPublicKey"))
|
556
556
|
StartConnectionRequest.add_member(:network_interface_device_index, Shapes::ShapeRef.new(shape: NetworkInterfaceDeviceIndex, required: true, location_name: "NetworkInterfaceDeviceIndex"))
|
@@ -32,8 +32,8 @@ module Aws::Outposts
|
|
32
32
|
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
33
33
|
end
|
34
34
|
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
35
|
-
if Aws::Endpoints::Matchers.boolean_equals?(
|
36
|
-
if Aws::Endpoints::Matchers.string_equals?(
|
35
|
+
if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
|
36
|
+
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-us-gov")
|
37
37
|
return Aws::Endpoints::Endpoint.new(url: "https://outposts.#{region}.amazonaws.com", headers: {}, properties: {})
|
38
38
|
end
|
39
39
|
return Aws::Endpoints::Endpoint.new(url: "https://outposts-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
@@ -14,6 +14,7 @@ module Aws::Outposts
|
|
14
14
|
option(
|
15
15
|
:endpoint_provider,
|
16
16
|
doc_type: 'Aws::Outposts::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-outposts.rb
CHANGED
data/sig/client.rbs
ADDED
@@ -0,0 +1,454 @@
|
|
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 Outposts
|
10
|
+
class Client < ::Seahorse::Client::Base
|
11
|
+
include ::Aws::ClientStubs
|
12
|
+
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Outposts/Client.html#initialize-instance_method
|
14
|
+
def self.new: (
|
15
|
+
?credentials: untyped,
|
16
|
+
?region: String,
|
17
|
+
?access_key_id: String,
|
18
|
+
?active_endpoint_cache: bool,
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
20
|
+
?client_side_monitoring: bool,
|
21
|
+
?client_side_monitoring_client_id: String,
|
22
|
+
?client_side_monitoring_host: String,
|
23
|
+
?client_side_monitoring_port: Integer,
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
25
|
+
?convert_params: bool,
|
26
|
+
?correct_clock_skew: bool,
|
27
|
+
?defaults_mode: String,
|
28
|
+
?disable_host_prefix_injection: bool,
|
29
|
+
?disable_request_compression: bool,
|
30
|
+
?endpoint: String,
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
34
|
+
?endpoint_discovery: bool,
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
36
|
+
?log_formatter: untyped,
|
37
|
+
?log_level: Symbol,
|
38
|
+
?logger: untyped,
|
39
|
+
?max_attempts: Integer,
|
40
|
+
?profile: String,
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
42
|
+
?retry_backoff: Proc,
|
43
|
+
?retry_base_delay: Float,
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
45
|
+
?retry_limit: Integer,
|
46
|
+
?retry_max_delay: Integer,
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
48
|
+
?sdk_ua_app_id: String,
|
49
|
+
?secret_access_key: String,
|
50
|
+
?session_token: String,
|
51
|
+
?stub_responses: untyped,
|
52
|
+
?token_provider: untyped,
|
53
|
+
?use_dualstack_endpoint: bool,
|
54
|
+
?use_fips_endpoint: bool,
|
55
|
+
?validate_params: bool,
|
56
|
+
?endpoint_provider: untyped,
|
57
|
+
?http_proxy: String,
|
58
|
+
?http_open_timeout: (Float | Integer),
|
59
|
+
?http_read_timeout: (Float | Integer),
|
60
|
+
?http_idle_timeout: (Float | Integer),
|
61
|
+
?http_continue_timeout: (Float | Integer),
|
62
|
+
?ssl_timeout: (Float | Integer | nil),
|
63
|
+
?http_wire_trace: bool,
|
64
|
+
?ssl_verify_peer: bool,
|
65
|
+
?ssl_ca_bundle: String,
|
66
|
+
?ssl_ca_directory: String,
|
67
|
+
?ssl_ca_store: String,
|
68
|
+
?on_chunk_received: Proc,
|
69
|
+
?on_chunk_sent: Proc,
|
70
|
+
?raise_response_errors: bool
|
71
|
+
) -> instance
|
72
|
+
| (?Hash[Symbol, untyped]) -> instance
|
73
|
+
|
74
|
+
|
75
|
+
interface _CancelOrderResponseSuccess
|
76
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CancelOrderOutput]
|
77
|
+
end
|
78
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Outposts/Client.html#cancel_order-instance_method
|
79
|
+
def cancel_order: (
|
80
|
+
order_id: ::String
|
81
|
+
) -> _CancelOrderResponseSuccess
|
82
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CancelOrderResponseSuccess
|
83
|
+
|
84
|
+
interface _CreateOrderResponseSuccess
|
85
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateOrderOutput]
|
86
|
+
def order: () -> Types::Order
|
87
|
+
end
|
88
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Outposts/Client.html#create_order-instance_method
|
89
|
+
def create_order: (
|
90
|
+
outpost_identifier: ::String,
|
91
|
+
line_items: Array[
|
92
|
+
{
|
93
|
+
catalog_item_id: ::String?,
|
94
|
+
quantity: ::Integer?
|
95
|
+
},
|
96
|
+
],
|
97
|
+
payment_option: ("ALL_UPFRONT" | "NO_UPFRONT" | "PARTIAL_UPFRONT"),
|
98
|
+
?payment_term: ("THREE_YEARS" | "ONE_YEAR")
|
99
|
+
) -> _CreateOrderResponseSuccess
|
100
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateOrderResponseSuccess
|
101
|
+
|
102
|
+
interface _CreateOutpostResponseSuccess
|
103
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateOutpostOutput]
|
104
|
+
def outpost: () -> Types::Outpost
|
105
|
+
end
|
106
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Outposts/Client.html#create_outpost-instance_method
|
107
|
+
def create_outpost: (
|
108
|
+
name: ::String,
|
109
|
+
?description: ::String,
|
110
|
+
site_id: ::String,
|
111
|
+
?availability_zone: ::String,
|
112
|
+
?availability_zone_id: ::String,
|
113
|
+
?tags: Hash[::String, ::String],
|
114
|
+
?supported_hardware_type: ("RACK" | "SERVER")
|
115
|
+
) -> _CreateOutpostResponseSuccess
|
116
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateOutpostResponseSuccess
|
117
|
+
|
118
|
+
interface _CreateSiteResponseSuccess
|
119
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateSiteOutput]
|
120
|
+
def site: () -> Types::Site
|
121
|
+
end
|
122
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Outposts/Client.html#create_site-instance_method
|
123
|
+
def create_site: (
|
124
|
+
name: ::String,
|
125
|
+
?description: ::String,
|
126
|
+
?notes: ::String,
|
127
|
+
?tags: Hash[::String, ::String],
|
128
|
+
?operating_address: {
|
129
|
+
contact_name: ::String?,
|
130
|
+
contact_phone_number: ::String?,
|
131
|
+
address_line_1: ::String,
|
132
|
+
address_line_2: ::String?,
|
133
|
+
address_line_3: ::String?,
|
134
|
+
city: ::String,
|
135
|
+
state_or_region: ::String,
|
136
|
+
district_or_county: ::String?,
|
137
|
+
postal_code: ::String,
|
138
|
+
country_code: ::String,
|
139
|
+
municipality: ::String?
|
140
|
+
},
|
141
|
+
?shipping_address: {
|
142
|
+
contact_name: ::String?,
|
143
|
+
contact_phone_number: ::String?,
|
144
|
+
address_line_1: ::String,
|
145
|
+
address_line_2: ::String?,
|
146
|
+
address_line_3: ::String?,
|
147
|
+
city: ::String,
|
148
|
+
state_or_region: ::String,
|
149
|
+
district_or_county: ::String?,
|
150
|
+
postal_code: ::String,
|
151
|
+
country_code: ::String,
|
152
|
+
municipality: ::String?
|
153
|
+
},
|
154
|
+
?rack_physical_properties: {
|
155
|
+
power_draw_kva: ("POWER_5_KVA" | "POWER_10_KVA" | "POWER_15_KVA" | "POWER_30_KVA")?,
|
156
|
+
power_phase: ("SINGLE_PHASE" | "THREE_PHASE")?,
|
157
|
+
power_connector: ("L6_30P" | "IEC309" | "AH530P7W" | "AH532P6W")?,
|
158
|
+
power_feed_drop: ("ABOVE_RACK" | "BELOW_RACK")?,
|
159
|
+
uplink_gbps: ("UPLINK_1G" | "UPLINK_10G" | "UPLINK_40G" | "UPLINK_100G")?,
|
160
|
+
uplink_count: ("UPLINK_COUNT_1" | "UPLINK_COUNT_2" | "UPLINK_COUNT_3" | "UPLINK_COUNT_4" | "UPLINK_COUNT_5" | "UPLINK_COUNT_6" | "UPLINK_COUNT_7" | "UPLINK_COUNT_8" | "UPLINK_COUNT_12" | "UPLINK_COUNT_16")?,
|
161
|
+
fiber_optic_cable_type: ("SINGLE_MODE" | "MULTI_MODE")?,
|
162
|
+
optical_standard: ("OPTIC_10GBASE_SR" | "OPTIC_10GBASE_IR" | "OPTIC_10GBASE_LR" | "OPTIC_40GBASE_SR" | "OPTIC_40GBASE_ESR" | "OPTIC_40GBASE_IR4_LR4L" | "OPTIC_40GBASE_LR4" | "OPTIC_100GBASE_SR4" | "OPTIC_100GBASE_CWDM4" | "OPTIC_100GBASE_LR4" | "OPTIC_100G_PSM4_MSA" | "OPTIC_1000BASE_LX" | "OPTIC_1000BASE_SX")?,
|
163
|
+
maximum_supported_weight_lbs: ("NO_LIMIT" | "MAX_1400_LBS" | "MAX_1600_LBS" | "MAX_1800_LBS" | "MAX_2000_LBS")?
|
164
|
+
}
|
165
|
+
) -> _CreateSiteResponseSuccess
|
166
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSiteResponseSuccess
|
167
|
+
|
168
|
+
interface _DeleteOutpostResponseSuccess
|
169
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteOutpostOutput]
|
170
|
+
end
|
171
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Outposts/Client.html#delete_outpost-instance_method
|
172
|
+
def delete_outpost: (
|
173
|
+
outpost_id: ::String
|
174
|
+
) -> _DeleteOutpostResponseSuccess
|
175
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteOutpostResponseSuccess
|
176
|
+
|
177
|
+
interface _DeleteSiteResponseSuccess
|
178
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteSiteOutput]
|
179
|
+
end
|
180
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Outposts/Client.html#delete_site-instance_method
|
181
|
+
def delete_site: (
|
182
|
+
site_id: ::String
|
183
|
+
) -> _DeleteSiteResponseSuccess
|
184
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteSiteResponseSuccess
|
185
|
+
|
186
|
+
interface _GetCatalogItemResponseSuccess
|
187
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetCatalogItemOutput]
|
188
|
+
def catalog_item: () -> Types::CatalogItem
|
189
|
+
end
|
190
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Outposts/Client.html#get_catalog_item-instance_method
|
191
|
+
def get_catalog_item: (
|
192
|
+
catalog_item_id: ::String
|
193
|
+
) -> _GetCatalogItemResponseSuccess
|
194
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCatalogItemResponseSuccess
|
195
|
+
|
196
|
+
interface _GetConnectionResponseSuccess
|
197
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetConnectionResponse]
|
198
|
+
def connection_id: () -> ::String
|
199
|
+
def connection_details: () -> Types::ConnectionDetails
|
200
|
+
end
|
201
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Outposts/Client.html#get_connection-instance_method
|
202
|
+
def get_connection: (
|
203
|
+
connection_id: ::String
|
204
|
+
) -> _GetConnectionResponseSuccess
|
205
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetConnectionResponseSuccess
|
206
|
+
|
207
|
+
interface _GetOrderResponseSuccess
|
208
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetOrderOutput]
|
209
|
+
def order: () -> Types::Order
|
210
|
+
end
|
211
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Outposts/Client.html#get_order-instance_method
|
212
|
+
def get_order: (
|
213
|
+
order_id: ::String
|
214
|
+
) -> _GetOrderResponseSuccess
|
215
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetOrderResponseSuccess
|
216
|
+
|
217
|
+
interface _GetOutpostResponseSuccess
|
218
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetOutpostOutput]
|
219
|
+
def outpost: () -> Types::Outpost
|
220
|
+
end
|
221
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Outposts/Client.html#get_outpost-instance_method
|
222
|
+
def get_outpost: (
|
223
|
+
outpost_id: ::String
|
224
|
+
) -> _GetOutpostResponseSuccess
|
225
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetOutpostResponseSuccess
|
226
|
+
|
227
|
+
interface _GetOutpostInstanceTypesResponseSuccess
|
228
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetOutpostInstanceTypesOutput]
|
229
|
+
def instance_types: () -> ::Array[Types::InstanceTypeItem]
|
230
|
+
def next_token: () -> ::String
|
231
|
+
def outpost_id: () -> ::String
|
232
|
+
def outpost_arn: () -> ::String
|
233
|
+
end
|
234
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Outposts/Client.html#get_outpost_instance_types-instance_method
|
235
|
+
def get_outpost_instance_types: (
|
236
|
+
outpost_id: ::String,
|
237
|
+
?next_token: ::String,
|
238
|
+
?max_results: ::Integer
|
239
|
+
) -> _GetOutpostInstanceTypesResponseSuccess
|
240
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetOutpostInstanceTypesResponseSuccess
|
241
|
+
|
242
|
+
interface _GetSiteResponseSuccess
|
243
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetSiteOutput]
|
244
|
+
def site: () -> Types::Site
|
245
|
+
end
|
246
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Outposts/Client.html#get_site-instance_method
|
247
|
+
def get_site: (
|
248
|
+
site_id: ::String
|
249
|
+
) -> _GetSiteResponseSuccess
|
250
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSiteResponseSuccess
|
251
|
+
|
252
|
+
interface _GetSiteAddressResponseSuccess
|
253
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetSiteAddressOutput]
|
254
|
+
def site_id: () -> ::String
|
255
|
+
def address_type: () -> ("SHIPPING_ADDRESS" | "OPERATING_ADDRESS")
|
256
|
+
def address: () -> Types::Address
|
257
|
+
end
|
258
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Outposts/Client.html#get_site_address-instance_method
|
259
|
+
def get_site_address: (
|
260
|
+
site_id: ::String,
|
261
|
+
address_type: ("SHIPPING_ADDRESS" | "OPERATING_ADDRESS")
|
262
|
+
) -> _GetSiteAddressResponseSuccess
|
263
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSiteAddressResponseSuccess
|
264
|
+
|
265
|
+
interface _ListAssetsResponseSuccess
|
266
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListAssetsOutput]
|
267
|
+
def assets: () -> ::Array[Types::AssetInfo]
|
268
|
+
def next_token: () -> ::String
|
269
|
+
end
|
270
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Outposts/Client.html#list_assets-instance_method
|
271
|
+
def list_assets: (
|
272
|
+
outpost_identifier: ::String,
|
273
|
+
?host_id_filter: Array[::String],
|
274
|
+
?max_results: ::Integer,
|
275
|
+
?next_token: ::String,
|
276
|
+
?status_filter: Array[("ACTIVE" | "RETIRING" | "ISOLATED")]
|
277
|
+
) -> _ListAssetsResponseSuccess
|
278
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAssetsResponseSuccess
|
279
|
+
|
280
|
+
interface _ListCatalogItemsResponseSuccess
|
281
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListCatalogItemsOutput]
|
282
|
+
def catalog_items: () -> ::Array[Types::CatalogItem]
|
283
|
+
def next_token: () -> ::String
|
284
|
+
end
|
285
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Outposts/Client.html#list_catalog_items-instance_method
|
286
|
+
def list_catalog_items: (
|
287
|
+
?next_token: ::String,
|
288
|
+
?max_results: ::Integer,
|
289
|
+
?item_class_filter: Array[("RACK" | "SERVER")],
|
290
|
+
?supported_storage_filter: Array[("EBS" | "S3")],
|
291
|
+
?ec2_family_filter: Array[::String]
|
292
|
+
) -> _ListCatalogItemsResponseSuccess
|
293
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCatalogItemsResponseSuccess
|
294
|
+
|
295
|
+
interface _ListOrdersResponseSuccess
|
296
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListOrdersOutput]
|
297
|
+
def orders: () -> ::Array[Types::OrderSummary]
|
298
|
+
def next_token: () -> ::String
|
299
|
+
end
|
300
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Outposts/Client.html#list_orders-instance_method
|
301
|
+
def list_orders: (
|
302
|
+
?outpost_identifier_filter: ::String,
|
303
|
+
?next_token: ::String,
|
304
|
+
?max_results: ::Integer
|
305
|
+
) -> _ListOrdersResponseSuccess
|
306
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListOrdersResponseSuccess
|
307
|
+
|
308
|
+
interface _ListOutpostsResponseSuccess
|
309
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListOutpostsOutput]
|
310
|
+
def outposts: () -> ::Array[Types::Outpost]
|
311
|
+
def next_token: () -> ::String
|
312
|
+
end
|
313
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Outposts/Client.html#list_outposts-instance_method
|
314
|
+
def list_outposts: (
|
315
|
+
?next_token: ::String,
|
316
|
+
?max_results: ::Integer,
|
317
|
+
?life_cycle_status_filter: Array[::String],
|
318
|
+
?availability_zone_filter: Array[::String],
|
319
|
+
?availability_zone_id_filter: Array[::String]
|
320
|
+
) -> _ListOutpostsResponseSuccess
|
321
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListOutpostsResponseSuccess
|
322
|
+
|
323
|
+
interface _ListSitesResponseSuccess
|
324
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListSitesOutput]
|
325
|
+
def sites: () -> ::Array[Types::Site]
|
326
|
+
def next_token: () -> ::String
|
327
|
+
end
|
328
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Outposts/Client.html#list_sites-instance_method
|
329
|
+
def list_sites: (
|
330
|
+
?next_token: ::String,
|
331
|
+
?max_results: ::Integer,
|
332
|
+
?operating_address_country_code_filter: Array[::String],
|
333
|
+
?operating_address_state_or_region_filter: Array[::String],
|
334
|
+
?operating_address_city_filter: Array[::String]
|
335
|
+
) -> _ListSitesResponseSuccess
|
336
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSitesResponseSuccess
|
337
|
+
|
338
|
+
interface _ListTagsForResourceResponseSuccess
|
339
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
|
340
|
+
def tags: () -> ::Hash[::String, ::String]
|
341
|
+
end
|
342
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Outposts/Client.html#list_tags_for_resource-instance_method
|
343
|
+
def list_tags_for_resource: (
|
344
|
+
resource_arn: ::String
|
345
|
+
) -> _ListTagsForResourceResponseSuccess
|
346
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
|
347
|
+
|
348
|
+
interface _StartConnectionResponseSuccess
|
349
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartConnectionResponse]
|
350
|
+
def connection_id: () -> ::String
|
351
|
+
def underlay_ip_address: () -> ::String
|
352
|
+
end
|
353
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Outposts/Client.html#start_connection-instance_method
|
354
|
+
def start_connection: (
|
355
|
+
?device_serial_number: ::String,
|
356
|
+
asset_id: ::String,
|
357
|
+
client_public_key: ::String,
|
358
|
+
network_interface_device_index: ::Integer
|
359
|
+
) -> _StartConnectionResponseSuccess
|
360
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartConnectionResponseSuccess
|
361
|
+
|
362
|
+
interface _TagResourceResponseSuccess
|
363
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
|
364
|
+
end
|
365
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Outposts/Client.html#tag_resource-instance_method
|
366
|
+
def tag_resource: (
|
367
|
+
resource_arn: ::String,
|
368
|
+
tags: Hash[::String, ::String]
|
369
|
+
) -> _TagResourceResponseSuccess
|
370
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
|
371
|
+
|
372
|
+
interface _UntagResourceResponseSuccess
|
373
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
|
374
|
+
end
|
375
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Outposts/Client.html#untag_resource-instance_method
|
376
|
+
def untag_resource: (
|
377
|
+
resource_arn: ::String,
|
378
|
+
tag_keys: Array[::String]
|
379
|
+
) -> _UntagResourceResponseSuccess
|
380
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
|
381
|
+
|
382
|
+
interface _UpdateOutpostResponseSuccess
|
383
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateOutpostOutput]
|
384
|
+
def outpost: () -> Types::Outpost
|
385
|
+
end
|
386
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Outposts/Client.html#update_outpost-instance_method
|
387
|
+
def update_outpost: (
|
388
|
+
outpost_id: ::String,
|
389
|
+
?name: ::String,
|
390
|
+
?description: ::String,
|
391
|
+
?supported_hardware_type: ("RACK" | "SERVER")
|
392
|
+
) -> _UpdateOutpostResponseSuccess
|
393
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateOutpostResponseSuccess
|
394
|
+
|
395
|
+
interface _UpdateSiteResponseSuccess
|
396
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateSiteOutput]
|
397
|
+
def site: () -> Types::Site
|
398
|
+
end
|
399
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Outposts/Client.html#update_site-instance_method
|
400
|
+
def update_site: (
|
401
|
+
site_id: ::String,
|
402
|
+
?name: ::String,
|
403
|
+
?description: ::String,
|
404
|
+
?notes: ::String
|
405
|
+
) -> _UpdateSiteResponseSuccess
|
406
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateSiteResponseSuccess
|
407
|
+
|
408
|
+
interface _UpdateSiteAddressResponseSuccess
|
409
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateSiteAddressOutput]
|
410
|
+
def address_type: () -> ("SHIPPING_ADDRESS" | "OPERATING_ADDRESS")
|
411
|
+
def address: () -> Types::Address
|
412
|
+
end
|
413
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Outposts/Client.html#update_site_address-instance_method
|
414
|
+
def update_site_address: (
|
415
|
+
site_id: ::String,
|
416
|
+
address_type: ("SHIPPING_ADDRESS" | "OPERATING_ADDRESS"),
|
417
|
+
address: {
|
418
|
+
contact_name: ::String?,
|
419
|
+
contact_phone_number: ::String?,
|
420
|
+
address_line_1: ::String,
|
421
|
+
address_line_2: ::String?,
|
422
|
+
address_line_3: ::String?,
|
423
|
+
city: ::String,
|
424
|
+
state_or_region: ::String,
|
425
|
+
district_or_county: ::String?,
|
426
|
+
postal_code: ::String,
|
427
|
+
country_code: ::String,
|
428
|
+
municipality: ::String?
|
429
|
+
}
|
430
|
+
) -> _UpdateSiteAddressResponseSuccess
|
431
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateSiteAddressResponseSuccess
|
432
|
+
|
433
|
+
interface _UpdateSiteRackPhysicalPropertiesResponseSuccess
|
434
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateSiteRackPhysicalPropertiesOutput]
|
435
|
+
def site: () -> Types::Site
|
436
|
+
end
|
437
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Outposts/Client.html#update_site_rack_physical_properties-instance_method
|
438
|
+
def update_site_rack_physical_properties: (
|
439
|
+
site_id: ::String,
|
440
|
+
?power_draw_kva: ("POWER_5_KVA" | "POWER_10_KVA" | "POWER_15_KVA" | "POWER_30_KVA"),
|
441
|
+
?power_phase: ("SINGLE_PHASE" | "THREE_PHASE"),
|
442
|
+
?power_connector: ("L6_30P" | "IEC309" | "AH530P7W" | "AH532P6W"),
|
443
|
+
?power_feed_drop: ("ABOVE_RACK" | "BELOW_RACK"),
|
444
|
+
?uplink_gbps: ("UPLINK_1G" | "UPLINK_10G" | "UPLINK_40G" | "UPLINK_100G"),
|
445
|
+
?uplink_count: ("UPLINK_COUNT_1" | "UPLINK_COUNT_2" | "UPLINK_COUNT_3" | "UPLINK_COUNT_4" | "UPLINK_COUNT_5" | "UPLINK_COUNT_6" | "UPLINK_COUNT_7" | "UPLINK_COUNT_8" | "UPLINK_COUNT_12" | "UPLINK_COUNT_16"),
|
446
|
+
?fiber_optic_cable_type: ("SINGLE_MODE" | "MULTI_MODE"),
|
447
|
+
?optical_standard: ("OPTIC_10GBASE_SR" | "OPTIC_10GBASE_IR" | "OPTIC_10GBASE_LR" | "OPTIC_40GBASE_SR" | "OPTIC_40GBASE_ESR" | "OPTIC_40GBASE_IR4_LR4L" | "OPTIC_40GBASE_LR4" | "OPTIC_100GBASE_SR4" | "OPTIC_100GBASE_CWDM4" | "OPTIC_100GBASE_LR4" | "OPTIC_100G_PSM4_MSA" | "OPTIC_1000BASE_LX" | "OPTIC_1000BASE_SX"),
|
448
|
+
?maximum_supported_weight_lbs: ("NO_LIMIT" | "MAX_1400_LBS" | "MAX_1600_LBS" | "MAX_1800_LBS" | "MAX_2000_LBS")
|
449
|
+
) -> _UpdateSiteRackPhysicalPropertiesResponseSuccess
|
450
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateSiteRackPhysicalPropertiesResponseSuccess
|
451
|
+
end
|
452
|
+
end
|
453
|
+
end
|
454
|
+
|
data/sig/errors.rbs
ADDED
@@ -0,0 +1,36 @@
|
|
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 Outposts
|
10
|
+
module Errors
|
11
|
+
class ServiceError < ::Aws::Errors::ServiceError
|
12
|
+
end
|
13
|
+
|
14
|
+
class AccessDeniedException < ::Aws::Errors::ServiceError
|
15
|
+
def message: () -> ::String
|
16
|
+
end
|
17
|
+
class ConflictException < ::Aws::Errors::ServiceError
|
18
|
+
def message: () -> ::String
|
19
|
+
def resource_id: () -> ::String
|
20
|
+
def resource_type: () -> ::String
|
21
|
+
end
|
22
|
+
class InternalServerException < ::Aws::Errors::ServiceError
|
23
|
+
def message: () -> ::String
|
24
|
+
end
|
25
|
+
class NotFoundException < ::Aws::Errors::ServiceError
|
26
|
+
def message: () -> ::String
|
27
|
+
end
|
28
|
+
class ServiceQuotaExceededException < ::Aws::Errors::ServiceError
|
29
|
+
def message: () -> ::String
|
30
|
+
end
|
31
|
+
class ValidationException < ::Aws::Errors::ServiceError
|
32
|
+
def message: () -> ::String
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
data/sig/resource.rbs
ADDED
@@ -0,0 +1,79 @@
|
|
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 Outposts
|
10
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Outposts/Resource.html
|
11
|
+
class Resource
|
12
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Outposts/Resource.html#initialize-instance_method
|
13
|
+
def initialize: (
|
14
|
+
?client: Client,
|
15
|
+
?credentials: untyped,
|
16
|
+
?region: String,
|
17
|
+
?access_key_id: String,
|
18
|
+
?active_endpoint_cache: bool,
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
20
|
+
?client_side_monitoring: bool,
|
21
|
+
?client_side_monitoring_client_id: String,
|
22
|
+
?client_side_monitoring_host: String,
|
23
|
+
?client_side_monitoring_port: Integer,
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
25
|
+
?convert_params: bool,
|
26
|
+
?correct_clock_skew: bool,
|
27
|
+
?defaults_mode: String,
|
28
|
+
?disable_host_prefix_injection: bool,
|
29
|
+
?disable_request_compression: bool,
|
30
|
+
?endpoint: String,
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
34
|
+
?endpoint_discovery: bool,
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
36
|
+
?log_formatter: untyped,
|
37
|
+
?log_level: Symbol,
|
38
|
+
?logger: untyped,
|
39
|
+
?max_attempts: Integer,
|
40
|
+
?profile: String,
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
42
|
+
?retry_backoff: Proc,
|
43
|
+
?retry_base_delay: Float,
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
45
|
+
?retry_limit: Integer,
|
46
|
+
?retry_max_delay: Integer,
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
48
|
+
?sdk_ua_app_id: String,
|
49
|
+
?secret_access_key: String,
|
50
|
+
?session_token: String,
|
51
|
+
?stub_responses: untyped,
|
52
|
+
?token_provider: untyped,
|
53
|
+
?use_dualstack_endpoint: bool,
|
54
|
+
?use_fips_endpoint: bool,
|
55
|
+
?validate_params: bool,
|
56
|
+
?endpoint_provider: untyped,
|
57
|
+
?http_proxy: String,
|
58
|
+
?http_open_timeout: (Float | Integer),
|
59
|
+
?http_read_timeout: (Float | Integer),
|
60
|
+
?http_idle_timeout: (Float | Integer),
|
61
|
+
?http_continue_timeout: (Float | Integer),
|
62
|
+
?ssl_timeout: (Float | Integer | nil),
|
63
|
+
?http_wire_trace: bool,
|
64
|
+
?ssl_verify_peer: bool,
|
65
|
+
?ssl_ca_bundle: String,
|
66
|
+
?ssl_ca_directory: String,
|
67
|
+
?ssl_ca_store: String,
|
68
|
+
?on_chunk_received: Proc,
|
69
|
+
?on_chunk_sent: Proc,
|
70
|
+
?raise_response_errors: bool
|
71
|
+
) -> void
|
72
|
+
| (?Hash[Symbol, untyped]) -> void
|
73
|
+
|
74
|
+
def client: () -> Client
|
75
|
+
|
76
|
+
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|
data/sig/types.rbs
ADDED
@@ -0,0 +1,531 @@
|
|
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::Outposts
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessDeniedException
|
12
|
+
attr_accessor message: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class Address
|
17
|
+
attr_accessor contact_name: ::String
|
18
|
+
attr_accessor contact_phone_number: ::String
|
19
|
+
attr_accessor address_line_1: ::String
|
20
|
+
attr_accessor address_line_2: ::String
|
21
|
+
attr_accessor address_line_3: ::String
|
22
|
+
attr_accessor city: ::String
|
23
|
+
attr_accessor state_or_region: ::String
|
24
|
+
attr_accessor district_or_county: ::String
|
25
|
+
attr_accessor postal_code: ::String
|
26
|
+
attr_accessor country_code: ::String
|
27
|
+
attr_accessor municipality: ::String
|
28
|
+
SENSITIVE: []
|
29
|
+
end
|
30
|
+
|
31
|
+
class AssetInfo
|
32
|
+
attr_accessor asset_id: ::String
|
33
|
+
attr_accessor rack_id: ::String
|
34
|
+
attr_accessor asset_type: ("COMPUTE")
|
35
|
+
attr_accessor compute_attributes: Types::ComputeAttributes
|
36
|
+
attr_accessor asset_location: Types::AssetLocation
|
37
|
+
SENSITIVE: []
|
38
|
+
end
|
39
|
+
|
40
|
+
class AssetLocation
|
41
|
+
attr_accessor rack_elevation: ::Float
|
42
|
+
SENSITIVE: []
|
43
|
+
end
|
44
|
+
|
45
|
+
class CancelOrderInput
|
46
|
+
attr_accessor order_id: ::String
|
47
|
+
SENSITIVE: []
|
48
|
+
end
|
49
|
+
|
50
|
+
class CancelOrderOutput < Aws::EmptyStructure
|
51
|
+
end
|
52
|
+
|
53
|
+
class CatalogItem
|
54
|
+
attr_accessor catalog_item_id: ::String
|
55
|
+
attr_accessor item_status: ("AVAILABLE" | "DISCONTINUED")
|
56
|
+
attr_accessor ec2_capacities: ::Array[Types::EC2Capacity]
|
57
|
+
attr_accessor power_kva: ::Float
|
58
|
+
attr_accessor weight_lbs: ::Integer
|
59
|
+
attr_accessor supported_uplink_gbps: ::Array[::Integer]
|
60
|
+
attr_accessor supported_storage: ::Array[("EBS" | "S3")]
|
61
|
+
SENSITIVE: []
|
62
|
+
end
|
63
|
+
|
64
|
+
class ComputeAttributes
|
65
|
+
attr_accessor host_id: ::String
|
66
|
+
attr_accessor state: ("ACTIVE" | "ISOLATED" | "RETIRING")
|
67
|
+
attr_accessor instance_families: ::Array[::String]
|
68
|
+
SENSITIVE: []
|
69
|
+
end
|
70
|
+
|
71
|
+
class ConflictException
|
72
|
+
attr_accessor message: ::String
|
73
|
+
attr_accessor resource_id: ::String
|
74
|
+
attr_accessor resource_type: ("OUTPOST" | "ORDER")
|
75
|
+
SENSITIVE: []
|
76
|
+
end
|
77
|
+
|
78
|
+
class ConnectionDetails
|
79
|
+
attr_accessor client_public_key: ::String
|
80
|
+
attr_accessor server_public_key: ::String
|
81
|
+
attr_accessor server_endpoint: ::String
|
82
|
+
attr_accessor client_tunnel_address: ::String
|
83
|
+
attr_accessor server_tunnel_address: ::String
|
84
|
+
attr_accessor allowed_ips: ::Array[::String]
|
85
|
+
SENSITIVE: []
|
86
|
+
end
|
87
|
+
|
88
|
+
class CreateOrderInput
|
89
|
+
attr_accessor outpost_identifier: ::String
|
90
|
+
attr_accessor line_items: ::Array[Types::LineItemRequest]
|
91
|
+
attr_accessor payment_option: ("ALL_UPFRONT" | "NO_UPFRONT" | "PARTIAL_UPFRONT")
|
92
|
+
attr_accessor payment_term: ("THREE_YEARS" | "ONE_YEAR")
|
93
|
+
SENSITIVE: []
|
94
|
+
end
|
95
|
+
|
96
|
+
class CreateOrderOutput
|
97
|
+
attr_accessor order: Types::Order
|
98
|
+
SENSITIVE: []
|
99
|
+
end
|
100
|
+
|
101
|
+
class CreateOutpostInput
|
102
|
+
attr_accessor name: ::String
|
103
|
+
attr_accessor description: ::String
|
104
|
+
attr_accessor site_id: ::String
|
105
|
+
attr_accessor availability_zone: ::String
|
106
|
+
attr_accessor availability_zone_id: ::String
|
107
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
108
|
+
attr_accessor supported_hardware_type: ("RACK" | "SERVER")
|
109
|
+
SENSITIVE: []
|
110
|
+
end
|
111
|
+
|
112
|
+
class CreateOutpostOutput
|
113
|
+
attr_accessor outpost: Types::Outpost
|
114
|
+
SENSITIVE: []
|
115
|
+
end
|
116
|
+
|
117
|
+
class CreateSiteInput
|
118
|
+
attr_accessor name: ::String
|
119
|
+
attr_accessor description: ::String
|
120
|
+
attr_accessor notes: ::String
|
121
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
122
|
+
attr_accessor operating_address: Types::Address
|
123
|
+
attr_accessor shipping_address: Types::Address
|
124
|
+
attr_accessor rack_physical_properties: Types::RackPhysicalProperties
|
125
|
+
SENSITIVE: []
|
126
|
+
end
|
127
|
+
|
128
|
+
class CreateSiteOutput
|
129
|
+
attr_accessor site: Types::Site
|
130
|
+
SENSITIVE: []
|
131
|
+
end
|
132
|
+
|
133
|
+
class DeleteOutpostInput
|
134
|
+
attr_accessor outpost_id: ::String
|
135
|
+
SENSITIVE: []
|
136
|
+
end
|
137
|
+
|
138
|
+
class DeleteOutpostOutput < Aws::EmptyStructure
|
139
|
+
end
|
140
|
+
|
141
|
+
class DeleteSiteInput
|
142
|
+
attr_accessor site_id: ::String
|
143
|
+
SENSITIVE: []
|
144
|
+
end
|
145
|
+
|
146
|
+
class DeleteSiteOutput < Aws::EmptyStructure
|
147
|
+
end
|
148
|
+
|
149
|
+
class EC2Capacity
|
150
|
+
attr_accessor family: ::String
|
151
|
+
attr_accessor max_size: ::String
|
152
|
+
attr_accessor quantity: ::String
|
153
|
+
SENSITIVE: []
|
154
|
+
end
|
155
|
+
|
156
|
+
class GetCatalogItemInput
|
157
|
+
attr_accessor catalog_item_id: ::String
|
158
|
+
SENSITIVE: []
|
159
|
+
end
|
160
|
+
|
161
|
+
class GetCatalogItemOutput
|
162
|
+
attr_accessor catalog_item: Types::CatalogItem
|
163
|
+
SENSITIVE: []
|
164
|
+
end
|
165
|
+
|
166
|
+
class GetConnectionRequest
|
167
|
+
attr_accessor connection_id: ::String
|
168
|
+
SENSITIVE: []
|
169
|
+
end
|
170
|
+
|
171
|
+
class GetConnectionResponse
|
172
|
+
attr_accessor connection_id: ::String
|
173
|
+
attr_accessor connection_details: Types::ConnectionDetails
|
174
|
+
SENSITIVE: []
|
175
|
+
end
|
176
|
+
|
177
|
+
class GetOrderInput
|
178
|
+
attr_accessor order_id: ::String
|
179
|
+
SENSITIVE: []
|
180
|
+
end
|
181
|
+
|
182
|
+
class GetOrderOutput
|
183
|
+
attr_accessor order: Types::Order
|
184
|
+
SENSITIVE: []
|
185
|
+
end
|
186
|
+
|
187
|
+
class GetOutpostInput
|
188
|
+
attr_accessor outpost_id: ::String
|
189
|
+
SENSITIVE: []
|
190
|
+
end
|
191
|
+
|
192
|
+
class GetOutpostInstanceTypesInput
|
193
|
+
attr_accessor outpost_id: ::String
|
194
|
+
attr_accessor next_token: ::String
|
195
|
+
attr_accessor max_results: ::Integer
|
196
|
+
SENSITIVE: []
|
197
|
+
end
|
198
|
+
|
199
|
+
class GetOutpostInstanceTypesOutput
|
200
|
+
attr_accessor instance_types: ::Array[Types::InstanceTypeItem]
|
201
|
+
attr_accessor next_token: ::String
|
202
|
+
attr_accessor outpost_id: ::String
|
203
|
+
attr_accessor outpost_arn: ::String
|
204
|
+
SENSITIVE: []
|
205
|
+
end
|
206
|
+
|
207
|
+
class GetOutpostOutput
|
208
|
+
attr_accessor outpost: Types::Outpost
|
209
|
+
SENSITIVE: []
|
210
|
+
end
|
211
|
+
|
212
|
+
class GetSiteAddressInput
|
213
|
+
attr_accessor site_id: ::String
|
214
|
+
attr_accessor address_type: ("SHIPPING_ADDRESS" | "OPERATING_ADDRESS")
|
215
|
+
SENSITIVE: []
|
216
|
+
end
|
217
|
+
|
218
|
+
class GetSiteAddressOutput
|
219
|
+
attr_accessor site_id: ::String
|
220
|
+
attr_accessor address_type: ("SHIPPING_ADDRESS" | "OPERATING_ADDRESS")
|
221
|
+
attr_accessor address: Types::Address
|
222
|
+
SENSITIVE: []
|
223
|
+
end
|
224
|
+
|
225
|
+
class GetSiteInput
|
226
|
+
attr_accessor site_id: ::String
|
227
|
+
SENSITIVE: []
|
228
|
+
end
|
229
|
+
|
230
|
+
class GetSiteOutput
|
231
|
+
attr_accessor site: Types::Site
|
232
|
+
SENSITIVE: []
|
233
|
+
end
|
234
|
+
|
235
|
+
class InstanceTypeItem
|
236
|
+
attr_accessor instance_type: ::String
|
237
|
+
SENSITIVE: []
|
238
|
+
end
|
239
|
+
|
240
|
+
class InternalServerException
|
241
|
+
attr_accessor message: ::String
|
242
|
+
SENSITIVE: []
|
243
|
+
end
|
244
|
+
|
245
|
+
class LineItem
|
246
|
+
attr_accessor catalog_item_id: ::String
|
247
|
+
attr_accessor line_item_id: ::String
|
248
|
+
attr_accessor quantity: ::Integer
|
249
|
+
attr_accessor status: ("PREPARING" | "BUILDING" | "SHIPPED" | "DELIVERED" | "INSTALLING" | "INSTALLED" | "ERROR" | "CANCELLED" | "REPLACED")
|
250
|
+
attr_accessor shipment_information: Types::ShipmentInformation
|
251
|
+
attr_accessor asset_information_list: ::Array[Types::LineItemAssetInformation]
|
252
|
+
attr_accessor previous_line_item_id: ::String
|
253
|
+
attr_accessor previous_order_id: ::String
|
254
|
+
SENSITIVE: []
|
255
|
+
end
|
256
|
+
|
257
|
+
class LineItemAssetInformation
|
258
|
+
attr_accessor asset_id: ::String
|
259
|
+
attr_accessor mac_address_list: ::Array[::String]
|
260
|
+
SENSITIVE: []
|
261
|
+
end
|
262
|
+
|
263
|
+
class LineItemRequest
|
264
|
+
attr_accessor catalog_item_id: ::String
|
265
|
+
attr_accessor quantity: ::Integer
|
266
|
+
SENSITIVE: []
|
267
|
+
end
|
268
|
+
|
269
|
+
class ListAssetsInput
|
270
|
+
attr_accessor outpost_identifier: ::String
|
271
|
+
attr_accessor host_id_filter: ::Array[::String]
|
272
|
+
attr_accessor max_results: ::Integer
|
273
|
+
attr_accessor next_token: ::String
|
274
|
+
attr_accessor status_filter: ::Array[("ACTIVE" | "RETIRING" | "ISOLATED")]
|
275
|
+
SENSITIVE: []
|
276
|
+
end
|
277
|
+
|
278
|
+
class ListAssetsOutput
|
279
|
+
attr_accessor assets: ::Array[Types::AssetInfo]
|
280
|
+
attr_accessor next_token: ::String
|
281
|
+
SENSITIVE: []
|
282
|
+
end
|
283
|
+
|
284
|
+
class ListCatalogItemsInput
|
285
|
+
attr_accessor next_token: ::String
|
286
|
+
attr_accessor max_results: ::Integer
|
287
|
+
attr_accessor item_class_filter: ::Array[("RACK" | "SERVER")]
|
288
|
+
attr_accessor supported_storage_filter: ::Array[("EBS" | "S3")]
|
289
|
+
attr_accessor ec2_family_filter: ::Array[::String]
|
290
|
+
SENSITIVE: []
|
291
|
+
end
|
292
|
+
|
293
|
+
class ListCatalogItemsOutput
|
294
|
+
attr_accessor catalog_items: ::Array[Types::CatalogItem]
|
295
|
+
attr_accessor next_token: ::String
|
296
|
+
SENSITIVE: []
|
297
|
+
end
|
298
|
+
|
299
|
+
class ListOrdersInput
|
300
|
+
attr_accessor outpost_identifier_filter: ::String
|
301
|
+
attr_accessor next_token: ::String
|
302
|
+
attr_accessor max_results: ::Integer
|
303
|
+
SENSITIVE: []
|
304
|
+
end
|
305
|
+
|
306
|
+
class ListOrdersOutput
|
307
|
+
attr_accessor orders: ::Array[Types::OrderSummary]
|
308
|
+
attr_accessor next_token: ::String
|
309
|
+
SENSITIVE: []
|
310
|
+
end
|
311
|
+
|
312
|
+
class ListOutpostsInput
|
313
|
+
attr_accessor next_token: ::String
|
314
|
+
attr_accessor max_results: ::Integer
|
315
|
+
attr_accessor life_cycle_status_filter: ::Array[::String]
|
316
|
+
attr_accessor availability_zone_filter: ::Array[::String]
|
317
|
+
attr_accessor availability_zone_id_filter: ::Array[::String]
|
318
|
+
SENSITIVE: []
|
319
|
+
end
|
320
|
+
|
321
|
+
class ListOutpostsOutput
|
322
|
+
attr_accessor outposts: ::Array[Types::Outpost]
|
323
|
+
attr_accessor next_token: ::String
|
324
|
+
SENSITIVE: []
|
325
|
+
end
|
326
|
+
|
327
|
+
class ListSitesInput
|
328
|
+
attr_accessor next_token: ::String
|
329
|
+
attr_accessor max_results: ::Integer
|
330
|
+
attr_accessor operating_address_country_code_filter: ::Array[::String]
|
331
|
+
attr_accessor operating_address_state_or_region_filter: ::Array[::String]
|
332
|
+
attr_accessor operating_address_city_filter: ::Array[::String]
|
333
|
+
SENSITIVE: []
|
334
|
+
end
|
335
|
+
|
336
|
+
class ListSitesOutput
|
337
|
+
attr_accessor sites: ::Array[Types::Site]
|
338
|
+
attr_accessor next_token: ::String
|
339
|
+
SENSITIVE: []
|
340
|
+
end
|
341
|
+
|
342
|
+
class ListTagsForResourceRequest
|
343
|
+
attr_accessor resource_arn: ::String
|
344
|
+
SENSITIVE: []
|
345
|
+
end
|
346
|
+
|
347
|
+
class ListTagsForResourceResponse
|
348
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
349
|
+
SENSITIVE: []
|
350
|
+
end
|
351
|
+
|
352
|
+
class NotFoundException
|
353
|
+
attr_accessor message: ::String
|
354
|
+
SENSITIVE: []
|
355
|
+
end
|
356
|
+
|
357
|
+
class Order
|
358
|
+
attr_accessor outpost_id: ::String
|
359
|
+
attr_accessor order_id: ::String
|
360
|
+
attr_accessor status: ("RECEIVED" | "PENDING" | "PROCESSING" | "INSTALLING" | "FULFILLED" | "CANCELLED" | "PREPARING" | "IN_PROGRESS" | "COMPLETED" | "ERROR")
|
361
|
+
attr_accessor line_items: ::Array[Types::LineItem]
|
362
|
+
attr_accessor payment_option: ("ALL_UPFRONT" | "NO_UPFRONT" | "PARTIAL_UPFRONT")
|
363
|
+
attr_accessor order_submission_date: ::Time
|
364
|
+
attr_accessor order_fulfilled_date: ::Time
|
365
|
+
attr_accessor payment_term: ("THREE_YEARS" | "ONE_YEAR")
|
366
|
+
attr_accessor order_type: ("OUTPOST" | "REPLACEMENT")
|
367
|
+
SENSITIVE: []
|
368
|
+
end
|
369
|
+
|
370
|
+
class OrderSummary
|
371
|
+
attr_accessor outpost_id: ::String
|
372
|
+
attr_accessor order_id: ::String
|
373
|
+
attr_accessor order_type: ("OUTPOST" | "REPLACEMENT")
|
374
|
+
attr_accessor status: ("RECEIVED" | "PENDING" | "PROCESSING" | "INSTALLING" | "FULFILLED" | "CANCELLED" | "PREPARING" | "IN_PROGRESS" | "COMPLETED" | "ERROR")
|
375
|
+
attr_accessor line_item_counts_by_status: ::Hash[("PREPARING" | "BUILDING" | "SHIPPED" | "DELIVERED" | "INSTALLING" | "INSTALLED" | "ERROR" | "CANCELLED" | "REPLACED"), ::Integer]
|
376
|
+
attr_accessor order_submission_date: ::Time
|
377
|
+
attr_accessor order_fulfilled_date: ::Time
|
378
|
+
SENSITIVE: []
|
379
|
+
end
|
380
|
+
|
381
|
+
class Outpost
|
382
|
+
attr_accessor outpost_id: ::String
|
383
|
+
attr_accessor owner_id: ::String
|
384
|
+
attr_accessor outpost_arn: ::String
|
385
|
+
attr_accessor site_id: ::String
|
386
|
+
attr_accessor name: ::String
|
387
|
+
attr_accessor description: ::String
|
388
|
+
attr_accessor life_cycle_status: ::String
|
389
|
+
attr_accessor availability_zone: ::String
|
390
|
+
attr_accessor availability_zone_id: ::String
|
391
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
392
|
+
attr_accessor site_arn: ::String
|
393
|
+
attr_accessor supported_hardware_type: ("RACK" | "SERVER")
|
394
|
+
SENSITIVE: []
|
395
|
+
end
|
396
|
+
|
397
|
+
class RackPhysicalProperties
|
398
|
+
attr_accessor power_draw_kva: ("POWER_5_KVA" | "POWER_10_KVA" | "POWER_15_KVA" | "POWER_30_KVA")
|
399
|
+
attr_accessor power_phase: ("SINGLE_PHASE" | "THREE_PHASE")
|
400
|
+
attr_accessor power_connector: ("L6_30P" | "IEC309" | "AH530P7W" | "AH532P6W")
|
401
|
+
attr_accessor power_feed_drop: ("ABOVE_RACK" | "BELOW_RACK")
|
402
|
+
attr_accessor uplink_gbps: ("UPLINK_1G" | "UPLINK_10G" | "UPLINK_40G" | "UPLINK_100G")
|
403
|
+
attr_accessor uplink_count: ("UPLINK_COUNT_1" | "UPLINK_COUNT_2" | "UPLINK_COUNT_3" | "UPLINK_COUNT_4" | "UPLINK_COUNT_5" | "UPLINK_COUNT_6" | "UPLINK_COUNT_7" | "UPLINK_COUNT_8" | "UPLINK_COUNT_12" | "UPLINK_COUNT_16")
|
404
|
+
attr_accessor fiber_optic_cable_type: ("SINGLE_MODE" | "MULTI_MODE")
|
405
|
+
attr_accessor optical_standard: ("OPTIC_10GBASE_SR" | "OPTIC_10GBASE_IR" | "OPTIC_10GBASE_LR" | "OPTIC_40GBASE_SR" | "OPTIC_40GBASE_ESR" | "OPTIC_40GBASE_IR4_LR4L" | "OPTIC_40GBASE_LR4" | "OPTIC_100GBASE_SR4" | "OPTIC_100GBASE_CWDM4" | "OPTIC_100GBASE_LR4" | "OPTIC_100G_PSM4_MSA" | "OPTIC_1000BASE_LX" | "OPTIC_1000BASE_SX")
|
406
|
+
attr_accessor maximum_supported_weight_lbs: ("NO_LIMIT" | "MAX_1400_LBS" | "MAX_1600_LBS" | "MAX_1800_LBS" | "MAX_2000_LBS")
|
407
|
+
SENSITIVE: []
|
408
|
+
end
|
409
|
+
|
410
|
+
class ServiceQuotaExceededException
|
411
|
+
attr_accessor message: ::String
|
412
|
+
SENSITIVE: []
|
413
|
+
end
|
414
|
+
|
415
|
+
class ShipmentInformation
|
416
|
+
attr_accessor shipment_tracking_number: ::String
|
417
|
+
attr_accessor shipment_carrier: ("DHL" | "DBS" | "FEDEX" | "UPS")
|
418
|
+
SENSITIVE: []
|
419
|
+
end
|
420
|
+
|
421
|
+
class Site
|
422
|
+
attr_accessor site_id: ::String
|
423
|
+
attr_accessor account_id: ::String
|
424
|
+
attr_accessor name: ::String
|
425
|
+
attr_accessor description: ::String
|
426
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
427
|
+
attr_accessor site_arn: ::String
|
428
|
+
attr_accessor notes: ::String
|
429
|
+
attr_accessor operating_address_country_code: ::String
|
430
|
+
attr_accessor operating_address_state_or_region: ::String
|
431
|
+
attr_accessor operating_address_city: ::String
|
432
|
+
attr_accessor rack_physical_properties: Types::RackPhysicalProperties
|
433
|
+
SENSITIVE: []
|
434
|
+
end
|
435
|
+
|
436
|
+
class StartConnectionRequest
|
437
|
+
attr_accessor device_serial_number: ::String
|
438
|
+
attr_accessor asset_id: ::String
|
439
|
+
attr_accessor client_public_key: ::String
|
440
|
+
attr_accessor network_interface_device_index: ::Integer
|
441
|
+
SENSITIVE: []
|
442
|
+
end
|
443
|
+
|
444
|
+
class StartConnectionResponse
|
445
|
+
attr_accessor connection_id: ::String
|
446
|
+
attr_accessor underlay_ip_address: ::String
|
447
|
+
SENSITIVE: []
|
448
|
+
end
|
449
|
+
|
450
|
+
class TagResourceRequest
|
451
|
+
attr_accessor resource_arn: ::String
|
452
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
453
|
+
SENSITIVE: []
|
454
|
+
end
|
455
|
+
|
456
|
+
class TagResourceResponse < Aws::EmptyStructure
|
457
|
+
end
|
458
|
+
|
459
|
+
class UntagResourceRequest
|
460
|
+
attr_accessor resource_arn: ::String
|
461
|
+
attr_accessor tag_keys: ::Array[::String]
|
462
|
+
SENSITIVE: []
|
463
|
+
end
|
464
|
+
|
465
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
466
|
+
end
|
467
|
+
|
468
|
+
class UpdateOutpostInput
|
469
|
+
attr_accessor outpost_id: ::String
|
470
|
+
attr_accessor name: ::String
|
471
|
+
attr_accessor description: ::String
|
472
|
+
attr_accessor supported_hardware_type: ("RACK" | "SERVER")
|
473
|
+
SENSITIVE: []
|
474
|
+
end
|
475
|
+
|
476
|
+
class UpdateOutpostOutput
|
477
|
+
attr_accessor outpost: Types::Outpost
|
478
|
+
SENSITIVE: []
|
479
|
+
end
|
480
|
+
|
481
|
+
class UpdateSiteAddressInput
|
482
|
+
attr_accessor site_id: ::String
|
483
|
+
attr_accessor address_type: ("SHIPPING_ADDRESS" | "OPERATING_ADDRESS")
|
484
|
+
attr_accessor address: Types::Address
|
485
|
+
SENSITIVE: []
|
486
|
+
end
|
487
|
+
|
488
|
+
class UpdateSiteAddressOutput
|
489
|
+
attr_accessor address_type: ("SHIPPING_ADDRESS" | "OPERATING_ADDRESS")
|
490
|
+
attr_accessor address: Types::Address
|
491
|
+
SENSITIVE: []
|
492
|
+
end
|
493
|
+
|
494
|
+
class UpdateSiteInput
|
495
|
+
attr_accessor site_id: ::String
|
496
|
+
attr_accessor name: ::String
|
497
|
+
attr_accessor description: ::String
|
498
|
+
attr_accessor notes: ::String
|
499
|
+
SENSITIVE: []
|
500
|
+
end
|
501
|
+
|
502
|
+
class UpdateSiteOutput
|
503
|
+
attr_accessor site: Types::Site
|
504
|
+
SENSITIVE: []
|
505
|
+
end
|
506
|
+
|
507
|
+
class UpdateSiteRackPhysicalPropertiesInput
|
508
|
+
attr_accessor site_id: ::String
|
509
|
+
attr_accessor power_draw_kva: ("POWER_5_KVA" | "POWER_10_KVA" | "POWER_15_KVA" | "POWER_30_KVA")
|
510
|
+
attr_accessor power_phase: ("SINGLE_PHASE" | "THREE_PHASE")
|
511
|
+
attr_accessor power_connector: ("L6_30P" | "IEC309" | "AH530P7W" | "AH532P6W")
|
512
|
+
attr_accessor power_feed_drop: ("ABOVE_RACK" | "BELOW_RACK")
|
513
|
+
attr_accessor uplink_gbps: ("UPLINK_1G" | "UPLINK_10G" | "UPLINK_40G" | "UPLINK_100G")
|
514
|
+
attr_accessor uplink_count: ("UPLINK_COUNT_1" | "UPLINK_COUNT_2" | "UPLINK_COUNT_3" | "UPLINK_COUNT_4" | "UPLINK_COUNT_5" | "UPLINK_COUNT_6" | "UPLINK_COUNT_7" | "UPLINK_COUNT_8" | "UPLINK_COUNT_12" | "UPLINK_COUNT_16")
|
515
|
+
attr_accessor fiber_optic_cable_type: ("SINGLE_MODE" | "MULTI_MODE")
|
516
|
+
attr_accessor optical_standard: ("OPTIC_10GBASE_SR" | "OPTIC_10GBASE_IR" | "OPTIC_10GBASE_LR" | "OPTIC_40GBASE_SR" | "OPTIC_40GBASE_ESR" | "OPTIC_40GBASE_IR4_LR4L" | "OPTIC_40GBASE_LR4" | "OPTIC_100GBASE_SR4" | "OPTIC_100GBASE_CWDM4" | "OPTIC_100GBASE_LR4" | "OPTIC_100G_PSM4_MSA" | "OPTIC_1000BASE_LX" | "OPTIC_1000BASE_SX")
|
517
|
+
attr_accessor maximum_supported_weight_lbs: ("NO_LIMIT" | "MAX_1400_LBS" | "MAX_1600_LBS" | "MAX_1800_LBS" | "MAX_2000_LBS")
|
518
|
+
SENSITIVE: []
|
519
|
+
end
|
520
|
+
|
521
|
+
class UpdateSiteRackPhysicalPropertiesOutput
|
522
|
+
attr_accessor site: Types::Site
|
523
|
+
SENSITIVE: []
|
524
|
+
end
|
525
|
+
|
526
|
+
class ValidationException
|
527
|
+
attr_accessor message: ::String
|
528
|
+
SENSITIVE: []
|
529
|
+
end
|
530
|
+
end
|
531
|
+
end
|
data/sig/waiters.rbs
ADDED
@@ -0,0 +1,13 @@
|
|
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 Outposts
|
10
|
+
module Waiters
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-outposts
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.53.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-01-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.191.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.191.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -66,13 +66,18 @@ files:
|
|
66
66
|
- lib/aws-sdk-outposts/plugins/endpoints.rb
|
67
67
|
- lib/aws-sdk-outposts/resource.rb
|
68
68
|
- lib/aws-sdk-outposts/types.rb
|
69
|
+
- sig/client.rbs
|
70
|
+
- sig/errors.rbs
|
71
|
+
- sig/resource.rbs
|
72
|
+
- sig/types.rbs
|
73
|
+
- sig/waiters.rbs
|
69
74
|
homepage: https://github.com/aws/aws-sdk-ruby
|
70
75
|
licenses:
|
71
76
|
- Apache-2.0
|
72
77
|
metadata:
|
73
78
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-outposts
|
74
79
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-outposts/CHANGELOG.md
|
75
|
-
post_install_message:
|
80
|
+
post_install_message:
|
76
81
|
rdoc_options: []
|
77
82
|
require_paths:
|
78
83
|
- lib
|
@@ -87,8 +92,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
87
92
|
- !ruby/object:Gem::Version
|
88
93
|
version: '0'
|
89
94
|
requirements: []
|
90
|
-
rubygems_version: 3.
|
91
|
-
signing_key:
|
95
|
+
rubygems_version: 3.4.10
|
96
|
+
signing_key:
|
92
97
|
specification_version: 4
|
93
98
|
summary: AWS SDK for Ruby - Outposts
|
94
99
|
test_files: []
|