aws-sdk-connectwisdomservice 1.33.0 → 1.35.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-connectwisdomservice/client.rb +19 -2
- data/lib/aws-sdk-connectwisdomservice/types.rb +6 -6
- data/lib/aws-sdk-connectwisdomservice.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: b0492227fb26b0c0c578271177b1b84880da829388529c05755dafb8fbc3a956
|
4
|
+
data.tar.gz: e0e142266905f5c9be7589fcebc1203e31497cc5f46ac83d06245665e4859ee6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 839d3a4999777d289b34d21017203be7d22f0cfbba1e537190c1286e5be17bb3755e8c6d23097fcd38c90a696a3ad1aede84060184253142a1a23c6026260f72
|
7
|
+
data.tar.gz: 57f80d4923b11b7cbf1b2723f9e811cf1a3215fc38f653534d82b0e51e45c6a35ba8fc756868336bd7591dbb1cdfa4803ffccf74931f6afc775be3230131fd52
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.35.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.34.0 (2024-07-18)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.33.0 (2024-07-02)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.35.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::ConnectWisdomService
|
|
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::ConnectWisdomService::Plugins::Endpoints)
|
@@ -330,6 +332,16 @@ module Aws::ConnectWisdomService
|
|
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:
|
@@ -2857,14 +2869,19 @@ module Aws::ConnectWisdomService
|
|
2857
2869
|
# @api private
|
2858
2870
|
def build_request(operation_name, params = {})
|
2859
2871
|
handlers = @handlers.for(operation_name)
|
2872
|
+
tracer = config.telemetry_provider.tracer_provider.tracer(
|
2873
|
+
Aws::Telemetry.module_to_tracer_name('Aws::ConnectWisdomService')
|
2874
|
+
)
|
2860
2875
|
context = Seahorse::Client::RequestContext.new(
|
2861
2876
|
operation_name: operation_name,
|
2862
2877
|
operation: config.api.operation(operation_name),
|
2863
2878
|
client: self,
|
2864
2879
|
params: params,
|
2865
|
-
config: config
|
2880
|
+
config: config,
|
2881
|
+
tracer: tracer
|
2882
|
+
)
|
2866
2883
|
context[:gem_name] = 'aws-sdk-connectwisdomservice'
|
2867
|
-
context[:gem_version] = '1.
|
2884
|
+
context[:gem_version] = '1.35.0'
|
2868
2885
|
Seahorse::Client::Request.new(handlers, context)
|
2869
2886
|
end
|
2870
2887
|
|
@@ -1031,7 +1031,7 @@ module Aws::ConnectWisdomService
|
|
1031
1031
|
:name,
|
1032
1032
|
:shortcut_key,
|
1033
1033
|
:tags)
|
1034
|
-
SENSITIVE = []
|
1034
|
+
SENSITIVE = [:channels]
|
1035
1035
|
include Aws::Structure
|
1036
1036
|
end
|
1037
1037
|
|
@@ -1648,7 +1648,7 @@ module Aws::ConnectWisdomService
|
|
1648
1648
|
class GroupingConfiguration < Struct.new(
|
1649
1649
|
:criteria,
|
1650
1650
|
:values)
|
1651
|
-
SENSITIVE = [:criteria]
|
1651
|
+
SENSITIVE = [:criteria, :values]
|
1652
1652
|
include Aws::Structure
|
1653
1653
|
end
|
1654
1654
|
|
@@ -2563,7 +2563,7 @@ module Aws::ConnectWisdomService
|
|
2563
2563
|
:shortcut_key,
|
2564
2564
|
:status,
|
2565
2565
|
:tags)
|
2566
|
-
SENSITIVE = []
|
2566
|
+
SENSITIVE = [:channels]
|
2567
2567
|
include Aws::Structure
|
2568
2568
|
end
|
2569
2569
|
|
@@ -2889,7 +2889,7 @@ module Aws::ConnectWisdomService
|
|
2889
2889
|
:shortcut_key,
|
2890
2890
|
:status,
|
2891
2891
|
:tags)
|
2892
|
-
SENSITIVE = [:attributes_interpolated, :attributes_not_interpolated]
|
2892
|
+
SENSITIVE = [:attributes_interpolated, :attributes_not_interpolated, :channels]
|
2893
2893
|
include Aws::Structure
|
2894
2894
|
end
|
2895
2895
|
|
@@ -2979,7 +2979,7 @@ module Aws::ConnectWisdomService
|
|
2979
2979
|
:quick_response_id,
|
2980
2980
|
:status,
|
2981
2981
|
:tags)
|
2982
|
-
SENSITIVE = []
|
2982
|
+
SENSITIVE = [:channels]
|
2983
2983
|
include Aws::Structure
|
2984
2984
|
end
|
2985
2985
|
|
@@ -3891,7 +3891,7 @@ module Aws::ConnectWisdomService
|
|
3891
3891
|
:remove_grouping_configuration,
|
3892
3892
|
:remove_shortcut_key,
|
3893
3893
|
:shortcut_key)
|
3894
|
-
SENSITIVE = []
|
3894
|
+
SENSITIVE = [:channels]
|
3895
3895
|
include Aws::Structure
|
3896
3896
|
end
|
3897
3897
|
|
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-connectwisdomservice
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.35.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
|