aws-sdk-appsync 1.83.0 → 1.85.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-appsync/client.rb +13 -7
- data/lib/aws-sdk-appsync/types.rb +25 -4
- data/lib/aws-sdk-appsync.rb +1 -1
- data/sig/client.rbs +2 -2
- data/sig/types.rbs +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: 0122ab72fde43864f57cb920444d4f9036a6448b4ec1c25658ca46aecee397fc
|
|
4
|
+
data.tar.gz: 10e963cc2c86444beb3783f7be1914d3955237543460906ffa78ae5af21b541b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6e3d429b6f79f4d5c77c6baf7a334743b7bf14c306e789d264b2dd573e5eacbc5e2bf22075398007833b7a27c6936bc094fd1bf8c0000bb7e5850c6972f92422
|
|
7
|
+
data.tar.gz: fbccc2a40024b3852439316ca570d8c615ba24575ae46d6ef4048361ccc8ab710ff4673c7a23c51eb039d7de056eed4a03e4f288f932a4da4659035ffe18f00e
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.85.0 (2024-09-10)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
8
|
+
|
|
9
|
+
1.84.0 (2024-09-04)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Adds new logging levels (INFO and DEBUG) for additional log output control
|
|
13
|
+
|
|
4
14
|
1.83.0 (2024-09-03)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.85.0
|
|
@@ -425,6 +425,12 @@ module Aws::AppSync
|
|
|
425
425
|
# @option options [String] :ssl_ca_store
|
|
426
426
|
# Sets the X509::Store to verify peer certificate.
|
|
427
427
|
#
|
|
428
|
+
# @option options [OpenSSL::X509::Certificate] :ssl_cert
|
|
429
|
+
# Sets a client certificate when creating http connections.
|
|
430
|
+
#
|
|
431
|
+
# @option options [OpenSSL::PKey] :ssl_key
|
|
432
|
+
# Sets a client key when creating http connections.
|
|
433
|
+
#
|
|
428
434
|
# @option options [Float] :ssl_timeout
|
|
429
435
|
# Sets the SSL timeout in seconds
|
|
430
436
|
#
|
|
@@ -1155,7 +1161,7 @@ module Aws::AppSync
|
|
|
1155
1161
|
# resp = client.create_graphql_api({
|
|
1156
1162
|
# name: "String", # required
|
|
1157
1163
|
# log_config: {
|
|
1158
|
-
# field_log_level: "NONE", # required, accepts NONE, ERROR, ALL
|
|
1164
|
+
# field_log_level: "NONE", # required, accepts NONE, ERROR, ALL, INFO, DEBUG
|
|
1159
1165
|
# cloud_watch_logs_role_arn: "String", # required
|
|
1160
1166
|
# exclude_verbose_content: false,
|
|
1161
1167
|
# },
|
|
@@ -1221,7 +1227,7 @@ module Aws::AppSync
|
|
|
1221
1227
|
# resp.graphql_api.name #=> String
|
|
1222
1228
|
# resp.graphql_api.api_id #=> String
|
|
1223
1229
|
# resp.graphql_api.authentication_type #=> String, one of "API_KEY", "AWS_IAM", "AMAZON_COGNITO_USER_POOLS", "OPENID_CONNECT", "AWS_LAMBDA"
|
|
1224
|
-
# resp.graphql_api.log_config.field_log_level #=> String, one of "NONE", "ERROR", "ALL"
|
|
1230
|
+
# resp.graphql_api.log_config.field_log_level #=> String, one of "NONE", "ERROR", "ALL", "INFO", "DEBUG"
|
|
1225
1231
|
# resp.graphql_api.log_config.cloud_watch_logs_role_arn #=> String
|
|
1226
1232
|
# resp.graphql_api.log_config.exclude_verbose_content #=> Boolean
|
|
1227
1233
|
# resp.graphql_api.user_pool_config.user_pool_id #=> String
|
|
@@ -2201,7 +2207,7 @@ module Aws::AppSync
|
|
|
2201
2207
|
# resp.graphql_api.name #=> String
|
|
2202
2208
|
# resp.graphql_api.api_id #=> String
|
|
2203
2209
|
# resp.graphql_api.authentication_type #=> String, one of "API_KEY", "AWS_IAM", "AMAZON_COGNITO_USER_POOLS", "OPENID_CONNECT", "AWS_LAMBDA"
|
|
2204
|
-
# resp.graphql_api.log_config.field_log_level #=> String, one of "NONE", "ERROR", "ALL"
|
|
2210
|
+
# resp.graphql_api.log_config.field_log_level #=> String, one of "NONE", "ERROR", "ALL", "INFO", "DEBUG"
|
|
2205
2211
|
# resp.graphql_api.log_config.cloud_watch_logs_role_arn #=> String
|
|
2206
2212
|
# resp.graphql_api.log_config.exclude_verbose_content #=> Boolean
|
|
2207
2213
|
# resp.graphql_api.user_pool_config.user_pool_id #=> String
|
|
@@ -2760,7 +2766,7 @@ module Aws::AppSync
|
|
|
2760
2766
|
# resp.graphql_apis[0].name #=> String
|
|
2761
2767
|
# resp.graphql_apis[0].api_id #=> String
|
|
2762
2768
|
# resp.graphql_apis[0].authentication_type #=> String, one of "API_KEY", "AWS_IAM", "AMAZON_COGNITO_USER_POOLS", "OPENID_CONNECT", "AWS_LAMBDA"
|
|
2763
|
-
# resp.graphql_apis[0].log_config.field_log_level #=> String, one of "NONE", "ERROR", "ALL"
|
|
2769
|
+
# resp.graphql_apis[0].log_config.field_log_level #=> String, one of "NONE", "ERROR", "ALL", "INFO", "DEBUG"
|
|
2764
2770
|
# resp.graphql_apis[0].log_config.cloud_watch_logs_role_arn #=> String
|
|
2765
2771
|
# resp.graphql_apis[0].log_config.exclude_verbose_content #=> Boolean
|
|
2766
2772
|
# resp.graphql_apis[0].user_pool_config.user_pool_id #=> String
|
|
@@ -3938,7 +3944,7 @@ module Aws::AppSync
|
|
|
3938
3944
|
# api_id: "String", # required
|
|
3939
3945
|
# name: "String", # required
|
|
3940
3946
|
# log_config: {
|
|
3941
|
-
# field_log_level: "NONE", # required, accepts NONE, ERROR, ALL
|
|
3947
|
+
# field_log_level: "NONE", # required, accepts NONE, ERROR, ALL, INFO, DEBUG
|
|
3942
3948
|
# cloud_watch_logs_role_arn: "String", # required
|
|
3943
3949
|
# exclude_verbose_content: false,
|
|
3944
3950
|
# },
|
|
@@ -3999,7 +4005,7 @@ module Aws::AppSync
|
|
|
3999
4005
|
# resp.graphql_api.name #=> String
|
|
4000
4006
|
# resp.graphql_api.api_id #=> String
|
|
4001
4007
|
# resp.graphql_api.authentication_type #=> String, one of "API_KEY", "AWS_IAM", "AMAZON_COGNITO_USER_POOLS", "OPENID_CONNECT", "AWS_LAMBDA"
|
|
4002
|
-
# resp.graphql_api.log_config.field_log_level #=> String, one of "NONE", "ERROR", "ALL"
|
|
4008
|
+
# resp.graphql_api.log_config.field_log_level #=> String, one of "NONE", "ERROR", "ALL", "INFO", "DEBUG"
|
|
4003
4009
|
# resp.graphql_api.log_config.cloud_watch_logs_role_arn #=> String
|
|
4004
4010
|
# resp.graphql_api.log_config.exclude_verbose_content #=> Boolean
|
|
4005
4011
|
# resp.graphql_api.user_pool_config.user_pool_id #=> String
|
|
@@ -4317,7 +4323,7 @@ module Aws::AppSync
|
|
|
4317
4323
|
tracer: tracer
|
|
4318
4324
|
)
|
|
4319
4325
|
context[:gem_name] = 'aws-sdk-appsync'
|
|
4320
|
-
context[:gem_version] = '1.
|
|
4326
|
+
context[:gem_version] = '1.85.0'
|
|
4321
4327
|
Seahorse::Client::Request.new(handlers, context)
|
|
4322
4328
|
end
|
|
4323
4329
|
|
|
@@ -3575,12 +3575,13 @@ module Aws::AppSync
|
|
|
3575
3575
|
# The Amazon CloudWatch Logs configuration.
|
|
3576
3576
|
#
|
|
3577
3577
|
# @!attribute [rw] field_log_level
|
|
3578
|
-
# The field logging level. Values can be NONE, ERROR, or
|
|
3578
|
+
# The field logging level. Values can be NONE, ERROR, INFO, DEBUG, or
|
|
3579
|
+
# ALL.
|
|
3579
3580
|
#
|
|
3580
3581
|
# * **NONE**: No field-level logs are captured.
|
|
3581
3582
|
#
|
|
3582
|
-
# * **ERROR**: Logs the following information only for the fields
|
|
3583
|
-
# are in error:
|
|
3583
|
+
# * **ERROR**: Logs the following information **only** for the fields
|
|
3584
|
+
# that are in the error category:
|
|
3584
3585
|
#
|
|
3585
3586
|
# * The error section in the server response.
|
|
3586
3587
|
#
|
|
@@ -3589,12 +3590,32 @@ module Aws::AppSync
|
|
|
3589
3590
|
# * The generated request/response functions that got resolved for
|
|
3590
3591
|
# error fields.
|
|
3591
3592
|
#
|
|
3593
|
+
# * **INFO**: Logs the following information **only** for the fields
|
|
3594
|
+
# that are in the info and error categories:
|
|
3595
|
+
#
|
|
3596
|
+
# * Info-level messages.
|
|
3597
|
+
#
|
|
3598
|
+
# * The user messages sent through `$util.log.info` and
|
|
3599
|
+
# `console.log`.
|
|
3600
|
+
#
|
|
3601
|
+
# * Field-level tracing and mapping logs are not shown.
|
|
3602
|
+
#
|
|
3603
|
+
# * **DEBUG**: Logs the following information **only** for the fields
|
|
3604
|
+
# that are in the debug, info, and error categories:
|
|
3605
|
+
#
|
|
3606
|
+
# * Debug-level messages.
|
|
3607
|
+
#
|
|
3608
|
+
# * The user messages sent through `$util.log.info`,
|
|
3609
|
+
# `$util.log.debug`, `console.log`, and `console.debug`.
|
|
3610
|
+
#
|
|
3611
|
+
# * Field-level tracing and mapping logs are not shown.
|
|
3612
|
+
#
|
|
3592
3613
|
# * **ALL**: The following information is logged for all fields in the
|
|
3593
3614
|
# query:
|
|
3594
3615
|
#
|
|
3595
3616
|
# * Field-level tracing information.
|
|
3596
3617
|
#
|
|
3597
|
-
# * The generated request/response functions that
|
|
3618
|
+
# * The generated request/response functions that were resolved for
|
|
3598
3619
|
# each field.
|
|
3599
3620
|
# @return [String]
|
|
3600
3621
|
#
|
data/lib/aws-sdk-appsync.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -252,7 +252,7 @@ module Aws
|
|
|
252
252
|
def create_graphql_api: (
|
|
253
253
|
name: ::String,
|
|
254
254
|
?log_config: {
|
|
255
|
-
field_log_level: ("NONE" | "ERROR" | "ALL"),
|
|
255
|
+
field_log_level: ("NONE" | "ERROR" | "ALL" | "INFO" | "DEBUG"),
|
|
256
256
|
cloud_watch_logs_role_arn: ::String,
|
|
257
257
|
exclude_verbose_content: bool?
|
|
258
258
|
},
|
|
@@ -1005,7 +1005,7 @@ module Aws
|
|
|
1005
1005
|
api_id: ::String,
|
|
1006
1006
|
name: ::String,
|
|
1007
1007
|
?log_config: {
|
|
1008
|
-
field_log_level: ("NONE" | "ERROR" | "ALL"),
|
|
1008
|
+
field_log_level: ("NONE" | "ERROR" | "ALL" | "INFO" | "DEBUG"),
|
|
1009
1009
|
cloud_watch_logs_role_arn: ::String,
|
|
1010
1010
|
exclude_verbose_content: bool?
|
|
1011
1011
|
},
|
data/sig/types.rbs
CHANGED
|
@@ -921,7 +921,7 @@ module Aws::AppSync
|
|
|
921
921
|
end
|
|
922
922
|
|
|
923
923
|
class LogConfig
|
|
924
|
-
attr_accessor field_log_level: ("NONE" | "ERROR" | "ALL")
|
|
924
|
+
attr_accessor field_log_level: ("NONE" | "ERROR" | "ALL" | "INFO" | "DEBUG")
|
|
925
925
|
attr_accessor cloud_watch_logs_role_arn: ::String
|
|
926
926
|
attr_accessor exclude_verbose_content: bool
|
|
927
927
|
SENSITIVE: []
|
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.85.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-09-
|
|
11
|
+
date: 2024-09-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|