aws-sdk-cloudsearchdomain 1.47.0 → 1.49.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-cloudsearchdomain/client.rb +25 -2
- data/lib/aws-sdk-cloudsearchdomain.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: 77f6ec7292b9180fa945c63f6abcd1178943ca0ea6da603fce9de0f496893966
|
4
|
+
data.tar.gz: d828327bfb1507f7a62e74978f1bd9a441b256a4250664278b78c962f798aabb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: beb9aea121c3cf56bf1e59dddfcd09c5c48ba12de138e92e734028e72e35c3ef440f4ee0bd0bd4ec435b4faf09040b073b57db5befc9fdf7ef47c1cfe7c54fff
|
7
|
+
data.tar.gz: a8f756b6c67990da07c73a8226da9c122abdd783bcd5f9225c57fa10b3ff55fc004e1573866a9736e26be092b5e0776c2dde7d61eb02ef1429f79b389ded0ec7
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.49.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.48.0 (2024-09-03)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.47.0 (2024-07-02)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.49.0
|
@@ -29,6 +29,7 @@ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
|
29
29
|
require 'aws-sdk-core/plugins/request_compression.rb'
|
30
30
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
31
31
|
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
32
|
+
require 'aws-sdk-core/plugins/telemetry.rb'
|
32
33
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
33
34
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
34
35
|
require 'aws-sdk-cloudsearchdomain/plugins/conditional_signing.rb'
|
@@ -79,6 +80,7 @@ module Aws::CloudSearchDomain
|
|
79
80
|
add_plugin(Aws::Plugins::RequestCompression)
|
80
81
|
add_plugin(Aws::Plugins::DefaultsMode)
|
81
82
|
add_plugin(Aws::Plugins::RecursionDetection)
|
83
|
+
add_plugin(Aws::Plugins::Telemetry)
|
82
84
|
add_plugin(Aws::Plugins::SignatureV4)
|
83
85
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
84
86
|
add_plugin(Aws::CloudSearchDomain::Plugins::ConditionalSigning)
|
@@ -272,6 +274,16 @@ module Aws::CloudSearchDomain
|
|
272
274
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
273
275
|
# requests are made, and retries are disabled.
|
274
276
|
#
|
277
|
+
# @option options [Aws::Telemetry::TelemetryProviderBase] :telemetry_provider (Aws::Telemetry::NoOpTelemetryProvider)
|
278
|
+
# Allows you to provide a telemetry provider, which is used to
|
279
|
+
# emit telemetry data. By default, uses `NoOpTelemetryProvider` which
|
280
|
+
# will not record or emit any telemetry data. The SDK supports the
|
281
|
+
# following telemetry providers:
|
282
|
+
#
|
283
|
+
# * OpenTelemetry (OTel) - To use the OTel provider, install and require the
|
284
|
+
# `opentelemetry-sdk` gem and then, pass in an instance of a
|
285
|
+
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
286
|
+
#
|
275
287
|
# @option options [Aws::TokenProvider] :token_provider
|
276
288
|
# A Bearer Token Provider. This can be an instance of any one of the
|
277
289
|
# following classes:
|
@@ -354,6 +366,12 @@ module Aws::CloudSearchDomain
|
|
354
366
|
# @option options [String] :ssl_ca_store
|
355
367
|
# Sets the X509::Store to verify peer certificate.
|
356
368
|
#
|
369
|
+
# @option options [OpenSSL::X509::Certificate] :ssl_cert
|
370
|
+
# Sets a client certificate when creating http connections.
|
371
|
+
#
|
372
|
+
# @option options [OpenSSL::PKey] :ssl_key
|
373
|
+
# Sets a client key when creating http connections.
|
374
|
+
#
|
357
375
|
# @option options [Float] :ssl_timeout
|
358
376
|
# Sets the SSL timeout in seconds
|
359
377
|
#
|
@@ -958,14 +976,19 @@ module Aws::CloudSearchDomain
|
|
958
976
|
# @api private
|
959
977
|
def build_request(operation_name, params = {})
|
960
978
|
handlers = @handlers.for(operation_name)
|
979
|
+
tracer = config.telemetry_provider.tracer_provider.tracer(
|
980
|
+
Aws::Telemetry.module_to_tracer_name('Aws::CloudSearchDomain')
|
981
|
+
)
|
961
982
|
context = Seahorse::Client::RequestContext.new(
|
962
983
|
operation_name: operation_name,
|
963
984
|
operation: config.api.operation(operation_name),
|
964
985
|
client: self,
|
965
986
|
params: params,
|
966
|
-
config: config
|
987
|
+
config: config,
|
988
|
+
tracer: tracer
|
989
|
+
)
|
967
990
|
context[:gem_name] = 'aws-sdk-cloudsearchdomain'
|
968
|
-
context[:gem_version] = '1.
|
991
|
+
context[:gem_version] = '1.49.0'
|
969
992
|
Seahorse::Client::Request.new(handlers, context)
|
970
993
|
end
|
971
994
|
|
data/sig/client.rbs
CHANGED
data/sig/resource.rbs
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-cloudsearchdomain
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.49.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-10 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
|