aws-sdk-appsync 1.94.0 → 1.96.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2b11dc51db187124bdf657a52cce25e793fe782f1d408bd9c8c830e35ad54aef
4
- data.tar.gz: ed168110729774f68e9c12302721a8021aada9523066587cd0fd0e7aa0f2623b
3
+ metadata.gz: 689469f96cc67007de7335205e41b0cf80db3dde030d3dd9ae53a9740d06f7c0
4
+ data.tar.gz: a92a472d032cfbfe28a3dc76cb26be8a0b22dacb616e653c11c7d4de94788f50
5
5
  SHA512:
6
- metadata.gz: a15b8774a1b946cd15a3d5d47f97546c8e2d7330316513da8ab577896c12cfc525792c85cc5aa25df11aef84b06d3bfa912d5d9d383a6f12d4bbdcb624b094d3
7
- data.tar.gz: cca86c2e81c3bc0d41ab23675a84cce5c2494ce4db03375539ee49f6e9be359ffb6b568cbd4cdc105c4135aab55b45e95211fd36a52e960f56b1f04e1cb10936
6
+ metadata.gz: 62b531534839c7000cac46aeea51a54a4739b81b4a10693edb56420928c97babc764cb008aa29d76c2d2af68dc817ff6af2846f71bfc8414ea6bd4adc331f155
7
+ data.tar.gz: 4e7d5c4ff82298383ee5453ad14209042b43edc7ee1d497aaf3b424c86eb8ce6ee6b7c56c5eb3616807f8314d58f2a16442eb3cefdfccdea55ff6f3893fde4e6
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.96.0 (2025-01-02)
5
+ ------------------
6
+
7
+ * Feature - Modify UpdateGraphQLAPI operation and flag authenticationType as required.
8
+
9
+ 1.95.0 (2024-12-09)
10
+ ------------------
11
+
12
+ * Feature - Provides description of new Amazon Bedrock runtime datasource.
13
+
4
14
  1.94.0 (2024-11-21)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.94.0
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.94.0'
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"))
@@ -1695,6 +1695,9 @@ module Aws::AppSync
1695
1695
  # * **AMAZON\_EVENTBRIDGE**: The data source is an Amazon EventBridge
1696
1696
  # configuration.
1697
1697
  #
1698
+ # * **AMAZON\_BEDROCK\_RUNTIME**: The data source is the Amazon
1699
+ # Bedrock runtime.
1700
+ #
1698
1701
  # * **NONE**: There is no data source. Use this type when you want to
1699
1702
  # invoke a GraphQL operation without connecting to a data source,
1700
1703
  # such as when you're performing data transformation with resolvers
@@ -54,7 +54,7 @@ module Aws::AppSync
54
54
  autoload :EndpointProvider, 'aws-sdk-appsync/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-appsync/endpoints'
56
56
 
57
- GEM_VERSION = '1.94.0'
57
+ GEM_VERSION = '1.96.0'
58
58
 
59
59
  end
60
60
 
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
- ?authentication_type: ("API_KEY" | "AWS_IAM" | "AMAZON_COGNITO_USER_POOLS" | "OPENID_CONNECT" | "AWS_LAMBDA"),
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.94.0
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: 2024-11-21 00:00:00.000000000 Z
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