aws-sdk-apigateway 1.118.0 → 1.120.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: 0f5c85c8941f8ba1f888bdf7e18aadb3207b79f7f6f54af8559955576b54b37d
4
- data.tar.gz: 3357abb164821c73bc157b448b077b9be1f68fb6e7c31be0dce4d273ff4645bd
3
+ metadata.gz: 6089a942367bdd86306b2dddbe70e01cc7ebbf045bdad63f1176667295c30e0d
4
+ data.tar.gz: 41036b0b748de5c350368a0719462a589a7456af667fb34203230f4b48266c00
5
5
  SHA512:
6
- metadata.gz: bf338722a223654ca41e4749efefd07e38d633ef2f0639703394111b7071a20d25143508298b861ce637b1dee07a4f3381c919cd17543a1d8274946ea2a4e4b0
7
- data.tar.gz: 4d2cd42c770732881fbb15f4415862e8a6b2140a172a37c9337534ce1351421455c79b3e8874b99d9aec14d1c140705767dac1d9f07f7653b10af9c8d019e91b
6
+ metadata.gz: 190de027d2bf977c86f8176fa4c42b1d0cb21fc31e2417fbe6d94f8531015ec3850bd371d0a342b542d1f00deee1a2cbf219af0e5a52779e32a113eb8025358e
7
+ data.tar.gz: c37b09b787c1ae2f6a69d6072af842072d5ec7d24f9e6c48bbf285748fbd3e751524b7417fd5f05106ddc3ad75efd550dba426b90bf5ab735322cefad74a95ef
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.120.0 (2025-07-21)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.119.0 (2025-06-12)
10
+ ------------------
11
+
12
+ * Feature - Documentation updates for Amazon API Gateway
13
+
4
14
  1.118.0 (2025-06-03)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.118.0
1
+ 1.120.0
@@ -97,7 +97,7 @@ module Aws::APIGateway
97
97
  # class name or an instance of a plugin class.
98
98
  #
99
99
  # @option options [required, Aws::CredentialProvider] :credentials
100
- # Your AWS credentials. This can be an instance of any one of the
100
+ # Your AWS credentials used for authentication. This can be an instance of any one of the
101
101
  # following classes:
102
102
  #
103
103
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
@@ -130,18 +130,23 @@ module Aws::APIGateway
130
130
  # locations will be searched for credentials:
131
131
  #
132
132
  # * `Aws.config[:credentials]`
133
+ #
133
134
  # * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
134
135
  # `:account_id` options.
135
- # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY'],
136
- # ENV['AWS_SESSION_TOKEN'], and ENV['AWS_ACCOUNT_ID']
136
+ #
137
+ # * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
138
+ # `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
139
+ #
137
140
  # * `~/.aws/credentials`
141
+ #
138
142
  # * `~/.aws/config`
143
+ #
139
144
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
140
145
  # are very aggressive. Construct and pass an instance of
141
146
  # `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
142
147
  # enable retries and extended timeouts. Instance profile credential
143
- # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
144
- # to true.
148
+ # fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
149
+ # to `true`.
145
150
  #
146
151
  # @option options [required, String] :region
147
152
  # The AWS region to connect to. The configured `:region` is
@@ -169,6 +174,11 @@ module Aws::APIGateway
169
174
  # When false, the request will raise a `RetryCapacityNotAvailableError` and will
170
175
  # not retry instead of sleeping.
171
176
  #
177
+ # @option options [Array<String>] :auth_scheme_preference
178
+ # A list of preferred authentication schemes to use when making a request. Supported values are:
179
+ # `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
180
+ # shared config as `auth_scheme_preference`, the value should be a comma-separated list.
181
+ #
172
182
  # @option options [Boolean] :client_side_monitoring (false)
173
183
  # When `true`, client-side metrics will be collected for all API requests from
174
184
  # this client.
@@ -255,8 +265,8 @@ module Aws::APIGateway
255
265
  # 4 times. Used in `standard` and `adaptive` retry modes.
256
266
  #
257
267
  # @option options [String] :profile ("default")
258
- # Used when loading credentials from the shared credentials file
259
- # at HOME/.aws/credentials. When not specified, 'default' is used.
268
+ # Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
269
+ # When not specified, 'default' is used.
260
270
  #
261
271
  # @option options [String] :request_checksum_calculation ("when_supported")
262
272
  # Determines when a checksum will be calculated for request payloads. Values are:
@@ -369,7 +379,7 @@ module Aws::APIGateway
369
379
  # `Aws::Telemetry::OTelProvider` for telemetry provider.
370
380
  #
371
381
  # @option options [Aws::TokenProvider] :token_provider
372
- # A Bearer Token Provider. This can be an instance of any one of the
382
+ # Your Bearer token used for authentication. This can be an instance of any one of the
373
383
  # following classes:
374
384
  #
375
385
  # * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
@@ -5185,7 +5195,8 @@ module Aws::APIGateway
5185
5195
  #
5186
5196
  # @option params [Integer] :timeout_in_millis
5187
5197
  # Custom timeout between 50 and 29,000 milliseconds. The default value
5188
- # is 29,000 milliseconds or 29 seconds.
5198
+ # is 29,000 milliseconds or 29 seconds. You can increase the default
5199
+ # value to longer than 29 seconds for Regional or private APIs only.
5189
5200
  #
5190
5201
  # @option params [Types::TlsConfig] :tls_config
5191
5202
  # Specifies the TLS configuration for an integration.
@@ -7401,7 +7412,7 @@ module Aws::APIGateway
7401
7412
  tracer: tracer
7402
7413
  )
7403
7414
  context[:gem_name] = 'aws-sdk-apigateway'
7404
- context[:gem_version] = '1.118.0'
7415
+ context[:gem_version] = '1.120.0'
7405
7416
  Seahorse::Client::Request.new(handlers, context)
7406
7417
  end
7407
7418
 
@@ -1907,8 +1907,7 @@ module Aws::APIGateway
1907
1907
  # @return [String]
1908
1908
  #
1909
1909
  # @!attribute [rw] domain_name_arn
1910
- # The ARN of the domain name. Supported only for private custom domain
1911
- # names.
1910
+ # The ARN of the domain name.
1912
1911
  # @return [String]
1913
1912
  #
1914
1913
  # @!attribute [rw] certificate_name
@@ -3602,7 +3601,8 @@ module Aws::APIGateway
3602
3601
  #
3603
3602
  # @!attribute [rw] timeout_in_millis
3604
3603
  # Custom timeout between 50 and 29,000 milliseconds. The default value
3605
- # is 29,000 milliseconds or 29 seconds.
3604
+ # is 29,000 milliseconds or 29 seconds. You can increase the default
3605
+ # value to longer than 29 seconds for Regional or private APIs only.
3606
3606
  # @return [Integer]
3607
3607
  #
3608
3608
  # @!attribute [rw] cache_namespace
@@ -4298,7 +4298,8 @@ module Aws::APIGateway
4298
4298
  #
4299
4299
  # @!attribute [rw] timeout_in_millis
4300
4300
  # Custom timeout between 50 and 29,000 milliseconds. The default value
4301
- # is 29,000 milliseconds or 29 seconds.
4301
+ # is 29,000 milliseconds or 29 seconds. You can increase the default
4302
+ # value to longer than 29 seconds for Regional or private APIs only.
4302
4303
  # @return [Integer]
4303
4304
  #
4304
4305
  # @!attribute [rw] tls_config
@@ -54,7 +54,7 @@ module Aws::APIGateway
54
54
  autoload :EndpointProvider, 'aws-sdk-apigateway/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-apigateway/endpoints'
56
56
 
57
- GEM_VERSION = '1.118.0'
57
+ GEM_VERSION = '1.120.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -18,6 +18,7 @@ module Aws
18
18
  ?account_id: String,
19
19
  ?active_endpoint_cache: bool,
20
20
  ?adaptive_retry_wait_to_fill: bool,
21
+ ?auth_scheme_preference: Array[String],
21
22
  ?client_side_monitoring: bool,
22
23
  ?client_side_monitoring_client_id: String,
23
24
  ?client_side_monitoring_host: String,
data/sig/resource.rbs CHANGED
@@ -18,6 +18,7 @@ module Aws
18
18
  ?account_id: String,
19
19
  ?active_endpoint_cache: bool,
20
20
  ?adaptive_retry_wait_to_fill: bool,
21
+ ?auth_scheme_preference: Array[String],
21
22
  ?client_side_monitoring: bool,
22
23
  ?client_side_monitoring_client_id: String,
23
24
  ?client_side_monitoring_host: String,
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-apigateway
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.118.0
4
+ version: 1.120.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.225.0
21
+ version: 3.227.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.225.0
31
+ version: 3.227.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement