aws-sdk-sms 1.17.0 → 1.22.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-sms.rb +9 -4
- data/lib/aws-sdk-sms/client.rb +80 -14
- data/lib/aws-sdk-sms/client_api.rb +4 -0
- data/lib/aws-sdk-sms/customizations.rb +1 -0
- data/lib/aws-sdk-sms/errors.rb +44 -9
- data/lib/aws-sdk-sms/resource.rb +3 -0
- data/lib/aws-sdk-sms/types.rb +76 -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: 0af0937746b9b29f1547c261d8b741b4370ff36893d68bddc9c95392b2ac1075
|
4
|
+
data.tar.gz: 111ee0fd3236779f3ba10126366d61e906b6ee6274d0a9d62a20b12008bb3d22
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a626cbf0d6b5d13e1efe6077bcc440caadd4127641a5ddd13b167d4fc4f9a770808b6a0c0e5dfe43c0a2c88d614dbdee3f1178a739adadb3ad8bbb09ca520c65
|
7
|
+
data.tar.gz: 8ed41a2b1610744834ce3f8386230558f217815f414f0a31ba2e58e664ebf6d338b39f76d98b26ac17f5882dc565b892645d0dcbef57f9c12a5177317401c828
|
data/lib/aws-sdk-sms.rb
CHANGED
@@ -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-sms/customizations'
|
|
24
26
|
# methods each accept a hash of request parameters and return a response
|
25
27
|
# structure.
|
26
28
|
#
|
29
|
+
# sms = Aws::SMS::Client.new
|
30
|
+
# resp = sms.create_app(params)
|
31
|
+
#
|
27
32
|
# See {Client} for more information.
|
28
33
|
#
|
29
34
|
# # Errors
|
30
35
|
#
|
31
|
-
# Errors returned from AWS Server Migration Service
|
32
|
-
# extend {Errors::ServiceError}.
|
36
|
+
# Errors returned from AWS Server Migration Service 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::SMS::Errors::ServiceError
|
37
|
-
# # rescues all
|
42
|
+
# # rescues all AWS Server Migration Service API errors
|
38
43
|
# end
|
39
44
|
#
|
40
45
|
# See {Errors} for more information.
|
@@ -42,6 +47,6 @@ require_relative 'aws-sdk-sms/customizations'
|
|
42
47
|
# @service
|
43
48
|
module Aws::SMS
|
44
49
|
|
45
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.22.0'
|
46
51
|
|
47
52
|
end
|
data/lib/aws-sdk-sms/client.rb
CHANGED
@@ -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/json_rpc.rb'
|
29
32
|
|
30
33
|
Aws::Plugins::GlobalConfiguration.add_identifier(:sms)
|
31
34
|
|
32
35
|
module Aws::SMS
|
36
|
+
# An API client for SMS. To construct a client, you need to configure a `:region` and `:credentials`.
|
37
|
+
#
|
38
|
+
# client = Aws::SMS::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::SMS
|
|
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::JsonRpc)
|
62
78
|
|
@@ -93,7 +109,7 @@ module Aws::SMS
|
|
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::SMS
|
|
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::SMS
|
|
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::SMS
|
|
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::SMS
|
|
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::SMS
|
|
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::SMS
|
|
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
|
#
|
@@ -219,16 +278,15 @@ module Aws::SMS
|
|
219
278
|
# requests through. Formatted like 'http://proxy.com:123'.
|
220
279
|
#
|
221
280
|
# @option options [Float] :http_open_timeout (15) The number of
|
222
|
-
# seconds to wait when opening a HTTP session before
|
281
|
+
# seconds to wait when opening a HTTP session before raising a
|
223
282
|
# `Timeout::Error`.
|
224
283
|
#
|
225
284
|
# @option options [Integer] :http_read_timeout (60) The default
|
226
285
|
# number of seconds to wait for response data. This value can
|
227
|
-
# safely be set
|
228
|
-
# per-request on the session yeidled by {#session_for}.
|
286
|
+
# safely be set per-request on the session.
|
229
287
|
#
|
230
288
|
# @option options [Float] :http_idle_timeout (5) The number of
|
231
|
-
# seconds a connection is allowed to sit
|
289
|
+
# seconds a connection is allowed to sit idle before it is
|
232
290
|
# considered stale. Stale connections are closed and removed
|
233
291
|
# from the pool before making a request.
|
234
292
|
#
|
@@ -237,7 +295,7 @@ module Aws::SMS
|
|
237
295
|
# request body. This option has no effect unless the request has
|
238
296
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
239
297
|
# disables this behaviour. This value can safely be set per
|
240
|
-
# request on the session
|
298
|
+
# request on the session.
|
241
299
|
#
|
242
300
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
243
301
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -853,6 +911,8 @@ module Aws::SMS
|
|
853
911
|
# * {Types::GetConnectorsResponse#connector_list #connector_list} => Array<Types::Connector>
|
854
912
|
# * {Types::GetConnectorsResponse#next_token #next_token} => String
|
855
913
|
#
|
914
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
915
|
+
#
|
856
916
|
# @example Request syntax with placeholder values
|
857
917
|
#
|
858
918
|
# resp = client.get_connectors({
|
@@ -904,6 +964,8 @@ module Aws::SMS
|
|
904
964
|
# * {Types::GetReplicationJobsResponse#replication_job_list #replication_job_list} => Array<Types::ReplicationJob>
|
905
965
|
# * {Types::GetReplicationJobsResponse#next_token #next_token} => String
|
906
966
|
#
|
967
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
968
|
+
#
|
907
969
|
# @example Request syntax with placeholder values
|
908
970
|
#
|
909
971
|
# resp = client.get_replication_jobs({
|
@@ -980,6 +1042,8 @@ module Aws::SMS
|
|
980
1042
|
# * {Types::GetReplicationRunsResponse#replication_run_list #replication_run_list} => Array<Types::ReplicationRun>
|
981
1043
|
# * {Types::GetReplicationRunsResponse#next_token #next_token} => String
|
982
1044
|
#
|
1045
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1046
|
+
#
|
983
1047
|
# @example Request syntax with placeholder values
|
984
1048
|
#
|
985
1049
|
# resp = client.get_replication_runs({
|
@@ -1072,6 +1136,8 @@ module Aws::SMS
|
|
1072
1136
|
# * {Types::GetServersResponse#server_list #server_list} => Array<Types::Server>
|
1073
1137
|
# * {Types::GetServersResponse#next_token #next_token} => String
|
1074
1138
|
#
|
1139
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1140
|
+
#
|
1075
1141
|
# @example Request syntax with placeholder values
|
1076
1142
|
#
|
1077
1143
|
# resp = client.get_servers({
|
@@ -1632,7 +1698,7 @@ module Aws::SMS
|
|
1632
1698
|
params: params,
|
1633
1699
|
config: config)
|
1634
1700
|
context[:gem_name] = 'aws-sdk-sms'
|
1635
|
-
context[:gem_version] = '1.
|
1701
|
+
context[:gem_version] = '1.22.0'
|
1636
1702
|
Seahorse::Client::Request.new(handlers, context)
|
1637
1703
|
end
|
1638
1704
|
|
@@ -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:
|
@@ -539,6 +541,8 @@ module Aws::SMS
|
|
539
541
|
|
540
542
|
Tags.member = Shapes::ShapeRef.new(shape: Tag)
|
541
543
|
|
544
|
+
TemporarilyUnavailableException.struct_class = Types::TemporarilyUnavailableException
|
545
|
+
|
542
546
|
TerminateAppRequest.add_member(:app_id, Shapes::ShapeRef.new(shape: AppId, location_name: "appId"))
|
543
547
|
TerminateAppRequest.struct_class = Types::TerminateAppRequest
|
544
548
|
|
data/lib/aws-sdk-sms/errors.rb
CHANGED
@@ -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,39 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::SMS
|
11
|
+
|
12
|
+
# When SMS returns an error response, the Ruby SDK constructs and raises an error.
|
13
|
+
# These errors all extend Aws::SMS::Errors::ServiceError < {Aws::Errors::ServiceError}
|
14
|
+
#
|
15
|
+
# You can rescue all SMS errors using ServiceError:
|
16
|
+
#
|
17
|
+
# begin
|
18
|
+
# # do stuff
|
19
|
+
# rescue Aws::SMS::Errors::ServiceError
|
20
|
+
# # rescues all SMS 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
|
+
# * {InternalError}
|
31
|
+
# * {InvalidParameterException}
|
32
|
+
# * {MissingRequiredParameterException}
|
33
|
+
# * {NoConnectorsAvailableException}
|
34
|
+
# * {OperationNotPermittedException}
|
35
|
+
# * {ReplicationJobAlreadyExistsException}
|
36
|
+
# * {ReplicationJobNotFoundException}
|
37
|
+
# * {ReplicationRunLimitExceededException}
|
38
|
+
# * {ServerCannotBeReplicatedException}
|
39
|
+
# * {TemporarilyUnavailableException}
|
40
|
+
# * {UnauthorizedOperationException}
|
41
|
+
#
|
42
|
+
# Additionally, error classes are dynamically generated for service errors based on the error code
|
43
|
+
# if they are not defined above.
|
9
44
|
module Errors
|
10
45
|
|
11
46
|
extend Aws::Errors::DynamicErrors
|
@@ -23,7 +58,6 @@ module Aws::SMS
|
|
23
58
|
def message
|
24
59
|
@message || @data[:message]
|
25
60
|
end
|
26
|
-
|
27
61
|
end
|
28
62
|
|
29
63
|
class InvalidParameterException < ServiceError
|
@@ -39,7 +73,6 @@ module Aws::SMS
|
|
39
73
|
def message
|
40
74
|
@message || @data[:message]
|
41
75
|
end
|
42
|
-
|
43
76
|
end
|
44
77
|
|
45
78
|
class MissingRequiredParameterException < ServiceError
|
@@ -55,7 +88,6 @@ module Aws::SMS
|
|
55
88
|
def message
|
56
89
|
@message || @data[:message]
|
57
90
|
end
|
58
|
-
|
59
91
|
end
|
60
92
|
|
61
93
|
class NoConnectorsAvailableException < ServiceError
|
@@ -71,7 +103,6 @@ module Aws::SMS
|
|
71
103
|
def message
|
72
104
|
@message || @data[:message]
|
73
105
|
end
|
74
|
-
|
75
106
|
end
|
76
107
|
|
77
108
|
class OperationNotPermittedException < ServiceError
|
@@ -87,7 +118,6 @@ module Aws::SMS
|
|
87
118
|
def message
|
88
119
|
@message || @data[:message]
|
89
120
|
end
|
90
|
-
|
91
121
|
end
|
92
122
|
|
93
123
|
class ReplicationJobAlreadyExistsException < ServiceError
|
@@ -103,7 +133,6 @@ module Aws::SMS
|
|
103
133
|
def message
|
104
134
|
@message || @data[:message]
|
105
135
|
end
|
106
|
-
|
107
136
|
end
|
108
137
|
|
109
138
|
class ReplicationJobNotFoundException < ServiceError
|
@@ -119,7 +148,6 @@ module Aws::SMS
|
|
119
148
|
def message
|
120
149
|
@message || @data[:message]
|
121
150
|
end
|
122
|
-
|
123
151
|
end
|
124
152
|
|
125
153
|
class ReplicationRunLimitExceededException < ServiceError
|
@@ -135,7 +163,6 @@ module Aws::SMS
|
|
135
163
|
def message
|
136
164
|
@message || @data[:message]
|
137
165
|
end
|
138
|
-
|
139
166
|
end
|
140
167
|
|
141
168
|
class ServerCannotBeReplicatedException < ServiceError
|
@@ -151,7 +178,16 @@ module Aws::SMS
|
|
151
178
|
def message
|
152
179
|
@message || @data[:message]
|
153
180
|
end
|
181
|
+
end
|
182
|
+
|
183
|
+
class TemporarilyUnavailableException < ServiceError
|
154
184
|
|
185
|
+
# @param [Seahorse::Client::RequestContext] context
|
186
|
+
# @param [String] message
|
187
|
+
# @param [Aws::SMS::Types::TemporarilyUnavailableException] data
|
188
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
189
|
+
super(context, message, data)
|
190
|
+
end
|
155
191
|
end
|
156
192
|
|
157
193
|
class UnauthorizedOperationException < ServiceError
|
@@ -167,7 +203,6 @@ module Aws::SMS
|
|
167
203
|
def message
|
168
204
|
@message || @data[:message]
|
169
205
|
end
|
170
|
-
|
171
206
|
end
|
172
207
|
|
173
208
|
end
|
data/lib/aws-sdk-sms/resource.rb
CHANGED
@@ -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::SMS
|
11
|
+
|
9
12
|
class Resource
|
10
13
|
|
11
14
|
# @param options ({})
|
data/lib/aws-sdk-sms/types.rb
CHANGED
@@ -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:
|
@@ -93,6 +95,7 @@ module Aws::SMS
|
|
93
95
|
:role_name,
|
94
96
|
:total_server_groups,
|
95
97
|
:total_servers)
|
98
|
+
SENSITIVE = []
|
96
99
|
include Aws::Structure
|
97
100
|
end
|
98
101
|
|
@@ -151,6 +154,7 @@ module Aws::SMS
|
|
151
154
|
:ip_address,
|
152
155
|
:mac_address,
|
153
156
|
:associated_on)
|
157
|
+
SENSITIVE = []
|
154
158
|
include Aws::Structure
|
155
159
|
end
|
156
160
|
|
@@ -228,6 +232,7 @@ module Aws::SMS
|
|
228
232
|
:client_token,
|
229
233
|
:server_groups,
|
230
234
|
:tags)
|
235
|
+
SENSITIVE = []
|
231
236
|
include Aws::Structure
|
232
237
|
end
|
233
238
|
|
@@ -249,6 +254,7 @@ module Aws::SMS
|
|
249
254
|
:app_summary,
|
250
255
|
:server_groups,
|
251
256
|
:tags)
|
257
|
+
SENSITIVE = []
|
252
258
|
include Aws::Structure
|
253
259
|
end
|
254
260
|
|
@@ -335,6 +341,7 @@ module Aws::SMS
|
|
335
341
|
:number_of_recent_amis_to_keep,
|
336
342
|
:encrypted,
|
337
343
|
:kms_key_id)
|
344
|
+
SENSITIVE = []
|
338
345
|
include Aws::Structure
|
339
346
|
end
|
340
347
|
|
@@ -346,6 +353,7 @@ module Aws::SMS
|
|
346
353
|
#
|
347
354
|
class CreateReplicationJobResponse < Struct.new(
|
348
355
|
:replication_job_id)
|
356
|
+
SENSITIVE = []
|
349
357
|
include Aws::Structure
|
350
358
|
end
|
351
359
|
|
@@ -364,6 +372,7 @@ module Aws::SMS
|
|
364
372
|
#
|
365
373
|
class DeleteAppLaunchConfigurationRequest < Struct.new(
|
366
374
|
:app_id)
|
375
|
+
SENSITIVE = []
|
367
376
|
include Aws::Structure
|
368
377
|
end
|
369
378
|
|
@@ -386,6 +395,7 @@ module Aws::SMS
|
|
386
395
|
#
|
387
396
|
class DeleteAppReplicationConfigurationRequest < Struct.new(
|
388
397
|
:app_id)
|
398
|
+
SENSITIVE = []
|
389
399
|
include Aws::Structure
|
390
400
|
end
|
391
401
|
|
@@ -422,6 +432,7 @@ module Aws::SMS
|
|
422
432
|
:app_id,
|
423
433
|
:force_stop_app_replication,
|
424
434
|
:force_terminate_app)
|
435
|
+
SENSITIVE = []
|
425
436
|
include Aws::Structure
|
426
437
|
end
|
427
438
|
|
@@ -444,6 +455,7 @@ module Aws::SMS
|
|
444
455
|
#
|
445
456
|
class DeleteReplicationJobRequest < Struct.new(
|
446
457
|
:replication_job_id)
|
458
|
+
SENSITIVE = []
|
447
459
|
include Aws::Structure
|
448
460
|
end
|
449
461
|
|
@@ -476,6 +488,7 @@ module Aws::SMS
|
|
476
488
|
#
|
477
489
|
class DisassociateConnectorRequest < Struct.new(
|
478
490
|
:connector_id)
|
491
|
+
SENSITIVE = []
|
479
492
|
include Aws::Structure
|
480
493
|
end
|
481
494
|
|
@@ -504,6 +517,7 @@ module Aws::SMS
|
|
504
517
|
class GenerateChangeSetRequest < Struct.new(
|
505
518
|
:app_id,
|
506
519
|
:changeset_format)
|
520
|
+
SENSITIVE = []
|
507
521
|
include Aws::Structure
|
508
522
|
end
|
509
523
|
|
@@ -515,6 +529,7 @@ module Aws::SMS
|
|
515
529
|
#
|
516
530
|
class GenerateChangeSetResponse < Struct.new(
|
517
531
|
:s3_location)
|
532
|
+
SENSITIVE = []
|
518
533
|
include Aws::Structure
|
519
534
|
end
|
520
535
|
|
@@ -540,6 +555,7 @@ module Aws::SMS
|
|
540
555
|
class GenerateTemplateRequest < Struct.new(
|
541
556
|
:app_id,
|
542
557
|
:template_format)
|
558
|
+
SENSITIVE = []
|
543
559
|
include Aws::Structure
|
544
560
|
end
|
545
561
|
|
@@ -551,6 +567,7 @@ module Aws::SMS
|
|
551
567
|
#
|
552
568
|
class GenerateTemplateResponse < Struct.new(
|
553
569
|
:s3_location)
|
570
|
+
SENSITIVE = []
|
554
571
|
include Aws::Structure
|
555
572
|
end
|
556
573
|
|
@@ -569,6 +586,7 @@ module Aws::SMS
|
|
569
586
|
#
|
570
587
|
class GetAppLaunchConfigurationRequest < Struct.new(
|
571
588
|
:app_id)
|
589
|
+
SENSITIVE = []
|
572
590
|
include Aws::Structure
|
573
591
|
end
|
574
592
|
|
@@ -591,6 +609,7 @@ module Aws::SMS
|
|
591
609
|
:app_id,
|
592
610
|
:role_name,
|
593
611
|
:server_group_launch_configurations)
|
612
|
+
SENSITIVE = []
|
594
613
|
include Aws::Structure
|
595
614
|
end
|
596
615
|
|
@@ -609,6 +628,7 @@ module Aws::SMS
|
|
609
628
|
#
|
610
629
|
class GetAppReplicationConfigurationRequest < Struct.new(
|
611
630
|
:app_id)
|
631
|
+
SENSITIVE = []
|
612
632
|
include Aws::Structure
|
613
633
|
end
|
614
634
|
|
@@ -621,6 +641,7 @@ module Aws::SMS
|
|
621
641
|
#
|
622
642
|
class GetAppReplicationConfigurationResponse < Struct.new(
|
623
643
|
:server_group_replication_configurations)
|
644
|
+
SENSITIVE = []
|
624
645
|
include Aws::Structure
|
625
646
|
end
|
626
647
|
|
@@ -639,6 +660,7 @@ module Aws::SMS
|
|
639
660
|
#
|
640
661
|
class GetAppRequest < Struct.new(
|
641
662
|
:app_id)
|
663
|
+
SENSITIVE = []
|
642
664
|
include Aws::Structure
|
643
665
|
end
|
644
666
|
|
@@ -660,6 +682,7 @@ module Aws::SMS
|
|
660
682
|
:app_summary,
|
661
683
|
:server_groups,
|
662
684
|
:tags)
|
685
|
+
SENSITIVE = []
|
663
686
|
include Aws::Structure
|
664
687
|
end
|
665
688
|
|
@@ -686,6 +709,7 @@ module Aws::SMS
|
|
686
709
|
class GetConnectorsRequest < Struct.new(
|
687
710
|
:next_token,
|
688
711
|
:max_results)
|
712
|
+
SENSITIVE = []
|
689
713
|
include Aws::Structure
|
690
714
|
end
|
691
715
|
|
@@ -703,6 +727,7 @@ module Aws::SMS
|
|
703
727
|
class GetConnectorsResponse < Struct.new(
|
704
728
|
:connector_list,
|
705
729
|
:next_token)
|
730
|
+
SENSITIVE = []
|
706
731
|
include Aws::Structure
|
707
732
|
end
|
708
733
|
|
@@ -735,6 +760,7 @@ module Aws::SMS
|
|
735
760
|
:replication_job_id,
|
736
761
|
:next_token,
|
737
762
|
:max_results)
|
763
|
+
SENSITIVE = []
|
738
764
|
include Aws::Structure
|
739
765
|
end
|
740
766
|
|
@@ -752,6 +778,7 @@ module Aws::SMS
|
|
752
778
|
class GetReplicationJobsResponse < Struct.new(
|
753
779
|
:replication_job_list,
|
754
780
|
:next_token)
|
781
|
+
SENSITIVE = []
|
755
782
|
include Aws::Structure
|
756
783
|
end
|
757
784
|
|
@@ -784,6 +811,7 @@ module Aws::SMS
|
|
784
811
|
:replication_job_id,
|
785
812
|
:next_token,
|
786
813
|
:max_results)
|
814
|
+
SENSITIVE = []
|
787
815
|
include Aws::Structure
|
788
816
|
end
|
789
817
|
|
@@ -806,6 +834,7 @@ module Aws::SMS
|
|
806
834
|
:replication_job,
|
807
835
|
:replication_run_list,
|
808
836
|
:next_token)
|
837
|
+
SENSITIVE = []
|
809
838
|
include Aws::Structure
|
810
839
|
end
|
811
840
|
|
@@ -843,6 +872,7 @@ module Aws::SMS
|
|
843
872
|
:next_token,
|
844
873
|
:max_results,
|
845
874
|
:vm_server_address_list)
|
875
|
+
SENSITIVE = []
|
846
876
|
include Aws::Structure
|
847
877
|
end
|
848
878
|
|
@@ -870,6 +900,7 @@ module Aws::SMS
|
|
870
900
|
:server_catalog_status,
|
871
901
|
:server_list,
|
872
902
|
:next_token)
|
903
|
+
SENSITIVE = []
|
873
904
|
include Aws::Structure
|
874
905
|
end
|
875
906
|
|
@@ -892,6 +923,7 @@ module Aws::SMS
|
|
892
923
|
#
|
893
924
|
class InternalError < Struct.new(
|
894
925
|
:message)
|
926
|
+
SENSITIVE = []
|
895
927
|
include Aws::Structure
|
896
928
|
end
|
897
929
|
|
@@ -904,6 +936,7 @@ module Aws::SMS
|
|
904
936
|
#
|
905
937
|
class InvalidParameterException < Struct.new(
|
906
938
|
:message)
|
939
|
+
SENSITIVE = []
|
907
940
|
include Aws::Structure
|
908
941
|
end
|
909
942
|
|
@@ -922,6 +955,7 @@ module Aws::SMS
|
|
922
955
|
#
|
923
956
|
class LaunchAppRequest < Struct.new(
|
924
957
|
:app_id)
|
958
|
+
SENSITIVE = []
|
925
959
|
include Aws::Structure
|
926
960
|
end
|
927
961
|
|
@@ -949,6 +983,7 @@ module Aws::SMS
|
|
949
983
|
:latest_launch_time,
|
950
984
|
:stack_name,
|
951
985
|
:stack_id)
|
986
|
+
SENSITIVE = []
|
952
987
|
include Aws::Structure
|
953
988
|
end
|
954
989
|
|
@@ -980,6 +1015,7 @@ module Aws::SMS
|
|
980
1015
|
:app_ids,
|
981
1016
|
:next_token,
|
982
1017
|
:max_results)
|
1018
|
+
SENSITIVE = []
|
983
1019
|
include Aws::Structure
|
984
1020
|
end
|
985
1021
|
|
@@ -997,6 +1033,7 @@ module Aws::SMS
|
|
997
1033
|
class ListAppsResponse < Struct.new(
|
998
1034
|
:apps,
|
999
1035
|
:next_token)
|
1036
|
+
SENSITIVE = []
|
1000
1037
|
include Aws::Structure
|
1001
1038
|
end
|
1002
1039
|
|
@@ -1009,6 +1046,7 @@ module Aws::SMS
|
|
1009
1046
|
#
|
1010
1047
|
class MissingRequiredParameterException < Struct.new(
|
1011
1048
|
:message)
|
1049
|
+
SENSITIVE = []
|
1012
1050
|
include Aws::Structure
|
1013
1051
|
end
|
1014
1052
|
|
@@ -1021,6 +1059,7 @@ module Aws::SMS
|
|
1021
1059
|
#
|
1022
1060
|
class NoConnectorsAvailableException < Struct.new(
|
1023
1061
|
:message)
|
1062
|
+
SENSITIVE = []
|
1024
1063
|
include Aws::Structure
|
1025
1064
|
end
|
1026
1065
|
|
@@ -1033,6 +1072,7 @@ module Aws::SMS
|
|
1033
1072
|
#
|
1034
1073
|
class OperationNotPermittedException < Struct.new(
|
1035
1074
|
:message)
|
1075
|
+
SENSITIVE = []
|
1036
1076
|
include Aws::Structure
|
1037
1077
|
end
|
1038
1078
|
|
@@ -1102,6 +1142,7 @@ module Aws::SMS
|
|
1102
1142
|
:app_id,
|
1103
1143
|
:role_name,
|
1104
1144
|
:server_group_launch_configurations)
|
1145
|
+
SENSITIVE = []
|
1105
1146
|
include Aws::Structure
|
1106
1147
|
end
|
1107
1148
|
|
@@ -1164,6 +1205,7 @@ module Aws::SMS
|
|
1164
1205
|
class PutAppReplicationConfigurationRequest < Struct.new(
|
1165
1206
|
:app_id,
|
1166
1207
|
:server_group_replication_configurations)
|
1208
|
+
SENSITIVE = []
|
1167
1209
|
include Aws::Structure
|
1168
1210
|
end
|
1169
1211
|
|
@@ -1281,6 +1323,7 @@ module Aws::SMS
|
|
1281
1323
|
:encrypted,
|
1282
1324
|
:kms_key_id,
|
1283
1325
|
:replication_run_list)
|
1326
|
+
SENSITIVE = []
|
1284
1327
|
include Aws::Structure
|
1285
1328
|
end
|
1286
1329
|
|
@@ -1293,6 +1336,7 @@ module Aws::SMS
|
|
1293
1336
|
#
|
1294
1337
|
class ReplicationJobAlreadyExistsException < Struct.new(
|
1295
1338
|
:message)
|
1339
|
+
SENSITIVE = []
|
1296
1340
|
include Aws::Structure
|
1297
1341
|
end
|
1298
1342
|
|
@@ -1305,6 +1349,7 @@ module Aws::SMS
|
|
1305
1349
|
#
|
1306
1350
|
class ReplicationJobNotFoundException < Struct.new(
|
1307
1351
|
:message)
|
1352
|
+
SENSITIVE = []
|
1308
1353
|
include Aws::Structure
|
1309
1354
|
end
|
1310
1355
|
|
@@ -1382,6 +1427,7 @@ module Aws::SMS
|
|
1382
1427
|
:description,
|
1383
1428
|
:encrypted,
|
1384
1429
|
:kms_key_id)
|
1430
|
+
SENSITIVE = []
|
1385
1431
|
include Aws::Structure
|
1386
1432
|
end
|
1387
1433
|
|
@@ -1395,6 +1441,7 @@ module Aws::SMS
|
|
1395
1441
|
#
|
1396
1442
|
class ReplicationRunLimitExceededException < Struct.new(
|
1397
1443
|
:message)
|
1444
|
+
SENSITIVE = []
|
1398
1445
|
include Aws::Structure
|
1399
1446
|
end
|
1400
1447
|
|
@@ -1414,6 +1461,7 @@ module Aws::SMS
|
|
1414
1461
|
class ReplicationRunStageDetails < Struct.new(
|
1415
1462
|
:stage,
|
1416
1463
|
:stage_progress)
|
1464
|
+
SENSITIVE = []
|
1417
1465
|
include Aws::Structure
|
1418
1466
|
end
|
1419
1467
|
|
@@ -1440,6 +1488,7 @@ module Aws::SMS
|
|
1440
1488
|
class S3Location < Struct.new(
|
1441
1489
|
:bucket,
|
1442
1490
|
:key)
|
1491
|
+
SENSITIVE = []
|
1443
1492
|
include Aws::Structure
|
1444
1493
|
end
|
1445
1494
|
|
@@ -1493,6 +1542,7 @@ module Aws::SMS
|
|
1493
1542
|
:vm_server,
|
1494
1543
|
:replication_job_id,
|
1495
1544
|
:replication_job_terminated)
|
1545
|
+
SENSITIVE = []
|
1496
1546
|
include Aws::Structure
|
1497
1547
|
end
|
1498
1548
|
|
@@ -1505,6 +1555,7 @@ module Aws::SMS
|
|
1505
1555
|
#
|
1506
1556
|
class ServerCannotBeReplicatedException < Struct.new(
|
1507
1557
|
:message)
|
1558
|
+
SENSITIVE = []
|
1508
1559
|
include Aws::Structure
|
1509
1560
|
end
|
1510
1561
|
|
@@ -1554,6 +1605,7 @@ module Aws::SMS
|
|
1554
1605
|
:server_group_id,
|
1555
1606
|
:name,
|
1556
1607
|
:server_list)
|
1608
|
+
SENSITIVE = []
|
1557
1609
|
include Aws::Structure
|
1558
1610
|
end
|
1559
1611
|
|
@@ -1619,6 +1671,7 @@ module Aws::SMS
|
|
1619
1671
|
:server_group_id,
|
1620
1672
|
:launch_order,
|
1621
1673
|
:server_launch_configurations)
|
1674
|
+
SENSITIVE = []
|
1622
1675
|
include Aws::Structure
|
1623
1676
|
end
|
1624
1677
|
|
@@ -1674,6 +1727,7 @@ module Aws::SMS
|
|
1674
1727
|
class ServerGroupReplicationConfiguration < Struct.new(
|
1675
1728
|
:server_group_id,
|
1676
1729
|
:server_replication_configurations)
|
1730
|
+
SENSITIVE = []
|
1677
1731
|
include Aws::Structure
|
1678
1732
|
end
|
1679
1733
|
|
@@ -1767,6 +1821,7 @@ module Aws::SMS
|
|
1767
1821
|
:user_data,
|
1768
1822
|
:instance_type,
|
1769
1823
|
:associate_public_ip_address)
|
1824
|
+
SENSITIVE = []
|
1770
1825
|
include Aws::Structure
|
1771
1826
|
end
|
1772
1827
|
|
@@ -1817,6 +1872,7 @@ module Aws::SMS
|
|
1817
1872
|
class ServerReplicationConfiguration < Struct.new(
|
1818
1873
|
:server,
|
1819
1874
|
:server_replication_parameters)
|
1875
|
+
SENSITIVE = []
|
1820
1876
|
include Aws::Structure
|
1821
1877
|
end
|
1822
1878
|
|
@@ -1886,6 +1942,7 @@ module Aws::SMS
|
|
1886
1942
|
:number_of_recent_amis_to_keep,
|
1887
1943
|
:encrypted,
|
1888
1944
|
:kms_key_id)
|
1945
|
+
SENSITIVE = []
|
1889
1946
|
include Aws::Structure
|
1890
1947
|
end
|
1891
1948
|
|
@@ -1904,6 +1961,7 @@ module Aws::SMS
|
|
1904
1961
|
#
|
1905
1962
|
class StartAppReplicationRequest < Struct.new(
|
1906
1963
|
:app_id)
|
1964
|
+
SENSITIVE = []
|
1907
1965
|
include Aws::Structure
|
1908
1966
|
end
|
1909
1967
|
|
@@ -1932,6 +1990,7 @@ module Aws::SMS
|
|
1932
1990
|
class StartOnDemandReplicationRunRequest < Struct.new(
|
1933
1991
|
:replication_job_id,
|
1934
1992
|
:description)
|
1993
|
+
SENSITIVE = []
|
1935
1994
|
include Aws::Structure
|
1936
1995
|
end
|
1937
1996
|
|
@@ -1943,6 +2002,7 @@ module Aws::SMS
|
|
1943
2002
|
#
|
1944
2003
|
class StartOnDemandReplicationRunResponse < Struct.new(
|
1945
2004
|
:replication_run_id)
|
2005
|
+
SENSITIVE = []
|
1946
2006
|
include Aws::Structure
|
1947
2007
|
end
|
1948
2008
|
|
@@ -1961,6 +2021,7 @@ module Aws::SMS
|
|
1961
2021
|
#
|
1962
2022
|
class StopAppReplicationRequest < Struct.new(
|
1963
2023
|
:app_id)
|
2024
|
+
SENSITIVE = []
|
1964
2025
|
include Aws::Structure
|
1965
2026
|
end
|
1966
2027
|
|
@@ -1991,9 +2052,16 @@ module Aws::SMS
|
|
1991
2052
|
class Tag < Struct.new(
|
1992
2053
|
:key,
|
1993
2054
|
:value)
|
2055
|
+
SENSITIVE = []
|
1994
2056
|
include Aws::Structure
|
1995
2057
|
end
|
1996
2058
|
|
2059
|
+
# The service is temporarily unavailable.
|
2060
|
+
#
|
2061
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sms-2016-10-24/TemporarilyUnavailableException AWS API Documentation
|
2062
|
+
#
|
2063
|
+
class TemporarilyUnavailableException < Aws::EmptyStructure; end
|
2064
|
+
|
1997
2065
|
# @note When making an API call, you may pass TerminateAppRequest
|
1998
2066
|
# data as a hash:
|
1999
2067
|
#
|
@@ -2009,6 +2077,7 @@ module Aws::SMS
|
|
2009
2077
|
#
|
2010
2078
|
class TerminateAppRequest < Struct.new(
|
2011
2079
|
:app_id)
|
2080
|
+
SENSITIVE = []
|
2012
2081
|
include Aws::Structure
|
2013
2082
|
end
|
2014
2083
|
|
@@ -2026,6 +2095,7 @@ module Aws::SMS
|
|
2026
2095
|
#
|
2027
2096
|
class UnauthorizedOperationException < Struct.new(
|
2028
2097
|
:message)
|
2098
|
+
SENSITIVE = []
|
2029
2099
|
include Aws::Structure
|
2030
2100
|
end
|
2031
2101
|
|
@@ -2102,6 +2172,7 @@ module Aws::SMS
|
|
2102
2172
|
:role_name,
|
2103
2173
|
:server_groups,
|
2104
2174
|
:tags)
|
2175
|
+
SENSITIVE = []
|
2105
2176
|
include Aws::Structure
|
2106
2177
|
end
|
2107
2178
|
|
@@ -2123,6 +2194,7 @@ module Aws::SMS
|
|
2123
2194
|
:app_summary,
|
2124
2195
|
:server_groups,
|
2125
2196
|
:tags)
|
2197
|
+
SENSITIVE = []
|
2126
2198
|
include Aws::Structure
|
2127
2199
|
end
|
2128
2200
|
|
@@ -2204,6 +2276,7 @@ module Aws::SMS
|
|
2204
2276
|
:number_of_recent_amis_to_keep,
|
2205
2277
|
:encrypted,
|
2206
2278
|
:kms_key_id)
|
2279
|
+
SENSITIVE = []
|
2207
2280
|
include Aws::Structure
|
2208
2281
|
end
|
2209
2282
|
|
@@ -2232,6 +2305,7 @@ module Aws::SMS
|
|
2232
2305
|
#
|
2233
2306
|
class UserData < Struct.new(
|
2234
2307
|
:s3_location)
|
2308
|
+
SENSITIVE = []
|
2235
2309
|
include Aws::Structure
|
2236
2310
|
end
|
2237
2311
|
|
@@ -2280,6 +2354,7 @@ module Aws::SMS
|
|
2280
2354
|
:vm_manager_name,
|
2281
2355
|
:vm_manager_type,
|
2282
2356
|
:vm_path)
|
2357
|
+
SENSITIVE = []
|
2283
2358
|
include Aws::Structure
|
2284
2359
|
end
|
2285
2360
|
|
@@ -2306,6 +2381,7 @@ module Aws::SMS
|
|
2306
2381
|
class VmServerAddress < Struct.new(
|
2307
2382
|
:vm_manager_id,
|
2308
2383
|
:vm_id)
|
2384
|
+
SENSITIVE = []
|
2309
2385
|
include Aws::Structure
|
2310
2386
|
end
|
2311
2387
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-sms
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.22.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:
|
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 - SMS
|