aws-sdk-appsync 1.81.0 → 1.83.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-appsync/client.rb +39 -2
- data/lib/aws-sdk-appsync/client_api.rb +60 -0
- data/lib/aws-sdk-appsync.rb +1 -1
- data/sig/client.rbs +1 -0
- data/sig/resource.rbs +1 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c9a5af45bc1f4ef5b473a64e4dc4be0c5eb58c6b22f1f7bf8e90d70536387783
|
4
|
+
data.tar.gz: 10e9374bc8c38073c58efe9225442e7c165c92a2b2d97eae954cfce3c160bcc6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7363e963adf88ae7b3c0956f3f8e71198d15863d70d2ca88ae80e40d447dada4ceddd3078853369ed32fd7732e197faef4b81f301a02cc44275ea6093d1e0afb
|
7
|
+
data.tar.gz: bc334dd26a8feacbf135d9cbf6afc8f691f4209eff895be7dd4d3dd673196267bcd1cfec1ac97bd3070f16d3a3bb27340c5db6e4450f426abf8d38cb4768e2d4
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.83.0 (2024-09-03)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.82.0 (2024-07-23)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Adding support for paginators in AppSync list APIs
|
13
|
+
|
4
14
|
1.81.0 (2024-07-02)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.83.0
|
@@ -32,6 +32,7 @@ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
|
32
32
|
require 'aws-sdk-core/plugins/request_compression.rb'
|
33
33
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
34
34
|
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
35
|
+
require 'aws-sdk-core/plugins/telemetry.rb'
|
35
36
|
require 'aws-sdk-core/plugins/sign.rb'
|
36
37
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
37
38
|
|
@@ -83,6 +84,7 @@ module Aws::AppSync
|
|
83
84
|
add_plugin(Aws::Plugins::RequestCompression)
|
84
85
|
add_plugin(Aws::Plugins::DefaultsMode)
|
85
86
|
add_plugin(Aws::Plugins::RecursionDetection)
|
87
|
+
add_plugin(Aws::Plugins::Telemetry)
|
86
88
|
add_plugin(Aws::Plugins::Sign)
|
87
89
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
88
90
|
add_plugin(Aws::AppSync::Plugins::Endpoints)
|
@@ -330,6 +332,16 @@ module Aws::AppSync
|
|
330
332
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
331
333
|
# requests are made, and retries are disabled.
|
332
334
|
#
|
335
|
+
# @option options [Aws::Telemetry::TelemetryProviderBase] :telemetry_provider (Aws::Telemetry::NoOpTelemetryProvider)
|
336
|
+
# Allows you to provide a telemetry provider, which is used to
|
337
|
+
# emit telemetry data. By default, uses `NoOpTelemetryProvider` which
|
338
|
+
# will not record or emit any telemetry data. The SDK supports the
|
339
|
+
# following telemetry providers:
|
340
|
+
#
|
341
|
+
# * OpenTelemetry (OTel) - To use the OTel provider, install and require the
|
342
|
+
# `opentelemetry-sdk` gem and then, pass in an instance of a
|
343
|
+
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
344
|
+
#
|
333
345
|
# @option options [Aws::TokenProvider] :token_provider
|
334
346
|
# A Bearer Token Provider. This can be an instance of any one of the
|
335
347
|
# following classes:
|
@@ -2510,6 +2522,8 @@ module Aws::AppSync
|
|
2510
2522
|
# * {Types::ListApiKeysResponse#api_keys #api_keys} => Array<Types::ApiKey>
|
2511
2523
|
# * {Types::ListApiKeysResponse#next_token #next_token} => String
|
2512
2524
|
#
|
2525
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2526
|
+
#
|
2513
2527
|
# @example Request syntax with placeholder values
|
2514
2528
|
#
|
2515
2529
|
# resp = client.list_api_keys({
|
@@ -2554,6 +2568,8 @@ module Aws::AppSync
|
|
2554
2568
|
# * {Types::ListDataSourcesResponse#data_sources #data_sources} => Array<Types::DataSource>
|
2555
2569
|
# * {Types::ListDataSourcesResponse#next_token #next_token} => String
|
2556
2570
|
#
|
2571
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2572
|
+
#
|
2557
2573
|
# @example Request syntax with placeholder values
|
2558
2574
|
#
|
2559
2575
|
# resp = client.list_data_sources({
|
@@ -2620,6 +2636,8 @@ module Aws::AppSync
|
|
2620
2636
|
# * {Types::ListDomainNamesResponse#domain_name_configs #domain_name_configs} => Array<Types::DomainNameConfig>
|
2621
2637
|
# * {Types::ListDomainNamesResponse#next_token #next_token} => String
|
2622
2638
|
#
|
2639
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2640
|
+
#
|
2623
2641
|
# @example Request syntax with placeholder values
|
2624
2642
|
#
|
2625
2643
|
# resp = client.list_domain_names({
|
@@ -2664,6 +2682,8 @@ module Aws::AppSync
|
|
2664
2682
|
# * {Types::ListFunctionsResponse#functions #functions} => Array<Types::FunctionConfiguration>
|
2665
2683
|
# * {Types::ListFunctionsResponse#next_token #next_token} => String
|
2666
2684
|
#
|
2685
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2686
|
+
#
|
2667
2687
|
# @example Request syntax with placeholder values
|
2668
2688
|
#
|
2669
2689
|
# resp = client.list_functions({
|
@@ -2723,6 +2743,8 @@ module Aws::AppSync
|
|
2723
2743
|
# * {Types::ListGraphqlApisResponse#graphql_apis #graphql_apis} => Array<Types::GraphqlApi>
|
2724
2744
|
# * {Types::ListGraphqlApisResponse#next_token #next_token} => String
|
2725
2745
|
#
|
2746
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2747
|
+
#
|
2726
2748
|
# @example Request syntax with placeholder values
|
2727
2749
|
#
|
2728
2750
|
# resp = client.list_graphql_apis({
|
@@ -2816,6 +2838,8 @@ module Aws::AppSync
|
|
2816
2838
|
# * {Types::ListResolversResponse#resolvers #resolvers} => Array<Types::Resolver>
|
2817
2839
|
# * {Types::ListResolversResponse#next_token #next_token} => String
|
2818
2840
|
#
|
2841
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2842
|
+
#
|
2819
2843
|
# @example Request syntax with placeholder values
|
2820
2844
|
#
|
2821
2845
|
# resp = client.list_resolvers({
|
@@ -2880,6 +2904,8 @@ module Aws::AppSync
|
|
2880
2904
|
# * {Types::ListResolversByFunctionResponse#resolvers #resolvers} => Array<Types::Resolver>
|
2881
2905
|
# * {Types::ListResolversByFunctionResponse#next_token #next_token} => String
|
2882
2906
|
#
|
2907
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2908
|
+
#
|
2883
2909
|
# @example Request syntax with placeholder values
|
2884
2910
|
#
|
2885
2911
|
# resp = client.list_resolvers_by_function({
|
@@ -2941,6 +2967,8 @@ module Aws::AppSync
|
|
2941
2967
|
# * {Types::ListSourceApiAssociationsResponse#source_api_association_summaries #source_api_association_summaries} => Array<Types::SourceApiAssociationSummary>
|
2942
2968
|
# * {Types::ListSourceApiAssociationsResponse#next_token #next_token} => String
|
2943
2969
|
#
|
2970
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2971
|
+
#
|
2944
2972
|
# @example Request syntax with placeholder values
|
2945
2973
|
#
|
2946
2974
|
# resp = client.list_source_api_associations({
|
@@ -3020,6 +3048,8 @@ module Aws::AppSync
|
|
3020
3048
|
# * {Types::ListTypesResponse#types #types} => Array<Types::Type>
|
3021
3049
|
# * {Types::ListTypesResponse#next_token #next_token} => String
|
3022
3050
|
#
|
3051
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3052
|
+
#
|
3023
3053
|
# @example Request syntax with placeholder values
|
3024
3054
|
#
|
3025
3055
|
# resp = client.list_types({
|
@@ -3077,6 +3107,8 @@ module Aws::AppSync
|
|
3077
3107
|
# * {Types::ListTypesByAssociationResponse#types #types} => Array<Types::Type>
|
3078
3108
|
# * {Types::ListTypesByAssociationResponse#next_token #next_token} => String
|
3079
3109
|
#
|
3110
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
3111
|
+
#
|
3080
3112
|
# @example Request syntax with placeholder values
|
3081
3113
|
#
|
3082
3114
|
# resp = client.list_types_by_association({
|
@@ -4273,14 +4305,19 @@ module Aws::AppSync
|
|
4273
4305
|
# @api private
|
4274
4306
|
def build_request(operation_name, params = {})
|
4275
4307
|
handlers = @handlers.for(operation_name)
|
4308
|
+
tracer = config.telemetry_provider.tracer_provider.tracer(
|
4309
|
+
Aws::Telemetry.module_to_tracer_name('Aws::AppSync')
|
4310
|
+
)
|
4276
4311
|
context = Seahorse::Client::RequestContext.new(
|
4277
4312
|
operation_name: operation_name,
|
4278
4313
|
operation: config.api.operation(operation_name),
|
4279
4314
|
client: self,
|
4280
4315
|
params: params,
|
4281
|
-
config: config
|
4316
|
+
config: config,
|
4317
|
+
tracer: tracer
|
4318
|
+
)
|
4282
4319
|
context[:gem_name] = 'aws-sdk-appsync'
|
4283
|
-
context[:gem_version] = '1.
|
4320
|
+
context[:gem_version] = '1.83.0'
|
4284
4321
|
Seahorse::Client::Request.new(handlers, context)
|
4285
4322
|
end
|
4286
4323
|
|
@@ -1749,6 +1749,12 @@ module Aws::AppSync
|
|
1749
1749
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
1750
1750
|
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
1751
1751
|
o.errors << Shapes::ShapeRef.new(shape: InternalFailureException)
|
1752
|
+
o[:pager] = Aws::Pager.new(
|
1753
|
+
limit_key: "max_results",
|
1754
|
+
tokens: {
|
1755
|
+
"next_token" => "next_token"
|
1756
|
+
}
|
1757
|
+
)
|
1752
1758
|
end)
|
1753
1759
|
|
1754
1760
|
api.add_operation(:list_data_sources, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1761,6 +1767,12 @@ module Aws::AppSync
|
|
1761
1767
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
1762
1768
|
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
1763
1769
|
o.errors << Shapes::ShapeRef.new(shape: InternalFailureException)
|
1770
|
+
o[:pager] = Aws::Pager.new(
|
1771
|
+
limit_key: "max_results",
|
1772
|
+
tokens: {
|
1773
|
+
"next_token" => "next_token"
|
1774
|
+
}
|
1775
|
+
)
|
1764
1776
|
end)
|
1765
1777
|
|
1766
1778
|
api.add_operation(:list_domain_names, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1772,6 +1784,12 @@ module Aws::AppSync
|
|
1772
1784
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1773
1785
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
1774
1786
|
o.errors << Shapes::ShapeRef.new(shape: InternalFailureException)
|
1787
|
+
o[:pager] = Aws::Pager.new(
|
1788
|
+
limit_key: "max_results",
|
1789
|
+
tokens: {
|
1790
|
+
"next_token" => "next_token"
|
1791
|
+
}
|
1792
|
+
)
|
1775
1793
|
end)
|
1776
1794
|
|
1777
1795
|
api.add_operation(:list_functions, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1784,6 +1802,12 @@ module Aws::AppSync
|
|
1784
1802
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
1785
1803
|
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
1786
1804
|
o.errors << Shapes::ShapeRef.new(shape: InternalFailureException)
|
1805
|
+
o[:pager] = Aws::Pager.new(
|
1806
|
+
limit_key: "max_results",
|
1807
|
+
tokens: {
|
1808
|
+
"next_token" => "next_token"
|
1809
|
+
}
|
1810
|
+
)
|
1787
1811
|
end)
|
1788
1812
|
|
1789
1813
|
api.add_operation(:list_graphql_apis, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1795,6 +1819,12 @@ module Aws::AppSync
|
|
1795
1819
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
1796
1820
|
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
1797
1821
|
o.errors << Shapes::ShapeRef.new(shape: InternalFailureException)
|
1822
|
+
o[:pager] = Aws::Pager.new(
|
1823
|
+
limit_key: "max_results",
|
1824
|
+
tokens: {
|
1825
|
+
"next_token" => "next_token"
|
1826
|
+
}
|
1827
|
+
)
|
1798
1828
|
end)
|
1799
1829
|
|
1800
1830
|
api.add_operation(:list_resolvers, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1807,6 +1837,12 @@ module Aws::AppSync
|
|
1807
1837
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
1808
1838
|
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
1809
1839
|
o.errors << Shapes::ShapeRef.new(shape: InternalFailureException)
|
1840
|
+
o[:pager] = Aws::Pager.new(
|
1841
|
+
limit_key: "max_results",
|
1842
|
+
tokens: {
|
1843
|
+
"next_token" => "next_token"
|
1844
|
+
}
|
1845
|
+
)
|
1810
1846
|
end)
|
1811
1847
|
|
1812
1848
|
api.add_operation(:list_resolvers_by_function, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1819,6 +1855,12 @@ module Aws::AppSync
|
|
1819
1855
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
1820
1856
|
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
1821
1857
|
o.errors << Shapes::ShapeRef.new(shape: InternalFailureException)
|
1858
|
+
o[:pager] = Aws::Pager.new(
|
1859
|
+
limit_key: "max_results",
|
1860
|
+
tokens: {
|
1861
|
+
"next_token" => "next_token"
|
1862
|
+
}
|
1863
|
+
)
|
1822
1864
|
end)
|
1823
1865
|
|
1824
1866
|
api.add_operation(:list_source_api_associations, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1831,6 +1873,12 @@ module Aws::AppSync
|
|
1831
1873
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
1832
1874
|
o.errors << Shapes::ShapeRef.new(shape: InternalFailureException)
|
1833
1875
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
1876
|
+
o[:pager] = Aws::Pager.new(
|
1877
|
+
limit_key: "max_results",
|
1878
|
+
tokens: {
|
1879
|
+
"next_token" => "next_token"
|
1880
|
+
}
|
1881
|
+
)
|
1834
1882
|
end)
|
1835
1883
|
|
1836
1884
|
api.add_operation(:list_tags_for_resource, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1858,6 +1906,12 @@ module Aws::AppSync
|
|
1858
1906
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
1859
1907
|
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
1860
1908
|
o.errors << Shapes::ShapeRef.new(shape: InternalFailureException)
|
1909
|
+
o[:pager] = Aws::Pager.new(
|
1910
|
+
limit_key: "max_results",
|
1911
|
+
tokens: {
|
1912
|
+
"next_token" => "next_token"
|
1913
|
+
}
|
1914
|
+
)
|
1861
1915
|
end)
|
1862
1916
|
|
1863
1917
|
api.add_operation(:list_types_by_association, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1871,6 +1925,12 @@ module Aws::AppSync
|
|
1871
1925
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
1872
1926
|
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
1873
1927
|
o.errors << Shapes::ShapeRef.new(shape: InternalFailureException)
|
1928
|
+
o[:pager] = Aws::Pager.new(
|
1929
|
+
limit_key: "max_results",
|
1930
|
+
tokens: {
|
1931
|
+
"next_token" => "next_token"
|
1932
|
+
}
|
1933
|
+
)
|
1874
1934
|
end)
|
1875
1935
|
|
1876
1936
|
api.add_operation(:put_graphql_api_environment_variables, Seahorse::Model::Operation.new.tap do |o|
|
data/lib/aws-sdk-appsync.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -50,6 +50,7 @@ module Aws
|
|
50
50
|
?session_token: String,
|
51
51
|
?sigv4a_signing_region_set: Array[String],
|
52
52
|
?stub_responses: untyped,
|
53
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
53
54
|
?token_provider: untyped,
|
54
55
|
?use_dualstack_endpoint: bool,
|
55
56
|
?use_fips_endpoint: bool,
|
data/sig/resource.rbs
CHANGED
@@ -50,6 +50,7 @@ module Aws
|
|
50
50
|
?session_token: String,
|
51
51
|
?sigv4a_signing_region_set: Array[String],
|
52
52
|
?stub_responses: untyped,
|
53
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
53
54
|
?token_provider: untyped,
|
54
55
|
?use_dualstack_endpoint: bool,
|
55
56
|
?use_fips_endpoint: bool,
|
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.83.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-
|
11
|
+
date: 2024-09-03 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.
|
22
|
+
version: 3.203.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.
|
32
|
+
version: 3.203.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|