aws-sdk-globalaccelerator 1.15.0 → 1.20.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 +5 -5
- data/lib/aws-sdk-globalaccelerator.rb +3 -1
- data/lib/aws-sdk-globalaccelerator/client.rb +47 -23
- data/lib/aws-sdk-globalaccelerator/client_api.rb +11 -0
- data/lib/aws-sdk-globalaccelerator/errors.rb +2 -0
- data/lib/aws-sdk-globalaccelerator/resource.rb +3 -7
- data/lib/aws-sdk-globalaccelerator/types.rb +109 -4
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: b821b236a5ef2d888397d3ff5084d74825c1c0f73a3624126067cee2814dc32f
|
4
|
+
data.tar.gz: 5bc5baf82577552d0878968635284ece184848a76a5e105838a5045c3d4e82a9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d08e238e51f463e31474bebe445d0301552831af451e82f236d4ef461f7bf696ce9718272d8dc8a31ced8597b26bd0cd813560b4306f0471e1ffa6320a00d810
|
7
|
+
data.tar.gz: f11430bd08b06ecdfd4dabc29b5a7d40f6d741cb14579d6cca776695b558d0ff8c6b723f76df7e7337e2d8fe2b12a1b0a24e10ef7cada90868dcab890d9c87b7
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -45,6 +47,6 @@ require_relative 'aws-sdk-globalaccelerator/customizations'
|
|
45
47
|
# @service
|
46
48
|
module Aws::GlobalAccelerator
|
47
49
|
|
48
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.20.0'
|
49
51
|
|
50
52
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
29
32
|
|
@@ -32,11 +35,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:globalaccelerator)
|
|
32
35
|
module Aws::GlobalAccelerator
|
33
36
|
# An API client for GlobalAccelerator. To construct a client, you need to configure a `:region` and `:credentials`.
|
34
37
|
#
|
35
|
-
#
|
36
|
-
#
|
37
|
-
#
|
38
|
-
#
|
39
|
-
#
|
38
|
+
# client = Aws::GlobalAccelerator::Client.new(
|
39
|
+
# region: region_name,
|
40
|
+
# credentials: credentials,
|
41
|
+
# # ...
|
42
|
+
# )
|
40
43
|
#
|
41
44
|
# For details on configuring region and credentials see
|
42
45
|
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
@@ -69,6 +72,7 @@ module Aws::GlobalAccelerator
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
74
78
|
|
@@ -105,7 +109,7 @@ module Aws::GlobalAccelerator
|
|
105
109
|
# @option options [required, String] :region
|
106
110
|
# The AWS region to connect to. The configured `:region` is
|
107
111
|
# used to determine the service `:endpoint`. When not passed,
|
108
|
-
# a default `:region` is
|
112
|
+
# a default `:region` is searched for in the following locations:
|
109
113
|
#
|
110
114
|
# * `Aws.config[:region]`
|
111
115
|
# * `ENV['AWS_REGION']`
|
@@ -161,7 +165,7 @@ module Aws::GlobalAccelerator
|
|
161
165
|
# @option options [String] :endpoint
|
162
166
|
# The client endpoint is normally constructed from the `:region`
|
163
167
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
169
|
#
|
166
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +180,7 @@ module Aws::GlobalAccelerator
|
|
176
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
181
|
#
|
178
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
184
|
#
|
181
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
186
|
# The log formatter.
|
@@ -229,15 +233,19 @@ module Aws::GlobalAccelerator
|
|
229
233
|
#
|
230
234
|
# @option options [String] :retry_mode ("legacy")
|
231
235
|
# Specifies which retry algorithm to use. Values are:
|
232
|
-
#
|
233
|
-
#
|
234
|
-
#
|
235
|
-
#
|
236
|
-
#
|
237
|
-
#
|
238
|
-
#
|
239
|
-
#
|
240
|
-
#
|
236
|
+
#
|
237
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
238
|
+
# no retry mode is provided.
|
239
|
+
#
|
240
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
241
|
+
# This includes support for retry quotas, which limit the number of
|
242
|
+
# unsuccessful retries a client can make.
|
243
|
+
#
|
244
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
245
|
+
# functionality of `standard` mode along with automatic client side
|
246
|
+
# throttling. This is a provisional mode that may change behavior
|
247
|
+
# in the future.
|
248
|
+
#
|
241
249
|
#
|
242
250
|
# @option options [String] :secret_access_key
|
243
251
|
#
|
@@ -275,8 +283,7 @@ module Aws::GlobalAccelerator
|
|
275
283
|
#
|
276
284
|
# @option options [Integer] :http_read_timeout (60) The default
|
277
285
|
# number of seconds to wait for response data. This value can
|
278
|
-
# safely be set
|
279
|
-
# per-request on the session yielded by {#session_for}.
|
286
|
+
# safely be set per-request on the session.
|
280
287
|
#
|
281
288
|
# @option options [Float] :http_idle_timeout (5) The number of
|
282
289
|
# seconds a connection is allowed to sit idle before it is
|
@@ -288,7 +295,7 @@ module Aws::GlobalAccelerator
|
|
288
295
|
# request body. This option has no effect unless the request has
|
289
296
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
290
297
|
# disables this behaviour. This value can safely be set per
|
291
|
-
# request on the session
|
298
|
+
# request on the session.
|
292
299
|
#
|
293
300
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
294
301
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -351,6 +358,9 @@ module Aws::GlobalAccelerator
|
|
351
358
|
#
|
352
359
|
# resp.byoip_cidr.cidr #=> String
|
353
360
|
# resp.byoip_cidr.state #=> String, one of "PENDING_PROVISIONING", "READY", "PENDING_ADVERTISING", "ADVERTISING", "PENDING_WITHDRAWING", "PENDING_DEPROVISIONING", "DEPROVISIONED", "FAILED_PROVISION", "FAILED_ADVERTISING", "FAILED_WITHDRAW", "FAILED_DEPROVISION"
|
361
|
+
# resp.byoip_cidr.events #=> Array
|
362
|
+
# resp.byoip_cidr.events[0].message #=> String
|
363
|
+
# resp.byoip_cidr.events[0].timestamp #=> Time
|
354
364
|
#
|
355
365
|
# @see http://docs.aws.amazon.com/goto/WebAPI/globalaccelerator-2018-08-08/AdvertiseByoipCidr AWS API Documentation
|
356
366
|
#
|
@@ -784,6 +794,9 @@ module Aws::GlobalAccelerator
|
|
784
794
|
#
|
785
795
|
# resp.byoip_cidr.cidr #=> String
|
786
796
|
# resp.byoip_cidr.state #=> String, one of "PENDING_PROVISIONING", "READY", "PENDING_ADVERTISING", "ADVERTISING", "PENDING_WITHDRAWING", "PENDING_DEPROVISIONING", "DEPROVISIONED", "FAILED_PROVISION", "FAILED_ADVERTISING", "FAILED_WITHDRAW", "FAILED_DEPROVISION"
|
797
|
+
# resp.byoip_cidr.events #=> Array
|
798
|
+
# resp.byoip_cidr.events[0].message #=> String
|
799
|
+
# resp.byoip_cidr.events[0].timestamp #=> Time
|
787
800
|
#
|
788
801
|
# @see http://docs.aws.amazon.com/goto/WebAPI/globalaccelerator-2018-08-08/DeprovisionByoipCidr AWS API Documentation
|
789
802
|
#
|
@@ -867,7 +880,8 @@ module Aws::GlobalAccelerator
|
|
867
880
|
req.send_request(options)
|
868
881
|
end
|
869
882
|
|
870
|
-
# Describe an endpoint group.
|
883
|
+
# Describe an endpoint group. To see an AWS CLI example of describing an
|
884
|
+
# endpoint group, scroll down to **Example**.
|
871
885
|
#
|
872
886
|
# @option params [required, String] :endpoint_group_arn
|
873
887
|
# The Amazon Resource Name (ARN) of the endpoint group to describe.
|
@@ -993,7 +1007,8 @@ module Aws::GlobalAccelerator
|
|
993
1007
|
end
|
994
1008
|
|
995
1009
|
# Lists the IP address ranges that were specified in calls to
|
996
|
-
# [ProvisionByoipCidr][1]
|
1010
|
+
# [ProvisionByoipCidr][1], including the current state and a history of
|
1011
|
+
# state changes.
|
997
1012
|
#
|
998
1013
|
# To see an AWS CLI example of listing BYOIP CIDR addresses, scroll down
|
999
1014
|
# to **Example**.
|
@@ -1027,6 +1042,9 @@ module Aws::GlobalAccelerator
|
|
1027
1042
|
# resp.byoip_cidrs #=> Array
|
1028
1043
|
# resp.byoip_cidrs[0].cidr #=> String
|
1029
1044
|
# resp.byoip_cidrs[0].state #=> String, one of "PENDING_PROVISIONING", "READY", "PENDING_ADVERTISING", "ADVERTISING", "PENDING_WITHDRAWING", "PENDING_DEPROVISIONING", "DEPROVISIONED", "FAILED_PROVISION", "FAILED_ADVERTISING", "FAILED_WITHDRAW", "FAILED_DEPROVISION"
|
1045
|
+
# resp.byoip_cidrs[0].events #=> Array
|
1046
|
+
# resp.byoip_cidrs[0].events[0].message #=> String
|
1047
|
+
# resp.byoip_cidrs[0].events[0].timestamp #=> Time
|
1030
1048
|
# resp.next_token #=> String
|
1031
1049
|
#
|
1032
1050
|
# @see http://docs.aws.amazon.com/goto/WebAPI/globalaccelerator-2018-08-08/ListByoipCidrs AWS API Documentation
|
@@ -1225,6 +1243,9 @@ module Aws::GlobalAccelerator
|
|
1225
1243
|
#
|
1226
1244
|
# resp.byoip_cidr.cidr #=> String
|
1227
1245
|
# resp.byoip_cidr.state #=> String, one of "PENDING_PROVISIONING", "READY", "PENDING_ADVERTISING", "ADVERTISING", "PENDING_WITHDRAWING", "PENDING_DEPROVISIONING", "DEPROVISIONED", "FAILED_PROVISION", "FAILED_ADVERTISING", "FAILED_WITHDRAW", "FAILED_DEPROVISION"
|
1246
|
+
# resp.byoip_cidr.events #=> Array
|
1247
|
+
# resp.byoip_cidr.events[0].message #=> String
|
1248
|
+
# resp.byoip_cidr.events[0].timestamp #=> Time
|
1228
1249
|
#
|
1229
1250
|
# @see http://docs.aws.amazon.com/goto/WebAPI/globalaccelerator-2018-08-08/ProvisionByoipCidr AWS API Documentation
|
1230
1251
|
#
|
@@ -1643,6 +1664,9 @@ module Aws::GlobalAccelerator
|
|
1643
1664
|
#
|
1644
1665
|
# resp.byoip_cidr.cidr #=> String
|
1645
1666
|
# resp.byoip_cidr.state #=> String, one of "PENDING_PROVISIONING", "READY", "PENDING_ADVERTISING", "ADVERTISING", "PENDING_WITHDRAWING", "PENDING_DEPROVISIONING", "DEPROVISIONED", "FAILED_PROVISION", "FAILED_ADVERTISING", "FAILED_WITHDRAW", "FAILED_DEPROVISION"
|
1667
|
+
# resp.byoip_cidr.events #=> Array
|
1668
|
+
# resp.byoip_cidr.events[0].message #=> String
|
1669
|
+
# resp.byoip_cidr.events[0].timestamp #=> Time
|
1646
1670
|
#
|
1647
1671
|
# @see http://docs.aws.amazon.com/goto/WebAPI/globalaccelerator-2018-08-08/WithdrawByoipCidr AWS API Documentation
|
1648
1672
|
#
|
@@ -1666,7 +1690,7 @@ module Aws::GlobalAccelerator
|
|
1666
1690
|
params: params,
|
1667
1691
|
config: config)
|
1668
1692
|
context[:gem_name] = 'aws-sdk-globalaccelerator'
|
1669
|
-
context[:gem_version] = '1.
|
1693
|
+
context[:gem_version] = '1.20.0'
|
1670
1694
|
Seahorse::Client::Request.new(handlers, context)
|
1671
1695
|
end
|
1672
1696
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -23,6 +25,8 @@ module Aws::GlobalAccelerator
|
|
23
25
|
AssociatedEndpointGroupFoundException = Shapes::StructureShape.new(name: 'AssociatedEndpointGroupFoundException')
|
24
26
|
AssociatedListenerFoundException = Shapes::StructureShape.new(name: 'AssociatedListenerFoundException')
|
25
27
|
ByoipCidr = Shapes::StructureShape.new(name: 'ByoipCidr')
|
28
|
+
ByoipCidrEvent = Shapes::StructureShape.new(name: 'ByoipCidrEvent')
|
29
|
+
ByoipCidrEvents = Shapes::ListShape.new(name: 'ByoipCidrEvents')
|
26
30
|
ByoipCidrNotFoundException = Shapes::StructureShape.new(name: 'ByoipCidrNotFoundException')
|
27
31
|
ByoipCidrState = Shapes::StringShape.new(name: 'ByoipCidrState')
|
28
32
|
ByoipCidrs = Shapes::ListShape.new(name: 'ByoipCidrs')
|
@@ -160,8 +164,15 @@ module Aws::GlobalAccelerator
|
|
160
164
|
|
161
165
|
ByoipCidr.add_member(:cidr, Shapes::ShapeRef.new(shape: GenericString, location_name: "Cidr"))
|
162
166
|
ByoipCidr.add_member(:state, Shapes::ShapeRef.new(shape: ByoipCidrState, location_name: "State"))
|
167
|
+
ByoipCidr.add_member(:events, Shapes::ShapeRef.new(shape: ByoipCidrEvents, location_name: "Events"))
|
163
168
|
ByoipCidr.struct_class = Types::ByoipCidr
|
164
169
|
|
170
|
+
ByoipCidrEvent.add_member(:message, Shapes::ShapeRef.new(shape: GenericString, location_name: "Message"))
|
171
|
+
ByoipCidrEvent.add_member(:timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "Timestamp"))
|
172
|
+
ByoipCidrEvent.struct_class = Types::ByoipCidrEvent
|
173
|
+
|
174
|
+
ByoipCidrEvents.member = Shapes::ShapeRef.new(shape: ByoipCidrEvent)
|
175
|
+
|
165
176
|
ByoipCidrNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
166
177
|
ByoipCidrNotFoundException.struct_class = Types::ByoipCidrNotFoundException
|
167
178
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -6,13 +8,7 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::GlobalAccelerator
|
9
|
-
|
10
|
-
# To create a resource object:
|
11
|
-
# resource = Aws::GlobalAccelerator::Resource.new(region: 'us-west-2')
|
12
|
-
# You can supply a client object with custom configuration that will be used for all resource operations.
|
13
|
-
# If you do not pass +:client+, a default client will be constructed.
|
14
|
-
# client = Aws::GlobalAccelerator::Client.new(region: 'us-west-2')
|
15
|
-
# resource = Aws::GlobalAccelerator::Resource.new(client: client)
|
11
|
+
|
16
12
|
class Resource
|
17
13
|
|
18
14
|
# @param options ({})
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -81,6 +83,7 @@ module Aws::GlobalAccelerator
|
|
81
83
|
:status,
|
82
84
|
:created_time,
|
83
85
|
:last_modified_time)
|
86
|
+
SENSITIVE = []
|
84
87
|
include Aws::Structure
|
85
88
|
end
|
86
89
|
|
@@ -124,6 +127,7 @@ module Aws::GlobalAccelerator
|
|
124
127
|
:flow_logs_enabled,
|
125
128
|
:flow_logs_s3_bucket,
|
126
129
|
:flow_logs_s3_prefix)
|
130
|
+
SENSITIVE = []
|
127
131
|
include Aws::Structure
|
128
132
|
end
|
129
133
|
|
@@ -136,6 +140,7 @@ module Aws::GlobalAccelerator
|
|
136
140
|
#
|
137
141
|
class AcceleratorNotDisabledException < Struct.new(
|
138
142
|
:message)
|
143
|
+
SENSITIVE = []
|
139
144
|
include Aws::Structure
|
140
145
|
end
|
141
146
|
|
@@ -148,6 +153,7 @@ module Aws::GlobalAccelerator
|
|
148
153
|
#
|
149
154
|
class AcceleratorNotFoundException < Struct.new(
|
150
155
|
:message)
|
156
|
+
SENSITIVE = []
|
151
157
|
include Aws::Structure
|
152
158
|
end
|
153
159
|
|
@@ -160,6 +166,7 @@ module Aws::GlobalAccelerator
|
|
160
166
|
#
|
161
167
|
class AccessDeniedException < Struct.new(
|
162
168
|
:message)
|
169
|
+
SENSITIVE = []
|
163
170
|
include Aws::Structure
|
164
171
|
end
|
165
172
|
|
@@ -180,6 +187,7 @@ module Aws::GlobalAccelerator
|
|
180
187
|
#
|
181
188
|
class AdvertiseByoipCidrRequest < Struct.new(
|
182
189
|
:cidr)
|
190
|
+
SENSITIVE = []
|
183
191
|
include Aws::Structure
|
184
192
|
end
|
185
193
|
|
@@ -191,6 +199,7 @@ module Aws::GlobalAccelerator
|
|
191
199
|
#
|
192
200
|
class AdvertiseByoipCidrResponse < Struct.new(
|
193
201
|
:byoip_cidr)
|
202
|
+
SENSITIVE = []
|
194
203
|
include Aws::Structure
|
195
204
|
end
|
196
205
|
|
@@ -205,6 +214,7 @@ module Aws::GlobalAccelerator
|
|
205
214
|
#
|
206
215
|
class AssociatedEndpointGroupFoundException < Struct.new(
|
207
216
|
:message)
|
217
|
+
SENSITIVE = []
|
208
218
|
include Aws::Structure
|
209
219
|
end
|
210
220
|
|
@@ -219,11 +229,12 @@ module Aws::GlobalAccelerator
|
|
219
229
|
#
|
220
230
|
class AssociatedListenerFoundException < Struct.new(
|
221
231
|
:message)
|
232
|
+
SENSITIVE = []
|
222
233
|
include Aws::Structure
|
223
234
|
end
|
224
235
|
|
225
236
|
# Information about an IP address range that is provisioned for use with
|
226
|
-
# your AWS resources through bring your own IP
|
237
|
+
# your AWS resources through bring your own IP address (BYOIP).
|
227
238
|
#
|
228
239
|
# The following describes each BYOIP `State` that your IP address range
|
229
240
|
# can be in.
|
@@ -282,11 +293,44 @@ module Aws::GlobalAccelerator
|
|
282
293
|
# The state of the address pool.
|
283
294
|
# @return [String]
|
284
295
|
#
|
296
|
+
# @!attribute [rw] events
|
297
|
+
# A history of status changes for an IP address range that that you
|
298
|
+
# bring to AWS Global Accelerator through bring your own IP address
|
299
|
+
# (BYOIP).
|
300
|
+
# @return [Array<Types::ByoipCidrEvent>]
|
301
|
+
#
|
285
302
|
# @see http://docs.aws.amazon.com/goto/WebAPI/globalaccelerator-2018-08-08/ByoipCidr AWS API Documentation
|
286
303
|
#
|
287
304
|
class ByoipCidr < Struct.new(
|
288
305
|
:cidr,
|
289
|
-
:state
|
306
|
+
:state,
|
307
|
+
:events)
|
308
|
+
SENSITIVE = []
|
309
|
+
include Aws::Structure
|
310
|
+
end
|
311
|
+
|
312
|
+
# A complex type that contains a `Message` and a `Timestamp` value for
|
313
|
+
# changes that you make in the status an IP address range that you bring
|
314
|
+
# to AWS Global Accelerator through bring your own IP address (BYOIP).
|
315
|
+
#
|
316
|
+
# @!attribute [rw] message
|
317
|
+
# A string that contains an `Event` message describing changes that
|
318
|
+
# you make in the status of an IP address range that you bring to AWS
|
319
|
+
# Global Accelerator through bring your own IP address (BYOIP).
|
320
|
+
# @return [String]
|
321
|
+
#
|
322
|
+
# @!attribute [rw] timestamp
|
323
|
+
# A timestamp when you make a status change for an IP address range
|
324
|
+
# that you bring to AWS Global Accelerator through bring your own IP
|
325
|
+
# address (BYOIP).
|
326
|
+
# @return [Time]
|
327
|
+
#
|
328
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/globalaccelerator-2018-08-08/ByoipCidrEvent AWS API Documentation
|
329
|
+
#
|
330
|
+
class ByoipCidrEvent < Struct.new(
|
331
|
+
:message,
|
332
|
+
:timestamp)
|
333
|
+
SENSITIVE = []
|
290
334
|
include Aws::Structure
|
291
335
|
end
|
292
336
|
|
@@ -299,6 +343,7 @@ module Aws::GlobalAccelerator
|
|
299
343
|
#
|
300
344
|
class ByoipCidrNotFoundException < Struct.new(
|
301
345
|
:message)
|
346
|
+
SENSITIVE = []
|
302
347
|
include Aws::Structure
|
303
348
|
end
|
304
349
|
|
@@ -333,6 +378,7 @@ module Aws::GlobalAccelerator
|
|
333
378
|
class CidrAuthorizationContext < Struct.new(
|
334
379
|
:message,
|
335
380
|
:signature)
|
381
|
+
SENSITIVE = []
|
336
382
|
include Aws::Structure
|
337
383
|
end
|
338
384
|
|
@@ -417,6 +463,7 @@ module Aws::GlobalAccelerator
|
|
417
463
|
:enabled,
|
418
464
|
:idempotency_token,
|
419
465
|
:tags)
|
466
|
+
SENSITIVE = []
|
420
467
|
include Aws::Structure
|
421
468
|
end
|
422
469
|
|
@@ -429,6 +476,7 @@ module Aws::GlobalAccelerator
|
|
429
476
|
#
|
430
477
|
class CreateAcceleratorResponse < Struct.new(
|
431
478
|
:accelerator)
|
479
|
+
SENSITIVE = []
|
432
480
|
include Aws::Structure
|
433
481
|
end
|
434
482
|
|
@@ -531,6 +579,7 @@ module Aws::GlobalAccelerator
|
|
531
579
|
:health_check_interval_seconds,
|
532
580
|
:threshold_count,
|
533
581
|
:idempotency_token)
|
582
|
+
SENSITIVE = []
|
534
583
|
include Aws::Structure
|
535
584
|
end
|
536
585
|
|
@@ -542,6 +591,7 @@ module Aws::GlobalAccelerator
|
|
542
591
|
#
|
543
592
|
class CreateEndpointGroupResponse < Struct.new(
|
544
593
|
:endpoint_group)
|
594
|
+
SENSITIVE = []
|
545
595
|
include Aws::Structure
|
546
596
|
end
|
547
597
|
|
@@ -616,6 +666,7 @@ module Aws::GlobalAccelerator
|
|
616
666
|
:protocol,
|
617
667
|
:client_affinity,
|
618
668
|
:idempotency_token)
|
669
|
+
SENSITIVE = []
|
619
670
|
include Aws::Structure
|
620
671
|
end
|
621
672
|
|
@@ -627,6 +678,7 @@ module Aws::GlobalAccelerator
|
|
627
678
|
#
|
628
679
|
class CreateListenerResponse < Struct.new(
|
629
680
|
:listener)
|
681
|
+
SENSITIVE = []
|
630
682
|
include Aws::Structure
|
631
683
|
end
|
632
684
|
|
@@ -645,6 +697,7 @@ module Aws::GlobalAccelerator
|
|
645
697
|
#
|
646
698
|
class DeleteAcceleratorRequest < Struct.new(
|
647
699
|
:accelerator_arn)
|
700
|
+
SENSITIVE = []
|
648
701
|
include Aws::Structure
|
649
702
|
end
|
650
703
|
|
@@ -663,6 +716,7 @@ module Aws::GlobalAccelerator
|
|
663
716
|
#
|
664
717
|
class DeleteEndpointGroupRequest < Struct.new(
|
665
718
|
:endpoint_group_arn)
|
719
|
+
SENSITIVE = []
|
666
720
|
include Aws::Structure
|
667
721
|
end
|
668
722
|
|
@@ -681,6 +735,7 @@ module Aws::GlobalAccelerator
|
|
681
735
|
#
|
682
736
|
class DeleteListenerRequest < Struct.new(
|
683
737
|
:listener_arn)
|
738
|
+
SENSITIVE = []
|
684
739
|
include Aws::Structure
|
685
740
|
end
|
686
741
|
|
@@ -700,6 +755,7 @@ module Aws::GlobalAccelerator
|
|
700
755
|
#
|
701
756
|
class DeprovisionByoipCidrRequest < Struct.new(
|
702
757
|
:cidr)
|
758
|
+
SENSITIVE = []
|
703
759
|
include Aws::Structure
|
704
760
|
end
|
705
761
|
|
@@ -711,6 +767,7 @@ module Aws::GlobalAccelerator
|
|
711
767
|
#
|
712
768
|
class DeprovisionByoipCidrResponse < Struct.new(
|
713
769
|
:byoip_cidr)
|
770
|
+
SENSITIVE = []
|
714
771
|
include Aws::Structure
|
715
772
|
end
|
716
773
|
|
@@ -730,6 +787,7 @@ module Aws::GlobalAccelerator
|
|
730
787
|
#
|
731
788
|
class DescribeAcceleratorAttributesRequest < Struct.new(
|
732
789
|
:accelerator_arn)
|
790
|
+
SENSITIVE = []
|
733
791
|
include Aws::Structure
|
734
792
|
end
|
735
793
|
|
@@ -741,6 +799,7 @@ module Aws::GlobalAccelerator
|
|
741
799
|
#
|
742
800
|
class DescribeAcceleratorAttributesResponse < Struct.new(
|
743
801
|
:accelerator_attributes)
|
802
|
+
SENSITIVE = []
|
744
803
|
include Aws::Structure
|
745
804
|
end
|
746
805
|
|
@@ -759,6 +818,7 @@ module Aws::GlobalAccelerator
|
|
759
818
|
#
|
760
819
|
class DescribeAcceleratorRequest < Struct.new(
|
761
820
|
:accelerator_arn)
|
821
|
+
SENSITIVE = []
|
762
822
|
include Aws::Structure
|
763
823
|
end
|
764
824
|
|
@@ -770,6 +830,7 @@ module Aws::GlobalAccelerator
|
|
770
830
|
#
|
771
831
|
class DescribeAcceleratorResponse < Struct.new(
|
772
832
|
:accelerator)
|
833
|
+
SENSITIVE = []
|
773
834
|
include Aws::Structure
|
774
835
|
end
|
775
836
|
|
@@ -788,6 +849,7 @@ module Aws::GlobalAccelerator
|
|
788
849
|
#
|
789
850
|
class DescribeEndpointGroupRequest < Struct.new(
|
790
851
|
:endpoint_group_arn)
|
852
|
+
SENSITIVE = []
|
791
853
|
include Aws::Structure
|
792
854
|
end
|
793
855
|
|
@@ -799,6 +861,7 @@ module Aws::GlobalAccelerator
|
|
799
861
|
#
|
800
862
|
class DescribeEndpointGroupResponse < Struct.new(
|
801
863
|
:endpoint_group)
|
864
|
+
SENSITIVE = []
|
802
865
|
include Aws::Structure
|
803
866
|
end
|
804
867
|
|
@@ -817,6 +880,7 @@ module Aws::GlobalAccelerator
|
|
817
880
|
#
|
818
881
|
class DescribeListenerRequest < Struct.new(
|
819
882
|
:listener_arn)
|
883
|
+
SENSITIVE = []
|
820
884
|
include Aws::Structure
|
821
885
|
end
|
822
886
|
|
@@ -828,6 +892,7 @@ module Aws::GlobalAccelerator
|
|
828
892
|
#
|
829
893
|
class DescribeListenerResponse < Struct.new(
|
830
894
|
:listener)
|
895
|
+
SENSITIVE = []
|
831
896
|
include Aws::Structure
|
832
897
|
end
|
833
898
|
|
@@ -879,13 +944,13 @@ module Aws::GlobalAccelerator
|
|
879
944
|
# applications on the Application Load Balancer endpoint fronted by
|
880
945
|
# the accelerator.
|
881
946
|
#
|
882
|
-
# For more information, see [
|
947
|
+
# For more information, see [ Preserve Client IP Addresses in AWS
|
883
948
|
# Global Accelerator][1] in the *AWS Global Accelerator Developer
|
884
949
|
# Guide*.
|
885
950
|
#
|
886
951
|
#
|
887
952
|
#
|
888
|
-
# [1]: https://docs.aws.amazon.com/global-accelerator/latest/dg/
|
953
|
+
# [1]: https://docs.aws.amazon.com/global-accelerator/latest/dg/preserve-client-ip-address.html
|
889
954
|
# @return [Boolean]
|
890
955
|
#
|
891
956
|
# @see http://docs.aws.amazon.com/goto/WebAPI/globalaccelerator-2018-08-08/EndpointConfiguration AWS API Documentation
|
@@ -894,6 +959,7 @@ module Aws::GlobalAccelerator
|
|
894
959
|
:endpoint_id,
|
895
960
|
:weight,
|
896
961
|
:client_ip_preservation_enabled)
|
962
|
+
SENSITIVE = []
|
897
963
|
include Aws::Structure
|
898
964
|
end
|
899
965
|
|
@@ -982,6 +1048,7 @@ module Aws::GlobalAccelerator
|
|
982
1048
|
:health_state,
|
983
1049
|
:health_reason,
|
984
1050
|
:client_ip_preservation_enabled)
|
1051
|
+
SENSITIVE = []
|
985
1052
|
include Aws::Structure
|
986
1053
|
end
|
987
1054
|
|
@@ -1056,6 +1123,7 @@ module Aws::GlobalAccelerator
|
|
1056
1123
|
:health_check_path,
|
1057
1124
|
:health_check_interval_seconds,
|
1058
1125
|
:threshold_count)
|
1126
|
+
SENSITIVE = []
|
1059
1127
|
include Aws::Structure
|
1060
1128
|
end
|
1061
1129
|
|
@@ -1068,6 +1136,7 @@ module Aws::GlobalAccelerator
|
|
1068
1136
|
#
|
1069
1137
|
class EndpointGroupAlreadyExistsException < Struct.new(
|
1070
1138
|
:message)
|
1139
|
+
SENSITIVE = []
|
1071
1140
|
include Aws::Structure
|
1072
1141
|
end
|
1073
1142
|
|
@@ -1080,6 +1149,7 @@ module Aws::GlobalAccelerator
|
|
1080
1149
|
#
|
1081
1150
|
class EndpointGroupNotFoundException < Struct.new(
|
1082
1151
|
:message)
|
1152
|
+
SENSITIVE = []
|
1083
1153
|
include Aws::Structure
|
1084
1154
|
end
|
1085
1155
|
|
@@ -1093,6 +1163,7 @@ module Aws::GlobalAccelerator
|
|
1093
1163
|
#
|
1094
1164
|
class IncorrectCidrStateException < Struct.new(
|
1095
1165
|
:message)
|
1166
|
+
SENSITIVE = []
|
1096
1167
|
include Aws::Structure
|
1097
1168
|
end
|
1098
1169
|
|
@@ -1105,6 +1176,7 @@ module Aws::GlobalAccelerator
|
|
1105
1176
|
#
|
1106
1177
|
class InternalServiceErrorException < Struct.new(
|
1107
1178
|
:message)
|
1179
|
+
SENSITIVE = []
|
1108
1180
|
include Aws::Structure
|
1109
1181
|
end
|
1110
1182
|
|
@@ -1117,6 +1189,7 @@ module Aws::GlobalAccelerator
|
|
1117
1189
|
#
|
1118
1190
|
class InvalidArgumentException < Struct.new(
|
1119
1191
|
:message)
|
1192
|
+
SENSITIVE = []
|
1120
1193
|
include Aws::Structure
|
1121
1194
|
end
|
1122
1195
|
|
@@ -1129,6 +1202,7 @@ module Aws::GlobalAccelerator
|
|
1129
1202
|
#
|
1130
1203
|
class InvalidNextTokenException < Struct.new(
|
1131
1204
|
:message)
|
1205
|
+
SENSITIVE = []
|
1132
1206
|
include Aws::Structure
|
1133
1207
|
end
|
1134
1208
|
|
@@ -1142,6 +1216,7 @@ module Aws::GlobalAccelerator
|
|
1142
1216
|
#
|
1143
1217
|
class InvalidPortRangeException < Struct.new(
|
1144
1218
|
:message)
|
1219
|
+
SENSITIVE = []
|
1145
1220
|
include Aws::Structure
|
1146
1221
|
end
|
1147
1222
|
|
@@ -1161,6 +1236,7 @@ module Aws::GlobalAccelerator
|
|
1161
1236
|
class IpSet < Struct.new(
|
1162
1237
|
:ip_family,
|
1163
1238
|
:ip_addresses)
|
1239
|
+
SENSITIVE = []
|
1164
1240
|
include Aws::Structure
|
1165
1241
|
end
|
1166
1242
|
|
@@ -1174,6 +1250,7 @@ module Aws::GlobalAccelerator
|
|
1174
1250
|
#
|
1175
1251
|
class LimitExceededException < Struct.new(
|
1176
1252
|
:message)
|
1253
|
+
SENSITIVE = []
|
1177
1254
|
include Aws::Structure
|
1178
1255
|
end
|
1179
1256
|
|
@@ -1200,6 +1277,7 @@ module Aws::GlobalAccelerator
|
|
1200
1277
|
class ListAcceleratorsRequest < Struct.new(
|
1201
1278
|
:max_results,
|
1202
1279
|
:next_token)
|
1280
|
+
SENSITIVE = []
|
1203
1281
|
include Aws::Structure
|
1204
1282
|
end
|
1205
1283
|
|
@@ -1217,6 +1295,7 @@ module Aws::GlobalAccelerator
|
|
1217
1295
|
class ListAcceleratorsResponse < Struct.new(
|
1218
1296
|
:accelerators,
|
1219
1297
|
:next_token)
|
1298
|
+
SENSITIVE = []
|
1220
1299
|
include Aws::Structure
|
1221
1300
|
end
|
1222
1301
|
|
@@ -1243,6 +1322,7 @@ module Aws::GlobalAccelerator
|
|
1243
1322
|
class ListByoipCidrsRequest < Struct.new(
|
1244
1323
|
:max_results,
|
1245
1324
|
:next_token)
|
1325
|
+
SENSITIVE = []
|
1246
1326
|
include Aws::Structure
|
1247
1327
|
end
|
1248
1328
|
|
@@ -1259,6 +1339,7 @@ module Aws::GlobalAccelerator
|
|
1259
1339
|
class ListByoipCidrsResponse < Struct.new(
|
1260
1340
|
:byoip_cidrs,
|
1261
1341
|
:next_token)
|
1342
|
+
SENSITIVE = []
|
1262
1343
|
include Aws::Structure
|
1263
1344
|
end
|
1264
1345
|
|
@@ -1291,6 +1372,7 @@ module Aws::GlobalAccelerator
|
|
1291
1372
|
:listener_arn,
|
1292
1373
|
:max_results,
|
1293
1374
|
:next_token)
|
1375
|
+
SENSITIVE = []
|
1294
1376
|
include Aws::Structure
|
1295
1377
|
end
|
1296
1378
|
|
@@ -1308,6 +1390,7 @@ module Aws::GlobalAccelerator
|
|
1308
1390
|
class ListEndpointGroupsResponse < Struct.new(
|
1309
1391
|
:endpoint_groups,
|
1310
1392
|
:next_token)
|
1393
|
+
SENSITIVE = []
|
1311
1394
|
include Aws::Structure
|
1312
1395
|
end
|
1313
1396
|
|
@@ -1341,6 +1424,7 @@ module Aws::GlobalAccelerator
|
|
1341
1424
|
:accelerator_arn,
|
1342
1425
|
:max_results,
|
1343
1426
|
:next_token)
|
1427
|
+
SENSITIVE = []
|
1344
1428
|
include Aws::Structure
|
1345
1429
|
end
|
1346
1430
|
|
@@ -1358,6 +1442,7 @@ module Aws::GlobalAccelerator
|
|
1358
1442
|
class ListListenersResponse < Struct.new(
|
1359
1443
|
:listeners,
|
1360
1444
|
:next_token)
|
1445
|
+
SENSITIVE = []
|
1361
1446
|
include Aws::Structure
|
1362
1447
|
end
|
1363
1448
|
|
@@ -1377,6 +1462,7 @@ module Aws::GlobalAccelerator
|
|
1377
1462
|
#
|
1378
1463
|
class ListTagsForResourceRequest < Struct.new(
|
1379
1464
|
:resource_arn)
|
1465
|
+
SENSITIVE = []
|
1380
1466
|
include Aws::Structure
|
1381
1467
|
end
|
1382
1468
|
|
@@ -1388,6 +1474,7 @@ module Aws::GlobalAccelerator
|
|
1388
1474
|
#
|
1389
1475
|
class ListTagsForResourceResponse < Struct.new(
|
1390
1476
|
:tags)
|
1477
|
+
SENSITIVE = []
|
1391
1478
|
include Aws::Structure
|
1392
1479
|
end
|
1393
1480
|
|
@@ -1439,6 +1526,7 @@ module Aws::GlobalAccelerator
|
|
1439
1526
|
:port_ranges,
|
1440
1527
|
:protocol,
|
1441
1528
|
:client_affinity)
|
1529
|
+
SENSITIVE = []
|
1442
1530
|
include Aws::Structure
|
1443
1531
|
end
|
1444
1532
|
|
@@ -1451,6 +1539,7 @@ module Aws::GlobalAccelerator
|
|
1451
1539
|
#
|
1452
1540
|
class ListenerNotFoundException < Struct.new(
|
1453
1541
|
:message)
|
1542
|
+
SENSITIVE = []
|
1454
1543
|
include Aws::Structure
|
1455
1544
|
end
|
1456
1545
|
|
@@ -1477,6 +1566,7 @@ module Aws::GlobalAccelerator
|
|
1477
1566
|
class PortRange < Struct.new(
|
1478
1567
|
:from_port,
|
1479
1568
|
:to_port)
|
1569
|
+
SENSITIVE = []
|
1480
1570
|
include Aws::Structure
|
1481
1571
|
end
|
1482
1572
|
|
@@ -1508,6 +1598,7 @@ module Aws::GlobalAccelerator
|
|
1508
1598
|
class ProvisionByoipCidrRequest < Struct.new(
|
1509
1599
|
:cidr,
|
1510
1600
|
:cidr_authorization_context)
|
1601
|
+
SENSITIVE = []
|
1511
1602
|
include Aws::Structure
|
1512
1603
|
end
|
1513
1604
|
|
@@ -1519,6 +1610,7 @@ module Aws::GlobalAccelerator
|
|
1519
1610
|
#
|
1520
1611
|
class ProvisionByoipCidrResponse < Struct.new(
|
1521
1612
|
:byoip_cidr)
|
1613
|
+
SENSITIVE = []
|
1522
1614
|
include Aws::Structure
|
1523
1615
|
end
|
1524
1616
|
|
@@ -1545,6 +1637,7 @@ module Aws::GlobalAccelerator
|
|
1545
1637
|
class Tag < Struct.new(
|
1546
1638
|
:key,
|
1547
1639
|
:value)
|
1640
|
+
SENSITIVE = []
|
1548
1641
|
include Aws::Structure
|
1549
1642
|
end
|
1550
1643
|
|
@@ -1576,6 +1669,7 @@ module Aws::GlobalAccelerator
|
|
1576
1669
|
class TagResourceRequest < Struct.new(
|
1577
1670
|
:resource_arn,
|
1578
1671
|
:tags)
|
1672
|
+
SENSITIVE = []
|
1579
1673
|
include Aws::Structure
|
1580
1674
|
end
|
1581
1675
|
|
@@ -1606,6 +1700,7 @@ module Aws::GlobalAccelerator
|
|
1606
1700
|
class UntagResourceRequest < Struct.new(
|
1607
1701
|
:resource_arn,
|
1608
1702
|
:tag_keys)
|
1703
|
+
SENSITIVE = []
|
1609
1704
|
include Aws::Structure
|
1610
1705
|
end
|
1611
1706
|
|
@@ -1667,6 +1762,7 @@ module Aws::GlobalAccelerator
|
|
1667
1762
|
:flow_logs_enabled,
|
1668
1763
|
:flow_logs_s3_bucket,
|
1669
1764
|
:flow_logs_s3_prefix)
|
1765
|
+
SENSITIVE = []
|
1670
1766
|
include Aws::Structure
|
1671
1767
|
end
|
1672
1768
|
|
@@ -1678,6 +1774,7 @@ module Aws::GlobalAccelerator
|
|
1678
1774
|
#
|
1679
1775
|
class UpdateAcceleratorAttributesResponse < Struct.new(
|
1680
1776
|
:accelerator_attributes)
|
1777
|
+
SENSITIVE = []
|
1681
1778
|
include Aws::Structure
|
1682
1779
|
end
|
1683
1780
|
|
@@ -1720,6 +1817,7 @@ module Aws::GlobalAccelerator
|
|
1720
1817
|
:name,
|
1721
1818
|
:ip_address_type,
|
1722
1819
|
:enabled)
|
1820
|
+
SENSITIVE = []
|
1723
1821
|
include Aws::Structure
|
1724
1822
|
end
|
1725
1823
|
|
@@ -1731,6 +1829,7 @@ module Aws::GlobalAccelerator
|
|
1731
1829
|
#
|
1732
1830
|
class UpdateAcceleratorResponse < Struct.new(
|
1733
1831
|
:accelerator)
|
1832
|
+
SENSITIVE = []
|
1734
1833
|
include Aws::Structure
|
1735
1834
|
end
|
1736
1835
|
|
@@ -1816,6 +1915,7 @@ module Aws::GlobalAccelerator
|
|
1816
1915
|
:health_check_path,
|
1817
1916
|
:health_check_interval_seconds,
|
1818
1917
|
:threshold_count)
|
1918
|
+
SENSITIVE = []
|
1819
1919
|
include Aws::Structure
|
1820
1920
|
end
|
1821
1921
|
|
@@ -1827,6 +1927,7 @@ module Aws::GlobalAccelerator
|
|
1827
1927
|
#
|
1828
1928
|
class UpdateEndpointGroupResponse < Struct.new(
|
1829
1929
|
:endpoint_group)
|
1930
|
+
SENSITIVE = []
|
1830
1931
|
include Aws::Structure
|
1831
1932
|
end
|
1832
1933
|
|
@@ -1892,6 +1993,7 @@ module Aws::GlobalAccelerator
|
|
1892
1993
|
:port_ranges,
|
1893
1994
|
:protocol,
|
1894
1995
|
:client_affinity)
|
1996
|
+
SENSITIVE = []
|
1895
1997
|
include Aws::Structure
|
1896
1998
|
end
|
1897
1999
|
|
@@ -1903,6 +2005,7 @@ module Aws::GlobalAccelerator
|
|
1903
2005
|
#
|
1904
2006
|
class UpdateListenerResponse < Struct.new(
|
1905
2007
|
:listener)
|
2008
|
+
SENSITIVE = []
|
1906
2009
|
include Aws::Structure
|
1907
2010
|
end
|
1908
2011
|
|
@@ -1921,6 +2024,7 @@ module Aws::GlobalAccelerator
|
|
1921
2024
|
#
|
1922
2025
|
class WithdrawByoipCidrRequest < Struct.new(
|
1923
2026
|
:cidr)
|
2027
|
+
SENSITIVE = []
|
1924
2028
|
include Aws::Structure
|
1925
2029
|
end
|
1926
2030
|
|
@@ -1932,6 +2036,7 @@ module Aws::GlobalAccelerator
|
|
1932
2036
|
#
|
1933
2037
|
class WithdrawByoipCidrResponse < Struct.new(
|
1934
2038
|
:byoip_cidr)
|
2039
|
+
SENSITIVE = []
|
1935
2040
|
include Aws::Structure
|
1936
2041
|
end
|
1937
2042
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-globalaccelerator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.20.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: 2020-
|
11
|
+
date: 2020-06-23 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.99.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.99.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
81
81
|
version: '0'
|
82
82
|
requirements: []
|
83
83
|
rubyforge_project:
|
84
|
-
rubygems_version: 2.
|
84
|
+
rubygems_version: 2.7.6.2
|
85
85
|
signing_key:
|
86
86
|
specification_version: 4
|
87
87
|
summary: AWS SDK for Ruby - AWS Global Accelerator
|