aws-sdk-mobile 1.18.0 → 1.23.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-mobile.rb +5 -2
- data/lib/aws-sdk-mobile/client.rb +31 -12
- data/lib/aws-sdk-mobile/client_api.rb +2 -0
- data/lib/aws-sdk-mobile/errors.rb +2 -0
- data/lib/aws-sdk-mobile/resource.rb +2 -0
- data/lib/aws-sdk-mobile/types.rb +32 -0
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bf265feb8b7317126adee1801478ca2d6f619071c51349a2c00ce7d88599462c
|
|
4
|
+
data.tar.gz: b8cb6374d09eb9aa91b19bbebf411fea34f77e07f227d40950f376d37c00920f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1cf93b9e2e317f9ab732a2bd2d36cff449f543e81b7aff1a82f6a5dd1eca2a6a57716f07205d2e1acc634f5e1fee179e264e4f76f309da552b24c8f4b39f36b8
|
|
7
|
+
data.tar.gz: e426fca54f9820ced85a857c42f449ef1a26c17db7da2f4ed6d1da6236e13d78db698784b5ad6a6e509ec02b8d10cc3ff13b8d6f731f6e70d437116e2ac923e0
|
data/lib/aws-sdk-mobile.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:
|
|
@@ -5,6 +7,7 @@
|
|
|
5
7
|
#
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
|
7
9
|
|
|
10
|
+
|
|
8
11
|
require 'aws-sdk-core'
|
|
9
12
|
require 'aws-sigv4'
|
|
10
13
|
|
|
@@ -42,9 +45,9 @@ require_relative 'aws-sdk-mobile/customizations'
|
|
|
42
45
|
#
|
|
43
46
|
# See {Errors} for more information.
|
|
44
47
|
#
|
|
45
|
-
#
|
|
48
|
+
# @!group service
|
|
46
49
|
module Aws::Mobile
|
|
47
50
|
|
|
48
|
-
GEM_VERSION = '1.
|
|
51
|
+
GEM_VERSION = '1.23.0'
|
|
49
52
|
|
|
50
53
|
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::Mobile
|
|
|
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::Mobile
|
|
|
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,10 +116,10 @@ module Aws::Mobile
|
|
|
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
|
|
@@ -161,7 +180,7 @@ module Aws::Mobile
|
|
|
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 a valid HTTP(S) URI.
|
|
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::Mobile
|
|
|
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.
|
|
@@ -316,7 +335,7 @@ module Aws::Mobile
|
|
|
316
335
|
# @option params [String] :region
|
|
317
336
|
# Default region where project resources should be created.
|
|
318
337
|
#
|
|
319
|
-
# @option params [String,
|
|
338
|
+
# @option params [String, StringIO, File] :contents
|
|
320
339
|
# ZIP or YAML file which contains configuration settings to be used when
|
|
321
340
|
# creating the project. This may be the contents of the file downloaded
|
|
322
341
|
# from the URL provided in an export project operation.
|
|
@@ -648,7 +667,7 @@ module Aws::Mobile
|
|
|
648
667
|
|
|
649
668
|
# Update an existing project.
|
|
650
669
|
#
|
|
651
|
-
# @option params [String,
|
|
670
|
+
# @option params [String, StringIO, File] :contents
|
|
652
671
|
# ZIP or YAML file which contains project configuration to be updated.
|
|
653
672
|
# This should be the contents of the file downloaded from the URL
|
|
654
673
|
# provided in an export project operation.
|
|
@@ -706,7 +725,7 @@ module Aws::Mobile
|
|
|
706
725
|
params: params,
|
|
707
726
|
config: config)
|
|
708
727
|
context[:gem_name] = 'aws-sdk-mobile'
|
|
709
|
-
context[:gem_version] = '1.
|
|
728
|
+
context[:gem_version] = '1.23.0'
|
|
710
729
|
Seahorse::Client::Request.new(handlers, context)
|
|
711
730
|
end
|
|
712
731
|
|
data/lib/aws-sdk-mobile/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:
|
|
@@ -18,6 +20,7 @@ module Aws::Mobile
|
|
|
18
20
|
#
|
|
19
21
|
class AccountActionRequiredException < Struct.new(
|
|
20
22
|
:message)
|
|
23
|
+
SENSITIVE = []
|
|
21
24
|
include Aws::Structure
|
|
22
25
|
end
|
|
23
26
|
|
|
@@ -32,6 +35,7 @@ module Aws::Mobile
|
|
|
32
35
|
#
|
|
33
36
|
class BadRequestException < Struct.new(
|
|
34
37
|
:message)
|
|
38
|
+
SENSITIVE = []
|
|
35
39
|
include Aws::Structure
|
|
36
40
|
end
|
|
37
41
|
|
|
@@ -70,6 +74,7 @@ module Aws::Mobile
|
|
|
70
74
|
:description,
|
|
71
75
|
:icon_url,
|
|
72
76
|
:available_platforms)
|
|
77
|
+
SENSITIVE = []
|
|
73
78
|
include Aws::Structure
|
|
74
79
|
end
|
|
75
80
|
|
|
@@ -112,6 +117,7 @@ module Aws::Mobile
|
|
|
112
117
|
:region,
|
|
113
118
|
:contents,
|
|
114
119
|
:snapshot_id)
|
|
120
|
+
SENSITIVE = []
|
|
115
121
|
include Aws::Structure
|
|
116
122
|
end
|
|
117
123
|
|
|
@@ -125,6 +131,7 @@ module Aws::Mobile
|
|
|
125
131
|
#
|
|
126
132
|
class CreateProjectResult < Struct.new(
|
|
127
133
|
:details)
|
|
134
|
+
SENSITIVE = []
|
|
128
135
|
include Aws::Structure
|
|
129
136
|
end
|
|
130
137
|
|
|
@@ -145,6 +152,7 @@ module Aws::Mobile
|
|
|
145
152
|
#
|
|
146
153
|
class DeleteProjectRequest < Struct.new(
|
|
147
154
|
:project_id)
|
|
155
|
+
SENSITIVE = []
|
|
148
156
|
include Aws::Structure
|
|
149
157
|
end
|
|
150
158
|
|
|
@@ -164,6 +172,7 @@ module Aws::Mobile
|
|
|
164
172
|
class DeleteProjectResult < Struct.new(
|
|
165
173
|
:deleted_resources,
|
|
166
174
|
:orphaned_resources)
|
|
175
|
+
SENSITIVE = []
|
|
167
176
|
include Aws::Structure
|
|
168
177
|
end
|
|
169
178
|
|
|
@@ -184,6 +193,7 @@ module Aws::Mobile
|
|
|
184
193
|
#
|
|
185
194
|
class DescribeBundleRequest < Struct.new(
|
|
186
195
|
:bundle_id)
|
|
196
|
+
SENSITIVE = []
|
|
187
197
|
include Aws::Structure
|
|
188
198
|
end
|
|
189
199
|
|
|
@@ -197,6 +207,7 @@ module Aws::Mobile
|
|
|
197
207
|
#
|
|
198
208
|
class DescribeBundleResult < Struct.new(
|
|
199
209
|
:details)
|
|
210
|
+
SENSITIVE = []
|
|
200
211
|
include Aws::Structure
|
|
201
212
|
end
|
|
202
213
|
|
|
@@ -225,6 +236,7 @@ module Aws::Mobile
|
|
|
225
236
|
class DescribeProjectRequest < Struct.new(
|
|
226
237
|
:project_id,
|
|
227
238
|
:sync_from_resources)
|
|
239
|
+
SENSITIVE = []
|
|
228
240
|
include Aws::Structure
|
|
229
241
|
end
|
|
230
242
|
|
|
@@ -238,6 +250,7 @@ module Aws::Mobile
|
|
|
238
250
|
#
|
|
239
251
|
class DescribeProjectResult < Struct.new(
|
|
240
252
|
:details)
|
|
253
|
+
SENSITIVE = []
|
|
241
254
|
include Aws::Structure
|
|
242
255
|
end
|
|
243
256
|
|
|
@@ -272,6 +285,7 @@ module Aws::Mobile
|
|
|
272
285
|
:bundle_id,
|
|
273
286
|
:project_id,
|
|
274
287
|
:platform)
|
|
288
|
+
SENSITIVE = []
|
|
275
289
|
include Aws::Structure
|
|
276
290
|
end
|
|
277
291
|
|
|
@@ -289,6 +303,7 @@ module Aws::Mobile
|
|
|
289
303
|
#
|
|
290
304
|
class ExportBundleResult < Struct.new(
|
|
291
305
|
:download_url)
|
|
306
|
+
SENSITIVE = []
|
|
292
307
|
include Aws::Structure
|
|
293
308
|
end
|
|
294
309
|
|
|
@@ -310,6 +325,7 @@ module Aws::Mobile
|
|
|
310
325
|
#
|
|
311
326
|
class ExportProjectRequest < Struct.new(
|
|
312
327
|
:project_id)
|
|
328
|
+
SENSITIVE = []
|
|
313
329
|
include Aws::Structure
|
|
314
330
|
end
|
|
315
331
|
|
|
@@ -343,6 +359,7 @@ module Aws::Mobile
|
|
|
343
359
|
:download_url,
|
|
344
360
|
:share_url,
|
|
345
361
|
:snapshot_id)
|
|
362
|
+
SENSITIVE = []
|
|
346
363
|
include Aws::Structure
|
|
347
364
|
end
|
|
348
365
|
|
|
@@ -357,6 +374,7 @@ module Aws::Mobile
|
|
|
357
374
|
#
|
|
358
375
|
class InternalFailureException < Struct.new(
|
|
359
376
|
:message)
|
|
377
|
+
SENSITIVE = []
|
|
360
378
|
include Aws::Structure
|
|
361
379
|
end
|
|
362
380
|
|
|
@@ -378,6 +396,7 @@ module Aws::Mobile
|
|
|
378
396
|
class LimitExceededException < Struct.new(
|
|
379
397
|
:retry_after_seconds,
|
|
380
398
|
:message)
|
|
399
|
+
SENSITIVE = []
|
|
381
400
|
include Aws::Structure
|
|
382
401
|
end
|
|
383
402
|
|
|
@@ -406,6 +425,7 @@ module Aws::Mobile
|
|
|
406
425
|
class ListBundlesRequest < Struct.new(
|
|
407
426
|
:max_results,
|
|
408
427
|
:next_token)
|
|
428
|
+
SENSITIVE = []
|
|
409
429
|
include Aws::Structure
|
|
410
430
|
end
|
|
411
431
|
|
|
@@ -427,6 +447,7 @@ module Aws::Mobile
|
|
|
427
447
|
class ListBundlesResult < Struct.new(
|
|
428
448
|
:bundle_list,
|
|
429
449
|
:next_token)
|
|
450
|
+
SENSITIVE = []
|
|
430
451
|
include Aws::Structure
|
|
431
452
|
end
|
|
432
453
|
|
|
@@ -455,6 +476,7 @@ module Aws::Mobile
|
|
|
455
476
|
class ListProjectsRequest < Struct.new(
|
|
456
477
|
:max_results,
|
|
457
478
|
:next_token)
|
|
479
|
+
SENSITIVE = []
|
|
458
480
|
include Aws::Structure
|
|
459
481
|
end
|
|
460
482
|
|
|
@@ -475,6 +497,7 @@ module Aws::Mobile
|
|
|
475
497
|
class ListProjectsResult < Struct.new(
|
|
476
498
|
:projects,
|
|
477
499
|
:next_token)
|
|
500
|
+
SENSITIVE = []
|
|
478
501
|
include Aws::Structure
|
|
479
502
|
end
|
|
480
503
|
|
|
@@ -488,6 +511,7 @@ module Aws::Mobile
|
|
|
488
511
|
#
|
|
489
512
|
class NotFoundException < Struct.new(
|
|
490
513
|
:message)
|
|
514
|
+
SENSITIVE = []
|
|
491
515
|
include Aws::Structure
|
|
492
516
|
end
|
|
493
517
|
|
|
@@ -537,6 +561,7 @@ module Aws::Mobile
|
|
|
537
561
|
:last_updated_date,
|
|
538
562
|
:console_url,
|
|
539
563
|
:resources)
|
|
564
|
+
SENSITIVE = []
|
|
540
565
|
include Aws::Structure
|
|
541
566
|
end
|
|
542
567
|
|
|
@@ -555,6 +580,7 @@ module Aws::Mobile
|
|
|
555
580
|
class ProjectSummary < Struct.new(
|
|
556
581
|
:name,
|
|
557
582
|
:project_id)
|
|
583
|
+
SENSITIVE = []
|
|
558
584
|
include Aws::Structure
|
|
559
585
|
end
|
|
560
586
|
|
|
@@ -593,6 +619,7 @@ module Aws::Mobile
|
|
|
593
619
|
:arn,
|
|
594
620
|
:feature,
|
|
595
621
|
:attributes)
|
|
622
|
+
SENSITIVE = []
|
|
596
623
|
include Aws::Structure
|
|
597
624
|
end
|
|
598
625
|
|
|
@@ -612,6 +639,7 @@ module Aws::Mobile
|
|
|
612
639
|
class ServiceUnavailableException < Struct.new(
|
|
613
640
|
:retry_after_seconds,
|
|
614
641
|
:message)
|
|
642
|
+
SENSITIVE = []
|
|
615
643
|
include Aws::Structure
|
|
616
644
|
end
|
|
617
645
|
|
|
@@ -631,6 +659,7 @@ module Aws::Mobile
|
|
|
631
659
|
class TooManyRequestsException < Struct.new(
|
|
632
660
|
:retry_after_seconds,
|
|
633
661
|
:message)
|
|
662
|
+
SENSITIVE = []
|
|
634
663
|
include Aws::Structure
|
|
635
664
|
end
|
|
636
665
|
|
|
@@ -644,6 +673,7 @@ module Aws::Mobile
|
|
|
644
673
|
#
|
|
645
674
|
class UnauthorizedException < Struct.new(
|
|
646
675
|
:message)
|
|
676
|
+
SENSITIVE = []
|
|
647
677
|
include Aws::Structure
|
|
648
678
|
end
|
|
649
679
|
|
|
@@ -672,6 +702,7 @@ module Aws::Mobile
|
|
|
672
702
|
class UpdateProjectRequest < Struct.new(
|
|
673
703
|
:contents,
|
|
674
704
|
:project_id)
|
|
705
|
+
SENSITIVE = []
|
|
675
706
|
include Aws::Structure
|
|
676
707
|
end
|
|
677
708
|
|
|
@@ -685,6 +716,7 @@ module Aws::Mobile
|
|
|
685
716
|
#
|
|
686
717
|
class UpdateProjectResult < Struct.new(
|
|
687
718
|
:details)
|
|
719
|
+
SENSITIVE = []
|
|
688
720
|
include Aws::Structure
|
|
689
721
|
end
|
|
690
722
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-mobile
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.23.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-09-15 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
|