aws-sdk-groundstation 1.5.0 → 1.10.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/lib/aws-sdk-groundstation.rb +9 -4
- data/lib/aws-sdk-groundstation/client.rb +84 -14
- data/lib/aws-sdk-groundstation/client_api.rb +2 -0
- data/lib/aws-sdk-groundstation/errors.rb +28 -4
- data/lib/aws-sdk-groundstation/resource.rb +3 -0
- data/lib/aws-sdk-groundstation/types.rb +73 -0
- 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: e2cd8f14f941ee213c083c8b8d2d2d3eab83e36d75de887361b7846bab1a8b6c
|
4
|
+
data.tar.gz: 8b712cfbb0de1c014979b84cf2a63fb5c35d84b20ca78f2bbde82b533b63b265
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3558e9ec449515a54568eb246f2a9e7815c284d506bdf00a11fc3df4395fb4747f1be436d869e24c4f0bf7d764b6eae29e7683422d77cf37571331470b98dd49
|
7
|
+
data.tar.gz: 60219373cf7f32d2dc72465222c3410f866a57c4c956d7a23dac859949daec4a8789da8688040862eb68d4f00ab6f8ef7ffdf6ad5d14241bb266246dffa9baf0
|
@@ -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,17 +26,20 @@ require_relative 'aws-sdk-groundstation/customizations'
|
|
24
26
|
# methods each accept a hash of request parameters and return a response
|
25
27
|
# structure.
|
26
28
|
#
|
29
|
+
# ground_station = Aws::GroundStation::Client.new
|
30
|
+
# resp = ground_station.cancel_contact(params)
|
31
|
+
#
|
27
32
|
# See {Client} for more information.
|
28
33
|
#
|
29
34
|
# # Errors
|
30
35
|
#
|
31
|
-
# Errors returned from AWS Ground Station
|
32
|
-
# extend {Errors::ServiceError}.
|
36
|
+
# Errors returned from AWS Ground Station are defined in the
|
37
|
+
# {Errors} module and all extend {Errors::ServiceError}.
|
33
38
|
#
|
34
39
|
# begin
|
35
40
|
# # do stuff
|
36
41
|
# rescue Aws::GroundStation::Errors::ServiceError
|
37
|
-
# # rescues all
|
42
|
+
# # rescues all AWS Ground Station API errors
|
38
43
|
# end
|
39
44
|
#
|
40
45
|
# See {Errors} for more information.
|
@@ -42,6 +47,6 @@ require_relative 'aws-sdk-groundstation/customizations'
|
|
42
47
|
# @service
|
43
48
|
module Aws::GroundStation
|
44
49
|
|
45
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.10.0'
|
46
51
|
|
47
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,12 +26,25 @@ 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/rest_json.rb'
|
29
32
|
|
30
33
|
Aws::Plugins::GlobalConfiguration.add_identifier(:groundstation)
|
31
34
|
|
32
35
|
module Aws::GroundStation
|
36
|
+
# An API client for GroundStation. To construct a client, you need to configure a `:region` and `:credentials`.
|
37
|
+
#
|
38
|
+
# client = Aws::GroundStation::Client.new(
|
39
|
+
# region: region_name,
|
40
|
+
# credentials: credentials,
|
41
|
+
# # ...
|
42
|
+
# )
|
43
|
+
#
|
44
|
+
# For details on configuring region and credentials see
|
45
|
+
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
46
|
+
#
|
47
|
+
# See {#initialize} for a full list of supported configuration options.
|
33
48
|
class Client < Seahorse::Client::Base
|
34
49
|
|
35
50
|
include Aws::ClientStubs
|
@@ -57,6 +72,7 @@ module Aws::GroundStation
|
|
57
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
58
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
59
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
60
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
61
77
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
62
78
|
|
@@ -93,7 +109,7 @@ module Aws::GroundStation
|
|
93
109
|
# @option options [required, String] :region
|
94
110
|
# The AWS region to connect to. The configured `:region` is
|
95
111
|
# used to determine the service `:endpoint`. When not passed,
|
96
|
-
# a default `:region` is
|
112
|
+
# a default `:region` is searched for in the following locations:
|
97
113
|
#
|
98
114
|
# * `Aws.config[:region]`
|
99
115
|
# * `ENV['AWS_REGION']`
|
@@ -108,6 +124,12 @@ module Aws::GroundStation
|
|
108
124
|
# When set to `true`, a thread polling for endpoints will be running in
|
109
125
|
# the background every 60 secs (default). Defaults to `false`.
|
110
126
|
#
|
127
|
+
# @option options [Boolean] :adaptive_retry_wait_to_fill (true)
|
128
|
+
# Used only in `adaptive` retry mode. When true, the request will sleep
|
129
|
+
# until there is sufficent client side capacity to retry the request.
|
130
|
+
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
131
|
+
# not retry instead of sleeping.
|
132
|
+
#
|
111
133
|
# @option options [Boolean] :client_side_monitoring (false)
|
112
134
|
# When `true`, client-side metrics will be collected for all API requests from
|
113
135
|
# this client.
|
@@ -132,6 +154,10 @@ module Aws::GroundStation
|
|
132
154
|
# When `true`, an attempt is made to coerce request parameters into
|
133
155
|
# the required types.
|
134
156
|
#
|
157
|
+
# @option options [Boolean] :correct_clock_skew (true)
|
158
|
+
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
159
|
+
# a clock skew correction and retry requests with skewed client clocks.
|
160
|
+
#
|
135
161
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
136
162
|
# Set to true to disable SDK automatically adding host prefix
|
137
163
|
# to default service endpoint when available.
|
@@ -139,7 +165,7 @@ module Aws::GroundStation
|
|
139
165
|
# @option options [String] :endpoint
|
140
166
|
# The client endpoint is normally constructed from the `:region`
|
141
167
|
# option. You should only configure an `:endpoint` when connecting
|
142
|
-
# to test endpoints. This should be
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
143
169
|
#
|
144
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
145
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -154,7 +180,7 @@ module Aws::GroundStation
|
|
154
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
155
181
|
#
|
156
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
157
|
-
# 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.
|
158
184
|
#
|
159
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
160
186
|
# The log formatter.
|
@@ -166,15 +192,29 @@ module Aws::GroundStation
|
|
166
192
|
# The Logger instance to send log messages to. If this option
|
167
193
|
# is not set, logging will be disabled.
|
168
194
|
#
|
195
|
+
# @option options [Integer] :max_attempts (3)
|
196
|
+
# An integer representing the maximum number attempts that will be made for
|
197
|
+
# a single request, including the initial attempt. For example,
|
198
|
+
# setting this value to 5 will result in a request being retried up to
|
199
|
+
# 4 times. Used in `standard` and `adaptive` retry modes.
|
200
|
+
#
|
169
201
|
# @option options [String] :profile ("default")
|
170
202
|
# Used when loading credentials from the shared credentials file
|
171
203
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
172
204
|
#
|
205
|
+
# @option options [Proc] :retry_backoff
|
206
|
+
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
207
|
+
# This option is only used in the `legacy` retry mode.
|
208
|
+
#
|
173
209
|
# @option options [Float] :retry_base_delay (0.3)
|
174
|
-
# The base delay in seconds used by the default backoff function.
|
210
|
+
# The base delay in seconds used by the default backoff function. This option
|
211
|
+
# is only used in the `legacy` retry mode.
|
175
212
|
#
|
176
213
|
# @option options [Symbol] :retry_jitter (:none)
|
177
|
-
# A delay randomiser function used by the default backoff function.
|
214
|
+
# A delay randomiser function used by the default backoff function.
|
215
|
+
# Some predefined functions can be referenced by name - :none, :equal, :full,
|
216
|
+
# otherwise a Proc that takes and returns a number. This option is only used
|
217
|
+
# in the `legacy` retry mode.
|
178
218
|
#
|
179
219
|
# @see https://www.awsarchitectureblog.com/2015/03/backoff.html
|
180
220
|
#
|
@@ -182,11 +222,30 @@ module Aws::GroundStation
|
|
182
222
|
# The maximum number of times to retry failed requests. Only
|
183
223
|
# ~ 500 level server errors and certain ~ 400 level client errors
|
184
224
|
# are retried. Generally, these are throttling errors, data
|
185
|
-
# checksum errors, networking errors, timeout errors
|
186
|
-
# errors from expired credentials.
|
225
|
+
# checksum errors, networking errors, timeout errors, auth errors,
|
226
|
+
# endpoint discovery, and errors from expired credentials.
|
227
|
+
# This option is only used in the `legacy` retry mode.
|
187
228
|
#
|
188
229
|
# @option options [Integer] :retry_max_delay (0)
|
189
|
-
# The maximum number of seconds to delay between retries (0 for no limit)
|
230
|
+
# The maximum number of seconds to delay between retries (0 for no limit)
|
231
|
+
# used by the default backoff function. This option is only used in the
|
232
|
+
# `legacy` retry mode.
|
233
|
+
#
|
234
|
+
# @option options [String] :retry_mode ("legacy")
|
235
|
+
# Specifies which retry algorithm to use. Values are:
|
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
|
+
#
|
190
249
|
#
|
191
250
|
# @option options [String] :secret_access_key
|
192
251
|
#
|
@@ -209,16 +268,15 @@ module Aws::GroundStation
|
|
209
268
|
# requests through. Formatted like 'http://proxy.com:123'.
|
210
269
|
#
|
211
270
|
# @option options [Float] :http_open_timeout (15) The number of
|
212
|
-
# seconds to wait when opening a HTTP session before
|
271
|
+
# seconds to wait when opening a HTTP session before raising a
|
213
272
|
# `Timeout::Error`.
|
214
273
|
#
|
215
274
|
# @option options [Integer] :http_read_timeout (60) The default
|
216
275
|
# number of seconds to wait for response data. This value can
|
217
|
-
# safely be set
|
218
|
-
# per-request on the session yeidled by {#session_for}.
|
276
|
+
# safely be set per-request on the session.
|
219
277
|
#
|
220
278
|
# @option options [Float] :http_idle_timeout (5) The number of
|
221
|
-
# seconds a connection is allowed to sit
|
279
|
+
# seconds a connection is allowed to sit idle before it is
|
222
280
|
# considered stale. Stale connections are closed and removed
|
223
281
|
# from the pool before making a request.
|
224
282
|
#
|
@@ -227,7 +285,7 @@ module Aws::GroundStation
|
|
227
285
|
# request body. This option has no effect unless the request has
|
228
286
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
229
287
|
# disables this behaviour. This value can safely be set per
|
230
|
-
# request on the session
|
288
|
+
# request on the session.
|
231
289
|
#
|
232
290
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
233
291
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -899,6 +957,8 @@ module Aws::GroundStation
|
|
899
957
|
# * {Types::ListConfigsResponse#config_list #config_list} => Array<Types::ConfigListItem>
|
900
958
|
# * {Types::ListConfigsResponse#next_token #next_token} => String
|
901
959
|
#
|
960
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
961
|
+
#
|
902
962
|
# @example Request syntax with placeholder values
|
903
963
|
#
|
904
964
|
# resp = client.list_configs({
|
@@ -959,6 +1019,8 @@ module Aws::GroundStation
|
|
959
1019
|
# * {Types::ListContactsResponse#contact_list #contact_list} => Array<Types::ContactData>
|
960
1020
|
# * {Types::ListContactsResponse#next_token #next_token} => String
|
961
1021
|
#
|
1022
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1023
|
+
#
|
962
1024
|
# @example Request syntax with placeholder values
|
963
1025
|
#
|
964
1026
|
# resp = client.list_contacts({
|
@@ -1016,6 +1078,8 @@ module Aws::GroundStation
|
|
1016
1078
|
# * {Types::ListDataflowEndpointGroupsResponse#dataflow_endpoint_group_list #dataflow_endpoint_group_list} => Array<Types::DataflowEndpointListItem>
|
1017
1079
|
# * {Types::ListDataflowEndpointGroupsResponse#next_token #next_token} => String
|
1018
1080
|
#
|
1081
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1082
|
+
#
|
1019
1083
|
# @example Request syntax with placeholder values
|
1020
1084
|
#
|
1021
1085
|
# resp = client.list_dataflow_endpoint_groups({
|
@@ -1056,6 +1120,8 @@ module Aws::GroundStation
|
|
1056
1120
|
# * {Types::ListGroundStationsResponse#ground_station_list #ground_station_list} => Array<Types::GroundStationData>
|
1057
1121
|
# * {Types::ListGroundStationsResponse#next_token #next_token} => String
|
1058
1122
|
#
|
1123
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1124
|
+
#
|
1059
1125
|
# @example Request syntax with placeholder values
|
1060
1126
|
#
|
1061
1127
|
# resp = client.list_ground_stations({
|
@@ -1095,6 +1161,8 @@ module Aws::GroundStation
|
|
1095
1161
|
# * {Types::ListMissionProfilesResponse#mission_profile_list #mission_profile_list} => Array<Types::MissionProfileListItem>
|
1096
1162
|
# * {Types::ListMissionProfilesResponse#next_token #next_token} => String
|
1097
1163
|
#
|
1164
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1165
|
+
#
|
1098
1166
|
# @example Request syntax with placeholder values
|
1099
1167
|
#
|
1100
1168
|
# resp = client.list_mission_profiles({
|
@@ -1134,6 +1202,8 @@ module Aws::GroundStation
|
|
1134
1202
|
# * {Types::ListSatellitesResponse#next_token #next_token} => String
|
1135
1203
|
# * {Types::ListSatellitesResponse#satellites #satellites} => Array<Types::SatelliteListItem>
|
1136
1204
|
#
|
1205
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1206
|
+
#
|
1137
1207
|
# @example Request syntax with placeholder values
|
1138
1208
|
#
|
1139
1209
|
# resp = client.list_satellites({
|
@@ -1472,7 +1542,7 @@ module Aws::GroundStation
|
|
1472
1542
|
params: params,
|
1473
1543
|
config: config)
|
1474
1544
|
context[:gem_name] = 'aws-sdk-groundstation'
|
1475
|
-
context[:gem_version] = '1.
|
1545
|
+
context[:gem_version] = '1.10.0'
|
1476
1546
|
Seahorse::Client::Request.new(handlers, context)
|
1477
1547
|
end
|
1478
1548
|
|
@@ -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,6 +8,32 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::GroundStation
|
11
|
+
|
12
|
+
# When GroundStation returns an error response, the Ruby SDK constructs and raises an error.
|
13
|
+
# These errors all extend Aws::GroundStation::Errors::ServiceError < {Aws::Errors::ServiceError}
|
14
|
+
#
|
15
|
+
# You can rescue all GroundStation errors using ServiceError:
|
16
|
+
#
|
17
|
+
# begin
|
18
|
+
# # do stuff
|
19
|
+
# rescue Aws::GroundStation::Errors::ServiceError
|
20
|
+
# # rescues all GroundStation API errors
|
21
|
+
# end
|
22
|
+
#
|
23
|
+
#
|
24
|
+
# ## Request Context
|
25
|
+
# ServiceError objects have a {Aws::Errors::ServiceError#context #context} method that returns
|
26
|
+
# information about the request that generated the error.
|
27
|
+
# See {Seahorse::Client::RequestContext} for more information.
|
28
|
+
#
|
29
|
+
# ## Error Classes
|
30
|
+
# * {DependencyException}
|
31
|
+
# * {InvalidParameterException}
|
32
|
+
# * {ResourceLimitExceededException}
|
33
|
+
# * {ResourceNotFoundException}
|
34
|
+
#
|
35
|
+
# Additionally, error classes are dynamically generated for service errors based on the error code
|
36
|
+
# if they are not defined above.
|
9
37
|
module Errors
|
10
38
|
|
11
39
|
extend Aws::Errors::DynamicErrors
|
@@ -28,7 +56,6 @@ module Aws::GroundStation
|
|
28
56
|
def parameter_name
|
29
57
|
@data[:parameter_name]
|
30
58
|
end
|
31
|
-
|
32
59
|
end
|
33
60
|
|
34
61
|
class InvalidParameterException < ServiceError
|
@@ -49,7 +76,6 @@ module Aws::GroundStation
|
|
49
76
|
def parameter_name
|
50
77
|
@data[:parameter_name]
|
51
78
|
end
|
52
|
-
|
53
79
|
end
|
54
80
|
|
55
81
|
class ResourceLimitExceededException < ServiceError
|
@@ -70,7 +96,6 @@ module Aws::GroundStation
|
|
70
96
|
def parameter_name
|
71
97
|
@data[:parameter_name]
|
72
98
|
end
|
73
|
-
|
74
99
|
end
|
75
100
|
|
76
101
|
class ResourceNotFoundException < ServiceError
|
@@ -86,7 +111,6 @@ module Aws::GroundStation
|
|
86
111
|
def message
|
87
112
|
@message || @data[:message]
|
88
113
|
end
|
89
|
-
|
90
114
|
end
|
91
115
|
|
92
116
|
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:
|
@@ -6,6 +8,7 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::GroundStation
|
11
|
+
|
9
12
|
class Resource
|
10
13
|
|
11
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:
|
@@ -36,6 +38,7 @@ module Aws::GroundStation
|
|
36
38
|
#
|
37
39
|
class AntennaDownlinkConfig < Struct.new(
|
38
40
|
:spectrum_config)
|
41
|
+
SENSITIVE = []
|
39
42
|
include Aws::Structure
|
40
43
|
end
|
41
44
|
|
@@ -83,6 +86,7 @@ module Aws::GroundStation
|
|
83
86
|
:decode_config,
|
84
87
|
:demodulation_config,
|
85
88
|
:spectrum_config)
|
89
|
+
SENSITIVE = []
|
86
90
|
include Aws::Structure
|
87
91
|
end
|
88
92
|
|
@@ -118,6 +122,7 @@ module Aws::GroundStation
|
|
118
122
|
class AntennaUplinkConfig < Struct.new(
|
119
123
|
:spectrum_config,
|
120
124
|
:target_eirp)
|
125
|
+
SENSITIVE = []
|
121
126
|
include Aws::Structure
|
122
127
|
end
|
123
128
|
|
@@ -136,6 +141,7 @@ module Aws::GroundStation
|
|
136
141
|
#
|
137
142
|
class CancelContactRequest < Struct.new(
|
138
143
|
:contact_id)
|
144
|
+
SENSITIVE = []
|
139
145
|
include Aws::Structure
|
140
146
|
end
|
141
147
|
|
@@ -157,6 +163,7 @@ module Aws::GroundStation
|
|
157
163
|
:config_arn,
|
158
164
|
:config_id,
|
159
165
|
:config_type)
|
166
|
+
SENSITIVE = []
|
160
167
|
include Aws::Structure
|
161
168
|
end
|
162
169
|
|
@@ -185,6 +192,7 @@ module Aws::GroundStation
|
|
185
192
|
:config_id,
|
186
193
|
:config_type,
|
187
194
|
:name)
|
195
|
+
SENSITIVE = []
|
188
196
|
include Aws::Structure
|
189
197
|
end
|
190
198
|
|
@@ -295,6 +303,7 @@ module Aws::GroundStation
|
|
295
303
|
:dataflow_endpoint_config,
|
296
304
|
:tracking_config,
|
297
305
|
:uplink_echo_config)
|
306
|
+
SENSITIVE = []
|
298
307
|
include Aws::Structure
|
299
308
|
end
|
300
309
|
|
@@ -370,6 +379,7 @@ module Aws::GroundStation
|
|
370
379
|
:satellite_arn,
|
371
380
|
:start_time,
|
372
381
|
:tags)
|
382
|
+
SENSITIVE = []
|
373
383
|
include Aws::Structure
|
374
384
|
end
|
375
385
|
|
@@ -381,6 +391,7 @@ module Aws::GroundStation
|
|
381
391
|
#
|
382
392
|
class ContactIdResponse < Struct.new(
|
383
393
|
:contact_id)
|
394
|
+
SENSITIVE = []
|
384
395
|
include Aws::Structure
|
385
396
|
end
|
386
397
|
|
@@ -470,6 +481,7 @@ module Aws::GroundStation
|
|
470
481
|
:config_data,
|
471
482
|
:name,
|
472
483
|
:tags)
|
484
|
+
SENSITIVE = []
|
473
485
|
include Aws::Structure
|
474
486
|
end
|
475
487
|
|
@@ -512,6 +524,7 @@ module Aws::GroundStation
|
|
512
524
|
class CreateDataflowEndpointGroupRequest < Struct.new(
|
513
525
|
:endpoint_details,
|
514
526
|
:tags)
|
527
|
+
SENSITIVE = []
|
515
528
|
include Aws::Structure
|
516
529
|
end
|
517
530
|
|
@@ -575,6 +588,7 @@ module Aws::GroundStation
|
|
575
588
|
:name,
|
576
589
|
:tags,
|
577
590
|
:tracking_config_arn)
|
591
|
+
SENSITIVE = []
|
578
592
|
include Aws::Structure
|
579
593
|
end
|
580
594
|
|
@@ -610,6 +624,7 @@ module Aws::GroundStation
|
|
610
624
|
:address,
|
611
625
|
:name,
|
612
626
|
:status)
|
627
|
+
SENSITIVE = []
|
613
628
|
include Aws::Structure
|
614
629
|
end
|
615
630
|
|
@@ -636,6 +651,7 @@ module Aws::GroundStation
|
|
636
651
|
class DataflowEndpointConfig < Struct.new(
|
637
652
|
:dataflow_endpoint_name,
|
638
653
|
:dataflow_endpoint_region)
|
654
|
+
SENSITIVE = []
|
639
655
|
include Aws::Structure
|
640
656
|
end
|
641
657
|
|
@@ -647,6 +663,7 @@ module Aws::GroundStation
|
|
647
663
|
#
|
648
664
|
class DataflowEndpointGroupIdResponse < Struct.new(
|
649
665
|
:dataflow_endpoint_group_id)
|
666
|
+
SENSITIVE = []
|
650
667
|
include Aws::Structure
|
651
668
|
end
|
652
669
|
|
@@ -665,6 +682,7 @@ module Aws::GroundStation
|
|
665
682
|
class DataflowEndpointListItem < Struct.new(
|
666
683
|
:dataflow_endpoint_group_arn,
|
667
684
|
:dataflow_endpoint_group_id)
|
685
|
+
SENSITIVE = []
|
668
686
|
include Aws::Structure
|
669
687
|
end
|
670
688
|
|
@@ -685,6 +703,7 @@ module Aws::GroundStation
|
|
685
703
|
#
|
686
704
|
class DecodeConfig < Struct.new(
|
687
705
|
:unvalidated_json)
|
706
|
+
SENSITIVE = []
|
688
707
|
include Aws::Structure
|
689
708
|
end
|
690
709
|
|
@@ -709,6 +728,7 @@ module Aws::GroundStation
|
|
709
728
|
class DeleteConfigRequest < Struct.new(
|
710
729
|
:config_id,
|
711
730
|
:config_type)
|
731
|
+
SENSITIVE = []
|
712
732
|
include Aws::Structure
|
713
733
|
end
|
714
734
|
|
@@ -727,6 +747,7 @@ module Aws::GroundStation
|
|
727
747
|
#
|
728
748
|
class DeleteDataflowEndpointGroupRequest < Struct.new(
|
729
749
|
:dataflow_endpoint_group_id)
|
750
|
+
SENSITIVE = []
|
730
751
|
include Aws::Structure
|
731
752
|
end
|
732
753
|
|
@@ -745,6 +766,7 @@ module Aws::GroundStation
|
|
745
766
|
#
|
746
767
|
class DeleteMissionProfileRequest < Struct.new(
|
747
768
|
:mission_profile_id)
|
769
|
+
SENSITIVE = []
|
748
770
|
include Aws::Structure
|
749
771
|
end
|
750
772
|
|
@@ -765,6 +787,7 @@ module Aws::GroundStation
|
|
765
787
|
#
|
766
788
|
class DemodulationConfig < Struct.new(
|
767
789
|
:unvalidated_json)
|
790
|
+
SENSITIVE = []
|
768
791
|
include Aws::Structure
|
769
792
|
end
|
770
793
|
|
@@ -781,6 +804,7 @@ module Aws::GroundStation
|
|
781
804
|
class DependencyException < Struct.new(
|
782
805
|
:message,
|
783
806
|
:parameter_name)
|
807
|
+
SENSITIVE = []
|
784
808
|
include Aws::Structure
|
785
809
|
end
|
786
810
|
|
@@ -799,6 +823,7 @@ module Aws::GroundStation
|
|
799
823
|
#
|
800
824
|
class DescribeContactRequest < Struct.new(
|
801
825
|
:contact_id)
|
826
|
+
SENSITIVE = []
|
802
827
|
include Aws::Structure
|
803
828
|
end
|
804
829
|
|
@@ -872,6 +897,7 @@ module Aws::GroundStation
|
|
872
897
|
:satellite_arn,
|
873
898
|
:start_time,
|
874
899
|
:tags)
|
900
|
+
SENSITIVE = []
|
875
901
|
include Aws::Structure
|
876
902
|
end
|
877
903
|
|
@@ -898,6 +924,7 @@ module Aws::GroundStation
|
|
898
924
|
class Eirp < Struct.new(
|
899
925
|
:units,
|
900
926
|
:value)
|
927
|
+
SENSITIVE = []
|
901
928
|
include Aws::Structure
|
902
929
|
end
|
903
930
|
|
@@ -916,6 +943,7 @@ module Aws::GroundStation
|
|
916
943
|
class Elevation < Struct.new(
|
917
944
|
:unit,
|
918
945
|
:value)
|
946
|
+
SENSITIVE = []
|
919
947
|
include Aws::Structure
|
920
948
|
end
|
921
949
|
|
@@ -953,6 +981,7 @@ module Aws::GroundStation
|
|
953
981
|
class EndpointDetails < Struct.new(
|
954
982
|
:endpoint,
|
955
983
|
:security_details)
|
984
|
+
SENSITIVE = []
|
956
985
|
include Aws::Structure
|
957
986
|
end
|
958
987
|
|
@@ -979,6 +1008,7 @@ module Aws::GroundStation
|
|
979
1008
|
class Frequency < Struct.new(
|
980
1009
|
:units,
|
981
1010
|
:value)
|
1011
|
+
SENSITIVE = []
|
982
1012
|
include Aws::Structure
|
983
1013
|
end
|
984
1014
|
|
@@ -1005,6 +1035,7 @@ module Aws::GroundStation
|
|
1005
1035
|
class FrequencyBandwidth < Struct.new(
|
1006
1036
|
:units,
|
1007
1037
|
:value)
|
1038
|
+
SENSITIVE = []
|
1008
1039
|
include Aws::Structure
|
1009
1040
|
end
|
1010
1041
|
|
@@ -1029,6 +1060,7 @@ module Aws::GroundStation
|
|
1029
1060
|
class GetConfigRequest < Struct.new(
|
1030
1061
|
:config_id,
|
1031
1062
|
:config_type)
|
1063
|
+
SENSITIVE = []
|
1032
1064
|
include Aws::Structure
|
1033
1065
|
end
|
1034
1066
|
|
@@ -1065,6 +1097,7 @@ module Aws::GroundStation
|
|
1065
1097
|
:config_type,
|
1066
1098
|
:name,
|
1067
1099
|
:tags)
|
1100
|
+
SENSITIVE = []
|
1068
1101
|
include Aws::Structure
|
1069
1102
|
end
|
1070
1103
|
|
@@ -1083,6 +1116,7 @@ module Aws::GroundStation
|
|
1083
1116
|
#
|
1084
1117
|
class GetDataflowEndpointGroupRequest < Struct.new(
|
1085
1118
|
:dataflow_endpoint_group_id)
|
1119
|
+
SENSITIVE = []
|
1086
1120
|
include Aws::Structure
|
1087
1121
|
end
|
1088
1122
|
|
@@ -1109,6 +1143,7 @@ module Aws::GroundStation
|
|
1109
1143
|
:dataflow_endpoint_group_id,
|
1110
1144
|
:endpoints_details,
|
1111
1145
|
:tags)
|
1146
|
+
SENSITIVE = []
|
1112
1147
|
include Aws::Structure
|
1113
1148
|
end
|
1114
1149
|
|
@@ -1133,6 +1168,7 @@ module Aws::GroundStation
|
|
1133
1168
|
class GetMinuteUsageRequest < Struct.new(
|
1134
1169
|
:month,
|
1135
1170
|
:year)
|
1171
|
+
SENSITIVE = []
|
1136
1172
|
include Aws::Structure
|
1137
1173
|
end
|
1138
1174
|
|
@@ -1169,6 +1205,7 @@ module Aws::GroundStation
|
|
1169
1205
|
:total_reserved_minute_allocation,
|
1170
1206
|
:total_scheduled_minutes,
|
1171
1207
|
:upcoming_minutes_scheduled)
|
1208
|
+
SENSITIVE = []
|
1172
1209
|
include Aws::Structure
|
1173
1210
|
end
|
1174
1211
|
|
@@ -1187,6 +1224,7 @@ module Aws::GroundStation
|
|
1187
1224
|
#
|
1188
1225
|
class GetMissionProfileRequest < Struct.new(
|
1189
1226
|
:mission_profile_id)
|
1227
|
+
SENSITIVE = []
|
1190
1228
|
include Aws::Structure
|
1191
1229
|
end
|
1192
1230
|
|
@@ -1248,6 +1286,7 @@ module Aws::GroundStation
|
|
1248
1286
|
:region,
|
1249
1287
|
:tags,
|
1250
1288
|
:tracking_config_arn)
|
1289
|
+
SENSITIVE = []
|
1251
1290
|
include Aws::Structure
|
1252
1291
|
end
|
1253
1292
|
|
@@ -1266,6 +1305,7 @@ module Aws::GroundStation
|
|
1266
1305
|
#
|
1267
1306
|
class GetSatelliteRequest < Struct.new(
|
1268
1307
|
:satellite_id)
|
1308
|
+
SENSITIVE = []
|
1269
1309
|
include Aws::Structure
|
1270
1310
|
end
|
1271
1311
|
|
@@ -1292,6 +1332,7 @@ module Aws::GroundStation
|
|
1292
1332
|
:norad_satellite_id,
|
1293
1333
|
:satellite_arn,
|
1294
1334
|
:satellite_id)
|
1335
|
+
SENSITIVE = []
|
1295
1336
|
include Aws::Structure
|
1296
1337
|
end
|
1297
1338
|
|
@@ -1315,6 +1356,7 @@ module Aws::GroundStation
|
|
1315
1356
|
:ground_station_id,
|
1316
1357
|
:ground_station_name,
|
1317
1358
|
:region)
|
1359
|
+
SENSITIVE = []
|
1318
1360
|
include Aws::Structure
|
1319
1361
|
end
|
1320
1362
|
|
@@ -1331,6 +1373,7 @@ module Aws::GroundStation
|
|
1331
1373
|
class InvalidParameterException < Struct.new(
|
1332
1374
|
:message,
|
1333
1375
|
:parameter_name)
|
1376
|
+
SENSITIVE = []
|
1334
1377
|
include Aws::Structure
|
1335
1378
|
end
|
1336
1379
|
|
@@ -1356,6 +1399,7 @@ module Aws::GroundStation
|
|
1356
1399
|
class ListConfigsRequest < Struct.new(
|
1357
1400
|
:max_results,
|
1358
1401
|
:next_token)
|
1402
|
+
SENSITIVE = []
|
1359
1403
|
include Aws::Structure
|
1360
1404
|
end
|
1361
1405
|
|
@@ -1373,6 +1417,7 @@ module Aws::GroundStation
|
|
1373
1417
|
class ListConfigsResponse < Struct.new(
|
1374
1418
|
:config_list,
|
1375
1419
|
:next_token)
|
1420
|
+
SENSITIVE = []
|
1376
1421
|
include Aws::Structure
|
1377
1422
|
end
|
1378
1423
|
|
@@ -1434,6 +1479,7 @@ module Aws::GroundStation
|
|
1434
1479
|
:satellite_arn,
|
1435
1480
|
:start_time,
|
1436
1481
|
:status_list)
|
1482
|
+
SENSITIVE = []
|
1437
1483
|
include Aws::Structure
|
1438
1484
|
end
|
1439
1485
|
|
@@ -1451,6 +1497,7 @@ module Aws::GroundStation
|
|
1451
1497
|
class ListContactsResponse < Struct.new(
|
1452
1498
|
:contact_list,
|
1453
1499
|
:next_token)
|
1500
|
+
SENSITIVE = []
|
1454
1501
|
include Aws::Structure
|
1455
1502
|
end
|
1456
1503
|
|
@@ -1477,6 +1524,7 @@ module Aws::GroundStation
|
|
1477
1524
|
class ListDataflowEndpointGroupsRequest < Struct.new(
|
1478
1525
|
:max_results,
|
1479
1526
|
:next_token)
|
1527
|
+
SENSITIVE = []
|
1480
1528
|
include Aws::Structure
|
1481
1529
|
end
|
1482
1530
|
|
@@ -1495,6 +1543,7 @@ module Aws::GroundStation
|
|
1495
1543
|
class ListDataflowEndpointGroupsResponse < Struct.new(
|
1496
1544
|
:dataflow_endpoint_group_list,
|
1497
1545
|
:next_token)
|
1546
|
+
SENSITIVE = []
|
1498
1547
|
include Aws::Structure
|
1499
1548
|
end
|
1500
1549
|
|
@@ -1526,6 +1575,7 @@ module Aws::GroundStation
|
|
1526
1575
|
:max_results,
|
1527
1576
|
:next_token,
|
1528
1577
|
:satellite_id)
|
1578
|
+
SENSITIVE = []
|
1529
1579
|
include Aws::Structure
|
1530
1580
|
end
|
1531
1581
|
|
@@ -1543,6 +1593,7 @@ module Aws::GroundStation
|
|
1543
1593
|
class ListGroundStationsResponse < Struct.new(
|
1544
1594
|
:ground_station_list,
|
1545
1595
|
:next_token)
|
1596
|
+
SENSITIVE = []
|
1546
1597
|
include Aws::Structure
|
1547
1598
|
end
|
1548
1599
|
|
@@ -1568,6 +1619,7 @@ module Aws::GroundStation
|
|
1568
1619
|
class ListMissionProfilesRequest < Struct.new(
|
1569
1620
|
:max_results,
|
1570
1621
|
:next_token)
|
1622
|
+
SENSITIVE = []
|
1571
1623
|
include Aws::Structure
|
1572
1624
|
end
|
1573
1625
|
|
@@ -1585,6 +1637,7 @@ module Aws::GroundStation
|
|
1585
1637
|
class ListMissionProfilesResponse < Struct.new(
|
1586
1638
|
:mission_profile_list,
|
1587
1639
|
:next_token)
|
1640
|
+
SENSITIVE = []
|
1588
1641
|
include Aws::Structure
|
1589
1642
|
end
|
1590
1643
|
|
@@ -1610,6 +1663,7 @@ module Aws::GroundStation
|
|
1610
1663
|
class ListSatellitesRequest < Struct.new(
|
1611
1664
|
:max_results,
|
1612
1665
|
:next_token)
|
1666
|
+
SENSITIVE = []
|
1613
1667
|
include Aws::Structure
|
1614
1668
|
end
|
1615
1669
|
|
@@ -1627,6 +1681,7 @@ module Aws::GroundStation
|
|
1627
1681
|
class ListSatellitesResponse < Struct.new(
|
1628
1682
|
:next_token,
|
1629
1683
|
:satellites)
|
1684
|
+
SENSITIVE = []
|
1630
1685
|
include Aws::Structure
|
1631
1686
|
end
|
1632
1687
|
|
@@ -1645,6 +1700,7 @@ module Aws::GroundStation
|
|
1645
1700
|
#
|
1646
1701
|
class ListTagsForResourceRequest < Struct.new(
|
1647
1702
|
:resource_arn)
|
1703
|
+
SENSITIVE = []
|
1648
1704
|
include Aws::Structure
|
1649
1705
|
end
|
1650
1706
|
|
@@ -1656,6 +1712,7 @@ module Aws::GroundStation
|
|
1656
1712
|
#
|
1657
1713
|
class ListTagsForResourceResponse < Struct.new(
|
1658
1714
|
:tags)
|
1715
|
+
SENSITIVE = []
|
1659
1716
|
include Aws::Structure
|
1660
1717
|
end
|
1661
1718
|
|
@@ -1667,6 +1724,7 @@ module Aws::GroundStation
|
|
1667
1724
|
#
|
1668
1725
|
class MissionProfileIdResponse < Struct.new(
|
1669
1726
|
:mission_profile_id)
|
1727
|
+
SENSITIVE = []
|
1670
1728
|
include Aws::Structure
|
1671
1729
|
end
|
1672
1730
|
|
@@ -1695,6 +1753,7 @@ module Aws::GroundStation
|
|
1695
1753
|
:mission_profile_id,
|
1696
1754
|
:name,
|
1697
1755
|
:region)
|
1756
|
+
SENSITIVE = []
|
1698
1757
|
include Aws::Structure
|
1699
1758
|
end
|
1700
1759
|
|
@@ -1745,6 +1804,7 @@ module Aws::GroundStation
|
|
1745
1804
|
:satellite_arn,
|
1746
1805
|
:start_time,
|
1747
1806
|
:tags)
|
1807
|
+
SENSITIVE = []
|
1748
1808
|
include Aws::Structure
|
1749
1809
|
end
|
1750
1810
|
|
@@ -1761,6 +1821,7 @@ module Aws::GroundStation
|
|
1761
1821
|
class ResourceLimitExceededException < Struct.new(
|
1762
1822
|
:message,
|
1763
1823
|
:parameter_name)
|
1824
|
+
SENSITIVE = []
|
1764
1825
|
include Aws::Structure
|
1765
1826
|
end
|
1766
1827
|
|
@@ -1773,6 +1834,7 @@ module Aws::GroundStation
|
|
1773
1834
|
#
|
1774
1835
|
class ResourceNotFoundException < Struct.new(
|
1775
1836
|
:message)
|
1837
|
+
SENSITIVE = []
|
1776
1838
|
include Aws::Structure
|
1777
1839
|
end
|
1778
1840
|
|
@@ -1801,6 +1863,7 @@ module Aws::GroundStation
|
|
1801
1863
|
:norad_satellite_id,
|
1802
1864
|
:satellite_arn,
|
1803
1865
|
:satellite_id)
|
1866
|
+
SENSITIVE = []
|
1804
1867
|
include Aws::Structure
|
1805
1868
|
end
|
1806
1869
|
|
@@ -1834,6 +1897,7 @@ module Aws::GroundStation
|
|
1834
1897
|
:role_arn,
|
1835
1898
|
:security_group_ids,
|
1836
1899
|
:subnet_ids)
|
1900
|
+
SENSITIVE = []
|
1837
1901
|
include Aws::Structure
|
1838
1902
|
end
|
1839
1903
|
|
@@ -1860,6 +1924,7 @@ module Aws::GroundStation
|
|
1860
1924
|
class SocketAddress < Struct.new(
|
1861
1925
|
:name,
|
1862
1926
|
:port)
|
1927
|
+
SENSITIVE = []
|
1863
1928
|
include Aws::Structure
|
1864
1929
|
end
|
1865
1930
|
|
@@ -1898,6 +1963,7 @@ module Aws::GroundStation
|
|
1898
1963
|
:bandwidth,
|
1899
1964
|
:center_frequency,
|
1900
1965
|
:polarization)
|
1966
|
+
SENSITIVE = []
|
1901
1967
|
include Aws::Structure
|
1902
1968
|
end
|
1903
1969
|
|
@@ -1924,6 +1990,7 @@ module Aws::GroundStation
|
|
1924
1990
|
class TagResourceRequest < Struct.new(
|
1925
1991
|
:resource_arn,
|
1926
1992
|
:tags)
|
1993
|
+
SENSITIVE = []
|
1927
1994
|
include Aws::Structure
|
1928
1995
|
end
|
1929
1996
|
|
@@ -1949,6 +2016,7 @@ module Aws::GroundStation
|
|
1949
2016
|
#
|
1950
2017
|
class TrackingConfig < Struct.new(
|
1951
2018
|
:autotrack)
|
2019
|
+
SENSITIVE = []
|
1952
2020
|
include Aws::Structure
|
1953
2021
|
end
|
1954
2022
|
|
@@ -1973,6 +2041,7 @@ module Aws::GroundStation
|
|
1973
2041
|
class UntagResourceRequest < Struct.new(
|
1974
2042
|
:resource_arn,
|
1975
2043
|
:tag_keys)
|
2044
|
+
SENSITIVE = []
|
1976
2045
|
include Aws::Structure
|
1977
2046
|
end
|
1978
2047
|
|
@@ -2070,6 +2139,7 @@ module Aws::GroundStation
|
|
2070
2139
|
:config_id,
|
2071
2140
|
:config_type,
|
2072
2141
|
:name)
|
2142
|
+
SENSITIVE = []
|
2073
2143
|
include Aws::Structure
|
2074
2144
|
end
|
2075
2145
|
|
@@ -2131,6 +2201,7 @@ module Aws::GroundStation
|
|
2131
2201
|
:mission_profile_id,
|
2132
2202
|
:name,
|
2133
2203
|
:tracking_config_arn)
|
2204
|
+
SENSITIVE = []
|
2134
2205
|
include Aws::Structure
|
2135
2206
|
end
|
2136
2207
|
|
@@ -2161,6 +2232,7 @@ module Aws::GroundStation
|
|
2161
2232
|
class UplinkEchoConfig < Struct.new(
|
2162
2233
|
:antenna_uplink_config_arn,
|
2163
2234
|
:enabled)
|
2235
|
+
SENSITIVE = []
|
2164
2236
|
include Aws::Structure
|
2165
2237
|
end
|
2166
2238
|
|
@@ -2190,6 +2262,7 @@ module Aws::GroundStation
|
|
2190
2262
|
class UplinkSpectrumConfig < Struct.new(
|
2191
2263
|
:center_frequency,
|
2192
2264
|
:polarization)
|
2265
|
+
SENSITIVE = []
|
2193
2266
|
include Aws::Structure
|
2194
2267
|
end
|
2195
2268
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-groundstation
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.10.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 Ground Station
|