aws-sdk-appsync 1.95.0 → 1.96.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/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-appsync/client.rb +3 -3
- data/lib/aws-sdk-appsync/client_api.rb +1 -1
- data/lib/aws-sdk-appsync.rb +1 -1
- data/sig/client.rbs +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 689469f96cc67007de7335205e41b0cf80db3dde030d3dd9ae53a9740d06f7c0
|
|
4
|
+
data.tar.gz: a92a472d032cfbfe28a3dc76cb26be8a0b22dacb616e653c11c7d4de94788f50
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 62b531534839c7000cac46aeea51a54a4739b81b4a10693edb56420928c97babc764cb008aa29d76c2d2af68dc817ff6af2846f71bfc8414ea6bd4adc331f155
|
|
7
|
+
data.tar.gz: 4e7d5c4ff82298383ee5453ad14209042b43edc7ee1d497aaf3b424c86eb8ce6ee6b7c56c5eb3616807f8314d58f2a16442eb3cefdfccdea55ff6f3893fde4e6
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.96.0
|
|
@@ -4522,7 +4522,7 @@ module Aws::AppSync
|
|
|
4522
4522
|
# @option params [Types::LogConfig] :log_config
|
|
4523
4523
|
# The Amazon CloudWatch Logs configuration for the `GraphqlApi` object.
|
|
4524
4524
|
#
|
|
4525
|
-
# @option params [String] :authentication_type
|
|
4525
|
+
# @option params [required, String] :authentication_type
|
|
4526
4526
|
# The new authentication type for the `GraphqlApi` object.
|
|
4527
4527
|
#
|
|
4528
4528
|
# @option params [Types::UserPoolConfig] :user_pool_config
|
|
@@ -4605,7 +4605,7 @@ module Aws::AppSync
|
|
|
4605
4605
|
# cloud_watch_logs_role_arn: "String", # required
|
|
4606
4606
|
# exclude_verbose_content: false,
|
|
4607
4607
|
# },
|
|
4608
|
-
# authentication_type: "API_KEY", # accepts API_KEY, AWS_IAM, AMAZON_COGNITO_USER_POOLS, OPENID_CONNECT, AWS_LAMBDA
|
|
4608
|
+
# authentication_type: "API_KEY", # required, accepts API_KEY, AWS_IAM, AMAZON_COGNITO_USER_POOLS, OPENID_CONNECT, AWS_LAMBDA
|
|
4609
4609
|
# user_pool_config: {
|
|
4610
4610
|
# user_pool_id: "String", # required
|
|
4611
4611
|
# aws_region: "String", # required
|
|
@@ -4980,7 +4980,7 @@ module Aws::AppSync
|
|
|
4980
4980
|
tracer: tracer
|
|
4981
4981
|
)
|
|
4982
4982
|
context[:gem_name] = 'aws-sdk-appsync'
|
|
4983
|
-
context[:gem_version] = '1.
|
|
4983
|
+
context[:gem_version] = '1.96.0'
|
|
4984
4984
|
Seahorse::Client::Request.new(handlers, context)
|
|
4985
4985
|
end
|
|
4986
4986
|
|
|
@@ -1357,7 +1357,7 @@ module Aws::AppSync
|
|
|
1357
1357
|
UpdateGraphqlApiRequest.add_member(:api_id, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "apiId"))
|
|
1358
1358
|
UpdateGraphqlApiRequest.add_member(:name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "name"))
|
|
1359
1359
|
UpdateGraphqlApiRequest.add_member(:log_config, Shapes::ShapeRef.new(shape: LogConfig, location_name: "logConfig"))
|
|
1360
|
-
UpdateGraphqlApiRequest.add_member(:authentication_type, Shapes::ShapeRef.new(shape: AuthenticationType, location_name: "authenticationType"))
|
|
1360
|
+
UpdateGraphqlApiRequest.add_member(:authentication_type, Shapes::ShapeRef.new(shape: AuthenticationType, required: true, location_name: "authenticationType"))
|
|
1361
1361
|
UpdateGraphqlApiRequest.add_member(:user_pool_config, Shapes::ShapeRef.new(shape: UserPoolConfig, location_name: "userPoolConfig"))
|
|
1362
1362
|
UpdateGraphqlApiRequest.add_member(:open_id_connect_config, Shapes::ShapeRef.new(shape: OpenIDConnectConfig, location_name: "openIDConnectConfig"))
|
|
1363
1363
|
UpdateGraphqlApiRequest.add_member(:additional_authentication_providers, Shapes::ShapeRef.new(shape: AdditionalAuthenticationProviders, location_name: "additionalAuthenticationProviders"))
|
data/lib/aws-sdk-appsync.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -1228,7 +1228,7 @@ module Aws
|
|
|
1228
1228
|
cloud_watch_logs_role_arn: ::String,
|
|
1229
1229
|
exclude_verbose_content: bool?
|
|
1230
1230
|
},
|
|
1231
|
-
|
|
1231
|
+
authentication_type: ("API_KEY" | "AWS_IAM" | "AMAZON_COGNITO_USER_POOLS" | "OPENID_CONNECT" | "AWS_LAMBDA"),
|
|
1232
1232
|
?user_pool_config: {
|
|
1233
1233
|
user_pool_id: ::String,
|
|
1234
1234
|
aws_region: ::String,
|
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.96.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: 2025-01-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|