aws-sdk-cognitosync 1.16.0 → 1.21.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-cognitosync.rb +9 -4
- data/lib/aws-sdk-cognitosync/client.rb +72 -14
- data/lib/aws-sdk-cognitosync/client_api.rb +2 -0
- data/lib/aws-sdk-cognitosync/customizations.rb +1 -0
- data/lib/aws-sdk-cognitosync/errors.rb +37 -13
- data/lib/aws-sdk-cognitosync/resource.rb +3 -0
- data/lib/aws-sdk-cognitosync/types.rb +53 -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: a3b961d71a5d41f9d131fefe8ec1a3e36fe9fa28a747e9e724984c80cc8b37ec
|
4
|
+
data.tar.gz: bedcce3e9aa1b54d91c9bdc3b9ad728c3d23530d136703f6addbb89a0bf39231
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cdb6b5aaa20a48214d74f7e268f2d8f1f39b6680d77b62b6a13eac1171a09e7f334e7f40844d763564dcc29b6fb653030db40ce6b93879a0a1ec493888d15bb7
|
7
|
+
data.tar.gz: 529818f1ec9e2589188a1cdf5f3a202dab58009116709d64efafbbd0113bcf6c9c8fdfb3ae264f71a59c8cc95a259a347a539bda02f294b72cdecc0a10807ba5
|
data/lib/aws-sdk-cognitosync.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-cognitosync/customizations'
|
|
24
26
|
# methods each accept a hash of request parameters and return a response
|
25
27
|
# structure.
|
26
28
|
#
|
29
|
+
# cognito_sync = Aws::CognitoSync::Client.new
|
30
|
+
# resp = cognito_sync.bulk_publish(params)
|
31
|
+
#
|
27
32
|
# See {Client} for more information.
|
28
33
|
#
|
29
34
|
# # Errors
|
30
35
|
#
|
31
|
-
# Errors returned from Amazon Cognito Sync
|
32
|
-
# extend {Errors::ServiceError}.
|
36
|
+
# Errors returned from Amazon Cognito Sync 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::CognitoSync::Errors::ServiceError
|
37
|
-
# # rescues all
|
42
|
+
# # rescues all Amazon Cognito Sync API errors
|
38
43
|
# end
|
39
44
|
#
|
40
45
|
# See {Errors} for more information.
|
@@ -42,6 +47,6 @@ require_relative 'aws-sdk-cognitosync/customizations'
|
|
42
47
|
# @service
|
43
48
|
module Aws::CognitoSync
|
44
49
|
|
45
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.21.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(:cognitosync)
|
31
34
|
|
32
35
|
module Aws::CognitoSync
|
36
|
+
# An API client for CognitoSync. To construct a client, you need to configure a `:region` and `:credentials`.
|
37
|
+
#
|
38
|
+
# client = Aws::CognitoSync::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::CognitoSync
|
|
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::CognitoSync
|
|
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::CognitoSync
|
|
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::CognitoSync
|
|
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::CognitoSync
|
|
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::CognitoSync
|
|
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::CognitoSync
|
|
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::CognitoSync
|
|
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::CognitoSync
|
|
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::CognitoSync
|
|
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`.
|
@@ -1115,7 +1173,7 @@ module Aws::CognitoSync
|
|
1115
1173
|
params: params,
|
1116
1174
|
config: config)
|
1117
1175
|
context[:gem_name] = 'aws-sdk-cognitosync'
|
1118
|
-
context[:gem_version] = '1.
|
1176
|
+
context[:gem_version] = '1.21.0'
|
1119
1177
|
Seahorse::Client::Request.new(handlers, context)
|
1120
1178
|
end
|
1121
1179
|
|
@@ -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,41 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::CognitoSync
|
11
|
+
|
12
|
+
# When CognitoSync returns an error response, the Ruby SDK constructs and raises an error.
|
13
|
+
# These errors all extend Aws::CognitoSync::Errors::ServiceError < {Aws::Errors::ServiceError}
|
14
|
+
#
|
15
|
+
# You can rescue all CognitoSync errors using ServiceError:
|
16
|
+
#
|
17
|
+
# begin
|
18
|
+
# # do stuff
|
19
|
+
# rescue Aws::CognitoSync::Errors::ServiceError
|
20
|
+
# # rescues all CognitoSync 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
|
+
# * {AlreadyStreamedException}
|
31
|
+
# * {ConcurrentModificationException}
|
32
|
+
# * {DuplicateRequestException}
|
33
|
+
# * {InternalErrorException}
|
34
|
+
# * {InvalidConfigurationException}
|
35
|
+
# * {InvalidLambdaFunctionOutputException}
|
36
|
+
# * {InvalidParameterException}
|
37
|
+
# * {LambdaThrottledException}
|
38
|
+
# * {LimitExceededException}
|
39
|
+
# * {NotAuthorizedException}
|
40
|
+
# * {ResourceConflictException}
|
41
|
+
# * {ResourceNotFoundException}
|
42
|
+
# * {TooManyRequestsException}
|
43
|
+
#
|
44
|
+
# Additionally, error classes are dynamically generated for service errors based on the error code
|
45
|
+
# if they are not defined above.
|
9
46
|
module Errors
|
10
47
|
|
11
48
|
extend Aws::Errors::DynamicErrors
|
@@ -23,7 +60,6 @@ module Aws::CognitoSync
|
|
23
60
|
def message
|
24
61
|
@message || @data[:message]
|
25
62
|
end
|
26
|
-
|
27
63
|
end
|
28
64
|
|
29
65
|
class ConcurrentModificationException < ServiceError
|
@@ -39,7 +75,6 @@ module Aws::CognitoSync
|
|
39
75
|
def message
|
40
76
|
@message || @data[:message]
|
41
77
|
end
|
42
|
-
|
43
78
|
end
|
44
79
|
|
45
80
|
class DuplicateRequestException < ServiceError
|
@@ -55,7 +90,6 @@ module Aws::CognitoSync
|
|
55
90
|
def message
|
56
91
|
@message || @data[:message]
|
57
92
|
end
|
58
|
-
|
59
93
|
end
|
60
94
|
|
61
95
|
class InternalErrorException < ServiceError
|
@@ -71,7 +105,6 @@ module Aws::CognitoSync
|
|
71
105
|
def message
|
72
106
|
@message || @data[:message]
|
73
107
|
end
|
74
|
-
|
75
108
|
end
|
76
109
|
|
77
110
|
class InvalidConfigurationException < ServiceError
|
@@ -87,7 +120,6 @@ module Aws::CognitoSync
|
|
87
120
|
def message
|
88
121
|
@message || @data[:message]
|
89
122
|
end
|
90
|
-
|
91
123
|
end
|
92
124
|
|
93
125
|
class InvalidLambdaFunctionOutputException < ServiceError
|
@@ -103,7 +135,6 @@ module Aws::CognitoSync
|
|
103
135
|
def message
|
104
136
|
@message || @data[:message]
|
105
137
|
end
|
106
|
-
|
107
138
|
end
|
108
139
|
|
109
140
|
class InvalidParameterException < ServiceError
|
@@ -119,7 +150,6 @@ module Aws::CognitoSync
|
|
119
150
|
def message
|
120
151
|
@message || @data[:message]
|
121
152
|
end
|
122
|
-
|
123
153
|
end
|
124
154
|
|
125
155
|
class LambdaThrottledException < ServiceError
|
@@ -135,7 +165,6 @@ module Aws::CognitoSync
|
|
135
165
|
def message
|
136
166
|
@message || @data[:message]
|
137
167
|
end
|
138
|
-
|
139
168
|
end
|
140
169
|
|
141
170
|
class LimitExceededException < ServiceError
|
@@ -151,7 +180,6 @@ module Aws::CognitoSync
|
|
151
180
|
def message
|
152
181
|
@message || @data[:message]
|
153
182
|
end
|
154
|
-
|
155
183
|
end
|
156
184
|
|
157
185
|
class NotAuthorizedException < ServiceError
|
@@ -167,7 +195,6 @@ module Aws::CognitoSync
|
|
167
195
|
def message
|
168
196
|
@message || @data[:message]
|
169
197
|
end
|
170
|
-
|
171
198
|
end
|
172
199
|
|
173
200
|
class ResourceConflictException < ServiceError
|
@@ -183,7 +210,6 @@ module Aws::CognitoSync
|
|
183
210
|
def message
|
184
211
|
@message || @data[:message]
|
185
212
|
end
|
186
|
-
|
187
213
|
end
|
188
214
|
|
189
215
|
class ResourceNotFoundException < ServiceError
|
@@ -199,7 +225,6 @@ module Aws::CognitoSync
|
|
199
225
|
def message
|
200
226
|
@message || @data[:message]
|
201
227
|
end
|
202
|
-
|
203
228
|
end
|
204
229
|
|
205
230
|
class TooManyRequestsException < ServiceError
|
@@ -215,7 +240,6 @@ module Aws::CognitoSync
|
|
215
240
|
def message
|
216
241
|
@message || @data[:message]
|
217
242
|
end
|
218
|
-
|
219
243
|
end
|
220
244
|
|
221
245
|
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::CognitoSync
|
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:
|
@@ -20,6 +22,7 @@ module Aws::CognitoSync
|
|
20
22
|
#
|
21
23
|
class AlreadyStreamedException < Struct.new(
|
22
24
|
:message)
|
25
|
+
SENSITIVE = []
|
23
26
|
include Aws::Structure
|
24
27
|
end
|
25
28
|
|
@@ -42,6 +45,7 @@ module Aws::CognitoSync
|
|
42
45
|
#
|
43
46
|
class BulkPublishRequest < Struct.new(
|
44
47
|
:identity_pool_id)
|
48
|
+
SENSITIVE = []
|
45
49
|
include Aws::Structure
|
46
50
|
end
|
47
51
|
|
@@ -57,6 +61,7 @@ module Aws::CognitoSync
|
|
57
61
|
#
|
58
62
|
class BulkPublishResponse < Struct.new(
|
59
63
|
:identity_pool_id)
|
64
|
+
SENSITIVE = []
|
60
65
|
include Aws::Structure
|
61
66
|
end
|
62
67
|
|
@@ -96,6 +101,7 @@ module Aws::CognitoSync
|
|
96
101
|
:stream_name,
|
97
102
|
:role_arn,
|
98
103
|
:streaming_status)
|
104
|
+
SENSITIVE = []
|
99
105
|
include Aws::Structure
|
100
106
|
end
|
101
107
|
|
@@ -109,6 +115,7 @@ module Aws::CognitoSync
|
|
109
115
|
#
|
110
116
|
class ConcurrentModificationException < Struct.new(
|
111
117
|
:message)
|
118
|
+
SENSITIVE = []
|
112
119
|
include Aws::Structure
|
113
120
|
end
|
114
121
|
|
@@ -160,6 +167,7 @@ module Aws::CognitoSync
|
|
160
167
|
:last_modified_by,
|
161
168
|
:data_storage,
|
162
169
|
:num_records)
|
170
|
+
SENSITIVE = []
|
163
171
|
include Aws::Structure
|
164
172
|
end
|
165
173
|
|
@@ -197,6 +205,7 @@ module Aws::CognitoSync
|
|
197
205
|
:identity_pool_id,
|
198
206
|
:identity_id,
|
199
207
|
:dataset_name)
|
208
|
+
SENSITIVE = []
|
200
209
|
include Aws::Structure
|
201
210
|
end
|
202
211
|
|
@@ -215,6 +224,7 @@ module Aws::CognitoSync
|
|
215
224
|
#
|
216
225
|
class DeleteDatasetResponse < Struct.new(
|
217
226
|
:dataset)
|
227
|
+
SENSITIVE = []
|
218
228
|
include Aws::Structure
|
219
229
|
end
|
220
230
|
|
@@ -253,6 +263,7 @@ module Aws::CognitoSync
|
|
253
263
|
:identity_pool_id,
|
254
264
|
:identity_id,
|
255
265
|
:dataset_name)
|
266
|
+
SENSITIVE = []
|
256
267
|
include Aws::Structure
|
257
268
|
end
|
258
269
|
|
@@ -270,6 +281,7 @@ module Aws::CognitoSync
|
|
270
281
|
#
|
271
282
|
class DescribeDatasetResponse < Struct.new(
|
272
283
|
:dataset)
|
284
|
+
SENSITIVE = []
|
273
285
|
include Aws::Structure
|
274
286
|
end
|
275
287
|
|
@@ -292,6 +304,7 @@ module Aws::CognitoSync
|
|
292
304
|
#
|
293
305
|
class DescribeIdentityPoolUsageRequest < Struct.new(
|
294
306
|
:identity_pool_id)
|
307
|
+
SENSITIVE = []
|
295
308
|
include Aws::Structure
|
296
309
|
end
|
297
310
|
|
@@ -305,6 +318,7 @@ module Aws::CognitoSync
|
|
305
318
|
#
|
306
319
|
class DescribeIdentityPoolUsageResponse < Struct.new(
|
307
320
|
:identity_pool_usage)
|
321
|
+
SENSITIVE = []
|
308
322
|
include Aws::Structure
|
309
323
|
end
|
310
324
|
|
@@ -335,6 +349,7 @@ module Aws::CognitoSync
|
|
335
349
|
class DescribeIdentityUsageRequest < Struct.new(
|
336
350
|
:identity_pool_id,
|
337
351
|
:identity_id)
|
352
|
+
SENSITIVE = []
|
338
353
|
include Aws::Structure
|
339
354
|
end
|
340
355
|
|
@@ -348,6 +363,7 @@ module Aws::CognitoSync
|
|
348
363
|
#
|
349
364
|
class DescribeIdentityUsageResponse < Struct.new(
|
350
365
|
:identity_usage)
|
366
|
+
SENSITIVE = []
|
351
367
|
include Aws::Structure
|
352
368
|
end
|
353
369
|
|
@@ -362,6 +378,7 @@ module Aws::CognitoSync
|
|
362
378
|
#
|
363
379
|
class DuplicateRequestException < Struct.new(
|
364
380
|
:message)
|
381
|
+
SENSITIVE = []
|
365
382
|
include Aws::Structure
|
366
383
|
end
|
367
384
|
|
@@ -384,6 +401,7 @@ module Aws::CognitoSync
|
|
384
401
|
#
|
385
402
|
class GetBulkPublishDetailsRequest < Struct.new(
|
386
403
|
:identity_pool_id)
|
404
|
+
SENSITIVE = []
|
387
405
|
include Aws::Structure
|
388
406
|
end
|
389
407
|
|
@@ -430,6 +448,7 @@ module Aws::CognitoSync
|
|
430
448
|
:bulk_publish_complete_time,
|
431
449
|
:bulk_publish_status,
|
432
450
|
:failure_message)
|
451
|
+
SENSITIVE = []
|
433
452
|
include Aws::Structure
|
434
453
|
end
|
435
454
|
|
@@ -450,6 +469,7 @@ module Aws::CognitoSync
|
|
450
469
|
#
|
451
470
|
class GetCognitoEventsRequest < Struct.new(
|
452
471
|
:identity_pool_id)
|
472
|
+
SENSITIVE = []
|
453
473
|
include Aws::Structure
|
454
474
|
end
|
455
475
|
|
@@ -463,6 +483,7 @@ module Aws::CognitoSync
|
|
463
483
|
#
|
464
484
|
class GetCognitoEventsResponse < Struct.new(
|
465
485
|
:events)
|
486
|
+
SENSITIVE = []
|
466
487
|
include Aws::Structure
|
467
488
|
end
|
468
489
|
|
@@ -486,6 +507,7 @@ module Aws::CognitoSync
|
|
486
507
|
#
|
487
508
|
class GetIdentityPoolConfigurationRequest < Struct.new(
|
488
509
|
:identity_pool_id)
|
510
|
+
SENSITIVE = []
|
489
511
|
include Aws::Structure
|
490
512
|
end
|
491
513
|
|
@@ -511,6 +533,7 @@ module Aws::CognitoSync
|
|
511
533
|
:identity_pool_id,
|
512
534
|
:push_sync,
|
513
535
|
:cognito_streams)
|
536
|
+
SENSITIVE = []
|
514
537
|
include Aws::Structure
|
515
538
|
end
|
516
539
|
|
@@ -541,6 +564,7 @@ module Aws::CognitoSync
|
|
541
564
|
:sync_sessions_count,
|
542
565
|
:data_storage,
|
543
566
|
:last_modified_date)
|
567
|
+
SENSITIVE = []
|
544
568
|
include Aws::Structure
|
545
569
|
end
|
546
570
|
|
@@ -578,6 +602,7 @@ module Aws::CognitoSync
|
|
578
602
|
:last_modified_date,
|
579
603
|
:dataset_count,
|
580
604
|
:data_storage)
|
605
|
+
SENSITIVE = []
|
581
606
|
include Aws::Structure
|
582
607
|
end
|
583
608
|
|
@@ -591,6 +616,7 @@ module Aws::CognitoSync
|
|
591
616
|
#
|
592
617
|
class InternalErrorException < Struct.new(
|
593
618
|
:message)
|
619
|
+
SENSITIVE = []
|
594
620
|
include Aws::Structure
|
595
621
|
end
|
596
622
|
|
@@ -602,6 +628,7 @@ module Aws::CognitoSync
|
|
602
628
|
#
|
603
629
|
class InvalidConfigurationException < Struct.new(
|
604
630
|
:message)
|
631
|
+
SENSITIVE = []
|
605
632
|
include Aws::Structure
|
606
633
|
end
|
607
634
|
|
@@ -616,6 +643,7 @@ module Aws::CognitoSync
|
|
616
643
|
#
|
617
644
|
class InvalidLambdaFunctionOutputException < Struct.new(
|
618
645
|
:message)
|
646
|
+
SENSITIVE = []
|
619
647
|
include Aws::Structure
|
620
648
|
end
|
621
649
|
|
@@ -630,6 +658,7 @@ module Aws::CognitoSync
|
|
630
658
|
#
|
631
659
|
class InvalidParameterException < Struct.new(
|
632
660
|
:message)
|
661
|
+
SENSITIVE = []
|
633
662
|
include Aws::Structure
|
634
663
|
end
|
635
664
|
|
@@ -643,6 +672,7 @@ module Aws::CognitoSync
|
|
643
672
|
#
|
644
673
|
class LambdaThrottledException < Struct.new(
|
645
674
|
:message)
|
675
|
+
SENSITIVE = []
|
646
676
|
include Aws::Structure
|
647
677
|
end
|
648
678
|
|
@@ -657,6 +687,7 @@ module Aws::CognitoSync
|
|
657
687
|
#
|
658
688
|
class LimitExceededException < Struct.new(
|
659
689
|
:message)
|
690
|
+
SENSITIVE = []
|
660
691
|
include Aws::Structure
|
661
692
|
end
|
662
693
|
|
@@ -699,6 +730,7 @@ module Aws::CognitoSync
|
|
699
730
|
:identity_id,
|
700
731
|
:next_token,
|
701
732
|
:max_results)
|
733
|
+
SENSITIVE = []
|
702
734
|
include Aws::Structure
|
703
735
|
end
|
704
736
|
|
@@ -722,6 +754,7 @@ module Aws::CognitoSync
|
|
722
754
|
:datasets,
|
723
755
|
:count,
|
724
756
|
:next_token)
|
757
|
+
SENSITIVE = []
|
725
758
|
include Aws::Structure
|
726
759
|
end
|
727
760
|
|
@@ -748,6 +781,7 @@ module Aws::CognitoSync
|
|
748
781
|
class ListIdentityPoolUsageRequest < Struct.new(
|
749
782
|
:next_token,
|
750
783
|
:max_results)
|
784
|
+
SENSITIVE = []
|
751
785
|
include Aws::Structure
|
752
786
|
end
|
753
787
|
|
@@ -776,6 +810,7 @@ module Aws::CognitoSync
|
|
776
810
|
:max_results,
|
777
811
|
:count,
|
778
812
|
:next_token)
|
813
|
+
SENSITIVE = []
|
779
814
|
include Aws::Structure
|
780
815
|
end
|
781
816
|
|
@@ -837,6 +872,7 @@ module Aws::CognitoSync
|
|
837
872
|
:next_token,
|
838
873
|
:max_results,
|
839
874
|
:sync_session_token)
|
875
|
+
SENSITIVE = []
|
840
876
|
include Aws::Structure
|
841
877
|
end
|
842
878
|
|
@@ -890,6 +926,7 @@ module Aws::CognitoSync
|
|
890
926
|
:dataset_exists,
|
891
927
|
:dataset_deleted_after_requested_sync_count,
|
892
928
|
:sync_session_token)
|
929
|
+
SENSITIVE = []
|
893
930
|
include Aws::Structure
|
894
931
|
end
|
895
932
|
|
@@ -903,6 +940,7 @@ module Aws::CognitoSync
|
|
903
940
|
#
|
904
941
|
class NotAuthorizedException < Struct.new(
|
905
942
|
:message)
|
943
|
+
SENSITIVE = []
|
906
944
|
include Aws::Structure
|
907
945
|
end
|
908
946
|
|
@@ -930,6 +968,7 @@ module Aws::CognitoSync
|
|
930
968
|
class PushSync < Struct.new(
|
931
969
|
:application_arns,
|
932
970
|
:role_arn)
|
971
|
+
SENSITIVE = []
|
933
972
|
include Aws::Structure
|
934
973
|
end
|
935
974
|
|
@@ -968,6 +1007,7 @@ module Aws::CognitoSync
|
|
968
1007
|
:last_modified_date,
|
969
1008
|
:last_modified_by,
|
970
1009
|
:device_last_modified_date)
|
1010
|
+
SENSITIVE = []
|
971
1011
|
include Aws::Structure
|
972
1012
|
end
|
973
1013
|
|
@@ -1012,6 +1052,7 @@ module Aws::CognitoSync
|
|
1012
1052
|
:value,
|
1013
1053
|
:sync_count,
|
1014
1054
|
:device_last_modified_date)
|
1055
|
+
SENSITIVE = []
|
1015
1056
|
include Aws::Structure
|
1016
1057
|
end
|
1017
1058
|
|
@@ -1052,6 +1093,7 @@ module Aws::CognitoSync
|
|
1052
1093
|
:identity_id,
|
1053
1094
|
:platform,
|
1054
1095
|
:token)
|
1096
|
+
SENSITIVE = []
|
1055
1097
|
include Aws::Structure
|
1056
1098
|
end
|
1057
1099
|
|
@@ -1065,6 +1107,7 @@ module Aws::CognitoSync
|
|
1065
1107
|
#
|
1066
1108
|
class RegisterDeviceResponse < Struct.new(
|
1067
1109
|
:device_id)
|
1110
|
+
SENSITIVE = []
|
1068
1111
|
include Aws::Structure
|
1069
1112
|
end
|
1070
1113
|
|
@@ -1079,6 +1122,7 @@ module Aws::CognitoSync
|
|
1079
1122
|
#
|
1080
1123
|
class ResourceConflictException < Struct.new(
|
1081
1124
|
:message)
|
1125
|
+
SENSITIVE = []
|
1082
1126
|
include Aws::Structure
|
1083
1127
|
end
|
1084
1128
|
|
@@ -1092,6 +1136,7 @@ module Aws::CognitoSync
|
|
1092
1136
|
#
|
1093
1137
|
class ResourceNotFoundException < Struct.new(
|
1094
1138
|
:message)
|
1139
|
+
SENSITIVE = []
|
1095
1140
|
include Aws::Structure
|
1096
1141
|
end
|
1097
1142
|
|
@@ -1122,6 +1167,7 @@ module Aws::CognitoSync
|
|
1122
1167
|
class SetCognitoEventsRequest < Struct.new(
|
1123
1168
|
:identity_pool_id,
|
1124
1169
|
:events)
|
1170
|
+
SENSITIVE = []
|
1125
1171
|
include Aws::Structure
|
1126
1172
|
end
|
1127
1173
|
|
@@ -1163,6 +1209,7 @@ module Aws::CognitoSync
|
|
1163
1209
|
:identity_pool_id,
|
1164
1210
|
:push_sync,
|
1165
1211
|
:cognito_streams)
|
1212
|
+
SENSITIVE = []
|
1166
1213
|
include Aws::Structure
|
1167
1214
|
end
|
1168
1215
|
|
@@ -1188,6 +1235,7 @@ module Aws::CognitoSync
|
|
1188
1235
|
:identity_pool_id,
|
1189
1236
|
:push_sync,
|
1190
1237
|
:cognito_streams)
|
1238
|
+
SENSITIVE = []
|
1191
1239
|
include Aws::Structure
|
1192
1240
|
end
|
1193
1241
|
|
@@ -1228,6 +1276,7 @@ module Aws::CognitoSync
|
|
1228
1276
|
:identity_id,
|
1229
1277
|
:dataset_name,
|
1230
1278
|
:device_id)
|
1279
|
+
SENSITIVE = []
|
1231
1280
|
include Aws::Structure
|
1232
1281
|
end
|
1233
1282
|
|
@@ -1247,6 +1296,7 @@ module Aws::CognitoSync
|
|
1247
1296
|
#
|
1248
1297
|
class TooManyRequestsException < Struct.new(
|
1249
1298
|
:message)
|
1299
|
+
SENSITIVE = []
|
1250
1300
|
include Aws::Structure
|
1251
1301
|
end
|
1252
1302
|
|
@@ -1287,6 +1337,7 @@ module Aws::CognitoSync
|
|
1287
1337
|
:identity_id,
|
1288
1338
|
:dataset_name,
|
1289
1339
|
:device_id)
|
1340
|
+
SENSITIVE = []
|
1290
1341
|
include Aws::Structure
|
1291
1342
|
end
|
1292
1343
|
|
@@ -1366,6 +1417,7 @@ module Aws::CognitoSync
|
|
1366
1417
|
:record_patches,
|
1367
1418
|
:sync_session_token,
|
1368
1419
|
:client_context)
|
1420
|
+
SENSITIVE = []
|
1369
1421
|
include Aws::Structure
|
1370
1422
|
end
|
1371
1423
|
|
@@ -1379,6 +1431,7 @@ module Aws::CognitoSync
|
|
1379
1431
|
#
|
1380
1432
|
class UpdateRecordsResponse < Struct.new(
|
1381
1433
|
:records)
|
1434
|
+
SENSITIVE = []
|
1382
1435
|
include Aws::Structure
|
1383
1436
|
end
|
1384
1437
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-cognitosync
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.21.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 - Amazon Cognito Sync
|