aws-sdk-appsync 1.23.0 → 1.28.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-appsync.rb +9 -4
- data/lib/aws-sdk-appsync/client.rb +72 -14
- data/lib/aws-sdk-appsync/client_api.rb +2 -0
- data/lib/aws-sdk-appsync/errors.rb +35 -11
- data/lib/aws-sdk-appsync/resource.rb +3 -0
- data/lib/aws-sdk-appsync/types.rb +110 -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: e7e0a54191eec4624035154efa41edbb5fa16b45f834b75eff36ccc21a42746e
|
4
|
+
data.tar.gz: 9bd27fe8b821782ba4a20e4e41b5ee45e909ec0466efe6ae2c59f20139d4b989
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2aeb9fe72824cedda95c306d5b85410f17ff3ad80205545cd6d68fe9913c159d7ce039b121e679a69cbc6ab1d949612aba61a19ed3dc7c5fb81997a2b1d226f9
|
7
|
+
data.tar.gz: 309339bd9b14e8295d8f2d85f8f1f5ed6e78e21218a82571eb338e4c2c796840e4b22872f1bf129ece94632e2cabb1203d16f61ce67adbc344d54bbc0bf1de56
|
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:
|
@@ -24,17 +26,20 @@ require_relative 'aws-sdk-appsync/customizations'
|
|
24
26
|
# methods each accept a hash of request parameters and return a response
|
25
27
|
# structure.
|
26
28
|
#
|
29
|
+
# app_sync = Aws::AppSync::Client.new
|
30
|
+
# resp = app_sync.create_api_cache(params)
|
31
|
+
#
|
27
32
|
# See {Client} for more information.
|
28
33
|
#
|
29
34
|
# # Errors
|
30
35
|
#
|
31
|
-
# Errors returned from AWS AppSync
|
32
|
-
# extend {Errors::ServiceError}.
|
36
|
+
# Errors returned from AWS AppSync 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::AppSync::Errors::ServiceError
|
37
|
-
# # rescues all
|
42
|
+
# # rescues all AWS AppSync API errors
|
38
43
|
# end
|
39
44
|
#
|
40
45
|
# See {Errors} for more information.
|
@@ -42,6 +47,6 @@ require_relative 'aws-sdk-appsync/customizations'
|
|
42
47
|
# @service
|
43
48
|
module Aws::AppSync
|
44
49
|
|
45
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.28.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(:appsync)
|
31
34
|
|
32
35
|
module Aws::AppSync
|
36
|
+
# An API client for AppSync. To construct a client, you need to configure a `:region` and `:credentials`.
|
37
|
+
#
|
38
|
+
# client = Aws::AppSync::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::AppSync
|
|
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::AppSync
|
|
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::AppSync
|
|
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::AppSync
|
|
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::AppSync
|
|
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::AppSync
|
|
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::AppSync
|
|
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::AppSync
|
|
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::AppSync
|
|
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::AppSync
|
|
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`.
|
@@ -2448,7 +2506,7 @@ module Aws::AppSync
|
|
2448
2506
|
params: params,
|
2449
2507
|
config: config)
|
2450
2508
|
context[:gem_name] = 'aws-sdk-appsync'
|
2451
|
-
context[:gem_version] = '1.
|
2509
|
+
context[:gem_version] = '1.28.0'
|
2452
2510
|
Seahorse::Client::Request.new(handlers, context)
|
2453
2511
|
end
|
2454
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:
|
@@ -6,6 +8,39 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::AppSync
|
11
|
+
|
12
|
+
# When AppSync returns an error response, the Ruby SDK constructs and raises an error.
|
13
|
+
# These errors all extend Aws::AppSync::Errors::ServiceError < {Aws::Errors::ServiceError}
|
14
|
+
#
|
15
|
+
# You can rescue all AppSync errors using ServiceError:
|
16
|
+
#
|
17
|
+
# begin
|
18
|
+
# # do stuff
|
19
|
+
# rescue Aws::AppSync::Errors::ServiceError
|
20
|
+
# # rescues all AppSync 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
|
+
# * {AccessDeniedException}
|
31
|
+
# * {ApiKeyLimitExceededException}
|
32
|
+
# * {ApiKeyValidityOutOfBoundsException}
|
33
|
+
# * {ApiLimitExceededException}
|
34
|
+
# * {BadRequestException}
|
35
|
+
# * {ConcurrentModificationException}
|
36
|
+
# * {GraphQLSchemaException}
|
37
|
+
# * {InternalFailureException}
|
38
|
+
# * {LimitExceededException}
|
39
|
+
# * {NotFoundException}
|
40
|
+
# * {UnauthorizedException}
|
41
|
+
#
|
42
|
+
# Additionally, error classes are dynamically generated for service errors based on the error code
|
43
|
+
# if they are not defined above.
|
9
44
|
module Errors
|
10
45
|
|
11
46
|
extend Aws::Errors::DynamicErrors
|
@@ -23,7 +58,6 @@ module Aws::AppSync
|
|
23
58
|
def message
|
24
59
|
@message || @data[:message]
|
25
60
|
end
|
26
|
-
|
27
61
|
end
|
28
62
|
|
29
63
|
class ApiKeyLimitExceededException < ServiceError
|
@@ -39,7 +73,6 @@ module Aws::AppSync
|
|
39
73
|
def message
|
40
74
|
@message || @data[:message]
|
41
75
|
end
|
42
|
-
|
43
76
|
end
|
44
77
|
|
45
78
|
class ApiKeyValidityOutOfBoundsException < ServiceError
|
@@ -55,7 +88,6 @@ module Aws::AppSync
|
|
55
88
|
def message
|
56
89
|
@message || @data[:message]
|
57
90
|
end
|
58
|
-
|
59
91
|
end
|
60
92
|
|
61
93
|
class ApiLimitExceededException < ServiceError
|
@@ -71,7 +103,6 @@ module Aws::AppSync
|
|
71
103
|
def message
|
72
104
|
@message || @data[:message]
|
73
105
|
end
|
74
|
-
|
75
106
|
end
|
76
107
|
|
77
108
|
class BadRequestException < ServiceError
|
@@ -87,7 +118,6 @@ module Aws::AppSync
|
|
87
118
|
def message
|
88
119
|
@message || @data[:message]
|
89
120
|
end
|
90
|
-
|
91
121
|
end
|
92
122
|
|
93
123
|
class ConcurrentModificationException < ServiceError
|
@@ -103,7 +133,6 @@ module Aws::AppSync
|
|
103
133
|
def message
|
104
134
|
@message || @data[:message]
|
105
135
|
end
|
106
|
-
|
107
136
|
end
|
108
137
|
|
109
138
|
class GraphQLSchemaException < ServiceError
|
@@ -119,7 +148,6 @@ module Aws::AppSync
|
|
119
148
|
def message
|
120
149
|
@message || @data[:message]
|
121
150
|
end
|
122
|
-
|
123
151
|
end
|
124
152
|
|
125
153
|
class InternalFailureException < ServiceError
|
@@ -135,7 +163,6 @@ module Aws::AppSync
|
|
135
163
|
def message
|
136
164
|
@message || @data[:message]
|
137
165
|
end
|
138
|
-
|
139
166
|
end
|
140
167
|
|
141
168
|
class LimitExceededException < ServiceError
|
@@ -151,7 +178,6 @@ module Aws::AppSync
|
|
151
178
|
def message
|
152
179
|
@message || @data[:message]
|
153
180
|
end
|
154
|
-
|
155
181
|
end
|
156
182
|
|
157
183
|
class NotFoundException < ServiceError
|
@@ -167,7 +193,6 @@ module Aws::AppSync
|
|
167
193
|
def message
|
168
194
|
@message || @data[:message]
|
169
195
|
end
|
170
|
-
|
171
196
|
end
|
172
197
|
|
173
198
|
class UnauthorizedException < ServiceError
|
@@ -183,7 +208,6 @@ module Aws::AppSync
|
|
183
208
|
def message
|
184
209
|
@message || @data[:message]
|
185
210
|
end
|
186
|
-
|
187
211
|
end
|
188
212
|
|
189
213
|
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::AppSync
|
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:
|
@@ -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
|
|
@@ -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
|
|
@@ -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
|
|
@@ -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
|
|
@@ -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.28.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-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 - AWSAppSync
|