aws-sdk-appsync 1.73.0 → 1.74.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 +13 -9
- data/lib/aws-sdk-appsync/types.rb +18 -12
- data/lib/aws-sdk-appsync.rb +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: 17478279d7c0cb170e6fad4d58408712ba849bc6e1b7145b7e78574acbe5c904
|
4
|
+
data.tar.gz: b4fd3cd8b6e01fedfe590b14a6d14b6c3bb9d6c40d610f62ae301891828915f2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1d5159ddf44bc6fb43e30effb22ed22cf4c263e6f670190977071078b04543e82d35806d5894e7e57b3b02b7a98f8c6b777544f5a3c0d325c80b4fd7a9fac702
|
7
|
+
data.tar.gz: f0a9d9283c02004931afcafce60b366b16f8e5cb977935423853c649d8022115fe5afef66c65ca3bba1f3dd7576d29578aeba067b39910a7b568cfedfa19e84f
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.74.0
|
@@ -615,11 +615,13 @@ module Aws::AppSync
|
|
615
615
|
# Controls how cache health metrics will be emitted to CloudWatch. Cache
|
616
616
|
# health metrics include:
|
617
617
|
#
|
618
|
-
# * NetworkBandwidthOutAllowanceExceeded: The
|
619
|
-
#
|
618
|
+
# * NetworkBandwidthOutAllowanceExceeded: The network packets dropped
|
619
|
+
# because the throughput exceeded the aggregated bandwidth limit. This
|
620
|
+
# is useful for diagnosing bottlenecks in a cache configuration.
|
620
621
|
#
|
621
|
-
# * EngineCPUUtilization: The
|
622
|
-
#
|
622
|
+
# * EngineCPUUtilization: The CPU utilization (percentage) allocated to
|
623
|
+
# the Redis process. This is useful for diagnosing bottlenecks in a
|
624
|
+
# cache configuration.
|
623
625
|
#
|
624
626
|
# Metrics will be recorded by API ID. You can set the value to `ENABLED`
|
625
627
|
# or `DISABLED`.
|
@@ -3391,11 +3393,13 @@ module Aws::AppSync
|
|
3391
3393
|
# Controls how cache health metrics will be emitted to CloudWatch. Cache
|
3392
3394
|
# health metrics include:
|
3393
3395
|
#
|
3394
|
-
# * NetworkBandwidthOutAllowanceExceeded: The
|
3395
|
-
#
|
3396
|
+
# * NetworkBandwidthOutAllowanceExceeded: The network packets dropped
|
3397
|
+
# because the throughput exceeded the aggregated bandwidth limit. This
|
3398
|
+
# is useful for diagnosing bottlenecks in a cache configuration.
|
3396
3399
|
#
|
3397
|
-
# * EngineCPUUtilization: The
|
3398
|
-
#
|
3400
|
+
# * EngineCPUUtilization: The CPU utilization (percentage) allocated to
|
3401
|
+
# the Redis process. This is useful for diagnosing bottlenecks in a
|
3402
|
+
# cache configuration.
|
3399
3403
|
#
|
3400
3404
|
# Metrics will be recorded by API ID. You can set the value to `ENABLED`
|
3401
3405
|
# or `DISABLED`.
|
@@ -4239,7 +4243,7 @@ module Aws::AppSync
|
|
4239
4243
|
params: params,
|
4240
4244
|
config: config)
|
4241
4245
|
context[:gem_name] = 'aws-sdk-appsync'
|
4242
|
-
context[:gem_version] = '1.
|
4246
|
+
context[:gem_version] = '1.74.0'
|
4243
4247
|
Seahorse::Client::Request.new(handlers, context)
|
4244
4248
|
end
|
4245
4249
|
|
@@ -749,11 +749,14 @@ module Aws::AppSync
|
|
749
749
|
# Controls how cache health metrics will be emitted to CloudWatch.
|
750
750
|
# Cache health metrics include:
|
751
751
|
#
|
752
|
-
# * NetworkBandwidthOutAllowanceExceeded: The
|
753
|
-
#
|
752
|
+
# * NetworkBandwidthOutAllowanceExceeded: The network packets dropped
|
753
|
+
# because the throughput exceeded the aggregated bandwidth limit.
|
754
|
+
# This is useful for diagnosing bottlenecks in a cache
|
755
|
+
# configuration.
|
754
756
|
#
|
755
|
-
# * EngineCPUUtilization: The
|
756
|
-
#
|
757
|
+
# * EngineCPUUtilization: The CPU utilization (percentage) allocated
|
758
|
+
# to the Redis process. This is useful for diagnosing bottlenecks in
|
759
|
+
# a cache configuration.
|
757
760
|
#
|
758
761
|
# Metrics will be recorded by API ID. You can set the value to
|
759
762
|
# `ENABLED` or `DISABLED`.
|
@@ -2004,7 +2007,7 @@ module Aws::AppSync
|
|
2004
2007
|
# for all resolvers in the request.
|
2005
2008
|
#
|
2006
2009
|
# * `PER_RESOLVER_METRICS`: Records and emits metric data for
|
2007
|
-
# resolvers that have the `
|
2010
|
+
# resolvers that have the `metricsConfig` value set to `ENABLED`.
|
2008
2011
|
#
|
2009
2012
|
# 2. `dataSourceLevelMetricsBehavior`: Controls how data source metrics
|
2010
2013
|
# will be emitted to CloudWatch. Data source metrics include:
|
@@ -2026,7 +2029,7 @@ module Aws::AppSync
|
|
2026
2029
|
# data for all data sources in the request.
|
2027
2030
|
#
|
2028
2031
|
# * `PER_DATA_SOURCE_METRICS`: Records and emits metric data for
|
2029
|
-
# data sources that have the `
|
2032
|
+
# data sources that have the `metricsConfig` value set to
|
2030
2033
|
# `ENABLED`.
|
2031
2034
|
#
|
2032
2035
|
# 3. `operationLevelMetricsConfig`: Controls how operation metrics will
|
@@ -2065,7 +2068,7 @@ module Aws::AppSync
|
|
2065
2068
|
# all resolvers in the request.
|
2066
2069
|
#
|
2067
2070
|
# * `PER_RESOLVER_METRICS`: Records and emits metric data for
|
2068
|
-
# resolvers that have the `
|
2071
|
+
# resolvers that have the `metricsConfig` value set to `ENABLED`.
|
2069
2072
|
# @return [String]
|
2070
2073
|
#
|
2071
2074
|
# @!attribute [rw] data_source_level_metrics_behavior
|
@@ -2088,7 +2091,7 @@ module Aws::AppSync
|
|
2088
2091
|
# for all data sources in the request.
|
2089
2092
|
#
|
2090
2093
|
# * `PER_DATA_SOURCE_METRICS`: Records and emits metric data for data
|
2091
|
-
# sources that have the `
|
2094
|
+
# sources that have the `metricsConfig` value set to `ENABLED`.
|
2092
2095
|
# @return [String]
|
2093
2096
|
#
|
2094
2097
|
# @!attribute [rw] operation_level_metrics_config
|
@@ -4400,11 +4403,14 @@ module Aws::AppSync
|
|
4400
4403
|
# Controls how cache health metrics will be emitted to CloudWatch.
|
4401
4404
|
# Cache health metrics include:
|
4402
4405
|
#
|
4403
|
-
# * NetworkBandwidthOutAllowanceExceeded: The
|
4404
|
-
#
|
4406
|
+
# * NetworkBandwidthOutAllowanceExceeded: The network packets dropped
|
4407
|
+
# because the throughput exceeded the aggregated bandwidth limit.
|
4408
|
+
# This is useful for diagnosing bottlenecks in a cache
|
4409
|
+
# configuration.
|
4405
4410
|
#
|
4406
|
-
# * EngineCPUUtilization: The
|
4407
|
-
#
|
4411
|
+
# * EngineCPUUtilization: The CPU utilization (percentage) allocated
|
4412
|
+
# to the Redis process. This is useful for diagnosing bottlenecks in
|
4413
|
+
# a cache configuration.
|
4408
4414
|
#
|
4409
4415
|
# Metrics will be recorded by API ID. You can set the value to
|
4410
4416
|
# `ENABLED` or `DISABLED`.
|
data/lib/aws-sdk-appsync.rb
CHANGED
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.74.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-02-
|
11
|
+
date: 2024-02-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|