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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4283e976b8be535c98ecf3db46c882430740d4073afe9e44d70e0ff385719af2
4
- data.tar.gz: 7dceece03f6c5b13bf3cdfca5f1d1a3b58c32393523cbe4ead09b41c0da66b3e
3
+ metadata.gz: 689469f96cc67007de7335205e41b0cf80db3dde030d3dd9ae53a9740d06f7c0
4
+ data.tar.gz: a92a472d032cfbfe28a3dc76cb26be8a0b22dacb616e653c11c7d4de94788f50
5
5
  SHA512:
6
- metadata.gz: fce956de5a0133af5b531d7744779151abd0976d87c2e781f6e474a1bcae36d8c64d5315c9767bf555e46563a87706fd4600ce2f67965b1f9dce25bcfdd4c171
7
- data.tar.gz: 22dcc125d3e712aafc4f9f0c5c0bd390b5d5c6b3adabbb6ddb0f80bb78cc3cb5abc26f219e95d89041ab52a984a1c11366030d8f52562aca8b0f2f3221d14326
6
+ metadata.gz: 62b531534839c7000cac46aeea51a54a4739b81b4a10693edb56420928c97babc764cb008aa29d76c2d2af68dc817ff6af2846f71bfc8414ea6bd4adc331f155
7
+ data.tar.gz: 4e7d5c4ff82298383ee5453ad14209042b43edc7ee1d497aaf3b424c86eb8ce6ee6b7c56c5eb3616807f8314d58f2a16442eb3cefdfccdea55ff6f3893fde4e6
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.95.0 (2024-12-09)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.95.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.95.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"))
@@ -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.95.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.95.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-12-09 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