aws-sdk-mobile 1.20.1 → 1.25.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-mobile.rb +5 -2
- data/lib/aws-sdk-mobile/client.rb +27 -10
- 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: 685e73a889a8eb3a835cf525bb7c9b2bdb1557bcc2d5505502314bdb6be2bea7
|
4
|
+
data.tar.gz: ae7da39a5da37942981dd326fdd77cf34e5313aab0399299aa4e62ec9ec33345
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4a12e37753198083a2e6ba1ce0c6022c93b4f708bea74a75761c3328e734ae0ac319a6c4fd1fdc60480229f1ec90cf72d9787214ceeb90a51d2402c4e20dc606
|
7
|
+
data.tar.gz: 54b26371a8d81bfd26c14c6211cd0186ed17292bc49235e59665a21e7a7b3f6015f33bcc5c22b1848577746c0af6075d6424311ec15edafed4ca7a6f1defb971
|
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.25.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:
|
@@ -83,13 +85,28 @@ module Aws::Mobile
|
|
83
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
84
86
|
# credentials.
|
85
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
|
+
#
|
86
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
87
103
|
# from an EC2 IMDS on an EC2 instance.
|
88
104
|
#
|
89
|
-
# * `Aws::
|
90
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
91
107
|
#
|
92
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
93
110
|
#
|
94
111
|
# When `:credentials` are not configured directly, the following
|
95
112
|
# locations will be searched for credentials:
|
@@ -99,10 +116,10 @@ module Aws::Mobile
|
|
99
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
100
117
|
# * `~/.aws/credentials`
|
101
118
|
# * `~/.aws/config`
|
102
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
103
|
-
# very aggressive. Construct and pass an instance of
|
104
|
-
# `Aws::InstanceProfileCredentails`
|
105
|
-
# 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.
|
106
123
|
#
|
107
124
|
# @option options [required, String] :region
|
108
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -318,7 +335,7 @@ module Aws::Mobile
|
|
318
335
|
# @option params [String] :region
|
319
336
|
# Default region where project resources should be created.
|
320
337
|
#
|
321
|
-
# @option params [String,
|
338
|
+
# @option params [String, StringIO, File] :contents
|
322
339
|
# ZIP or YAML file which contains configuration settings to be used when
|
323
340
|
# creating the project. This may be the contents of the file downloaded
|
324
341
|
# from the URL provided in an export project operation.
|
@@ -650,7 +667,7 @@ module Aws::Mobile
|
|
650
667
|
|
651
668
|
# Update an existing project.
|
652
669
|
#
|
653
|
-
# @option params [String,
|
670
|
+
# @option params [String, StringIO, File] :contents
|
654
671
|
# ZIP or YAML file which contains project configuration to be updated.
|
655
672
|
# This should be the contents of the file downloaded from the URL
|
656
673
|
# provided in an export project operation.
|
@@ -708,7 +725,7 @@ module Aws::Mobile
|
|
708
725
|
params: params,
|
709
726
|
config: config)
|
710
727
|
context[:gem_name] = 'aws-sdk-mobile'
|
711
|
-
context[:gem_version] = '1.
|
728
|
+
context[:gem_version] = '1.25.0'
|
712
729
|
Seahorse::Client::Request.new(handlers, context)
|
713
730
|
end
|
714
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.25.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: 2021-02-02 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.112.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.112.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|