google-cloud-contact_center_insights-v1 0.10.0 → 0.12.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/lib/google/cloud/contact_center_insights/v1/contact_center_insights/client.rb +48 -56
- data/lib/google/cloud/contact_center_insights/v1/contact_center_insights/operations.rb +12 -14
- data/lib/google/cloud/contact_center_insights/v1/contact_center_insights/rest/client.rb +2978 -0
- data/lib/google/cloud/contact_center_insights/v1/contact_center_insights/rest/operations.rb +792 -0
- data/lib/google/cloud/contact_center_insights/v1/contact_center_insights/rest/service_stub.rb +2247 -0
- data/lib/google/cloud/contact_center_insights/v1/contact_center_insights/rest.rb +53 -0
- data/lib/google/cloud/contact_center_insights/v1/contact_center_insights.rb +6 -0
- data/lib/google/cloud/contact_center_insights/v1/rest.rb +37 -0
- data/lib/google/cloud/contact_center_insights/v1/version.rb +1 -1
- data/lib/google/cloud/contact_center_insights/v1.rb +5 -0
- data/lib/google/cloud/contactcenterinsights/v1/resources_pb.rb +1 -0
- data/proto_docs/google/cloud/contactcenterinsights/v1/resources.rb +4 -0
- metadata +11 -6
@@ -0,0 +1,53 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2023 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
require "gapic/rest"
|
20
|
+
require "gapic/config"
|
21
|
+
require "gapic/config/method"
|
22
|
+
|
23
|
+
require "google/cloud/contact_center_insights/v1/version"
|
24
|
+
|
25
|
+
require "google/cloud/contact_center_insights/v1/contact_center_insights/credentials"
|
26
|
+
require "google/cloud/contact_center_insights/v1/contact_center_insights/paths"
|
27
|
+
require "google/cloud/contact_center_insights/v1/contact_center_insights/rest/operations"
|
28
|
+
require "google/cloud/contact_center_insights/v1/contact_center_insights/rest/client"
|
29
|
+
|
30
|
+
module Google
|
31
|
+
module Cloud
|
32
|
+
module ContactCenterInsights
|
33
|
+
module V1
|
34
|
+
##
|
35
|
+
# An API that lets users analyze and explore their business conversation data.
|
36
|
+
#
|
37
|
+
# To load this service and instantiate a REST client:
|
38
|
+
#
|
39
|
+
# require "google/cloud/contact_center_insights/v1/contact_center_insights/rest"
|
40
|
+
# client = ::Google::Cloud::ContactCenterInsights::V1::ContactCenterInsights::Rest::Client.new
|
41
|
+
#
|
42
|
+
module ContactCenterInsights
|
43
|
+
# Client for the REST transport
|
44
|
+
module Rest
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
helper_path = ::File.join __dir__, "rest", "helpers.rb"
|
53
|
+
require "google/cloud/contact_center_insights/v1/contact_center_insights/rest/helpers" if ::File.file? helper_path
|
@@ -26,6 +26,7 @@ require "google/cloud/contact_center_insights/v1/contact_center_insights/credent
|
|
26
26
|
require "google/cloud/contact_center_insights/v1/contact_center_insights/paths"
|
27
27
|
require "google/cloud/contact_center_insights/v1/contact_center_insights/operations"
|
28
28
|
require "google/cloud/contact_center_insights/v1/contact_center_insights/client"
|
29
|
+
require "google/cloud/contact_center_insights/v1/contact_center_insights/rest"
|
29
30
|
|
30
31
|
module Google
|
31
32
|
module Cloud
|
@@ -39,6 +40,11 @@ module Google
|
|
39
40
|
# require "google/cloud/contact_center_insights/v1/contact_center_insights"
|
40
41
|
# client = ::Google::Cloud::ContactCenterInsights::V1::ContactCenterInsights::Client.new
|
41
42
|
#
|
43
|
+
# @example Load this service and instantiate a REST client
|
44
|
+
#
|
45
|
+
# require "google/cloud/contact_center_insights/v1/contact_center_insights/rest"
|
46
|
+
# client = ::Google::Cloud::ContactCenterInsights::V1::ContactCenterInsights::Rest::Client.new
|
47
|
+
#
|
42
48
|
module ContactCenterInsights
|
43
49
|
end
|
44
50
|
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2023 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
require "google/cloud/contact_center_insights/v1/contact_center_insights/rest"
|
20
|
+
require "google/cloud/contact_center_insights/v1/version"
|
21
|
+
|
22
|
+
module Google
|
23
|
+
module Cloud
|
24
|
+
module ContactCenterInsights
|
25
|
+
##
|
26
|
+
# To load just the REST part of this package, including all its services, and instantiate a REST client:
|
27
|
+
#
|
28
|
+
# @example
|
29
|
+
#
|
30
|
+
# require "google/cloud/contact_center_insights/v1/rest"
|
31
|
+
# client = ::Google::Cloud::ContactCenterInsights::V1::ContactCenterInsights::Rest::Client.new
|
32
|
+
#
|
33
|
+
module V1
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
@@ -30,6 +30,11 @@ module Google
|
|
30
30
|
# require "google/cloud/contact_center_insights/v1"
|
31
31
|
# client = ::Google::Cloud::ContactCenterInsights::V1::ContactCenterInsights::Client.new
|
32
32
|
#
|
33
|
+
# @example Load this package, including all its services, and instantiate a REST client
|
34
|
+
#
|
35
|
+
# require "google/cloud/contact_center_insights/v1"
|
36
|
+
# client = ::Google::Cloud::ContactCenterInsights::V1::ContactCenterInsights::Rest::Client.new
|
37
|
+
#
|
33
38
|
module V1
|
34
39
|
end
|
35
40
|
end
|
@@ -286,6 +286,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
286
286
|
end
|
287
287
|
add_message "google.cloud.contactcenterinsights.v1.Settings.AnalysisConfig" do
|
288
288
|
optional :runtime_integration_analysis_percentage, :double, 1
|
289
|
+
optional :upload_conversation_analysis_percentage, :double, 6
|
289
290
|
optional :annotator_selector, :message, 5, "google.cloud.contactcenterinsights.v1.AnnotatorSelector"
|
290
291
|
end
|
291
292
|
add_message "google.cloud.contactcenterinsights.v1.RuntimeAnnotation" do
|
@@ -992,6 +992,10 @@ module Google
|
|
992
992
|
# @return [::Float]
|
993
993
|
# Percentage of conversations created using Dialogflow runtime integration
|
994
994
|
# to analyze automatically, between [0, 100].
|
995
|
+
# @!attribute [rw] upload_conversation_analysis_percentage
|
996
|
+
# @return [::Float]
|
997
|
+
# Percentage of conversations created using the UploadConversation endpoint
|
998
|
+
# to analyze automatically, between [0, 100].
|
995
999
|
# @!attribute [rw] annotator_selector
|
996
1000
|
# @return [::Google::Cloud::ContactCenterInsights::V1::AnnotatorSelector]
|
997
1001
|
# To select the annotators to run and the phrase matchers to use
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-contact_center_insights-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.12.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-03-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.18.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.18.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -50,14 +50,14 @@ dependencies:
|
|
50
50
|
requirements:
|
51
51
|
- - "~>"
|
52
52
|
- !ruby/object:Gem::Version
|
53
|
-
version: 1.26.
|
53
|
+
version: 1.26.3
|
54
54
|
type: :development
|
55
55
|
prerelease: false
|
56
56
|
version_requirements: !ruby/object:Gem::Requirement
|
57
57
|
requirements:
|
58
58
|
- - "~>"
|
59
59
|
- !ruby/object:Gem::Version
|
60
|
-
version: 1.26.
|
60
|
+
version: 1.26.3
|
61
61
|
- !ruby/object:Gem::Dependency
|
62
62
|
name: minitest
|
63
63
|
requirement: !ruby/object:Gem::Requirement
|
@@ -178,6 +178,11 @@ files:
|
|
178
178
|
- lib/google/cloud/contact_center_insights/v1/contact_center_insights/credentials.rb
|
179
179
|
- lib/google/cloud/contact_center_insights/v1/contact_center_insights/operations.rb
|
180
180
|
- lib/google/cloud/contact_center_insights/v1/contact_center_insights/paths.rb
|
181
|
+
- lib/google/cloud/contact_center_insights/v1/contact_center_insights/rest.rb
|
182
|
+
- lib/google/cloud/contact_center_insights/v1/contact_center_insights/rest/client.rb
|
183
|
+
- lib/google/cloud/contact_center_insights/v1/contact_center_insights/rest/operations.rb
|
184
|
+
- lib/google/cloud/contact_center_insights/v1/contact_center_insights/rest/service_stub.rb
|
185
|
+
- lib/google/cloud/contact_center_insights/v1/rest.rb
|
181
186
|
- lib/google/cloud/contact_center_insights/v1/version.rb
|
182
187
|
- lib/google/cloud/contactcenterinsights/v1/contact_center_insights_pb.rb
|
183
188
|
- lib/google/cloud/contactcenterinsights/v1/contact_center_insights_services_pb.rb
|