aws-sdk-appsync 1.80.0 → 1.82.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: 122cacb0dade01084d95040abd4990fefa91d1ce14940818eb8a9e4c6a704ff2
4
- data.tar.gz: b17c685a42ee37576d43f9ee91f098bec4ea2cb14da8ffcc020be0759855d965
3
+ metadata.gz: bc086f88837d8e455093e09c3909f700a471853d992f86fde8f1f3473d76991c
4
+ data.tar.gz: a0d5ee515cbd3d453f128e7bf9e0e23df0bdd83e5d8f663c5146b9b3ed35d552
5
5
  SHA512:
6
- metadata.gz: b5826462c4ce2a2caa36dbbbded50b114b32c3ace3ea2379752d51c8caf8589a49ef65c7c127fbfdc7306101fc4495987ad6203b00d408bb0ebbabbb92f3ec1b
7
- data.tar.gz: 1cefa3841131df5cdc255b88f03ff09cae1d78892d5ee09c18068a8129898885ec4b2592b3eb9dc9aefe3ad0a6f23ffa74957af060d6b4fb59892b808c850ce1
6
+ metadata.gz: 3fee07ab83b5ef6fc88f2a8f8ff5efc34b90932798383227764cf58aac360753d698c5fcb79a51dcbabed318e1a82b2c0327d199e4f713c5e6477b8e39b5502f
7
+ data.tar.gz: 6be8eb8459bd773c801d3d35291c9eda4280b967a650df34c7eb28e9d8923909462127837722f0f79c18a4fdeaa4508e25a42b3cabcbb7c01995c4fefa8fc22b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.82.0 (2024-07-23)
5
+ ------------------
6
+
7
+ * Feature - Adding support for paginators in AppSync list APIs
8
+
9
+ 1.81.0 (2024-07-02)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.80.0 (2024-06-28)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.80.0
1
+ 1.82.0
@@ -312,6 +312,15 @@ module Aws::AppSync
312
312
  #
313
313
  # @option options [String] :session_token
314
314
  #
315
+ # @option options [Array] :sigv4a_signing_region_set
316
+ # A list of regions that should be signed with SigV4a signing. When
317
+ # not passed, a default `:sigv4a_signing_region_set` is searched for
318
+ # in the following locations:
319
+ #
320
+ # * `Aws.config[:sigv4a_signing_region_set]`
321
+ # * `ENV['AWS_SIGV4A_SIGNING_REGION_SET']`
322
+ # * `~/.aws/config`
323
+ #
315
324
  # @option options [Boolean] :stub_responses (false)
316
325
  # Causes the client to return stubbed responses. By default
317
326
  # fake responses are generated and returned. You can specify
@@ -2501,6 +2510,8 @@ module Aws::AppSync
2501
2510
  # * {Types::ListApiKeysResponse#api_keys #api_keys} => Array<Types::ApiKey>
2502
2511
  # * {Types::ListApiKeysResponse#next_token #next_token} => String
2503
2512
  #
2513
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2514
+ #
2504
2515
  # @example Request syntax with placeholder values
2505
2516
  #
2506
2517
  # resp = client.list_api_keys({
@@ -2545,6 +2556,8 @@ module Aws::AppSync
2545
2556
  # * {Types::ListDataSourcesResponse#data_sources #data_sources} => Array<Types::DataSource>
2546
2557
  # * {Types::ListDataSourcesResponse#next_token #next_token} => String
2547
2558
  #
2559
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2560
+ #
2548
2561
  # @example Request syntax with placeholder values
2549
2562
  #
2550
2563
  # resp = client.list_data_sources({
@@ -2611,6 +2624,8 @@ module Aws::AppSync
2611
2624
  # * {Types::ListDomainNamesResponse#domain_name_configs #domain_name_configs} => Array<Types::DomainNameConfig>
2612
2625
  # * {Types::ListDomainNamesResponse#next_token #next_token} => String
2613
2626
  #
2627
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2628
+ #
2614
2629
  # @example Request syntax with placeholder values
2615
2630
  #
2616
2631
  # resp = client.list_domain_names({
@@ -2655,6 +2670,8 @@ module Aws::AppSync
2655
2670
  # * {Types::ListFunctionsResponse#functions #functions} => Array<Types::FunctionConfiguration>
2656
2671
  # * {Types::ListFunctionsResponse#next_token #next_token} => String
2657
2672
  #
2673
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2674
+ #
2658
2675
  # @example Request syntax with placeholder values
2659
2676
  #
2660
2677
  # resp = client.list_functions({
@@ -2714,6 +2731,8 @@ module Aws::AppSync
2714
2731
  # * {Types::ListGraphqlApisResponse#graphql_apis #graphql_apis} => Array<Types::GraphqlApi>
2715
2732
  # * {Types::ListGraphqlApisResponse#next_token #next_token} => String
2716
2733
  #
2734
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2735
+ #
2717
2736
  # @example Request syntax with placeholder values
2718
2737
  #
2719
2738
  # resp = client.list_graphql_apis({
@@ -2807,6 +2826,8 @@ module Aws::AppSync
2807
2826
  # * {Types::ListResolversResponse#resolvers #resolvers} => Array<Types::Resolver>
2808
2827
  # * {Types::ListResolversResponse#next_token #next_token} => String
2809
2828
  #
2829
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2830
+ #
2810
2831
  # @example Request syntax with placeholder values
2811
2832
  #
2812
2833
  # resp = client.list_resolvers({
@@ -2871,6 +2892,8 @@ module Aws::AppSync
2871
2892
  # * {Types::ListResolversByFunctionResponse#resolvers #resolvers} => Array<Types::Resolver>
2872
2893
  # * {Types::ListResolversByFunctionResponse#next_token #next_token} => String
2873
2894
  #
2895
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2896
+ #
2874
2897
  # @example Request syntax with placeholder values
2875
2898
  #
2876
2899
  # resp = client.list_resolvers_by_function({
@@ -2932,6 +2955,8 @@ module Aws::AppSync
2932
2955
  # * {Types::ListSourceApiAssociationsResponse#source_api_association_summaries #source_api_association_summaries} => Array<Types::SourceApiAssociationSummary>
2933
2956
  # * {Types::ListSourceApiAssociationsResponse#next_token #next_token} => String
2934
2957
  #
2958
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2959
+ #
2935
2960
  # @example Request syntax with placeholder values
2936
2961
  #
2937
2962
  # resp = client.list_source_api_associations({
@@ -3011,6 +3036,8 @@ module Aws::AppSync
3011
3036
  # * {Types::ListTypesResponse#types #types} => Array<Types::Type>
3012
3037
  # * {Types::ListTypesResponse#next_token #next_token} => String
3013
3038
  #
3039
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
3040
+ #
3014
3041
  # @example Request syntax with placeholder values
3015
3042
  #
3016
3043
  # resp = client.list_types({
@@ -3068,6 +3095,8 @@ module Aws::AppSync
3068
3095
  # * {Types::ListTypesByAssociationResponse#types #types} => Array<Types::Type>
3069
3096
  # * {Types::ListTypesByAssociationResponse#next_token #next_token} => String
3070
3097
  #
3098
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
3099
+ #
3071
3100
  # @example Request syntax with placeholder values
3072
3101
  #
3073
3102
  # resp = client.list_types_by_association({
@@ -4271,7 +4300,7 @@ module Aws::AppSync
4271
4300
  params: params,
4272
4301
  config: config)
4273
4302
  context[:gem_name] = 'aws-sdk-appsync'
4274
- context[:gem_version] = '1.80.0'
4303
+ context[:gem_version] = '1.82.0'
4275
4304
  Seahorse::Client::Request.new(handlers, context)
4276
4305
  end
4277
4306
 
@@ -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|
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-appsync/customizations'
52
52
  # @!group service
53
53
  module Aws::AppSync
54
54
 
55
- GEM_VERSION = '1.80.0'
55
+ GEM_VERSION = '1.82.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -48,6 +48,7 @@ module Aws
48
48
  ?sdk_ua_app_id: String,
49
49
  ?secret_access_key: String,
50
50
  ?session_token: String,
51
+ ?sigv4a_signing_region_set: Array[String],
51
52
  ?stub_responses: untyped,
52
53
  ?token_provider: untyped,
53
54
  ?use_dualstack_endpoint: bool,
data/sig/resource.rbs CHANGED
@@ -48,6 +48,7 @@ module Aws
48
48
  ?sdk_ua_app_id: String,
49
49
  ?secret_access_key: String,
50
50
  ?session_token: String,
51
+ ?sigv4a_signing_region_set: Array[String],
51
52
  ?stub_responses: untyped,
52
53
  ?token_provider: untyped,
53
54
  ?use_dualstack_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.80.0
4
+ version: 1.82.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-06-28 00:00:00.000000000 Z
11
+ date: 2024-07-23 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.199.0
22
+ version: 3.201.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,21 +29,21 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.199.0
32
+ version: 3.201.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
36
36
  requirements:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: '1.1'
39
+ version: '1.5'
40
40
  type: :runtime
41
41
  prerelease: false
42
42
  version_requirements: !ruby/object:Gem::Requirement
43
43
  requirements:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
- version: '1.1'
46
+ version: '1.5'
47
47
  description: Official AWS Ruby gem for AWS AppSync (AWSAppSync). This gem is part
48
48
  of the AWS SDK for Ruby.
49
49
  email: