aws-sdk-cognitosync 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 +4 -4
- data/lib/aws-sdk-cognitosync.rb +4 -2
- data/lib/aws-sdk-cognitosync/client.rb +32 -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 +2 -0
- data/lib/aws-sdk-cognitosync/resource.rb +3 -7
- data/lib/aws-sdk-cognitosync/types.rb +53 -0
- metadata +6 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 71e29fe702878cacc7aa59134897da863e85df00c776d784f9b5700eb662a181
|
|
4
|
+
data.tar.gz: 478c6f544cbd400a5eb9afef0215eb4a3c768be7b68ed26df486b6364f8cbc36
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4f915de6f20c16aae6107774d19a04043e17ef13deaaeafe38efe52d0b6fddac592190b18374f0f6b602145e02202a56ca25324721414a90e748a585ebaec1ff
|
|
7
|
+
data.tar.gz: 9a7c5d684a5e695c6a8e858f8d2b045fcdd57fb6bf72c86e40724e5478c5e15e412f917fe47a04d7cedda231df07bf637312f8fb2ea8e612e9c8e16f32aae95c
|
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:
|
|
@@ -42,9 +44,9 @@ require_relative 'aws-sdk-cognitosync/customizations'
|
|
|
42
44
|
#
|
|
43
45
|
# See {Errors} for more information.
|
|
44
46
|
#
|
|
45
|
-
#
|
|
47
|
+
# @!group service
|
|
46
48
|
module Aws::CognitoSync
|
|
47
49
|
|
|
48
|
-
GEM_VERSION = '1.
|
|
50
|
+
GEM_VERSION = '1.22.0'
|
|
49
51
|
|
|
50
52
|
end
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
|
2
4
|
#
|
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
|
28
31
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
|
29
32
|
|
|
@@ -69,6 +72,7 @@ module Aws::CognitoSync
|
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
|
73
77
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
|
74
78
|
|
|
@@ -81,13 +85,28 @@ module Aws::CognitoSync
|
|
|
81
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
|
82
86
|
# credentials.
|
|
83
87
|
#
|
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
|
89
|
+
# shared file, such as `~/.aws/config`.
|
|
90
|
+
#
|
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
|
92
|
+
#
|
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
|
94
|
+
# assume a role after providing credentials via the web.
|
|
95
|
+
#
|
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
|
97
|
+
# access token generated from `aws login`.
|
|
98
|
+
#
|
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
|
100
|
+
# process that outputs to stdout.
|
|
101
|
+
#
|
|
84
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
|
85
103
|
# from an EC2 IMDS on an EC2 instance.
|
|
86
104
|
#
|
|
87
|
-
# * `Aws::
|
|
88
|
-
#
|
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
|
106
|
+
# instances running in ECS.
|
|
89
107
|
#
|
|
90
|
-
# * `Aws::
|
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
|
109
|
+
# from the Cognito Identity service.
|
|
91
110
|
#
|
|
92
111
|
# When `:credentials` are not configured directly, the following
|
|
93
112
|
# locations will be searched for credentials:
|
|
@@ -97,15 +116,15 @@ module Aws::CognitoSync
|
|
|
97
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
|
98
117
|
# * `~/.aws/credentials`
|
|
99
118
|
# * `~/.aws/config`
|
|
100
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
|
101
|
-
# very aggressive. Construct and pass an instance of
|
|
102
|
-
# `Aws::InstanceProfileCredentails`
|
|
103
|
-
# timeouts.
|
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
|
122
|
+
# enable retries and extended timeouts.
|
|
104
123
|
#
|
|
105
124
|
# @option options [required, String] :region
|
|
106
125
|
# The AWS region to connect to. The configured `:region` is
|
|
107
126
|
# used to determine the service `:endpoint`. When not passed,
|
|
108
|
-
# a default `:region` is
|
|
127
|
+
# a default `:region` is searched for in the following locations:
|
|
109
128
|
#
|
|
110
129
|
# * `Aws.config[:region]`
|
|
111
130
|
# * `ENV['AWS_REGION']`
|
|
@@ -161,7 +180,7 @@ module Aws::CognitoSync
|
|
|
161
180
|
# @option options [String] :endpoint
|
|
162
181
|
# The client endpoint is normally constructed from the `:region`
|
|
163
182
|
# option. You should only configure an `:endpoint` when connecting
|
|
164
|
-
# to test endpoints. This should be
|
|
183
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
|
165
184
|
#
|
|
166
185
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
|
167
186
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
|
@@ -176,7 +195,7 @@ module Aws::CognitoSync
|
|
|
176
195
|
# requests fetching endpoints information. Defaults to 60 sec.
|
|
177
196
|
#
|
|
178
197
|
# @option options [Boolean] :endpoint_discovery (false)
|
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
|
198
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
|
180
199
|
#
|
|
181
200
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
|
182
201
|
# The log formatter.
|
|
@@ -269,8 +288,7 @@ module Aws::CognitoSync
|
|
|
269
288
|
#
|
|
270
289
|
# @option options [Integer] :http_read_timeout (60) The default
|
|
271
290
|
# number of seconds to wait for response data. This value can
|
|
272
|
-
# safely be set
|
|
273
|
-
# per-request on the session yielded by {#session_for}.
|
|
291
|
+
# safely be set per-request on the session.
|
|
274
292
|
#
|
|
275
293
|
# @option options [Float] :http_idle_timeout (5) The number of
|
|
276
294
|
# seconds a connection is allowed to sit idle before it is
|
|
@@ -282,7 +300,7 @@ module Aws::CognitoSync
|
|
|
282
300
|
# request body. This option has no effect unless the request has
|
|
283
301
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
|
284
302
|
# disables this behaviour. This value can safely be set per
|
|
285
|
-
# request on the session
|
|
303
|
+
# request on the session.
|
|
286
304
|
#
|
|
287
305
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
|
288
306
|
# HTTP debug output will be sent to the `:logger`.
|
|
@@ -1170,7 +1188,7 @@ module Aws::CognitoSync
|
|
|
1170
1188
|
params: params,
|
|
1171
1189
|
config: config)
|
|
1172
1190
|
context[:gem_name] = 'aws-sdk-cognitosync'
|
|
1173
|
-
context[:gem_version] = '1.
|
|
1191
|
+
context[:gem_version] = '1.22.0'
|
|
1174
1192
|
Seahorse::Client::Request.new(handlers, context)
|
|
1175
1193
|
end
|
|
1176
1194
|
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
|
2
4
|
#
|
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
|
@@ -6,13 +8,7 @@
|
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
|
7
9
|
|
|
8
10
|
module Aws::CognitoSync
|
|
9
|
-
|
|
10
|
-
# To create a resource object:
|
|
11
|
-
# resource = Aws::CognitoSync::Resource.new(region: 'us-west-2')
|
|
12
|
-
# You can supply a client object with custom configuration that will be used for all resource operations.
|
|
13
|
-
# If you do not pass +:client+, a default client will be constructed.
|
|
14
|
-
# client = Aws::CognitoSync::Client.new(region: 'us-west-2')
|
|
15
|
-
# resource = Aws::CognitoSync::Resource.new(client: client)
|
|
11
|
+
|
|
16
12
|
class Resource
|
|
17
13
|
|
|
18
14
|
# @param options ({})
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
|
2
4
|
#
|
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
|
@@ -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.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: 2020-
|
|
11
|
+
date: 2020-08-25 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
|
|
@@ -80,7 +80,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
80
80
|
- !ruby/object:Gem::Version
|
|
81
81
|
version: '0'
|
|
82
82
|
requirements: []
|
|
83
|
-
|
|
83
|
+
rubyforge_project:
|
|
84
|
+
rubygems_version: 2.7.6.2
|
|
84
85
|
signing_key:
|
|
85
86
|
specification_version: 4
|
|
86
87
|
summary: AWS SDK for Ruby - Amazon Cognito Sync
|