aws-sdk-appsync 1.25.0 → 1.30.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-appsync.rb +3 -1
- data/lib/aws-sdk-appsync/client.rb +12 -8
- data/lib/aws-sdk-appsync/client_api.rb +2 -0
- data/lib/aws-sdk-appsync/errors.rb +2 -0
- data/lib/aws-sdk-appsync/resource.rb +2 -0
- data/lib/aws-sdk-appsync/types.rb +115 -5
- 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: 6c9610e404679205afbceda7933bc69ffd499857147fa3a7d402ed3e4b6819d9
|
4
|
+
data.tar.gz: 2125fe8d5acdaadd406ee76865379a998bf8b86fcbe65e3975b7c7c73167921b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 599579cd6c66bf78b5ff8e13cff7d6476cc94fe380d67aac5aaa90728b57351a0eff75a0a52be003d1e93c3ccbb908374a1a20dcc3ff9570c4565048b75f9dfe
|
7
|
+
data.tar.gz: 4b620ccfb613e267e47fdecc1d8287933a8c376980b8d3d904a155045ad630f07a67ae5fca415876cd6899eb49e891bbc195147a533a239b58183fad27a245a1
|
data/lib/aws-sdk-appsync.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:
|
@@ -45,6 +47,6 @@ require_relative 'aws-sdk-appsync/customizations'
|
|
45
47
|
# @service
|
46
48
|
module Aws::AppSync
|
47
49
|
|
48
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.30.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::AppSync
|
|
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
|
|
@@ -161,7 +165,7 @@ module Aws::AppSync
|
|
161
165
|
# @option options [String] :endpoint
|
162
166
|
# The client endpoint is normally constructed from the `:region`
|
163
167
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be a valid HTTP(S) URI.
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
169
|
#
|
166
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +180,7 @@ module Aws::AppSync
|
|
176
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
181
|
#
|
178
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# 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.
|
180
184
|
#
|
181
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
186
|
# The log formatter.
|
@@ -363,7 +367,7 @@ module Aws::AppSync
|
|
363
367
|
# transit_encryption_enabled: false,
|
364
368
|
# at_rest_encryption_enabled: false,
|
365
369
|
# api_caching_behavior: "FULL_REQUEST_CACHING", # required, accepts FULL_REQUEST_CACHING, PER_RESOLVER_CACHING
|
366
|
-
# type: "T2_SMALL", # required, accepts T2_SMALL, T2_MEDIUM, R4_LARGE, R4_XLARGE, R4_2XLARGE, R4_4XLARGE, R4_8XLARGE
|
370
|
+
# type: "T2_SMALL", # required, accepts T2_SMALL, T2_MEDIUM, R4_LARGE, R4_XLARGE, R4_2XLARGE, R4_4XLARGE, R4_8XLARGE, SMALL, MEDIUM, LARGE, XLARGE, LARGE_2X, LARGE_4X, LARGE_8X, LARGE_12X
|
367
371
|
# })
|
368
372
|
#
|
369
373
|
# @example Response structure
|
@@ -372,7 +376,7 @@ module Aws::AppSync
|
|
372
376
|
# resp.api_cache.api_caching_behavior #=> String, one of "FULL_REQUEST_CACHING", "PER_RESOLVER_CACHING"
|
373
377
|
# resp.api_cache.transit_encryption_enabled #=> Boolean
|
374
378
|
# resp.api_cache.at_rest_encryption_enabled #=> Boolean
|
375
|
-
# resp.api_cache.type #=> String, one of "T2_SMALL", "T2_MEDIUM", "R4_LARGE", "R4_XLARGE", "R4_2XLARGE", "R4_4XLARGE", "R4_8XLARGE"
|
379
|
+
# resp.api_cache.type #=> String, one of "T2_SMALL", "T2_MEDIUM", "R4_LARGE", "R4_XLARGE", "R4_2XLARGE", "R4_4XLARGE", "R4_8XLARGE", "SMALL", "MEDIUM", "LARGE", "XLARGE", "LARGE_2X", "LARGE_4X", "LARGE_8X", "LARGE_12X"
|
376
380
|
# resp.api_cache.status #=> String, one of "AVAILABLE", "CREATING", "DELETING", "MODIFYING", "FAILED"
|
377
381
|
#
|
378
382
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/CreateApiCache AWS API Documentation
|
@@ -1103,7 +1107,7 @@ module Aws::AppSync
|
|
1103
1107
|
# resp.api_cache.api_caching_behavior #=> String, one of "FULL_REQUEST_CACHING", "PER_RESOLVER_CACHING"
|
1104
1108
|
# resp.api_cache.transit_encryption_enabled #=> Boolean
|
1105
1109
|
# resp.api_cache.at_rest_encryption_enabled #=> Boolean
|
1106
|
-
# resp.api_cache.type #=> String, one of "T2_SMALL", "T2_MEDIUM", "R4_LARGE", "R4_XLARGE", "R4_2XLARGE", "R4_4XLARGE", "R4_8XLARGE"
|
1110
|
+
# resp.api_cache.type #=> String, one of "T2_SMALL", "T2_MEDIUM", "R4_LARGE", "R4_XLARGE", "R4_2XLARGE", "R4_4XLARGE", "R4_8XLARGE", "SMALL", "MEDIUM", "LARGE", "XLARGE", "LARGE_2X", "LARGE_4X", "LARGE_8X", "LARGE_12X"
|
1107
1111
|
# resp.api_cache.status #=> String, one of "AVAILABLE", "CREATING", "DELETING", "MODIFYING", "FAILED"
|
1108
1112
|
#
|
1109
1113
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/GetApiCache AWS API Documentation
|
@@ -1981,7 +1985,7 @@ module Aws::AppSync
|
|
1981
1985
|
# api_id: "String", # required
|
1982
1986
|
# ttl: 1, # required
|
1983
1987
|
# api_caching_behavior: "FULL_REQUEST_CACHING", # required, accepts FULL_REQUEST_CACHING, PER_RESOLVER_CACHING
|
1984
|
-
# type: "T2_SMALL", # required, accepts T2_SMALL, T2_MEDIUM, R4_LARGE, R4_XLARGE, R4_2XLARGE, R4_4XLARGE, R4_8XLARGE
|
1988
|
+
# type: "T2_SMALL", # required, accepts T2_SMALL, T2_MEDIUM, R4_LARGE, R4_XLARGE, R4_2XLARGE, R4_4XLARGE, R4_8XLARGE, SMALL, MEDIUM, LARGE, XLARGE, LARGE_2X, LARGE_4X, LARGE_8X, LARGE_12X
|
1985
1989
|
# })
|
1986
1990
|
#
|
1987
1991
|
# @example Response structure
|
@@ -1990,7 +1994,7 @@ module Aws::AppSync
|
|
1990
1994
|
# resp.api_cache.api_caching_behavior #=> String, one of "FULL_REQUEST_CACHING", "PER_RESOLVER_CACHING"
|
1991
1995
|
# resp.api_cache.transit_encryption_enabled #=> Boolean
|
1992
1996
|
# resp.api_cache.at_rest_encryption_enabled #=> Boolean
|
1993
|
-
# resp.api_cache.type #=> String, one of "T2_SMALL", "T2_MEDIUM", "R4_LARGE", "R4_XLARGE", "R4_2XLARGE", "R4_4XLARGE", "R4_8XLARGE"
|
1997
|
+
# resp.api_cache.type #=> String, one of "T2_SMALL", "T2_MEDIUM", "R4_LARGE", "R4_XLARGE", "R4_2XLARGE", "R4_4XLARGE", "R4_8XLARGE", "SMALL", "MEDIUM", "LARGE", "XLARGE", "LARGE_2X", "LARGE_4X", "LARGE_8X", "LARGE_12X"
|
1994
1998
|
# resp.api_cache.status #=> String, one of "AVAILABLE", "CREATING", "DELETING", "MODIFYING", "FAILED"
|
1995
1999
|
#
|
1996
2000
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/UpdateApiCache AWS API Documentation
|
@@ -2502,7 +2506,7 @@ module Aws::AppSync
|
|
2502
2506
|
params: params,
|
2503
2507
|
config: config)
|
2504
2508
|
context[:gem_name] = 'aws-sdk-appsync'
|
2505
|
-
context[:gem_version] = '1.
|
2509
|
+
context[:gem_version] = '1.30.0'
|
2506
2510
|
Seahorse::Client::Request.new(handlers, context)
|
2507
2511
|
end
|
2508
2512
|
|
@@ -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:
|
@@ -17,6 +19,7 @@ module Aws::AppSync
|
|
17
19
|
#
|
18
20
|
class AccessDeniedException < Struct.new(
|
19
21
|
:message)
|
22
|
+
SENSITIVE = []
|
20
23
|
include Aws::Structure
|
21
24
|
end
|
22
25
|
|
@@ -59,6 +62,7 @@ module Aws::AppSync
|
|
59
62
|
:authentication_type,
|
60
63
|
:open_id_connect_config,
|
61
64
|
:user_pool_config)
|
65
|
+
SENSITIVE = []
|
62
66
|
include Aws::Structure
|
63
67
|
end
|
64
68
|
|
@@ -130,6 +134,7 @@ module Aws::AppSync
|
|
130
134
|
:at_rest_encryption_enabled,
|
131
135
|
:type,
|
132
136
|
:status)
|
137
|
+
SENSITIVE = []
|
133
138
|
include Aws::Structure
|
134
139
|
end
|
135
140
|
|
@@ -192,6 +197,7 @@ module Aws::AppSync
|
|
192
197
|
:id,
|
193
198
|
:description,
|
194
199
|
:expires)
|
200
|
+
SENSITIVE = []
|
195
201
|
include Aws::Structure
|
196
202
|
end
|
197
203
|
|
@@ -204,6 +210,7 @@ module Aws::AppSync
|
|
204
210
|
#
|
205
211
|
class ApiKeyLimitExceededException < Struct.new(
|
206
212
|
:message)
|
213
|
+
SENSITIVE = []
|
207
214
|
include Aws::Structure
|
208
215
|
end
|
209
216
|
|
@@ -218,6 +225,7 @@ module Aws::AppSync
|
|
218
225
|
#
|
219
226
|
class ApiKeyValidityOutOfBoundsException < Struct.new(
|
220
227
|
:message)
|
228
|
+
SENSITIVE = []
|
221
229
|
include Aws::Structure
|
222
230
|
end
|
223
231
|
|
@@ -230,6 +238,7 @@ module Aws::AppSync
|
|
230
238
|
#
|
231
239
|
class ApiLimitExceededException < Struct.new(
|
232
240
|
:message)
|
241
|
+
SENSITIVE = []
|
233
242
|
include Aws::Structure
|
234
243
|
end
|
235
244
|
|
@@ -264,6 +273,7 @@ module Aws::AppSync
|
|
264
273
|
class AuthorizationConfig < Struct.new(
|
265
274
|
:authorization_type,
|
266
275
|
:aws_iam_config)
|
276
|
+
SENSITIVE = []
|
267
277
|
include Aws::Structure
|
268
278
|
end
|
269
279
|
|
@@ -290,6 +300,7 @@ module Aws::AppSync
|
|
290
300
|
class AwsIamConfig < Struct.new(
|
291
301
|
:signing_region,
|
292
302
|
:signing_service_name)
|
303
|
+
SENSITIVE = []
|
293
304
|
include Aws::Structure
|
294
305
|
end
|
295
306
|
|
@@ -303,6 +314,7 @@ module Aws::AppSync
|
|
303
314
|
#
|
304
315
|
class BadRequestException < Struct.new(
|
305
316
|
:message)
|
317
|
+
SENSITIVE = []
|
306
318
|
include Aws::Structure
|
307
319
|
end
|
308
320
|
|
@@ -325,8 +337,8 @@ module Aws::AppSync
|
|
325
337
|
# @!attribute [rw] caching_keys
|
326
338
|
# The caching keys for a resolver that has caching enabled.
|
327
339
|
#
|
328
|
-
# Valid values are entries from the `$context.
|
329
|
-
# `$context.
|
340
|
+
# Valid values are entries from the `$context.arguments`,
|
341
|
+
# `$context.source`, and `$context.identity` maps.
|
330
342
|
# @return [Array<String>]
|
331
343
|
#
|
332
344
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/CachingConfig AWS API Documentation
|
@@ -334,6 +346,7 @@ module Aws::AppSync
|
|
334
346
|
class CachingConfig < Struct.new(
|
335
347
|
:ttl,
|
336
348
|
:caching_keys)
|
349
|
+
SENSITIVE = []
|
337
350
|
include Aws::Structure
|
338
351
|
end
|
339
352
|
|
@@ -367,6 +380,7 @@ module Aws::AppSync
|
|
367
380
|
:user_pool_id,
|
368
381
|
:aws_region,
|
369
382
|
:app_id_client_regex)
|
383
|
+
SENSITIVE = []
|
370
384
|
include Aws::Structure
|
371
385
|
end
|
372
386
|
|
@@ -380,6 +394,7 @@ module Aws::AppSync
|
|
380
394
|
#
|
381
395
|
class ConcurrentModificationException < Struct.new(
|
382
396
|
:message)
|
397
|
+
SENSITIVE = []
|
383
398
|
include Aws::Structure
|
384
399
|
end
|
385
400
|
|
@@ -394,7 +409,7 @@ module Aws::AppSync
|
|
394
409
|
# transit_encryption_enabled: false,
|
395
410
|
# at_rest_encryption_enabled: false,
|
396
411
|
# api_caching_behavior: "FULL_REQUEST_CACHING", # required, accepts FULL_REQUEST_CACHING, PER_RESOLVER_CACHING
|
397
|
-
# type: "T2_SMALL", # required, accepts T2_SMALL, T2_MEDIUM, R4_LARGE, R4_XLARGE, R4_2XLARGE, R4_4XLARGE, R4_8XLARGE
|
412
|
+
# type: "T2_SMALL", # required, accepts T2_SMALL, T2_MEDIUM, R4_LARGE, R4_XLARGE, R4_2XLARGE, R4_4XLARGE, R4_8XLARGE, SMALL, MEDIUM, LARGE, XLARGE, LARGE_2X, LARGE_4X, LARGE_8X, LARGE_12X
|
398
413
|
# }
|
399
414
|
#
|
400
415
|
# @!attribute [rw] api_id
|
@@ -453,6 +468,7 @@ module Aws::AppSync
|
|
453
468
|
:at_rest_encryption_enabled,
|
454
469
|
:api_caching_behavior,
|
455
470
|
:type)
|
471
|
+
SENSITIVE = []
|
456
472
|
include Aws::Structure
|
457
473
|
end
|
458
474
|
|
@@ -466,6 +482,7 @@ module Aws::AppSync
|
|
466
482
|
#
|
467
483
|
class CreateApiCacheResponse < Struct.new(
|
468
484
|
:api_cache)
|
485
|
+
SENSITIVE = []
|
469
486
|
include Aws::Structure
|
470
487
|
end
|
471
488
|
|
@@ -499,6 +516,7 @@ module Aws::AppSync
|
|
499
516
|
:api_id,
|
500
517
|
:description,
|
501
518
|
:expires)
|
519
|
+
SENSITIVE = []
|
502
520
|
include Aws::Structure
|
503
521
|
end
|
504
522
|
|
@@ -510,6 +528,7 @@ module Aws::AppSync
|
|
510
528
|
#
|
511
529
|
class CreateApiKeyResponse < Struct.new(
|
512
530
|
:api_key)
|
531
|
+
SENSITIVE = []
|
513
532
|
include Aws::Structure
|
514
533
|
end
|
515
534
|
|
@@ -616,6 +635,7 @@ module Aws::AppSync
|
|
616
635
|
:elasticsearch_config,
|
617
636
|
:http_config,
|
618
637
|
:relational_database_config)
|
638
|
+
SENSITIVE = []
|
619
639
|
include Aws::Structure
|
620
640
|
end
|
621
641
|
|
@@ -627,6 +647,7 @@ module Aws::AppSync
|
|
627
647
|
#
|
628
648
|
class CreateDataSourceResponse < Struct.new(
|
629
649
|
:data_source)
|
650
|
+
SENSITIVE = []
|
630
651
|
include Aws::Structure
|
631
652
|
end
|
632
653
|
|
@@ -683,6 +704,7 @@ module Aws::AppSync
|
|
683
704
|
:request_mapping_template,
|
684
705
|
:response_mapping_template,
|
685
706
|
:function_version)
|
707
|
+
SENSITIVE = []
|
686
708
|
include Aws::Structure
|
687
709
|
end
|
688
710
|
|
@@ -694,6 +716,7 @@ module Aws::AppSync
|
|
694
716
|
#
|
695
717
|
class CreateFunctionResponse < Struct.new(
|
696
718
|
:function_configuration)
|
719
|
+
SENSITIVE = []
|
697
720
|
include Aws::Structure
|
698
721
|
end
|
699
722
|
|
@@ -788,6 +811,7 @@ module Aws::AppSync
|
|
788
811
|
:tags,
|
789
812
|
:additional_authentication_providers,
|
790
813
|
:xray_enabled)
|
814
|
+
SENSITIVE = []
|
791
815
|
include Aws::Structure
|
792
816
|
end
|
793
817
|
|
@@ -799,6 +823,7 @@ module Aws::AppSync
|
|
799
823
|
#
|
800
824
|
class CreateGraphqlApiResponse < Struct.new(
|
801
825
|
:graphql_api)
|
826
|
+
SENSITIVE = []
|
802
827
|
include Aws::Structure
|
803
828
|
end
|
804
829
|
|
@@ -895,6 +920,7 @@ module Aws::AppSync
|
|
895
920
|
:pipeline_config,
|
896
921
|
:sync_config,
|
897
922
|
:caching_config)
|
923
|
+
SENSITIVE = []
|
898
924
|
include Aws::Structure
|
899
925
|
end
|
900
926
|
|
@@ -906,6 +932,7 @@ module Aws::AppSync
|
|
906
932
|
#
|
907
933
|
class CreateResolverResponse < Struct.new(
|
908
934
|
:resolver)
|
935
|
+
SENSITIVE = []
|
909
936
|
include Aws::Structure
|
910
937
|
end
|
911
938
|
|
@@ -943,6 +970,7 @@ module Aws::AppSync
|
|
943
970
|
:api_id,
|
944
971
|
:definition,
|
945
972
|
:format)
|
973
|
+
SENSITIVE = []
|
946
974
|
include Aws::Structure
|
947
975
|
end
|
948
976
|
|
@@ -954,6 +982,7 @@ module Aws::AppSync
|
|
954
982
|
#
|
955
983
|
class CreateTypeResponse < Struct.new(
|
956
984
|
:type)
|
985
|
+
SENSITIVE = []
|
957
986
|
include Aws::Structure
|
958
987
|
end
|
959
988
|
|
@@ -1031,6 +1060,7 @@ module Aws::AppSync
|
|
1031
1060
|
:elasticsearch_config,
|
1032
1061
|
:http_config,
|
1033
1062
|
:relational_database_config)
|
1063
|
+
SENSITIVE = []
|
1034
1064
|
include Aws::Structure
|
1035
1065
|
end
|
1036
1066
|
|
@@ -1051,6 +1081,7 @@ module Aws::AppSync
|
|
1051
1081
|
#
|
1052
1082
|
class DeleteApiCacheRequest < Struct.new(
|
1053
1083
|
:api_id)
|
1084
|
+
SENSITIVE = []
|
1054
1085
|
include Aws::Structure
|
1055
1086
|
end
|
1056
1087
|
|
@@ -1081,6 +1112,7 @@ module Aws::AppSync
|
|
1081
1112
|
class DeleteApiKeyRequest < Struct.new(
|
1082
1113
|
:api_id,
|
1083
1114
|
:id)
|
1115
|
+
SENSITIVE = []
|
1084
1116
|
include Aws::Structure
|
1085
1117
|
end
|
1086
1118
|
|
@@ -1109,6 +1141,7 @@ module Aws::AppSync
|
|
1109
1141
|
class DeleteDataSourceRequest < Struct.new(
|
1110
1142
|
:api_id,
|
1111
1143
|
:name)
|
1144
|
+
SENSITIVE = []
|
1112
1145
|
include Aws::Structure
|
1113
1146
|
end
|
1114
1147
|
|
@@ -1137,6 +1170,7 @@ module Aws::AppSync
|
|
1137
1170
|
class DeleteFunctionRequest < Struct.new(
|
1138
1171
|
:api_id,
|
1139
1172
|
:function_id)
|
1173
|
+
SENSITIVE = []
|
1140
1174
|
include Aws::Structure
|
1141
1175
|
end
|
1142
1176
|
|
@@ -1159,6 +1193,7 @@ module Aws::AppSync
|
|
1159
1193
|
#
|
1160
1194
|
class DeleteGraphqlApiRequest < Struct.new(
|
1161
1195
|
:api_id)
|
1196
|
+
SENSITIVE = []
|
1162
1197
|
include Aws::Structure
|
1163
1198
|
end
|
1164
1199
|
|
@@ -1193,6 +1228,7 @@ module Aws::AppSync
|
|
1193
1228
|
:api_id,
|
1194
1229
|
:type_name,
|
1195
1230
|
:field_name)
|
1231
|
+
SENSITIVE = []
|
1196
1232
|
include Aws::Structure
|
1197
1233
|
end
|
1198
1234
|
|
@@ -1221,6 +1257,7 @@ module Aws::AppSync
|
|
1221
1257
|
class DeleteTypeRequest < Struct.new(
|
1222
1258
|
:api_id,
|
1223
1259
|
:type_name)
|
1260
|
+
SENSITIVE = []
|
1224
1261
|
include Aws::Structure
|
1225
1262
|
end
|
1226
1263
|
|
@@ -1258,6 +1295,7 @@ module Aws::AppSync
|
|
1258
1295
|
:base_table_ttl,
|
1259
1296
|
:delta_sync_table_name,
|
1260
1297
|
:delta_sync_table_ttl)
|
1298
|
+
SENSITIVE = []
|
1261
1299
|
include Aws::Structure
|
1262
1300
|
end
|
1263
1301
|
|
@@ -1307,6 +1345,7 @@ module Aws::AppSync
|
|
1307
1345
|
:use_caller_credentials,
|
1308
1346
|
:delta_sync_config,
|
1309
1347
|
:versioned)
|
1348
|
+
SENSITIVE = []
|
1310
1349
|
include Aws::Structure
|
1311
1350
|
end
|
1312
1351
|
|
@@ -1333,6 +1372,7 @@ module Aws::AppSync
|
|
1333
1372
|
class ElasticsearchDataSourceConfig < Struct.new(
|
1334
1373
|
:endpoint,
|
1335
1374
|
:aws_region)
|
1375
|
+
SENSITIVE = []
|
1336
1376
|
include Aws::Structure
|
1337
1377
|
end
|
1338
1378
|
|
@@ -1353,6 +1393,7 @@ module Aws::AppSync
|
|
1353
1393
|
#
|
1354
1394
|
class FlushApiCacheRequest < Struct.new(
|
1355
1395
|
:api_id)
|
1396
|
+
SENSITIVE = []
|
1356
1397
|
include Aws::Structure
|
1357
1398
|
end
|
1358
1399
|
|
@@ -1410,6 +1451,7 @@ module Aws::AppSync
|
|
1410
1451
|
:request_mapping_template,
|
1411
1452
|
:response_mapping_template,
|
1412
1453
|
:function_version)
|
1454
|
+
SENSITIVE = []
|
1413
1455
|
include Aws::Structure
|
1414
1456
|
end
|
1415
1457
|
|
@@ -1430,6 +1472,7 @@ module Aws::AppSync
|
|
1430
1472
|
#
|
1431
1473
|
class GetApiCacheRequest < Struct.new(
|
1432
1474
|
:api_id)
|
1475
|
+
SENSITIVE = []
|
1433
1476
|
include Aws::Structure
|
1434
1477
|
end
|
1435
1478
|
|
@@ -1443,6 +1486,7 @@ module Aws::AppSync
|
|
1443
1486
|
#
|
1444
1487
|
class GetApiCacheResponse < Struct.new(
|
1445
1488
|
:api_cache)
|
1489
|
+
SENSITIVE = []
|
1446
1490
|
include Aws::Structure
|
1447
1491
|
end
|
1448
1492
|
|
@@ -1467,6 +1511,7 @@ module Aws::AppSync
|
|
1467
1511
|
class GetDataSourceRequest < Struct.new(
|
1468
1512
|
:api_id,
|
1469
1513
|
:name)
|
1514
|
+
SENSITIVE = []
|
1470
1515
|
include Aws::Structure
|
1471
1516
|
end
|
1472
1517
|
|
@@ -1478,6 +1523,7 @@ module Aws::AppSync
|
|
1478
1523
|
#
|
1479
1524
|
class GetDataSourceResponse < Struct.new(
|
1480
1525
|
:data_source)
|
1526
|
+
SENSITIVE = []
|
1481
1527
|
include Aws::Structure
|
1482
1528
|
end
|
1483
1529
|
|
@@ -1502,6 +1548,7 @@ module Aws::AppSync
|
|
1502
1548
|
class GetFunctionRequest < Struct.new(
|
1503
1549
|
:api_id,
|
1504
1550
|
:function_id)
|
1551
|
+
SENSITIVE = []
|
1505
1552
|
include Aws::Structure
|
1506
1553
|
end
|
1507
1554
|
|
@@ -1513,6 +1560,7 @@ module Aws::AppSync
|
|
1513
1560
|
#
|
1514
1561
|
class GetFunctionResponse < Struct.new(
|
1515
1562
|
:function_configuration)
|
1563
|
+
SENSITIVE = []
|
1516
1564
|
include Aws::Structure
|
1517
1565
|
end
|
1518
1566
|
|
@@ -1531,6 +1579,7 @@ module Aws::AppSync
|
|
1531
1579
|
#
|
1532
1580
|
class GetGraphqlApiRequest < Struct.new(
|
1533
1581
|
:api_id)
|
1582
|
+
SENSITIVE = []
|
1534
1583
|
include Aws::Structure
|
1535
1584
|
end
|
1536
1585
|
|
@@ -1542,6 +1591,7 @@ module Aws::AppSync
|
|
1542
1591
|
#
|
1543
1592
|
class GetGraphqlApiResponse < Struct.new(
|
1544
1593
|
:graphql_api)
|
1594
|
+
SENSITIVE = []
|
1545
1595
|
include Aws::Structure
|
1546
1596
|
end
|
1547
1597
|
|
@@ -1573,6 +1623,7 @@ module Aws::AppSync
|
|
1573
1623
|
:api_id,
|
1574
1624
|
:format,
|
1575
1625
|
:include_directives)
|
1626
|
+
SENSITIVE = []
|
1576
1627
|
include Aws::Structure
|
1577
1628
|
end
|
1578
1629
|
|
@@ -1590,6 +1641,7 @@ module Aws::AppSync
|
|
1590
1641
|
#
|
1591
1642
|
class GetIntrospectionSchemaResponse < Struct.new(
|
1592
1643
|
:schema)
|
1644
|
+
SENSITIVE = []
|
1593
1645
|
include Aws::Structure
|
1594
1646
|
end
|
1595
1647
|
|
@@ -1620,6 +1672,7 @@ module Aws::AppSync
|
|
1620
1672
|
:api_id,
|
1621
1673
|
:type_name,
|
1622
1674
|
:field_name)
|
1675
|
+
SENSITIVE = []
|
1623
1676
|
include Aws::Structure
|
1624
1677
|
end
|
1625
1678
|
|
@@ -1631,6 +1684,7 @@ module Aws::AppSync
|
|
1631
1684
|
#
|
1632
1685
|
class GetResolverResponse < Struct.new(
|
1633
1686
|
:resolver)
|
1687
|
+
SENSITIVE = []
|
1634
1688
|
include Aws::Structure
|
1635
1689
|
end
|
1636
1690
|
|
@@ -1649,6 +1703,7 @@ module Aws::AppSync
|
|
1649
1703
|
#
|
1650
1704
|
class GetSchemaCreationStatusRequest < Struct.new(
|
1651
1705
|
:api_id)
|
1706
|
+
SENSITIVE = []
|
1652
1707
|
include Aws::Structure
|
1653
1708
|
end
|
1654
1709
|
|
@@ -1668,6 +1723,7 @@ module Aws::AppSync
|
|
1668
1723
|
class GetSchemaCreationStatusResponse < Struct.new(
|
1669
1724
|
:status,
|
1670
1725
|
:details)
|
1726
|
+
SENSITIVE = []
|
1671
1727
|
include Aws::Structure
|
1672
1728
|
end
|
1673
1729
|
|
@@ -1698,6 +1754,7 @@ module Aws::AppSync
|
|
1698
1754
|
:api_id,
|
1699
1755
|
:type_name,
|
1700
1756
|
:format)
|
1757
|
+
SENSITIVE = []
|
1701
1758
|
include Aws::Structure
|
1702
1759
|
end
|
1703
1760
|
|
@@ -1709,6 +1766,7 @@ module Aws::AppSync
|
|
1709
1766
|
#
|
1710
1767
|
class GetTypeResponse < Struct.new(
|
1711
1768
|
:type)
|
1769
|
+
SENSITIVE = []
|
1712
1770
|
include Aws::Structure
|
1713
1771
|
end
|
1714
1772
|
|
@@ -1721,6 +1779,7 @@ module Aws::AppSync
|
|
1721
1779
|
#
|
1722
1780
|
class GraphQLSchemaException < Struct.new(
|
1723
1781
|
:message)
|
1782
|
+
SENSITIVE = []
|
1724
1783
|
include Aws::Structure
|
1725
1784
|
end
|
1726
1785
|
|
@@ -1786,6 +1845,7 @@ module Aws::AppSync
|
|
1786
1845
|
:tags,
|
1787
1846
|
:additional_authentication_providers,
|
1788
1847
|
:xray_enabled)
|
1848
|
+
SENSITIVE = []
|
1789
1849
|
include Aws::Structure
|
1790
1850
|
end
|
1791
1851
|
|
@@ -1822,6 +1882,7 @@ module Aws::AppSync
|
|
1822
1882
|
class HttpDataSourceConfig < Struct.new(
|
1823
1883
|
:endpoint,
|
1824
1884
|
:authorization_config)
|
1885
|
+
SENSITIVE = []
|
1825
1886
|
include Aws::Structure
|
1826
1887
|
end
|
1827
1888
|
|
@@ -1834,6 +1895,7 @@ module Aws::AppSync
|
|
1834
1895
|
#
|
1835
1896
|
class InternalFailureException < Struct.new(
|
1836
1897
|
:message)
|
1898
|
+
SENSITIVE = []
|
1837
1899
|
include Aws::Structure
|
1838
1900
|
end
|
1839
1901
|
|
@@ -1855,6 +1917,7 @@ module Aws::AppSync
|
|
1855
1917
|
#
|
1856
1918
|
class LambdaConflictHandlerConfig < Struct.new(
|
1857
1919
|
:lambda_conflict_handler_arn)
|
1920
|
+
SENSITIVE = []
|
1858
1921
|
include Aws::Structure
|
1859
1922
|
end
|
1860
1923
|
|
@@ -1875,6 +1938,7 @@ module Aws::AppSync
|
|
1875
1938
|
#
|
1876
1939
|
class LambdaDataSourceConfig < Struct.new(
|
1877
1940
|
:lambda_function_arn)
|
1941
|
+
SENSITIVE = []
|
1878
1942
|
include Aws::Structure
|
1879
1943
|
end
|
1880
1944
|
|
@@ -1887,6 +1951,7 @@ module Aws::AppSync
|
|
1887
1951
|
#
|
1888
1952
|
class LimitExceededException < Struct.new(
|
1889
1953
|
:message)
|
1954
|
+
SENSITIVE = []
|
1890
1955
|
include Aws::Structure
|
1891
1956
|
end
|
1892
1957
|
|
@@ -1919,6 +1984,7 @@ module Aws::AppSync
|
|
1919
1984
|
:api_id,
|
1920
1985
|
:next_token,
|
1921
1986
|
:max_results)
|
1987
|
+
SENSITIVE = []
|
1922
1988
|
include Aws::Structure
|
1923
1989
|
end
|
1924
1990
|
|
@@ -1936,6 +2002,7 @@ module Aws::AppSync
|
|
1936
2002
|
class ListApiKeysResponse < Struct.new(
|
1937
2003
|
:api_keys,
|
1938
2004
|
:next_token)
|
2005
|
+
SENSITIVE = []
|
1939
2006
|
include Aws::Structure
|
1940
2007
|
end
|
1941
2008
|
|
@@ -1968,6 +2035,7 @@ module Aws::AppSync
|
|
1968
2035
|
:api_id,
|
1969
2036
|
:next_token,
|
1970
2037
|
:max_results)
|
2038
|
+
SENSITIVE = []
|
1971
2039
|
include Aws::Structure
|
1972
2040
|
end
|
1973
2041
|
|
@@ -1985,6 +2053,7 @@ module Aws::AppSync
|
|
1985
2053
|
class ListDataSourcesResponse < Struct.new(
|
1986
2054
|
:data_sources,
|
1987
2055
|
:next_token)
|
2056
|
+
SENSITIVE = []
|
1988
2057
|
include Aws::Structure
|
1989
2058
|
end
|
1990
2059
|
|
@@ -2017,6 +2086,7 @@ module Aws::AppSync
|
|
2017
2086
|
:api_id,
|
2018
2087
|
:next_token,
|
2019
2088
|
:max_results)
|
2089
|
+
SENSITIVE = []
|
2020
2090
|
include Aws::Structure
|
2021
2091
|
end
|
2022
2092
|
|
@@ -2035,6 +2105,7 @@ module Aws::AppSync
|
|
2035
2105
|
class ListFunctionsResponse < Struct.new(
|
2036
2106
|
:functions,
|
2037
2107
|
:next_token)
|
2108
|
+
SENSITIVE = []
|
2038
2109
|
include Aws::Structure
|
2039
2110
|
end
|
2040
2111
|
|
@@ -2061,6 +2132,7 @@ module Aws::AppSync
|
|
2061
2132
|
class ListGraphqlApisRequest < Struct.new(
|
2062
2133
|
:next_token,
|
2063
2134
|
:max_results)
|
2135
|
+
SENSITIVE = []
|
2064
2136
|
include Aws::Structure
|
2065
2137
|
end
|
2066
2138
|
|
@@ -2078,6 +2150,7 @@ module Aws::AppSync
|
|
2078
2150
|
class ListGraphqlApisResponse < Struct.new(
|
2079
2151
|
:graphql_apis,
|
2080
2152
|
:next_token)
|
2153
|
+
SENSITIVE = []
|
2081
2154
|
include Aws::Structure
|
2082
2155
|
end
|
2083
2156
|
|
@@ -2116,6 +2189,7 @@ module Aws::AppSync
|
|
2116
2189
|
:function_id,
|
2117
2190
|
:next_token,
|
2118
2191
|
:max_results)
|
2192
|
+
SENSITIVE = []
|
2119
2193
|
include Aws::Structure
|
2120
2194
|
end
|
2121
2195
|
|
@@ -2133,6 +2207,7 @@ module Aws::AppSync
|
|
2133
2207
|
class ListResolversByFunctionResponse < Struct.new(
|
2134
2208
|
:resolvers,
|
2135
2209
|
:next_token)
|
2210
|
+
SENSITIVE = []
|
2136
2211
|
include Aws::Structure
|
2137
2212
|
end
|
2138
2213
|
|
@@ -2171,6 +2246,7 @@ module Aws::AppSync
|
|
2171
2246
|
:type_name,
|
2172
2247
|
:next_token,
|
2173
2248
|
:max_results)
|
2249
|
+
SENSITIVE = []
|
2174
2250
|
include Aws::Structure
|
2175
2251
|
end
|
2176
2252
|
|
@@ -2188,6 +2264,7 @@ module Aws::AppSync
|
|
2188
2264
|
class ListResolversResponse < Struct.new(
|
2189
2265
|
:resolvers,
|
2190
2266
|
:next_token)
|
2267
|
+
SENSITIVE = []
|
2191
2268
|
include Aws::Structure
|
2192
2269
|
end
|
2193
2270
|
|
@@ -2206,6 +2283,7 @@ module Aws::AppSync
|
|
2206
2283
|
#
|
2207
2284
|
class ListTagsForResourceRequest < Struct.new(
|
2208
2285
|
:resource_arn)
|
2286
|
+
SENSITIVE = []
|
2209
2287
|
include Aws::Structure
|
2210
2288
|
end
|
2211
2289
|
|
@@ -2217,6 +2295,7 @@ module Aws::AppSync
|
|
2217
2295
|
#
|
2218
2296
|
class ListTagsForResourceResponse < Struct.new(
|
2219
2297
|
:tags)
|
2298
|
+
SENSITIVE = []
|
2220
2299
|
include Aws::Structure
|
2221
2300
|
end
|
2222
2301
|
|
@@ -2255,6 +2334,7 @@ module Aws::AppSync
|
|
2255
2334
|
:format,
|
2256
2335
|
:next_token,
|
2257
2336
|
:max_results)
|
2337
|
+
SENSITIVE = []
|
2258
2338
|
include Aws::Structure
|
2259
2339
|
end
|
2260
2340
|
|
@@ -2272,6 +2352,7 @@ module Aws::AppSync
|
|
2272
2352
|
class ListTypesResponse < Struct.new(
|
2273
2353
|
:types,
|
2274
2354
|
:next_token)
|
2355
|
+
SENSITIVE = []
|
2275
2356
|
include Aws::Structure
|
2276
2357
|
end
|
2277
2358
|
|
@@ -2327,6 +2408,7 @@ module Aws::AppSync
|
|
2327
2408
|
:field_log_level,
|
2328
2409
|
:cloud_watch_logs_role_arn,
|
2329
2410
|
:exclude_verbose_content)
|
2411
|
+
SENSITIVE = []
|
2330
2412
|
include Aws::Structure
|
2331
2413
|
end
|
2332
2414
|
|
@@ -2340,6 +2422,7 @@ module Aws::AppSync
|
|
2340
2422
|
#
|
2341
2423
|
class NotFoundException < Struct.new(
|
2342
2424
|
:message)
|
2425
|
+
SENSITIVE = []
|
2343
2426
|
include Aws::Structure
|
2344
2427
|
end
|
2345
2428
|
|
@@ -2385,6 +2468,7 @@ module Aws::AppSync
|
|
2385
2468
|
:client_id,
|
2386
2469
|
:iat_ttl,
|
2387
2470
|
:auth_ttl)
|
2471
|
+
SENSITIVE = []
|
2388
2472
|
include Aws::Structure
|
2389
2473
|
end
|
2390
2474
|
|
@@ -2405,6 +2489,7 @@ module Aws::AppSync
|
|
2405
2489
|
#
|
2406
2490
|
class PipelineConfig < Struct.new(
|
2407
2491
|
:functions)
|
2492
|
+
SENSITIVE = []
|
2408
2493
|
include Aws::Structure
|
2409
2494
|
end
|
2410
2495
|
|
@@ -2426,7 +2511,7 @@ module Aws::AppSync
|
|
2426
2511
|
# @return [String]
|
2427
2512
|
#
|
2428
2513
|
# @!attribute [rw] db_cluster_identifier
|
2429
|
-
# Amazon RDS cluster
|
2514
|
+
# Amazon RDS cluster ARN.
|
2430
2515
|
# @return [String]
|
2431
2516
|
#
|
2432
2517
|
# @!attribute [rw] database_name
|
@@ -2449,6 +2534,7 @@ module Aws::AppSync
|
|
2449
2534
|
:database_name,
|
2450
2535
|
:schema,
|
2451
2536
|
:aws_secret_store_arn)
|
2537
|
+
SENSITIVE = []
|
2452
2538
|
include Aws::Structure
|
2453
2539
|
end
|
2454
2540
|
|
@@ -2486,6 +2572,7 @@ module Aws::AppSync
|
|
2486
2572
|
class RelationalDatabaseDataSourceConfig < Struct.new(
|
2487
2573
|
:relational_database_source_type,
|
2488
2574
|
:rds_http_endpoint_config)
|
2575
|
+
SENSITIVE = []
|
2489
2576
|
include Aws::Structure
|
2490
2577
|
end
|
2491
2578
|
|
@@ -2553,6 +2640,7 @@ module Aws::AppSync
|
|
2553
2640
|
:pipeline_config,
|
2554
2641
|
:sync_config,
|
2555
2642
|
:caching_config)
|
2643
|
+
SENSITIVE = []
|
2556
2644
|
include Aws::Structure
|
2557
2645
|
end
|
2558
2646
|
|
@@ -2577,6 +2665,7 @@ module Aws::AppSync
|
|
2577
2665
|
class StartSchemaCreationRequest < Struct.new(
|
2578
2666
|
:api_id,
|
2579
2667
|
:definition)
|
2668
|
+
SENSITIVE = []
|
2580
2669
|
include Aws::Structure
|
2581
2670
|
end
|
2582
2671
|
|
@@ -2590,6 +2679,7 @@ module Aws::AppSync
|
|
2590
2679
|
#
|
2591
2680
|
class StartSchemaCreationResponse < Struct.new(
|
2592
2681
|
:status)
|
2682
|
+
SENSITIVE = []
|
2593
2683
|
include Aws::Structure
|
2594
2684
|
end
|
2595
2685
|
|
@@ -2644,6 +2734,7 @@ module Aws::AppSync
|
|
2644
2734
|
:conflict_handler,
|
2645
2735
|
:conflict_detection,
|
2646
2736
|
:lambda_conflict_handler_config)
|
2737
|
+
SENSITIVE = []
|
2647
2738
|
include Aws::Structure
|
2648
2739
|
end
|
2649
2740
|
|
@@ -2670,6 +2761,7 @@ module Aws::AppSync
|
|
2670
2761
|
class TagResourceRequest < Struct.new(
|
2671
2762
|
:resource_arn,
|
2672
2763
|
:tags)
|
2764
|
+
SENSITIVE = []
|
2673
2765
|
include Aws::Structure
|
2674
2766
|
end
|
2675
2767
|
|
@@ -2707,6 +2799,7 @@ module Aws::AppSync
|
|
2707
2799
|
:arn,
|
2708
2800
|
:definition,
|
2709
2801
|
:format)
|
2802
|
+
SENSITIVE = []
|
2710
2803
|
include Aws::Structure
|
2711
2804
|
end
|
2712
2805
|
|
@@ -2719,6 +2812,7 @@ module Aws::AppSync
|
|
2719
2812
|
#
|
2720
2813
|
class UnauthorizedException < Struct.new(
|
2721
2814
|
:message)
|
2815
|
+
SENSITIVE = []
|
2722
2816
|
include Aws::Structure
|
2723
2817
|
end
|
2724
2818
|
|
@@ -2743,6 +2837,7 @@ module Aws::AppSync
|
|
2743
2837
|
class UntagResourceRequest < Struct.new(
|
2744
2838
|
:resource_arn,
|
2745
2839
|
:tag_keys)
|
2840
|
+
SENSITIVE = []
|
2746
2841
|
include Aws::Structure
|
2747
2842
|
end
|
2748
2843
|
|
@@ -2759,7 +2854,7 @@ module Aws::AppSync
|
|
2759
2854
|
# api_id: "String", # required
|
2760
2855
|
# ttl: 1, # required
|
2761
2856
|
# api_caching_behavior: "FULL_REQUEST_CACHING", # required, accepts FULL_REQUEST_CACHING, PER_RESOLVER_CACHING
|
2762
|
-
# type: "T2_SMALL", # required, accepts T2_SMALL, T2_MEDIUM, R4_LARGE, R4_XLARGE, R4_2XLARGE, R4_4XLARGE, R4_8XLARGE
|
2857
|
+
# type: "T2_SMALL", # required, accepts T2_SMALL, T2_MEDIUM, R4_LARGE, R4_XLARGE, R4_2XLARGE, R4_4XLARGE, R4_8XLARGE, SMALL, MEDIUM, LARGE, XLARGE, LARGE_2X, LARGE_4X, LARGE_8X, LARGE_12X
|
2763
2858
|
# }
|
2764
2859
|
#
|
2765
2860
|
# @!attribute [rw] api_id
|
@@ -2806,6 +2901,7 @@ module Aws::AppSync
|
|
2806
2901
|
:ttl,
|
2807
2902
|
:api_caching_behavior,
|
2808
2903
|
:type)
|
2904
|
+
SENSITIVE = []
|
2809
2905
|
include Aws::Structure
|
2810
2906
|
end
|
2811
2907
|
|
@@ -2819,6 +2915,7 @@ module Aws::AppSync
|
|
2819
2915
|
#
|
2820
2916
|
class UpdateApiCacheResponse < Struct.new(
|
2821
2917
|
:api_cache)
|
2918
|
+
SENSITIVE = []
|
2822
2919
|
include Aws::Structure
|
2823
2920
|
end
|
2824
2921
|
|
@@ -2857,6 +2954,7 @@ module Aws::AppSync
|
|
2857
2954
|
:id,
|
2858
2955
|
:description,
|
2859
2956
|
:expires)
|
2957
|
+
SENSITIVE = []
|
2860
2958
|
include Aws::Structure
|
2861
2959
|
end
|
2862
2960
|
|
@@ -2868,6 +2966,7 @@ module Aws::AppSync
|
|
2868
2966
|
#
|
2869
2967
|
class UpdateApiKeyResponse < Struct.new(
|
2870
2968
|
:api_key)
|
2969
|
+
SENSITIVE = []
|
2871
2970
|
include Aws::Structure
|
2872
2971
|
end
|
2873
2972
|
|
@@ -2973,6 +3072,7 @@ module Aws::AppSync
|
|
2973
3072
|
:elasticsearch_config,
|
2974
3073
|
:http_config,
|
2975
3074
|
:relational_database_config)
|
3075
|
+
SENSITIVE = []
|
2976
3076
|
include Aws::Structure
|
2977
3077
|
end
|
2978
3078
|
|
@@ -2984,6 +3084,7 @@ module Aws::AppSync
|
|
2984
3084
|
#
|
2985
3085
|
class UpdateDataSourceResponse < Struct.new(
|
2986
3086
|
:data_source)
|
3087
|
+
SENSITIVE = []
|
2987
3088
|
include Aws::Structure
|
2988
3089
|
end
|
2989
3090
|
|
@@ -3046,6 +3147,7 @@ module Aws::AppSync
|
|
3046
3147
|
:request_mapping_template,
|
3047
3148
|
:response_mapping_template,
|
3048
3149
|
:function_version)
|
3150
|
+
SENSITIVE = []
|
3049
3151
|
include Aws::Structure
|
3050
3152
|
end
|
3051
3153
|
|
@@ -3057,6 +3159,7 @@ module Aws::AppSync
|
|
3057
3159
|
#
|
3058
3160
|
class UpdateFunctionResponse < Struct.new(
|
3059
3161
|
:function_configuration)
|
3162
|
+
SENSITIVE = []
|
3060
3163
|
include Aws::Structure
|
3061
3164
|
end
|
3062
3165
|
|
@@ -3150,6 +3253,7 @@ module Aws::AppSync
|
|
3150
3253
|
:open_id_connect_config,
|
3151
3254
|
:additional_authentication_providers,
|
3152
3255
|
:xray_enabled)
|
3256
|
+
SENSITIVE = []
|
3153
3257
|
include Aws::Structure
|
3154
3258
|
end
|
3155
3259
|
|
@@ -3161,6 +3265,7 @@ module Aws::AppSync
|
|
3161
3265
|
#
|
3162
3266
|
class UpdateGraphqlApiResponse < Struct.new(
|
3163
3267
|
:graphql_api)
|
3268
|
+
SENSITIVE = []
|
3164
3269
|
include Aws::Structure
|
3165
3270
|
end
|
3166
3271
|
|
@@ -3253,6 +3358,7 @@ module Aws::AppSync
|
|
3253
3358
|
:pipeline_config,
|
3254
3359
|
:sync_config,
|
3255
3360
|
:caching_config)
|
3361
|
+
SENSITIVE = []
|
3256
3362
|
include Aws::Structure
|
3257
3363
|
end
|
3258
3364
|
|
@@ -3264,6 +3370,7 @@ module Aws::AppSync
|
|
3264
3370
|
#
|
3265
3371
|
class UpdateResolverResponse < Struct.new(
|
3266
3372
|
:resolver)
|
3373
|
+
SENSITIVE = []
|
3267
3374
|
include Aws::Structure
|
3268
3375
|
end
|
3269
3376
|
|
@@ -3300,6 +3407,7 @@ module Aws::AppSync
|
|
3300
3407
|
:type_name,
|
3301
3408
|
:definition,
|
3302
3409
|
:format)
|
3410
|
+
SENSITIVE = []
|
3303
3411
|
include Aws::Structure
|
3304
3412
|
end
|
3305
3413
|
|
@@ -3311,6 +3419,7 @@ module Aws::AppSync
|
|
3311
3419
|
#
|
3312
3420
|
class UpdateTypeResponse < Struct.new(
|
3313
3421
|
:type)
|
3422
|
+
SENSITIVE = []
|
3314
3423
|
include Aws::Structure
|
3315
3424
|
end
|
3316
3425
|
|
@@ -3352,6 +3461,7 @@ module Aws::AppSync
|
|
3352
3461
|
:aws_region,
|
3353
3462
|
:default_action,
|
3354
3463
|
:app_id_client_regex)
|
3464
|
+
SENSITIVE = []
|
3355
3465
|
include Aws::Structure
|
3356
3466
|
end
|
3357
3467
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-appsync
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.30.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-07-17 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
|