aws-sdk-appsync 1.22.0 → 1.23.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-appsync.rb +1 -1
- data/lib/aws-sdk-appsync/client.rb +15 -1
- data/lib/aws-sdk-appsync/client_api.rb +3 -0
- data/lib/aws-sdk-appsync/types.rb +29 -3
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f8cad44a4475977b47c8c819a937c1efed89f01f
|
|
4
|
+
data.tar.gz: 410b1b5382cc11ae6a57862aa784c258c8812bb7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: adef0b8f0259ade9b6e69cdfa6a13e991ad47d07561da9b1f942a4e2b3e7d300bacce8c1c41942ddb59a2482790413099ed3005b9c84b2cba6c7d13d5ec6f195
|
|
7
|
+
data.tar.gz: 9641c59ac62f14b677936e62d53cedbe285163743be922c24dd9ee73e49f70649ebd28e9a77ab2700ce9a39872abadc4dfc42a4e4d133a5005515ba3a424f7d2
|
data/lib/aws-sdk-appsync.rb
CHANGED
|
@@ -583,6 +583,10 @@ module Aws::AppSync
|
|
|
583
583
|
# A list of additional authentication providers for the `GraphqlApi`
|
|
584
584
|
# API.
|
|
585
585
|
#
|
|
586
|
+
# @option params [Boolean] :xray_enabled
|
|
587
|
+
# A flag indicating whether to enable X-Ray tracing for the
|
|
588
|
+
# `GraphqlApi`.
|
|
589
|
+
#
|
|
586
590
|
# @return [Types::CreateGraphqlApiResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
587
591
|
#
|
|
588
592
|
# * {Types::CreateGraphqlApiResponse#graphql_api #graphql_api} => Types::GraphqlApi
|
|
@@ -628,6 +632,7 @@ module Aws::AppSync
|
|
|
628
632
|
# },
|
|
629
633
|
# },
|
|
630
634
|
# ],
|
|
635
|
+
# xray_enabled: false,
|
|
631
636
|
# })
|
|
632
637
|
#
|
|
633
638
|
# @example Response structure
|
|
@@ -660,6 +665,7 @@ module Aws::AppSync
|
|
|
660
665
|
# resp.graphql_api.additional_authentication_providers[0].user_pool_config.user_pool_id #=> String
|
|
661
666
|
# resp.graphql_api.additional_authentication_providers[0].user_pool_config.aws_region #=> String
|
|
662
667
|
# resp.graphql_api.additional_authentication_providers[0].user_pool_config.app_id_client_regex #=> String
|
|
668
|
+
# resp.graphql_api.xray_enabled #=> Boolean
|
|
663
669
|
#
|
|
664
670
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/CreateGraphqlApi AWS API Documentation
|
|
665
671
|
#
|
|
@@ -1195,6 +1201,7 @@ module Aws::AppSync
|
|
|
1195
1201
|
# resp.graphql_api.additional_authentication_providers[0].user_pool_config.user_pool_id #=> String
|
|
1196
1202
|
# resp.graphql_api.additional_authentication_providers[0].user_pool_config.aws_region #=> String
|
|
1197
1203
|
# resp.graphql_api.additional_authentication_providers[0].user_pool_config.app_id_client_regex #=> String
|
|
1204
|
+
# resp.graphql_api.xray_enabled #=> Boolean
|
|
1198
1205
|
#
|
|
1199
1206
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/GetGraphqlApi AWS API Documentation
|
|
1200
1207
|
#
|
|
@@ -1578,6 +1585,7 @@ module Aws::AppSync
|
|
|
1578
1585
|
# resp.graphql_apis[0].additional_authentication_providers[0].user_pool_config.user_pool_id #=> String
|
|
1579
1586
|
# resp.graphql_apis[0].additional_authentication_providers[0].user_pool_config.aws_region #=> String
|
|
1580
1587
|
# resp.graphql_apis[0].additional_authentication_providers[0].user_pool_config.app_id_client_regex #=> String
|
|
1588
|
+
# resp.graphql_apis[0].xray_enabled #=> Boolean
|
|
1581
1589
|
# resp.next_token #=> String
|
|
1582
1590
|
#
|
|
1583
1591
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/ListGraphqlApis AWS API Documentation
|
|
@@ -2194,6 +2202,10 @@ module Aws::AppSync
|
|
|
2194
2202
|
# A list of additional authentication providers for the `GraphqlApi`
|
|
2195
2203
|
# API.
|
|
2196
2204
|
#
|
|
2205
|
+
# @option params [Boolean] :xray_enabled
|
|
2206
|
+
# A flag indicating whether to enable X-Ray tracing for the
|
|
2207
|
+
# `GraphqlApi`.
|
|
2208
|
+
#
|
|
2197
2209
|
# @return [Types::UpdateGraphqlApiResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2198
2210
|
#
|
|
2199
2211
|
# * {Types::UpdateGraphqlApiResponse#graphql_api #graphql_api} => Types::GraphqlApi
|
|
@@ -2237,6 +2249,7 @@ module Aws::AppSync
|
|
|
2237
2249
|
# },
|
|
2238
2250
|
# },
|
|
2239
2251
|
# ],
|
|
2252
|
+
# xray_enabled: false,
|
|
2240
2253
|
# })
|
|
2241
2254
|
#
|
|
2242
2255
|
# @example Response structure
|
|
@@ -2269,6 +2282,7 @@ module Aws::AppSync
|
|
|
2269
2282
|
# resp.graphql_api.additional_authentication_providers[0].user_pool_config.user_pool_id #=> String
|
|
2270
2283
|
# resp.graphql_api.additional_authentication_providers[0].user_pool_config.aws_region #=> String
|
|
2271
2284
|
# resp.graphql_api.additional_authentication_providers[0].user_pool_config.app_id_client_regex #=> String
|
|
2285
|
+
# resp.graphql_api.xray_enabled #=> Boolean
|
|
2272
2286
|
#
|
|
2273
2287
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/UpdateGraphqlApi AWS API Documentation
|
|
2274
2288
|
#
|
|
@@ -2434,7 +2448,7 @@ module Aws::AppSync
|
|
|
2434
2448
|
params: params,
|
|
2435
2449
|
config: config)
|
|
2436
2450
|
context[:gem_name] = 'aws-sdk-appsync'
|
|
2437
|
-
context[:gem_version] = '1.
|
|
2451
|
+
context[:gem_version] = '1.23.0'
|
|
2438
2452
|
Seahorse::Client::Request.new(handlers, context)
|
|
2439
2453
|
end
|
|
2440
2454
|
|
|
@@ -282,6 +282,7 @@ module Aws::AppSync
|
|
|
282
282
|
CreateGraphqlApiRequest.add_member(:open_id_connect_config, Shapes::ShapeRef.new(shape: OpenIDConnectConfig, location_name: "openIDConnectConfig"))
|
|
283
283
|
CreateGraphqlApiRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
|
284
284
|
CreateGraphqlApiRequest.add_member(:additional_authentication_providers, Shapes::ShapeRef.new(shape: AdditionalAuthenticationProviders, location_name: "additionalAuthenticationProviders"))
|
|
285
|
+
CreateGraphqlApiRequest.add_member(:xray_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "xrayEnabled"))
|
|
285
286
|
CreateGraphqlApiRequest.struct_class = Types::CreateGraphqlApiRequest
|
|
286
287
|
|
|
287
288
|
CreateGraphqlApiResponse.add_member(:graphql_api, Shapes::ShapeRef.new(shape: GraphqlApi, location_name: "graphqlApi"))
|
|
@@ -472,6 +473,7 @@ module Aws::AppSync
|
|
|
472
473
|
GraphqlApi.add_member(:uris, Shapes::ShapeRef.new(shape: MapOfStringToString, location_name: "uris"))
|
|
473
474
|
GraphqlApi.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
|
474
475
|
GraphqlApi.add_member(:additional_authentication_providers, Shapes::ShapeRef.new(shape: AdditionalAuthenticationProviders, location_name: "additionalAuthenticationProviders"))
|
|
476
|
+
GraphqlApi.add_member(:xray_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "xrayEnabled"))
|
|
475
477
|
GraphqlApi.struct_class = Types::GraphqlApi
|
|
476
478
|
|
|
477
479
|
GraphqlApis.member = Shapes::ShapeRef.new(shape: GraphqlApi)
|
|
@@ -702,6 +704,7 @@ module Aws::AppSync
|
|
|
702
704
|
UpdateGraphqlApiRequest.add_member(:user_pool_config, Shapes::ShapeRef.new(shape: UserPoolConfig, location_name: "userPoolConfig"))
|
|
703
705
|
UpdateGraphqlApiRequest.add_member(:open_id_connect_config, Shapes::ShapeRef.new(shape: OpenIDConnectConfig, location_name: "openIDConnectConfig"))
|
|
704
706
|
UpdateGraphqlApiRequest.add_member(:additional_authentication_providers, Shapes::ShapeRef.new(shape: AdditionalAuthenticationProviders, location_name: "additionalAuthenticationProviders"))
|
|
707
|
+
UpdateGraphqlApiRequest.add_member(:xray_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "xrayEnabled"))
|
|
705
708
|
UpdateGraphqlApiRequest.struct_class = Types::UpdateGraphqlApiRequest
|
|
706
709
|
|
|
707
710
|
UpdateGraphqlApiResponse.add_member(:graphql_api, Shapes::ShapeRef.new(shape: GraphqlApi, location_name: "graphqlApi"))
|
|
@@ -62,6 +62,8 @@ module Aws::AppSync
|
|
|
62
62
|
include Aws::Structure
|
|
63
63
|
end
|
|
64
64
|
|
|
65
|
+
# The `ApiCache` object.
|
|
66
|
+
#
|
|
65
67
|
# @!attribute [rw] ttl
|
|
66
68
|
# TTL in seconds for cache entries.
|
|
67
69
|
#
|
|
@@ -737,6 +739,7 @@ module Aws::AppSync
|
|
|
737
739
|
# },
|
|
738
740
|
# },
|
|
739
741
|
# ],
|
|
742
|
+
# xray_enabled: false,
|
|
740
743
|
# }
|
|
741
744
|
#
|
|
742
745
|
# @!attribute [rw] name
|
|
@@ -769,6 +772,11 @@ module Aws::AppSync
|
|
|
769
772
|
# API.
|
|
770
773
|
# @return [Array<Types::AdditionalAuthenticationProvider>]
|
|
771
774
|
#
|
|
775
|
+
# @!attribute [rw] xray_enabled
|
|
776
|
+
# A flag indicating whether to enable X-Ray tracing for the
|
|
777
|
+
# `GraphqlApi`.
|
|
778
|
+
# @return [Boolean]
|
|
779
|
+
#
|
|
772
780
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/CreateGraphqlApiRequest AWS API Documentation
|
|
773
781
|
#
|
|
774
782
|
class CreateGraphqlApiRequest < Struct.new(
|
|
@@ -778,7 +786,8 @@ module Aws::AppSync
|
|
|
778
786
|
:user_pool_config,
|
|
779
787
|
:open_id_connect_config,
|
|
780
788
|
:tags,
|
|
781
|
-
:additional_authentication_providers
|
|
789
|
+
:additional_authentication_providers,
|
|
790
|
+
:xray_enabled)
|
|
782
791
|
include Aws::Structure
|
|
783
792
|
end
|
|
784
793
|
|
|
@@ -1427,6 +1436,7 @@ module Aws::AppSync
|
|
|
1427
1436
|
# Represents the output of a `GetApiCache` operation.
|
|
1428
1437
|
#
|
|
1429
1438
|
# @!attribute [rw] api_cache
|
|
1439
|
+
# The `ApiCache` object.
|
|
1430
1440
|
# @return [Types::ApiCache]
|
|
1431
1441
|
#
|
|
1432
1442
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/GetApiCacheResponse AWS API Documentation
|
|
@@ -1757,6 +1767,11 @@ module Aws::AppSync
|
|
|
1757
1767
|
# API.
|
|
1758
1768
|
# @return [Array<Types::AdditionalAuthenticationProvider>]
|
|
1759
1769
|
#
|
|
1770
|
+
# @!attribute [rw] xray_enabled
|
|
1771
|
+
# A flag representing whether X-Ray tracing is enabled for this
|
|
1772
|
+
# `GraphqlApi`.
|
|
1773
|
+
# @return [Boolean]
|
|
1774
|
+
#
|
|
1760
1775
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/GraphqlApi AWS API Documentation
|
|
1761
1776
|
#
|
|
1762
1777
|
class GraphqlApi < Struct.new(
|
|
@@ -1769,7 +1784,8 @@ module Aws::AppSync
|
|
|
1769
1784
|
:arn,
|
|
1770
1785
|
:uris,
|
|
1771
1786
|
:tags,
|
|
1772
|
-
:additional_authentication_providers
|
|
1787
|
+
:additional_authentication_providers,
|
|
1788
|
+
:xray_enabled)
|
|
1773
1789
|
include Aws::Structure
|
|
1774
1790
|
end
|
|
1775
1791
|
|
|
@@ -1821,6 +1837,9 @@ module Aws::AppSync
|
|
|
1821
1837
|
include Aws::Structure
|
|
1822
1838
|
end
|
|
1823
1839
|
|
|
1840
|
+
# The `LambdaConflictHandlerConfig` object when configuring LAMBDA as
|
|
1841
|
+
# the Conflict Handler.
|
|
1842
|
+
#
|
|
1824
1843
|
# @note When making an API call, you may pass LambdaConflictHandlerConfig
|
|
1825
1844
|
# data as a hash:
|
|
1826
1845
|
#
|
|
@@ -3081,6 +3100,7 @@ module Aws::AppSync
|
|
|
3081
3100
|
# },
|
|
3082
3101
|
# },
|
|
3083
3102
|
# ],
|
|
3103
|
+
# xray_enabled: false,
|
|
3084
3104
|
# }
|
|
3085
3105
|
#
|
|
3086
3106
|
# @!attribute [rw] api_id
|
|
@@ -3114,6 +3134,11 @@ module Aws::AppSync
|
|
|
3114
3134
|
# API.
|
|
3115
3135
|
# @return [Array<Types::AdditionalAuthenticationProvider>]
|
|
3116
3136
|
#
|
|
3137
|
+
# @!attribute [rw] xray_enabled
|
|
3138
|
+
# A flag indicating whether to enable X-Ray tracing for the
|
|
3139
|
+
# `GraphqlApi`.
|
|
3140
|
+
# @return [Boolean]
|
|
3141
|
+
#
|
|
3117
3142
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/UpdateGraphqlApiRequest AWS API Documentation
|
|
3118
3143
|
#
|
|
3119
3144
|
class UpdateGraphqlApiRequest < Struct.new(
|
|
@@ -3123,7 +3148,8 @@ module Aws::AppSync
|
|
|
3123
3148
|
:authentication_type,
|
|
3124
3149
|
:user_pool_config,
|
|
3125
3150
|
:open_id_connect_config,
|
|
3126
|
-
:additional_authentication_providers
|
|
3151
|
+
:additional_authentication_providers,
|
|
3152
|
+
:xray_enabled)
|
|
3127
3153
|
include Aws::Structure
|
|
3128
3154
|
end
|
|
3129
3155
|
|
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.23.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2020-02-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|