aws-sdk-qbusiness 1.12.0 → 1.14.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-qbusiness/async_client.rb +19 -2
- data/lib/aws-sdk-qbusiness/client.rb +25 -2
- data/lib/aws-sdk-qbusiness.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: f437f0aebd85d9bc98ab8db9a4ff0c710ef16f1f4bc1b7011a13e5648d1784ed
|
4
|
+
data.tar.gz: 38ea4f83d93171142ff700e70ef51a36044152988e81e72945b292b49ee1251b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7356bf6829dcfcdacc1f36f35f090a83d52034ca1324ec4b03c02793cb6bc75a999986304aee83264da102937bb3f196c426443e729cb5de0a625c11fd0c5bba
|
7
|
+
data.tar.gz: 6c8599d542a716c4dab44e1e99f4f15a3a4a0afaddb3d54d1e949a31bef41c6f3ec6082986af9c0f22b3b65a7f097882d0b9eac78e449e170d555a48ff4174e2
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.14.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.13.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.12.0 (2024-08-23)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.14.0
|
@@ -28,6 +28,7 @@ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
|
28
28
|
require 'aws-sdk-core/plugins/request_compression.rb'
|
29
29
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
30
30
|
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
31
|
+
require 'aws-sdk-core/plugins/telemetry.rb'
|
31
32
|
require 'aws-sdk-core/plugins/sign.rb'
|
32
33
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
33
34
|
require 'aws-sdk-core/plugins/event_stream_configuration.rb'
|
@@ -61,6 +62,7 @@ module Aws::QBusiness
|
|
61
62
|
add_plugin(Aws::Plugins::RequestCompression)
|
62
63
|
add_plugin(Aws::Plugins::DefaultsMode)
|
63
64
|
add_plugin(Aws::Plugins::RecursionDetection)
|
65
|
+
add_plugin(Aws::Plugins::Telemetry)
|
64
66
|
add_plugin(Aws::Plugins::Sign)
|
65
67
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
66
68
|
add_plugin(Aws::Plugins::EventStreamConfiguration)
|
@@ -268,6 +270,16 @@ module Aws::QBusiness
|
|
268
270
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
269
271
|
# requests are made, and retries are disabled.
|
270
272
|
#
|
273
|
+
# @option options [Aws::Telemetry::TelemetryProviderBase] :telemetry_provider (Aws::Telemetry::NoOpTelemetryProvider)
|
274
|
+
# Allows you to provide a telemetry provider, which is used to
|
275
|
+
# emit telemetry data. By default, uses `NoOpTelemetryProvider` which
|
276
|
+
# will not record or emit any telemetry data. The SDK supports the
|
277
|
+
# following telemetry providers:
|
278
|
+
#
|
279
|
+
# * OpenTelemetry (OTel) - To use the OTel provider, install and require the
|
280
|
+
# `opentelemetry-sdk` gem and then, pass in an instance of a
|
281
|
+
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
282
|
+
#
|
271
283
|
# @option options [Aws::TokenProvider] :token_provider
|
272
284
|
# A Bearer Token Provider. This can be an instance of any one of the
|
273
285
|
# following classes:
|
@@ -572,15 +584,20 @@ module Aws::QBusiness
|
|
572
584
|
# @api private
|
573
585
|
def build_request(operation_name, params = {})
|
574
586
|
handlers = @handlers.for(operation_name)
|
587
|
+
tracer = config.telemetry_provider.tracer_provider.tracer(
|
588
|
+
Aws::Telemetry.module_to_tracer_name('Aws::QBusiness')
|
589
|
+
)
|
575
590
|
context = Seahorse::Client::RequestContext.new(
|
576
591
|
operation_name: operation_name,
|
577
592
|
operation: config.api.operation(operation_name),
|
578
593
|
client: self,
|
579
594
|
params: params,
|
580
595
|
http_response: Seahorse::Client::Http::AsyncResponse.new,
|
581
|
-
config: config
|
596
|
+
config: config,
|
597
|
+
tracer: tracer
|
598
|
+
)
|
582
599
|
context[:gem_name] = 'aws-sdk-qbusiness'
|
583
|
-
context[:gem_version] = '1.
|
600
|
+
context[:gem_version] = '1.14.0'
|
584
601
|
Seahorse::Client::Request.new(handlers, context)
|
585
602
|
end
|
586
603
|
|
@@ -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
|
require 'aws-sdk-core/plugins/event_stream_configuration.rb'
|
@@ -84,6 +85,7 @@ module Aws::QBusiness
|
|
84
85
|
add_plugin(Aws::Plugins::RequestCompression)
|
85
86
|
add_plugin(Aws::Plugins::DefaultsMode)
|
86
87
|
add_plugin(Aws::Plugins::RecursionDetection)
|
88
|
+
add_plugin(Aws::Plugins::Telemetry)
|
87
89
|
add_plugin(Aws::Plugins::Sign)
|
88
90
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
89
91
|
add_plugin(Aws::Plugins::EventStreamConfiguration)
|
@@ -341,6 +343,16 @@ module Aws::QBusiness
|
|
341
343
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
342
344
|
# requests are made, and retries are disabled.
|
343
345
|
#
|
346
|
+
# @option options [Aws::Telemetry::TelemetryProviderBase] :telemetry_provider (Aws::Telemetry::NoOpTelemetryProvider)
|
347
|
+
# Allows you to provide a telemetry provider, which is used to
|
348
|
+
# emit telemetry data. By default, uses `NoOpTelemetryProvider` which
|
349
|
+
# will not record or emit any telemetry data. The SDK supports the
|
350
|
+
# following telemetry providers:
|
351
|
+
#
|
352
|
+
# * OpenTelemetry (OTel) - To use the OTel provider, install and require the
|
353
|
+
# `opentelemetry-sdk` gem and then, pass in an instance of a
|
354
|
+
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
355
|
+
#
|
344
356
|
# @option options [Aws::TokenProvider] :token_provider
|
345
357
|
# A Bearer Token Provider. This can be an instance of any one of the
|
346
358
|
# following classes:
|
@@ -424,6 +436,12 @@ module Aws::QBusiness
|
|
424
436
|
# @option options [String] :ssl_ca_store
|
425
437
|
# Sets the X509::Store to verify peer certificate.
|
426
438
|
#
|
439
|
+
# @option options [OpenSSL::X509::Certificate] :ssl_cert
|
440
|
+
# Sets a client certificate when creating http connections.
|
441
|
+
#
|
442
|
+
# @option options [OpenSSL::PKey] :ssl_key
|
443
|
+
# Sets a client key when creating http connections.
|
444
|
+
#
|
427
445
|
# @option options [Float] :ssl_timeout
|
428
446
|
# Sets the SSL timeout in seconds
|
429
447
|
#
|
@@ -4121,14 +4139,19 @@ module Aws::QBusiness
|
|
4121
4139
|
# @api private
|
4122
4140
|
def build_request(operation_name, params = {})
|
4123
4141
|
handlers = @handlers.for(operation_name)
|
4142
|
+
tracer = config.telemetry_provider.tracer_provider.tracer(
|
4143
|
+
Aws::Telemetry.module_to_tracer_name('Aws::QBusiness')
|
4144
|
+
)
|
4124
4145
|
context = Seahorse::Client::RequestContext.new(
|
4125
4146
|
operation_name: operation_name,
|
4126
4147
|
operation: config.api.operation(operation_name),
|
4127
4148
|
client: self,
|
4128
4149
|
params: params,
|
4129
|
-
config: config
|
4150
|
+
config: config,
|
4151
|
+
tracer: tracer
|
4152
|
+
)
|
4130
4153
|
context[:gem_name] = 'aws-sdk-qbusiness'
|
4131
|
-
context[:gem_version] = '1.
|
4154
|
+
context[:gem_version] = '1.14.0'
|
4132
4155
|
Seahorse::Client::Request.new(handlers, context)
|
4133
4156
|
end
|
4134
4157
|
|
data/lib/aws-sdk-qbusiness.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -53,6 +53,7 @@ module Aws
|
|
53
53
|
?session_token: String,
|
54
54
|
?sigv4a_signing_region_set: Array[String],
|
55
55
|
?stub_responses: untyped,
|
56
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
56
57
|
?token_provider: untyped,
|
57
58
|
?use_dualstack_endpoint: bool,
|
58
59
|
?use_fips_endpoint: bool,
|
data/sig/resource.rbs
CHANGED
@@ -53,6 +53,7 @@ module Aws
|
|
53
53
|
?session_token: String,
|
54
54
|
?sigv4a_signing_region_set: Array[String],
|
55
55
|
?stub_responses: untyped,
|
56
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
56
57
|
?token_provider: untyped,
|
57
58
|
?use_dualstack_endpoint: bool,
|
58
59
|
?use_fips_endpoint: bool,
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-qbusiness
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.14.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
|