aws-sdk-appsync 1.95.0 → 1.97.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: e4f9f6f66344cb11f2ac8614e75dd4e3a630f1f26e98053e86dd1277a56eb0a7
4
+ data.tar.gz: 5be5e8bbbdac6f6741232c42949afd873b401e2ce7fe6bd1dff3f7ef5a614717
5
5
  SHA512:
6
- metadata.gz: fce956de5a0133af5b531d7744779151abd0976d87c2e781f6e474a1bcae36d8c64d5315c9767bf555e46563a87706fd4600ce2f67965b1f9dce25bcfdd4c171
7
- data.tar.gz: 22dcc125d3e712aafc4f9f0c5c0bd390b5d5c6b3adabbb6ddb0f80bb78cc3cb5abc26f219e95d89041ab52a984a1c11366030d8f52562aca8b0f2f3221d14326
6
+ metadata.gz: a635f9fdc8975a21975e87b540eefe2604ac49c3ed0e04ff67a4d7fbb3a34bfa61ccb59e3c92b8c0f901124aac36da7ec1b42a181b8e889532e03bced64b0822
7
+ data.tar.gz: af78e4a8227809ae86ca383e5c21b49f6fef67c49d50e6558682ebc2f9a166b0c8dba99562e37007ad44f54a784afe3a810a1b84aa81b3220a69ee02a94ff4c4
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.97.0 (2025-01-15)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.96.0 (2025-01-02)
10
+ ------------------
11
+
12
+ * Feature - Modify UpdateGraphQLAPI operation and flag authenticationType as required.
13
+
4
14
  1.95.0 (2024-12-09)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.95.0
1
+ 1.97.0
@@ -257,11 +257,34 @@ module Aws::AppSync
257
257
  # Used when loading credentials from the shared credentials file
258
258
  # at HOME/.aws/credentials. When not specified, 'default' is used.
259
259
  #
260
+ # @option options [String] :request_checksum_calculation ("when_supported")
261
+ # Determines when a checksum will be calculated for request payloads. Values are:
262
+ #
263
+ # * `when_supported` - (default) When set, a checksum will be
264
+ # calculated for all request payloads of operations modeled with the
265
+ # `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
266
+ # `requestAlgorithmMember` is modeled.
267
+ # * `when_required` - When set, a checksum will only be calculated for
268
+ # request payloads of operations modeled with the `httpChecksum` trait where
269
+ # `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
270
+ # is modeled and supplied.
271
+ #
260
272
  # @option options [Integer] :request_min_compression_size_bytes (10240)
261
273
  # The minimum size in bytes that triggers compression for request
262
274
  # bodies. The value must be non-negative integer value between 0
263
275
  # and 10485780 bytes inclusive.
264
276
  #
277
+ # @option options [String] :response_checksum_validation ("when_supported")
278
+ # Determines when checksum validation will be performed on response payloads. Values are:
279
+ #
280
+ # * `when_supported` - (default) When set, checksum validation is performed on all
281
+ # response payloads of operations modeled with the `httpChecksum` trait where
282
+ # `responseAlgorithms` is modeled, except when no modeled checksum algorithms
283
+ # are supported.
284
+ # * `when_required` - When set, checksum validation is not performed on
285
+ # response payloads of operations unless the checksum algorithm is supported and
286
+ # the `requestValidationModeMember` member is set to `ENABLED`.
287
+ #
265
288
  # @option options [Proc] :retry_backoff
266
289
  # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
267
290
  # This option is only used in the `legacy` retry mode.
@@ -4522,7 +4545,7 @@ module Aws::AppSync
4522
4545
  # @option params [Types::LogConfig] :log_config
4523
4546
  # The Amazon CloudWatch Logs configuration for the `GraphqlApi` object.
4524
4547
  #
4525
- # @option params [String] :authentication_type
4548
+ # @option params [required, String] :authentication_type
4526
4549
  # The new authentication type for the `GraphqlApi` object.
4527
4550
  #
4528
4551
  # @option params [Types::UserPoolConfig] :user_pool_config
@@ -4605,7 +4628,7 @@ module Aws::AppSync
4605
4628
  # cloud_watch_logs_role_arn: "String", # required
4606
4629
  # exclude_verbose_content: false,
4607
4630
  # },
4608
- # authentication_type: "API_KEY", # accepts API_KEY, AWS_IAM, AMAZON_COGNITO_USER_POOLS, OPENID_CONNECT, AWS_LAMBDA
4631
+ # authentication_type: "API_KEY", # required, accepts API_KEY, AWS_IAM, AMAZON_COGNITO_USER_POOLS, OPENID_CONNECT, AWS_LAMBDA
4609
4632
  # user_pool_config: {
4610
4633
  # user_pool_id: "String", # required
4611
4634
  # aws_region: "String", # required
@@ -4980,7 +5003,7 @@ module Aws::AppSync
4980
5003
  tracer: tracer
4981
5004
  )
4982
5005
  context[:gem_name] = 'aws-sdk-appsync'
4983
- context[:gem_version] = '1.95.0'
5006
+ context[:gem_version] = '1.97.0'
4984
5007
  Seahorse::Client::Request.new(handlers, context)
4985
5008
  end
4986
5009
 
@@ -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.97.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
@@ -1228,7 +1230,7 @@ module Aws
1228
1230
  cloud_watch_logs_role_arn: ::String,
1229
1231
  exclude_verbose_content: bool?
1230
1232
  },
1231
- ?authentication_type: ("API_KEY" | "AWS_IAM" | "AMAZON_COGNITO_USER_POOLS" | "OPENID_CONNECT" | "AWS_LAMBDA"),
1233
+ authentication_type: ("API_KEY" | "AWS_IAM" | "AMAZON_COGNITO_USER_POOLS" | "OPENID_CONNECT" | "AWS_LAMBDA"),
1232
1234
  ?user_pool_config: {
1233
1235
  user_pool_id: ::String,
1234
1236
  aws_region: ::String,
data/sig/resource.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
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.97.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-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.210.0
22
+ version: 3.216.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.210.0
32
+ version: 3.216.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement