aws-sdk-appsync 1.91.0 → 1.93.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: 838feb7df080546c168e3987a4d5b2d10ddab21aa80e3d29e5a210b695fcbb3c
4
- data.tar.gz: c96e1411094518ff48cfd6300951c3a0eebc5e1252e177e2e803682b70ae48fb
3
+ metadata.gz: 82d336d84daecf00bdb91bdc161a42bc37496327ba7c917b9f3f67fbe45ae5bd
4
+ data.tar.gz: cb7d2e6d3524384bd1b6649ba32ba76fa85279b30e9ad52ee67a348f30885095
5
5
  SHA512:
6
- metadata.gz: 8c81bf9fa7a0c50be7f4144e1445bd787e366744ff3072867a5ab2b698008a9fdb457d358e9aab2a6cf21293643fbf8346cbdfe6e313e430ed1387d1f9838684
7
- data.tar.gz: bfd7d7d707a7a2a78e3de82db9258c72ad71c9704656a1147ffa893308ecd6ef44f9e2c702cef9df6c1ef5f0e6822397783783a6e6c1d566ffa6b300022f6beb
6
+ metadata.gz: ed6e4511890e6b49d3e5cf77409b4fba62783520206f94ddc110439519b7f6e51cc2cbee3295ff9a3351f927c549a997874f7dc6619ba3f5f9b7eb0c1c018bd2
7
+ data.tar.gz: 11276c6d89684e8531d74b6cbce5e14f13ccab29b58b0c1c4eb7d0149398ec88ec4ae7d058da356227ec8bf53bcd6d15bff0dd583b0b692600844de5bf5615be
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.93.0 (2024-11-18)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.92.0 (2024-11-06)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.91.0 (2024-10-30)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.91.0
1
+ 1.93.0
@@ -3654,7 +3654,7 @@ module Aws::AppSync
3654
3654
  #
3655
3655
  # You can create a list of environmental variables by adding it to the
3656
3656
  # `environmentVariables` payload as a list in the format
3657
- # `\{"key1":"value1","key2":"value2", …\}`. Note that each call of the
3657
+ # `{"key1":"value1","key2":"value2", }`. Note that each call of the
3658
3658
  # `PutGraphqlApiEnvironmentVariables` action will result in the
3659
3659
  # overwriting of the existing environmental variable list of that API.
3660
3660
  # This means the existing environmental variables will be lost. To avoid
@@ -3684,7 +3684,7 @@ module Aws::AppSync
3684
3684
  #
3685
3685
  # You can create a list of environmental variables by adding it to the
3686
3686
  # `environmentVariables` payload as a list in the format
3687
- # `\{"key1":"value1","key2":"value2", …\}`. Note that each call of the
3687
+ # `{"key1":"value1","key2":"value2", }`. Note that each call of the
3688
3688
  # `PutGraphqlApiEnvironmentVariables` action will result in the
3689
3689
  # overwriting of the existing environmental variable list of that API.
3690
3690
  # This means the existing environmental variables will be lost. To avoid
@@ -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.91.0'
4983
+ context[:gem_version] = '1.93.0'
4984
4984
  Seahorse::Client::Request.new(handlers, context)
4985
4985
  end
4986
4986
 
@@ -2352,7 +2352,6 @@ module Aws::AppSync
2352
2352
  # * Cache hits: The number of cache hits during a request.
2353
2353
  #
2354
2354
  # * Cache misses: The number of cache misses during a request.
2355
- #
2356
2355
  # These metrics can be emitted to CloudWatch per resolver or for all
2357
2356
  # resolvers in the request. Metrics will be recorded by API ID and
2358
2357
  # resolver name. `resolverLevelMetricsBehavior` accepts one of these
@@ -2363,7 +2362,6 @@ module Aws::AppSync
2363
2362
  #
2364
2363
  # * `PER_RESOLVER_METRICS`: Records and emits metric data for
2365
2364
  # resolvers that have the `metricsConfig` value set to `ENABLED`.
2366
- #
2367
2365
  # 2. `dataSourceLevelMetricsBehavior`: Controls how data source metrics
2368
2366
  # will be emitted to CloudWatch. Data source metrics include:
2369
2367
  #
@@ -2374,7 +2372,6 @@ module Aws::AppSync
2374
2372
  #
2375
2373
  # * Errors: The number of errors that occurred during a data source
2376
2374
  # invocation.
2377
- #
2378
2375
  # These metrics can be emitted to CloudWatch per data source or for
2379
2376
  # all data sources in the request. Metrics will be recorded by API
2380
2377
  # ID and data source name. `dataSourceLevelMetricsBehavior` accepts
@@ -2386,7 +2383,6 @@ module Aws::AppSync
2386
2383
  # * `PER_DATA_SOURCE_METRICS`: Records and emits metric data for
2387
2384
  # data sources that have the `metricsConfig` value set to
2388
2385
  # `ENABLED`.
2389
- #
2390
2386
  # 3. `operationLevelMetricsConfig`: Controls how operation metrics will
2391
2387
  # be emitted to CloudWatch. Operation metrics include:
2392
2388
  #
@@ -2395,7 +2391,6 @@ module Aws::AppSync
2395
2391
  #
2396
2392
  # * GraphQL errors: The number of GraphQL errors that occurred
2397
2393
  # during a specified GraphQL operation.
2398
- #
2399
2394
  # Metrics will be recorded by API ID and operation name. You can set
2400
2395
  # the value to `ENABLED` or `DISABLED`.
2401
2396
  #
@@ -4132,7 +4127,6 @@ module Aws::AppSync
4132
4127
  #
4133
4128
  # * The generated request/response functions that got resolved for
4134
4129
  # error fields.
4135
- #
4136
4130
  # * **ALL**: The following information is logged for all fields in the
4137
4131
  # query:
4138
4132
  #
@@ -4270,7 +4264,7 @@ module Aws::AppSync
4270
4264
  #
4271
4265
  # You can create a list of environmental variables by adding it to the
4272
4266
  # `environmentVariables` payload as a list in the format
4273
- # `\{"key1":"value1","key2":"value2", …\}`. Note that each call of the
4267
+ # `{"key1":"value1","key2":"value2", }`. Note that each call of the
4274
4268
  # `PutGraphqlApiEnvironmentVariables` action will result in the
4275
4269
  # overwriting of the existing environmental variable list of that API.
4276
4270
  # This means the existing environmental variables will be lost. To
@@ -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.91.0'
57
+ GEM_VERSION = '1.93.0'
58
58
 
59
59
  end
60
60
 
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.91.0
4
+ version: 1.93.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-10-30 00:00:00.000000000 Z
11
+ date: 2024-11-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core