aws-sdk-appsync 1.70.0 → 1.71.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/sig/client.rbs ADDED
@@ -0,0 +1,1093 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module AppSync
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#initialize-instance_method
14
+ def self.new: (
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?active_endpoint_cache: bool,
19
+ ?adaptive_retry_wait_to_fill: bool,
20
+ ?client_side_monitoring: bool,
21
+ ?client_side_monitoring_client_id: String,
22
+ ?client_side_monitoring_host: String,
23
+ ?client_side_monitoring_port: Integer,
24
+ ?client_side_monitoring_publisher: untyped,
25
+ ?convert_params: bool,
26
+ ?correct_clock_skew: bool,
27
+ ?defaults_mode: String,
28
+ ?disable_host_prefix_injection: bool,
29
+ ?disable_request_compression: bool,
30
+ ?endpoint: String,
31
+ ?endpoint_cache_max_entries: Integer,
32
+ ?endpoint_cache_max_threads: Integer,
33
+ ?endpoint_cache_poll_interval: Integer,
34
+ ?endpoint_discovery: bool,
35
+ ?ignore_configured_endpoint_urls: bool,
36
+ ?log_formatter: untyped,
37
+ ?log_level: Symbol,
38
+ ?logger: untyped,
39
+ ?max_attempts: Integer,
40
+ ?profile: String,
41
+ ?request_min_compression_size_bytes: Integer,
42
+ ?retry_backoff: Proc,
43
+ ?retry_base_delay: Float,
44
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
45
+ ?retry_limit: Integer,
46
+ ?retry_max_delay: Integer,
47
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
48
+ ?sdk_ua_app_id: String,
49
+ ?secret_access_key: String,
50
+ ?session_token: String,
51
+ ?stub_responses: untyped,
52
+ ?token_provider: untyped,
53
+ ?use_dualstack_endpoint: bool,
54
+ ?use_fips_endpoint: bool,
55
+ ?validate_params: bool,
56
+ ?endpoint_provider: untyped,
57
+ ?http_proxy: String,
58
+ ?http_open_timeout: (Float | Integer),
59
+ ?http_read_timeout: (Float | Integer),
60
+ ?http_idle_timeout: (Float | Integer),
61
+ ?http_continue_timeout: (Float | Integer),
62
+ ?ssl_timeout: (Float | Integer | nil),
63
+ ?http_wire_trace: bool,
64
+ ?ssl_verify_peer: bool,
65
+ ?ssl_ca_bundle: String,
66
+ ?ssl_ca_directory: String,
67
+ ?ssl_ca_store: String,
68
+ ?on_chunk_received: Proc,
69
+ ?on_chunk_sent: Proc,
70
+ ?raise_response_errors: bool
71
+ ) -> instance
72
+ | (?Hash[Symbol, untyped]) -> instance
73
+
74
+
75
+ interface _AssociateApiResponseSuccess
76
+ include ::Seahorse::Client::_ResponseSuccess[Types::AssociateApiResponse]
77
+ def api_association: () -> Types::ApiAssociation
78
+ end
79
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#associate_api-instance_method
80
+ def associate_api: (
81
+ domain_name: ::String,
82
+ api_id: ::String
83
+ ) -> _AssociateApiResponseSuccess
84
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateApiResponseSuccess
85
+
86
+ interface _AssociateMergedGraphqlApiResponseSuccess
87
+ include ::Seahorse::Client::_ResponseSuccess[Types::AssociateMergedGraphqlApiResponse]
88
+ def source_api_association: () -> Types::SourceApiAssociation
89
+ end
90
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#associate_merged_graphql_api-instance_method
91
+ def associate_merged_graphql_api: (
92
+ source_api_identifier: ::String,
93
+ merged_api_identifier: ::String,
94
+ ?description: ::String,
95
+ ?source_api_association_config: {
96
+ merge_type: ("MANUAL_MERGE" | "AUTO_MERGE")?
97
+ }
98
+ ) -> _AssociateMergedGraphqlApiResponseSuccess
99
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateMergedGraphqlApiResponseSuccess
100
+
101
+ interface _AssociateSourceGraphqlApiResponseSuccess
102
+ include ::Seahorse::Client::_ResponseSuccess[Types::AssociateSourceGraphqlApiResponse]
103
+ def source_api_association: () -> Types::SourceApiAssociation
104
+ end
105
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#associate_source_graphql_api-instance_method
106
+ def associate_source_graphql_api: (
107
+ merged_api_identifier: ::String,
108
+ source_api_identifier: ::String,
109
+ ?description: ::String,
110
+ ?source_api_association_config: {
111
+ merge_type: ("MANUAL_MERGE" | "AUTO_MERGE")?
112
+ }
113
+ ) -> _AssociateSourceGraphqlApiResponseSuccess
114
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateSourceGraphqlApiResponseSuccess
115
+
116
+ interface _CreateApiCacheResponseSuccess
117
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateApiCacheResponse]
118
+ def api_cache: () -> Types::ApiCache
119
+ end
120
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#create_api_cache-instance_method
121
+ def create_api_cache: (
122
+ api_id: ::String,
123
+ ttl: ::Integer,
124
+ ?transit_encryption_enabled: bool,
125
+ ?at_rest_encryption_enabled: bool,
126
+ api_caching_behavior: ("FULL_REQUEST_CACHING" | "PER_RESOLVER_CACHING"),
127
+ type: ("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")
128
+ ) -> _CreateApiCacheResponseSuccess
129
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateApiCacheResponseSuccess
130
+
131
+ interface _CreateApiKeyResponseSuccess
132
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateApiKeyResponse]
133
+ def api_key: () -> Types::ApiKey
134
+ end
135
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#create_api_key-instance_method
136
+ def create_api_key: (
137
+ api_id: ::String,
138
+ ?description: ::String,
139
+ ?expires: ::Integer
140
+ ) -> _CreateApiKeyResponseSuccess
141
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateApiKeyResponseSuccess
142
+
143
+ interface _CreateDataSourceResponseSuccess
144
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateDataSourceResponse]
145
+ def data_source: () -> Types::DataSource
146
+ end
147
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#create_data_source-instance_method
148
+ def create_data_source: (
149
+ api_id: ::String,
150
+ name: ::String,
151
+ ?description: ::String,
152
+ type: ("AWS_LAMBDA" | "AMAZON_DYNAMODB" | "AMAZON_ELASTICSEARCH" | "NONE" | "HTTP" | "RELATIONAL_DATABASE" | "AMAZON_OPENSEARCH_SERVICE" | "AMAZON_EVENTBRIDGE"),
153
+ ?service_role_arn: ::String,
154
+ ?dynamodb_config: {
155
+ table_name: ::String,
156
+ aws_region: ::String,
157
+ use_caller_credentials: bool?,
158
+ delta_sync_config: {
159
+ base_table_ttl: ::Integer?,
160
+ delta_sync_table_name: ::String?,
161
+ delta_sync_table_ttl: ::Integer?
162
+ }?,
163
+ versioned: bool?
164
+ },
165
+ ?lambda_config: {
166
+ lambda_function_arn: ::String
167
+ },
168
+ ?elasticsearch_config: {
169
+ endpoint: ::String,
170
+ aws_region: ::String
171
+ },
172
+ ?open_search_service_config: {
173
+ endpoint: ::String,
174
+ aws_region: ::String
175
+ },
176
+ ?http_config: {
177
+ endpoint: ::String?,
178
+ authorization_config: {
179
+ authorization_type: ("AWS_IAM"),
180
+ aws_iam_config: {
181
+ signing_region: ::String?,
182
+ signing_service_name: ::String?
183
+ }?
184
+ }?
185
+ },
186
+ ?relational_database_config: {
187
+ relational_database_source_type: ("RDS_HTTP_ENDPOINT")?,
188
+ rds_http_endpoint_config: {
189
+ aws_region: ::String?,
190
+ db_cluster_identifier: ::String?,
191
+ database_name: ::String?,
192
+ schema: ::String?,
193
+ aws_secret_store_arn: ::String?
194
+ }?
195
+ },
196
+ ?event_bridge_config: {
197
+ event_bus_arn: ::String
198
+ }
199
+ ) -> _CreateDataSourceResponseSuccess
200
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDataSourceResponseSuccess
201
+
202
+ interface _CreateDomainNameResponseSuccess
203
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateDomainNameResponse]
204
+ def domain_name_config: () -> Types::DomainNameConfig
205
+ end
206
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#create_domain_name-instance_method
207
+ def create_domain_name: (
208
+ domain_name: ::String,
209
+ certificate_arn: ::String,
210
+ ?description: ::String
211
+ ) -> _CreateDomainNameResponseSuccess
212
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDomainNameResponseSuccess
213
+
214
+ interface _CreateFunctionResponseSuccess
215
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateFunctionResponse]
216
+ def function_configuration: () -> Types::FunctionConfiguration
217
+ end
218
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#create_function-instance_method
219
+ def create_function: (
220
+ api_id: ::String,
221
+ name: ::String,
222
+ ?description: ::String,
223
+ data_source_name: ::String,
224
+ ?request_mapping_template: ::String,
225
+ ?response_mapping_template: ::String,
226
+ ?function_version: ::String,
227
+ ?sync_config: {
228
+ conflict_handler: ("OPTIMISTIC_CONCURRENCY" | "LAMBDA" | "AUTOMERGE" | "NONE")?,
229
+ conflict_detection: ("VERSION" | "NONE")?,
230
+ lambda_conflict_handler_config: {
231
+ lambda_conflict_handler_arn: ::String?
232
+ }?
233
+ },
234
+ ?max_batch_size: ::Integer,
235
+ ?runtime: {
236
+ name: ("APPSYNC_JS"),
237
+ runtime_version: ::String
238
+ },
239
+ ?code: ::String
240
+ ) -> _CreateFunctionResponseSuccess
241
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateFunctionResponseSuccess
242
+
243
+ interface _CreateGraphqlApiResponseSuccess
244
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateGraphqlApiResponse]
245
+ def graphql_api: () -> Types::GraphqlApi
246
+ end
247
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#create_graphql_api-instance_method
248
+ def create_graphql_api: (
249
+ name: ::String,
250
+ ?log_config: {
251
+ field_log_level: ("NONE" | "ERROR" | "ALL"),
252
+ cloud_watch_logs_role_arn: ::String,
253
+ exclude_verbose_content: bool?
254
+ },
255
+ authentication_type: ("API_KEY" | "AWS_IAM" | "AMAZON_COGNITO_USER_POOLS" | "OPENID_CONNECT" | "AWS_LAMBDA"),
256
+ ?user_pool_config: {
257
+ user_pool_id: ::String,
258
+ aws_region: ::String,
259
+ default_action: ("ALLOW" | "DENY"),
260
+ app_id_client_regex: ::String?
261
+ },
262
+ ?open_id_connect_config: {
263
+ issuer: ::String,
264
+ client_id: ::String?,
265
+ iat_ttl: ::Integer?,
266
+ auth_ttl: ::Integer?
267
+ },
268
+ ?tags: Hash[::String, ::String],
269
+ ?additional_authentication_providers: Array[
270
+ {
271
+ authentication_type: ("API_KEY" | "AWS_IAM" | "AMAZON_COGNITO_USER_POOLS" | "OPENID_CONNECT" | "AWS_LAMBDA")?,
272
+ open_id_connect_config: {
273
+ issuer: ::String,
274
+ client_id: ::String?,
275
+ iat_ttl: ::Integer?,
276
+ auth_ttl: ::Integer?
277
+ }?,
278
+ user_pool_config: {
279
+ user_pool_id: ::String,
280
+ aws_region: ::String,
281
+ app_id_client_regex: ::String?
282
+ }?,
283
+ lambda_authorizer_config: {
284
+ authorizer_result_ttl_in_seconds: ::Integer?,
285
+ authorizer_uri: ::String,
286
+ identity_validation_expression: ::String?
287
+ }?
288
+ },
289
+ ],
290
+ ?xray_enabled: bool,
291
+ ?lambda_authorizer_config: {
292
+ authorizer_result_ttl_in_seconds: ::Integer?,
293
+ authorizer_uri: ::String,
294
+ identity_validation_expression: ::String?
295
+ },
296
+ ?visibility: ("GLOBAL" | "PRIVATE"),
297
+ ?api_type: ("GRAPHQL" | "MERGED"),
298
+ ?merged_api_execution_role_arn: ::String,
299
+ ?owner_contact: ::String,
300
+ ?introspection_config: ("ENABLED" | "DISABLED"),
301
+ ?query_depth_limit: ::Integer,
302
+ ?resolver_count_limit: ::Integer
303
+ ) -> _CreateGraphqlApiResponseSuccess
304
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateGraphqlApiResponseSuccess
305
+
306
+ interface _CreateResolverResponseSuccess
307
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateResolverResponse]
308
+ def resolver: () -> Types::Resolver
309
+ end
310
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#create_resolver-instance_method
311
+ def create_resolver: (
312
+ api_id: ::String,
313
+ type_name: ::String,
314
+ field_name: ::String,
315
+ ?data_source_name: ::String,
316
+ ?request_mapping_template: ::String,
317
+ ?response_mapping_template: ::String,
318
+ ?kind: ("UNIT" | "PIPELINE"),
319
+ ?pipeline_config: {
320
+ functions: Array[::String]?
321
+ },
322
+ ?sync_config: {
323
+ conflict_handler: ("OPTIMISTIC_CONCURRENCY" | "LAMBDA" | "AUTOMERGE" | "NONE")?,
324
+ conflict_detection: ("VERSION" | "NONE")?,
325
+ lambda_conflict_handler_config: {
326
+ lambda_conflict_handler_arn: ::String?
327
+ }?
328
+ },
329
+ ?caching_config: {
330
+ ttl: ::Integer,
331
+ caching_keys: Array[::String]?
332
+ },
333
+ ?max_batch_size: ::Integer,
334
+ ?runtime: {
335
+ name: ("APPSYNC_JS"),
336
+ runtime_version: ::String
337
+ },
338
+ ?code: ::String
339
+ ) -> _CreateResolverResponseSuccess
340
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateResolverResponseSuccess
341
+
342
+ interface _CreateTypeResponseSuccess
343
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateTypeResponse]
344
+ def type: () -> Types::Type
345
+ end
346
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#create_type-instance_method
347
+ def create_type: (
348
+ api_id: ::String,
349
+ definition: ::String,
350
+ format: ("SDL" | "JSON")
351
+ ) -> _CreateTypeResponseSuccess
352
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateTypeResponseSuccess
353
+
354
+ interface _DeleteApiCacheResponseSuccess
355
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteApiCacheResponse]
356
+ end
357
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#delete_api_cache-instance_method
358
+ def delete_api_cache: (
359
+ api_id: ::String
360
+ ) -> _DeleteApiCacheResponseSuccess
361
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteApiCacheResponseSuccess
362
+
363
+ interface _DeleteApiKeyResponseSuccess
364
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteApiKeyResponse]
365
+ end
366
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#delete_api_key-instance_method
367
+ def delete_api_key: (
368
+ api_id: ::String,
369
+ id: ::String
370
+ ) -> _DeleteApiKeyResponseSuccess
371
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteApiKeyResponseSuccess
372
+
373
+ interface _DeleteDataSourceResponseSuccess
374
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDataSourceResponse]
375
+ end
376
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#delete_data_source-instance_method
377
+ def delete_data_source: (
378
+ api_id: ::String,
379
+ name: ::String
380
+ ) -> _DeleteDataSourceResponseSuccess
381
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDataSourceResponseSuccess
382
+
383
+ interface _DeleteDomainNameResponseSuccess
384
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDomainNameResponse]
385
+ end
386
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#delete_domain_name-instance_method
387
+ def delete_domain_name: (
388
+ domain_name: ::String
389
+ ) -> _DeleteDomainNameResponseSuccess
390
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDomainNameResponseSuccess
391
+
392
+ interface _DeleteFunctionResponseSuccess
393
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteFunctionResponse]
394
+ end
395
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#delete_function-instance_method
396
+ def delete_function: (
397
+ api_id: ::String,
398
+ function_id: ::String
399
+ ) -> _DeleteFunctionResponseSuccess
400
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteFunctionResponseSuccess
401
+
402
+ interface _DeleteGraphqlApiResponseSuccess
403
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteGraphqlApiResponse]
404
+ end
405
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#delete_graphql_api-instance_method
406
+ def delete_graphql_api: (
407
+ api_id: ::String
408
+ ) -> _DeleteGraphqlApiResponseSuccess
409
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteGraphqlApiResponseSuccess
410
+
411
+ interface _DeleteResolverResponseSuccess
412
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteResolverResponse]
413
+ end
414
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#delete_resolver-instance_method
415
+ def delete_resolver: (
416
+ api_id: ::String,
417
+ type_name: ::String,
418
+ field_name: ::String
419
+ ) -> _DeleteResolverResponseSuccess
420
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteResolverResponseSuccess
421
+
422
+ interface _DeleteTypeResponseSuccess
423
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteTypeResponse]
424
+ end
425
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#delete_type-instance_method
426
+ def delete_type: (
427
+ api_id: ::String,
428
+ type_name: ::String
429
+ ) -> _DeleteTypeResponseSuccess
430
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteTypeResponseSuccess
431
+
432
+ interface _DisassociateApiResponseSuccess
433
+ include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateApiResponse]
434
+ end
435
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#disassociate_api-instance_method
436
+ def disassociate_api: (
437
+ domain_name: ::String
438
+ ) -> _DisassociateApiResponseSuccess
439
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateApiResponseSuccess
440
+
441
+ interface _DisassociateMergedGraphqlApiResponseSuccess
442
+ include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateMergedGraphqlApiResponse]
443
+ def source_api_association_status: () -> ("MERGE_SCHEDULED" | "MERGE_FAILED" | "MERGE_SUCCESS" | "MERGE_IN_PROGRESS" | "AUTO_MERGE_SCHEDULE_FAILED" | "DELETION_SCHEDULED" | "DELETION_IN_PROGRESS" | "DELETION_FAILED")
444
+ end
445
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#disassociate_merged_graphql_api-instance_method
446
+ def disassociate_merged_graphql_api: (
447
+ source_api_identifier: ::String,
448
+ association_id: ::String
449
+ ) -> _DisassociateMergedGraphqlApiResponseSuccess
450
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateMergedGraphqlApiResponseSuccess
451
+
452
+ interface _DisassociateSourceGraphqlApiResponseSuccess
453
+ include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateSourceGraphqlApiResponse]
454
+ def source_api_association_status: () -> ("MERGE_SCHEDULED" | "MERGE_FAILED" | "MERGE_SUCCESS" | "MERGE_IN_PROGRESS" | "AUTO_MERGE_SCHEDULE_FAILED" | "DELETION_SCHEDULED" | "DELETION_IN_PROGRESS" | "DELETION_FAILED")
455
+ end
456
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#disassociate_source_graphql_api-instance_method
457
+ def disassociate_source_graphql_api: (
458
+ merged_api_identifier: ::String,
459
+ association_id: ::String
460
+ ) -> _DisassociateSourceGraphqlApiResponseSuccess
461
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateSourceGraphqlApiResponseSuccess
462
+
463
+ interface _EvaluateCodeResponseSuccess
464
+ include ::Seahorse::Client::_ResponseSuccess[Types::EvaluateCodeResponse]
465
+ def evaluation_result: () -> ::String
466
+ def logs: () -> ::Array[::String]
467
+ end
468
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#evaluate_code-instance_method
469
+ def evaluate_code: (
470
+ runtime: {
471
+ name: ("APPSYNC_JS"),
472
+ runtime_version: ::String
473
+ },
474
+ code: ::String,
475
+ context: ::String,
476
+ ?function: ::String
477
+ ) -> _EvaluateCodeResponseSuccess
478
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _EvaluateCodeResponseSuccess
479
+
480
+ interface _EvaluateMappingTemplateResponseSuccess
481
+ include ::Seahorse::Client::_ResponseSuccess[Types::EvaluateMappingTemplateResponse]
482
+ def evaluation_result: () -> ::String
483
+ def logs: () -> ::Array[::String]
484
+ end
485
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#evaluate_mapping_template-instance_method
486
+ def evaluate_mapping_template: (
487
+ template: ::String,
488
+ context: ::String
489
+ ) -> _EvaluateMappingTemplateResponseSuccess
490
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _EvaluateMappingTemplateResponseSuccess
491
+
492
+ interface _FlushApiCacheResponseSuccess
493
+ include ::Seahorse::Client::_ResponseSuccess[Types::FlushApiCacheResponse]
494
+ end
495
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#flush_api_cache-instance_method
496
+ def flush_api_cache: (
497
+ api_id: ::String
498
+ ) -> _FlushApiCacheResponseSuccess
499
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _FlushApiCacheResponseSuccess
500
+
501
+ interface _GetApiAssociationResponseSuccess
502
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetApiAssociationResponse]
503
+ def api_association: () -> Types::ApiAssociation
504
+ end
505
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#get_api_association-instance_method
506
+ def get_api_association: (
507
+ domain_name: ::String
508
+ ) -> _GetApiAssociationResponseSuccess
509
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetApiAssociationResponseSuccess
510
+
511
+ interface _GetApiCacheResponseSuccess
512
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetApiCacheResponse]
513
+ def api_cache: () -> Types::ApiCache
514
+ end
515
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#get_api_cache-instance_method
516
+ def get_api_cache: (
517
+ api_id: ::String
518
+ ) -> _GetApiCacheResponseSuccess
519
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetApiCacheResponseSuccess
520
+
521
+ interface _GetDataSourceResponseSuccess
522
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetDataSourceResponse]
523
+ def data_source: () -> Types::DataSource
524
+ end
525
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#get_data_source-instance_method
526
+ def get_data_source: (
527
+ api_id: ::String,
528
+ name: ::String
529
+ ) -> _GetDataSourceResponseSuccess
530
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDataSourceResponseSuccess
531
+
532
+ interface _GetDataSourceIntrospectionResponseSuccess
533
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetDataSourceIntrospectionResponse]
534
+ def introspection_id: () -> ::String
535
+ def introspection_status: () -> ("PROCESSING" | "FAILED" | "SUCCESS")
536
+ def introspection_status_detail: () -> ::String
537
+ def introspection_result: () -> Types::DataSourceIntrospectionResult
538
+ end
539
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#get_data_source_introspection-instance_method
540
+ def get_data_source_introspection: (
541
+ introspection_id: ::String,
542
+ ?include_models_sdl: bool,
543
+ ?next_token: ::String,
544
+ ?max_results: ::Integer
545
+ ) -> _GetDataSourceIntrospectionResponseSuccess
546
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDataSourceIntrospectionResponseSuccess
547
+
548
+ interface _GetDomainNameResponseSuccess
549
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetDomainNameResponse]
550
+ def domain_name_config: () -> Types::DomainNameConfig
551
+ end
552
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#get_domain_name-instance_method
553
+ def get_domain_name: (
554
+ domain_name: ::String
555
+ ) -> _GetDomainNameResponseSuccess
556
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDomainNameResponseSuccess
557
+
558
+ interface _GetFunctionResponseSuccess
559
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetFunctionResponse]
560
+ def function_configuration: () -> Types::FunctionConfiguration
561
+ end
562
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#get_function-instance_method
563
+ def get_function: (
564
+ api_id: ::String,
565
+ function_id: ::String
566
+ ) -> _GetFunctionResponseSuccess
567
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetFunctionResponseSuccess
568
+
569
+ interface _GetGraphqlApiResponseSuccess
570
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetGraphqlApiResponse]
571
+ def graphql_api: () -> Types::GraphqlApi
572
+ end
573
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#get_graphql_api-instance_method
574
+ def get_graphql_api: (
575
+ api_id: ::String
576
+ ) -> _GetGraphqlApiResponseSuccess
577
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetGraphqlApiResponseSuccess
578
+
579
+ interface _GetIntrospectionSchemaResponseSuccess
580
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetIntrospectionSchemaResponse]
581
+ def schema: () -> ::String
582
+ end
583
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#get_introspection_schema-instance_method
584
+ def get_introspection_schema: (
585
+ api_id: ::String,
586
+ format: ("SDL" | "JSON"),
587
+ ?include_directives: bool
588
+ ) -> _GetIntrospectionSchemaResponseSuccess
589
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetIntrospectionSchemaResponseSuccess
590
+
591
+ interface _GetResolverResponseSuccess
592
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetResolverResponse]
593
+ def resolver: () -> Types::Resolver
594
+ end
595
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#get_resolver-instance_method
596
+ def get_resolver: (
597
+ api_id: ::String,
598
+ type_name: ::String,
599
+ field_name: ::String
600
+ ) -> _GetResolverResponseSuccess
601
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetResolverResponseSuccess
602
+
603
+ interface _GetSchemaCreationStatusResponseSuccess
604
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetSchemaCreationStatusResponse]
605
+ def status: () -> ("PROCESSING" | "ACTIVE" | "DELETING" | "FAILED" | "SUCCESS" | "NOT_APPLICABLE")
606
+ def details: () -> ::String
607
+ end
608
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#get_schema_creation_status-instance_method
609
+ def get_schema_creation_status: (
610
+ api_id: ::String
611
+ ) -> _GetSchemaCreationStatusResponseSuccess
612
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSchemaCreationStatusResponseSuccess
613
+
614
+ interface _GetSourceApiAssociationResponseSuccess
615
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetSourceApiAssociationResponse]
616
+ def source_api_association: () -> Types::SourceApiAssociation
617
+ end
618
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#get_source_api_association-instance_method
619
+ def get_source_api_association: (
620
+ merged_api_identifier: ::String,
621
+ association_id: ::String
622
+ ) -> _GetSourceApiAssociationResponseSuccess
623
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSourceApiAssociationResponseSuccess
624
+
625
+ interface _GetTypeResponseSuccess
626
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetTypeResponse]
627
+ def type: () -> Types::Type
628
+ end
629
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#get_type-instance_method
630
+ def get_type: (
631
+ api_id: ::String,
632
+ type_name: ::String,
633
+ format: ("SDL" | "JSON")
634
+ ) -> _GetTypeResponseSuccess
635
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTypeResponseSuccess
636
+
637
+ interface _ListApiKeysResponseSuccess
638
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListApiKeysResponse]
639
+ def api_keys: () -> ::Array[Types::ApiKey]
640
+ def next_token: () -> ::String
641
+ end
642
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#list_api_keys-instance_method
643
+ def list_api_keys: (
644
+ api_id: ::String,
645
+ ?next_token: ::String,
646
+ ?max_results: ::Integer
647
+ ) -> _ListApiKeysResponseSuccess
648
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListApiKeysResponseSuccess
649
+
650
+ interface _ListDataSourcesResponseSuccess
651
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDataSourcesResponse]
652
+ def data_sources: () -> ::Array[Types::DataSource]
653
+ def next_token: () -> ::String
654
+ end
655
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#list_data_sources-instance_method
656
+ def list_data_sources: (
657
+ api_id: ::String,
658
+ ?next_token: ::String,
659
+ ?max_results: ::Integer
660
+ ) -> _ListDataSourcesResponseSuccess
661
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDataSourcesResponseSuccess
662
+
663
+ interface _ListDomainNamesResponseSuccess
664
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDomainNamesResponse]
665
+ def domain_name_configs: () -> ::Array[Types::DomainNameConfig]
666
+ def next_token: () -> ::String
667
+ end
668
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#list_domain_names-instance_method
669
+ def list_domain_names: (
670
+ ?next_token: ::String,
671
+ ?max_results: ::Integer
672
+ ) -> _ListDomainNamesResponseSuccess
673
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDomainNamesResponseSuccess
674
+
675
+ interface _ListFunctionsResponseSuccess
676
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListFunctionsResponse]
677
+ def functions: () -> ::Array[Types::FunctionConfiguration]
678
+ def next_token: () -> ::String
679
+ end
680
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#list_functions-instance_method
681
+ def list_functions: (
682
+ api_id: ::String,
683
+ ?next_token: ::String,
684
+ ?max_results: ::Integer
685
+ ) -> _ListFunctionsResponseSuccess
686
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListFunctionsResponseSuccess
687
+
688
+ interface _ListGraphqlApisResponseSuccess
689
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListGraphqlApisResponse]
690
+ def graphql_apis: () -> ::Array[Types::GraphqlApi]
691
+ def next_token: () -> ::String
692
+ end
693
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#list_graphql_apis-instance_method
694
+ def list_graphql_apis: (
695
+ ?next_token: ::String,
696
+ ?max_results: ::Integer,
697
+ ?api_type: ("GRAPHQL" | "MERGED"),
698
+ ?owner: ("CURRENT_ACCOUNT" | "OTHER_ACCOUNTS")
699
+ ) -> _ListGraphqlApisResponseSuccess
700
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListGraphqlApisResponseSuccess
701
+
702
+ interface _ListResolversResponseSuccess
703
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListResolversResponse]
704
+ def resolvers: () -> ::Array[Types::Resolver]
705
+ def next_token: () -> ::String
706
+ end
707
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#list_resolvers-instance_method
708
+ def list_resolvers: (
709
+ api_id: ::String,
710
+ type_name: ::String,
711
+ ?next_token: ::String,
712
+ ?max_results: ::Integer
713
+ ) -> _ListResolversResponseSuccess
714
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListResolversResponseSuccess
715
+
716
+ interface _ListResolversByFunctionResponseSuccess
717
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListResolversByFunctionResponse]
718
+ def resolvers: () -> ::Array[Types::Resolver]
719
+ def next_token: () -> ::String
720
+ end
721
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#list_resolvers_by_function-instance_method
722
+ def list_resolvers_by_function: (
723
+ api_id: ::String,
724
+ function_id: ::String,
725
+ ?next_token: ::String,
726
+ ?max_results: ::Integer
727
+ ) -> _ListResolversByFunctionResponseSuccess
728
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListResolversByFunctionResponseSuccess
729
+
730
+ interface _ListSourceApiAssociationsResponseSuccess
731
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListSourceApiAssociationsResponse]
732
+ def source_api_association_summaries: () -> ::Array[Types::SourceApiAssociationSummary]
733
+ def next_token: () -> ::String
734
+ end
735
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#list_source_api_associations-instance_method
736
+ def list_source_api_associations: (
737
+ api_id: ::String,
738
+ ?next_token: ::String,
739
+ ?max_results: ::Integer
740
+ ) -> _ListSourceApiAssociationsResponseSuccess
741
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSourceApiAssociationsResponseSuccess
742
+
743
+ interface _ListTagsForResourceResponseSuccess
744
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
745
+ def tags: () -> ::Hash[::String, ::String]
746
+ end
747
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#list_tags_for_resource-instance_method
748
+ def list_tags_for_resource: (
749
+ resource_arn: ::String
750
+ ) -> _ListTagsForResourceResponseSuccess
751
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
752
+
753
+ interface _ListTypesResponseSuccess
754
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTypesResponse]
755
+ def types: () -> ::Array[Types::Type]
756
+ def next_token: () -> ::String
757
+ end
758
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#list_types-instance_method
759
+ def list_types: (
760
+ api_id: ::String,
761
+ format: ("SDL" | "JSON"),
762
+ ?next_token: ::String,
763
+ ?max_results: ::Integer
764
+ ) -> _ListTypesResponseSuccess
765
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTypesResponseSuccess
766
+
767
+ interface _ListTypesByAssociationResponseSuccess
768
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTypesByAssociationResponse]
769
+ def types: () -> ::Array[Types::Type]
770
+ def next_token: () -> ::String
771
+ end
772
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#list_types_by_association-instance_method
773
+ def list_types_by_association: (
774
+ merged_api_identifier: ::String,
775
+ association_id: ::String,
776
+ format: ("SDL" | "JSON"),
777
+ ?next_token: ::String,
778
+ ?max_results: ::Integer
779
+ ) -> _ListTypesByAssociationResponseSuccess
780
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTypesByAssociationResponseSuccess
781
+
782
+ interface _StartDataSourceIntrospectionResponseSuccess
783
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartDataSourceIntrospectionResponse]
784
+ def introspection_id: () -> ::String
785
+ def introspection_status: () -> ("PROCESSING" | "FAILED" | "SUCCESS")
786
+ def introspection_status_detail: () -> ::String
787
+ end
788
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#start_data_source_introspection-instance_method
789
+ def start_data_source_introspection: (
790
+ ?rds_data_api_config: {
791
+ resource_arn: ::String,
792
+ secret_arn: ::String,
793
+ database_name: ::String
794
+ }
795
+ ) -> _StartDataSourceIntrospectionResponseSuccess
796
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartDataSourceIntrospectionResponseSuccess
797
+
798
+ interface _StartSchemaCreationResponseSuccess
799
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartSchemaCreationResponse]
800
+ def status: () -> ("PROCESSING" | "ACTIVE" | "DELETING" | "FAILED" | "SUCCESS" | "NOT_APPLICABLE")
801
+ end
802
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#start_schema_creation-instance_method
803
+ def start_schema_creation: (
804
+ api_id: ::String,
805
+ definition: ::String
806
+ ) -> _StartSchemaCreationResponseSuccess
807
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartSchemaCreationResponseSuccess
808
+
809
+ interface _StartSchemaMergeResponseSuccess
810
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartSchemaMergeResponse]
811
+ def source_api_association_status: () -> ("MERGE_SCHEDULED" | "MERGE_FAILED" | "MERGE_SUCCESS" | "MERGE_IN_PROGRESS" | "AUTO_MERGE_SCHEDULE_FAILED" | "DELETION_SCHEDULED" | "DELETION_IN_PROGRESS" | "DELETION_FAILED")
812
+ end
813
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#start_schema_merge-instance_method
814
+ def start_schema_merge: (
815
+ association_id: ::String,
816
+ merged_api_identifier: ::String
817
+ ) -> _StartSchemaMergeResponseSuccess
818
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartSchemaMergeResponseSuccess
819
+
820
+ interface _TagResourceResponseSuccess
821
+ include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
822
+ end
823
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#tag_resource-instance_method
824
+ def tag_resource: (
825
+ resource_arn: ::String,
826
+ tags: Hash[::String, ::String]
827
+ ) -> _TagResourceResponseSuccess
828
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
829
+
830
+ interface _UntagResourceResponseSuccess
831
+ include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
832
+ end
833
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#untag_resource-instance_method
834
+ def untag_resource: (
835
+ resource_arn: ::String,
836
+ tag_keys: Array[::String]
837
+ ) -> _UntagResourceResponseSuccess
838
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
839
+
840
+ interface _UpdateApiCacheResponseSuccess
841
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateApiCacheResponse]
842
+ def api_cache: () -> Types::ApiCache
843
+ end
844
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#update_api_cache-instance_method
845
+ def update_api_cache: (
846
+ api_id: ::String,
847
+ ttl: ::Integer,
848
+ api_caching_behavior: ("FULL_REQUEST_CACHING" | "PER_RESOLVER_CACHING"),
849
+ type: ("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")
850
+ ) -> _UpdateApiCacheResponseSuccess
851
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateApiCacheResponseSuccess
852
+
853
+ interface _UpdateApiKeyResponseSuccess
854
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateApiKeyResponse]
855
+ def api_key: () -> Types::ApiKey
856
+ end
857
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#update_api_key-instance_method
858
+ def update_api_key: (
859
+ api_id: ::String,
860
+ id: ::String,
861
+ ?description: ::String,
862
+ ?expires: ::Integer
863
+ ) -> _UpdateApiKeyResponseSuccess
864
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateApiKeyResponseSuccess
865
+
866
+ interface _UpdateDataSourceResponseSuccess
867
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDataSourceResponse]
868
+ def data_source: () -> Types::DataSource
869
+ end
870
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#update_data_source-instance_method
871
+ def update_data_source: (
872
+ api_id: ::String,
873
+ name: ::String,
874
+ ?description: ::String,
875
+ type: ("AWS_LAMBDA" | "AMAZON_DYNAMODB" | "AMAZON_ELASTICSEARCH" | "NONE" | "HTTP" | "RELATIONAL_DATABASE" | "AMAZON_OPENSEARCH_SERVICE" | "AMAZON_EVENTBRIDGE"),
876
+ ?service_role_arn: ::String,
877
+ ?dynamodb_config: {
878
+ table_name: ::String,
879
+ aws_region: ::String,
880
+ use_caller_credentials: bool?,
881
+ delta_sync_config: {
882
+ base_table_ttl: ::Integer?,
883
+ delta_sync_table_name: ::String?,
884
+ delta_sync_table_ttl: ::Integer?
885
+ }?,
886
+ versioned: bool?
887
+ },
888
+ ?lambda_config: {
889
+ lambda_function_arn: ::String
890
+ },
891
+ ?elasticsearch_config: {
892
+ endpoint: ::String,
893
+ aws_region: ::String
894
+ },
895
+ ?open_search_service_config: {
896
+ endpoint: ::String,
897
+ aws_region: ::String
898
+ },
899
+ ?http_config: {
900
+ endpoint: ::String?,
901
+ authorization_config: {
902
+ authorization_type: ("AWS_IAM"),
903
+ aws_iam_config: {
904
+ signing_region: ::String?,
905
+ signing_service_name: ::String?
906
+ }?
907
+ }?
908
+ },
909
+ ?relational_database_config: {
910
+ relational_database_source_type: ("RDS_HTTP_ENDPOINT")?,
911
+ rds_http_endpoint_config: {
912
+ aws_region: ::String?,
913
+ db_cluster_identifier: ::String?,
914
+ database_name: ::String?,
915
+ schema: ::String?,
916
+ aws_secret_store_arn: ::String?
917
+ }?
918
+ },
919
+ ?event_bridge_config: {
920
+ event_bus_arn: ::String
921
+ }
922
+ ) -> _UpdateDataSourceResponseSuccess
923
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDataSourceResponseSuccess
924
+
925
+ interface _UpdateDomainNameResponseSuccess
926
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDomainNameResponse]
927
+ def domain_name_config: () -> Types::DomainNameConfig
928
+ end
929
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#update_domain_name-instance_method
930
+ def update_domain_name: (
931
+ domain_name: ::String,
932
+ ?description: ::String
933
+ ) -> _UpdateDomainNameResponseSuccess
934
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDomainNameResponseSuccess
935
+
936
+ interface _UpdateFunctionResponseSuccess
937
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateFunctionResponse]
938
+ def function_configuration: () -> Types::FunctionConfiguration
939
+ end
940
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#update_function-instance_method
941
+ def update_function: (
942
+ api_id: ::String,
943
+ name: ::String,
944
+ ?description: ::String,
945
+ function_id: ::String,
946
+ data_source_name: ::String,
947
+ ?request_mapping_template: ::String,
948
+ ?response_mapping_template: ::String,
949
+ ?function_version: ::String,
950
+ ?sync_config: {
951
+ conflict_handler: ("OPTIMISTIC_CONCURRENCY" | "LAMBDA" | "AUTOMERGE" | "NONE")?,
952
+ conflict_detection: ("VERSION" | "NONE")?,
953
+ lambda_conflict_handler_config: {
954
+ lambda_conflict_handler_arn: ::String?
955
+ }?
956
+ },
957
+ ?max_batch_size: ::Integer,
958
+ ?runtime: {
959
+ name: ("APPSYNC_JS"),
960
+ runtime_version: ::String
961
+ },
962
+ ?code: ::String
963
+ ) -> _UpdateFunctionResponseSuccess
964
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateFunctionResponseSuccess
965
+
966
+ interface _UpdateGraphqlApiResponseSuccess
967
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateGraphqlApiResponse]
968
+ def graphql_api: () -> Types::GraphqlApi
969
+ end
970
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#update_graphql_api-instance_method
971
+ def update_graphql_api: (
972
+ api_id: ::String,
973
+ name: ::String,
974
+ ?log_config: {
975
+ field_log_level: ("NONE" | "ERROR" | "ALL"),
976
+ cloud_watch_logs_role_arn: ::String,
977
+ exclude_verbose_content: bool?
978
+ },
979
+ ?authentication_type: ("API_KEY" | "AWS_IAM" | "AMAZON_COGNITO_USER_POOLS" | "OPENID_CONNECT" | "AWS_LAMBDA"),
980
+ ?user_pool_config: {
981
+ user_pool_id: ::String,
982
+ aws_region: ::String,
983
+ default_action: ("ALLOW" | "DENY"),
984
+ app_id_client_regex: ::String?
985
+ },
986
+ ?open_id_connect_config: {
987
+ issuer: ::String,
988
+ client_id: ::String?,
989
+ iat_ttl: ::Integer?,
990
+ auth_ttl: ::Integer?
991
+ },
992
+ ?additional_authentication_providers: Array[
993
+ {
994
+ authentication_type: ("API_KEY" | "AWS_IAM" | "AMAZON_COGNITO_USER_POOLS" | "OPENID_CONNECT" | "AWS_LAMBDA")?,
995
+ open_id_connect_config: {
996
+ issuer: ::String,
997
+ client_id: ::String?,
998
+ iat_ttl: ::Integer?,
999
+ auth_ttl: ::Integer?
1000
+ }?,
1001
+ user_pool_config: {
1002
+ user_pool_id: ::String,
1003
+ aws_region: ::String,
1004
+ app_id_client_regex: ::String?
1005
+ }?,
1006
+ lambda_authorizer_config: {
1007
+ authorizer_result_ttl_in_seconds: ::Integer?,
1008
+ authorizer_uri: ::String,
1009
+ identity_validation_expression: ::String?
1010
+ }?
1011
+ },
1012
+ ],
1013
+ ?xray_enabled: bool,
1014
+ ?lambda_authorizer_config: {
1015
+ authorizer_result_ttl_in_seconds: ::Integer?,
1016
+ authorizer_uri: ::String,
1017
+ identity_validation_expression: ::String?
1018
+ },
1019
+ ?merged_api_execution_role_arn: ::String,
1020
+ ?owner_contact: ::String,
1021
+ ?introspection_config: ("ENABLED" | "DISABLED"),
1022
+ ?query_depth_limit: ::Integer,
1023
+ ?resolver_count_limit: ::Integer
1024
+ ) -> _UpdateGraphqlApiResponseSuccess
1025
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateGraphqlApiResponseSuccess
1026
+
1027
+ interface _UpdateResolverResponseSuccess
1028
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateResolverResponse]
1029
+ def resolver: () -> Types::Resolver
1030
+ end
1031
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#update_resolver-instance_method
1032
+ def update_resolver: (
1033
+ api_id: ::String,
1034
+ type_name: ::String,
1035
+ field_name: ::String,
1036
+ ?data_source_name: ::String,
1037
+ ?request_mapping_template: ::String,
1038
+ ?response_mapping_template: ::String,
1039
+ ?kind: ("UNIT" | "PIPELINE"),
1040
+ ?pipeline_config: {
1041
+ functions: Array[::String]?
1042
+ },
1043
+ ?sync_config: {
1044
+ conflict_handler: ("OPTIMISTIC_CONCURRENCY" | "LAMBDA" | "AUTOMERGE" | "NONE")?,
1045
+ conflict_detection: ("VERSION" | "NONE")?,
1046
+ lambda_conflict_handler_config: {
1047
+ lambda_conflict_handler_arn: ::String?
1048
+ }?
1049
+ },
1050
+ ?caching_config: {
1051
+ ttl: ::Integer,
1052
+ caching_keys: Array[::String]?
1053
+ },
1054
+ ?max_batch_size: ::Integer,
1055
+ ?runtime: {
1056
+ name: ("APPSYNC_JS"),
1057
+ runtime_version: ::String
1058
+ },
1059
+ ?code: ::String
1060
+ ) -> _UpdateResolverResponseSuccess
1061
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateResolverResponseSuccess
1062
+
1063
+ interface _UpdateSourceApiAssociationResponseSuccess
1064
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateSourceApiAssociationResponse]
1065
+ def source_api_association: () -> Types::SourceApiAssociation
1066
+ end
1067
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#update_source_api_association-instance_method
1068
+ def update_source_api_association: (
1069
+ association_id: ::String,
1070
+ merged_api_identifier: ::String,
1071
+ ?description: ::String,
1072
+ ?source_api_association_config: {
1073
+ merge_type: ("MANUAL_MERGE" | "AUTO_MERGE")?
1074
+ }
1075
+ ) -> _UpdateSourceApiAssociationResponseSuccess
1076
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateSourceApiAssociationResponseSuccess
1077
+
1078
+ interface _UpdateTypeResponseSuccess
1079
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateTypeResponse]
1080
+ def type: () -> Types::Type
1081
+ end
1082
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppSync/Client.html#update_type-instance_method
1083
+ def update_type: (
1084
+ api_id: ::String,
1085
+ type_name: ::String,
1086
+ ?definition: ::String,
1087
+ format: ("SDL" | "JSON")
1088
+ ) -> _UpdateTypeResponseSuccess
1089
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateTypeResponseSuccess
1090
+ end
1091
+ end
1092
+ end
1093
+