google-cloud-contact_center_insights-v1 0.1.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 +7 -0
- data/.yardopts +12 -0
- data/AUTHENTICATION.md +167 -0
- data/LICENSE.md +201 -0
- data/README.md +139 -0
- data/lib/google-cloud-contact_center_insights-v1.rb +21 -0
- data/lib/google/cloud/contact_center_insights/v1.rb +38 -0
- data/lib/google/cloud/contact_center_insights/v1/contact_center_insights.rb +50 -0
- data/lib/google/cloud/contact_center_insights/v1/contact_center_insights/client.rb +2506 -0
- data/lib/google/cloud/contact_center_insights/v1/contact_center_insights/credentials.rb +47 -0
- data/lib/google/cloud/contact_center_insights/v1/contact_center_insights/operations.rb +664 -0
- data/lib/google/cloud/contact_center_insights/v1/contact_center_insights/paths.rb +211 -0
- data/lib/google/cloud/contact_center_insights/v1/version.rb +28 -0
- data/lib/google/cloud/contactcenterinsights/v1/contact_center_insights_pb.rb +273 -0
- data/lib/google/cloud/contactcenterinsights/v1/contact_center_insights_services_pb.rb +102 -0
- data/lib/google/cloud/contactcenterinsights/v1/resources_pb.rb +408 -0
- data/proto_docs/README.md +4 -0
- data/proto_docs/google/api/field_behavior.rb +71 -0
- data/proto_docs/google/api/resource.rb +283 -0
- data/proto_docs/google/cloud/contactcenterinsights/v1/contact_center_insights.rb +685 -0
- data/proto_docs/google/cloud/contactcenterinsights/v1/resources.rb +1213 -0
- data/proto_docs/google/longrunning/operations.rb +164 -0
- data/proto_docs/google/protobuf/any.rb +141 -0
- data/proto_docs/google/protobuf/duration.rb +98 -0
- data/proto_docs/google/protobuf/empty.rb +36 -0
- data/proto_docs/google/protobuf/field_mask.rb +229 -0
- data/proto_docs/google/protobuf/timestamp.rb +129 -0
- data/proto_docs/google/rpc/status.rb +46 -0
- metadata +220 -0
@@ -0,0 +1,211 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2021 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
|
+
|
20
|
+
module Google
|
21
|
+
module Cloud
|
22
|
+
module ContactCenterInsights
|
23
|
+
module V1
|
24
|
+
module ContactCenterInsights
|
25
|
+
# Path helper methods for the ContactCenterInsights API.
|
26
|
+
module Paths
|
27
|
+
##
|
28
|
+
# Create a fully-qualified Analysis resource string.
|
29
|
+
#
|
30
|
+
# The resource will be in the following format:
|
31
|
+
#
|
32
|
+
# `projects/{project}/locations/{location}/conversations/{conversation}/analyses/{analysis}`
|
33
|
+
#
|
34
|
+
# @param project [String]
|
35
|
+
# @param location [String]
|
36
|
+
# @param conversation [String]
|
37
|
+
# @param analysis [String]
|
38
|
+
#
|
39
|
+
# @return [::String]
|
40
|
+
def analysis_path project:, location:, conversation:, analysis:
|
41
|
+
raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
|
42
|
+
raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/"
|
43
|
+
raise ::ArgumentError, "conversation cannot contain /" if conversation.to_s.include? "/"
|
44
|
+
|
45
|
+
"projects/#{project}/locations/#{location}/conversations/#{conversation}/analyses/#{analysis}"
|
46
|
+
end
|
47
|
+
|
48
|
+
##
|
49
|
+
# Create a fully-qualified Conversation resource string.
|
50
|
+
#
|
51
|
+
# The resource will be in the following format:
|
52
|
+
#
|
53
|
+
# `projects/{project}/locations/{location}/conversations/{conversation}`
|
54
|
+
#
|
55
|
+
# @param project [String]
|
56
|
+
# @param location [String]
|
57
|
+
# @param conversation [String]
|
58
|
+
#
|
59
|
+
# @return [::String]
|
60
|
+
def conversation_path project:, location:, conversation:
|
61
|
+
raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
|
62
|
+
raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/"
|
63
|
+
|
64
|
+
"projects/#{project}/locations/#{location}/conversations/#{conversation}"
|
65
|
+
end
|
66
|
+
|
67
|
+
##
|
68
|
+
# Create a fully-qualified Issue resource string.
|
69
|
+
#
|
70
|
+
# The resource will be in the following format:
|
71
|
+
#
|
72
|
+
# `projects/{project}/locations/{location}/issueModels/{issue_model}/issues/{issue}`
|
73
|
+
#
|
74
|
+
# @param project [String]
|
75
|
+
# @param location [String]
|
76
|
+
# @param issue_model [String]
|
77
|
+
# @param issue [String]
|
78
|
+
#
|
79
|
+
# @return [::String]
|
80
|
+
def issue_path project:, location:, issue_model:, issue:
|
81
|
+
raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
|
82
|
+
raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/"
|
83
|
+
raise ::ArgumentError, "issue_model cannot contain /" if issue_model.to_s.include? "/"
|
84
|
+
|
85
|
+
"projects/#{project}/locations/#{location}/issueModels/#{issue_model}/issues/#{issue}"
|
86
|
+
end
|
87
|
+
|
88
|
+
##
|
89
|
+
# Create a fully-qualified IssueModel resource string.
|
90
|
+
#
|
91
|
+
# The resource will be in the following format:
|
92
|
+
#
|
93
|
+
# `projects/{project}/locations/{location}/issueModels/{issue_model}`
|
94
|
+
#
|
95
|
+
# @param project [String]
|
96
|
+
# @param location [String]
|
97
|
+
# @param issue_model [String]
|
98
|
+
#
|
99
|
+
# @return [::String]
|
100
|
+
def issue_model_path project:, location:, issue_model:
|
101
|
+
raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
|
102
|
+
raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/"
|
103
|
+
|
104
|
+
"projects/#{project}/locations/#{location}/issueModels/#{issue_model}"
|
105
|
+
end
|
106
|
+
|
107
|
+
##
|
108
|
+
# Create a fully-qualified Location resource string.
|
109
|
+
#
|
110
|
+
# The resource will be in the following format:
|
111
|
+
#
|
112
|
+
# `projects/{project}/locations/{location}`
|
113
|
+
#
|
114
|
+
# @param project [String]
|
115
|
+
# @param location [String]
|
116
|
+
#
|
117
|
+
# @return [::String]
|
118
|
+
def location_path project:, location:
|
119
|
+
raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
|
120
|
+
|
121
|
+
"projects/#{project}/locations/#{location}"
|
122
|
+
end
|
123
|
+
|
124
|
+
##
|
125
|
+
# Create a fully-qualified Participant resource string.
|
126
|
+
#
|
127
|
+
# @overload participant_path(project:, conversation:, participant:)
|
128
|
+
# The resource will be in the following format:
|
129
|
+
#
|
130
|
+
# `projects/{project}/conversations/{conversation}/participants/{participant}`
|
131
|
+
#
|
132
|
+
# @param project [String]
|
133
|
+
# @param conversation [String]
|
134
|
+
# @param participant [String]
|
135
|
+
#
|
136
|
+
# @overload participant_path(project:, location:, conversation:, participant:)
|
137
|
+
# The resource will be in the following format:
|
138
|
+
#
|
139
|
+
# `projects/{project}/locations/{location}/conversations/{conversation}/participants/{participant}`
|
140
|
+
#
|
141
|
+
# @param project [String]
|
142
|
+
# @param location [String]
|
143
|
+
# @param conversation [String]
|
144
|
+
# @param participant [String]
|
145
|
+
#
|
146
|
+
# @return [::String]
|
147
|
+
def participant_path **args
|
148
|
+
resources = {
|
149
|
+
"conversation:participant:project" => (proc do |project:, conversation:, participant:|
|
150
|
+
raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
|
151
|
+
raise ::ArgumentError, "conversation cannot contain /" if conversation.to_s.include? "/"
|
152
|
+
|
153
|
+
"projects/#{project}/conversations/#{conversation}/participants/#{participant}"
|
154
|
+
end),
|
155
|
+
"conversation:location:participant:project" => (proc do |project:, location:, conversation:, participant:|
|
156
|
+
raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
|
157
|
+
raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/"
|
158
|
+
raise ::ArgumentError, "conversation cannot contain /" if conversation.to_s.include? "/"
|
159
|
+
|
160
|
+
"projects/#{project}/locations/#{location}/conversations/#{conversation}/participants/#{participant}"
|
161
|
+
end)
|
162
|
+
}
|
163
|
+
|
164
|
+
resource = resources[args.keys.sort.join(":")]
|
165
|
+
raise ::ArgumentError, "no resource found for values #{args.keys}" if resource.nil?
|
166
|
+
resource.call(**args)
|
167
|
+
end
|
168
|
+
|
169
|
+
##
|
170
|
+
# Create a fully-qualified PhraseMatcher resource string.
|
171
|
+
#
|
172
|
+
# The resource will be in the following format:
|
173
|
+
#
|
174
|
+
# `projects/{project}/locations/{location}/phraseMatchers/{phrase_matcher}`
|
175
|
+
#
|
176
|
+
# @param project [String]
|
177
|
+
# @param location [String]
|
178
|
+
# @param phrase_matcher [String]
|
179
|
+
#
|
180
|
+
# @return [::String]
|
181
|
+
def phrase_matcher_path project:, location:, phrase_matcher:
|
182
|
+
raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
|
183
|
+
raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/"
|
184
|
+
|
185
|
+
"projects/#{project}/locations/#{location}/phraseMatchers/#{phrase_matcher}"
|
186
|
+
end
|
187
|
+
|
188
|
+
##
|
189
|
+
# Create a fully-qualified Settings resource string.
|
190
|
+
#
|
191
|
+
# The resource will be in the following format:
|
192
|
+
#
|
193
|
+
# `projects/{project}/locations/{location}/settings`
|
194
|
+
#
|
195
|
+
# @param project [String]
|
196
|
+
# @param location [String]
|
197
|
+
#
|
198
|
+
# @return [::String]
|
199
|
+
def settings_path project:, location:
|
200
|
+
raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
|
201
|
+
|
202
|
+
"projects/#{project}/locations/#{location}/settings"
|
203
|
+
end
|
204
|
+
|
205
|
+
extend self
|
206
|
+
end
|
207
|
+
end
|
208
|
+
end
|
209
|
+
end
|
210
|
+
end
|
211
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2021 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
|
+
|
20
|
+
module Google
|
21
|
+
module Cloud
|
22
|
+
module ContactCenterInsights
|
23
|
+
module V1
|
24
|
+
VERSION = "0.1.0"
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
@@ -0,0 +1,273 @@
|
|
1
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
+
# source: google/cloud/contactcenterinsights/v1/contact_center_insights.proto
|
3
|
+
|
4
|
+
require 'google/protobuf'
|
5
|
+
|
6
|
+
require 'google/api/annotations_pb'
|
7
|
+
require 'google/api/client_pb'
|
8
|
+
require 'google/api/field_behavior_pb'
|
9
|
+
require 'google/api/resource_pb'
|
10
|
+
require 'google/cloud/contactcenterinsights/v1/resources_pb'
|
11
|
+
require 'google/longrunning/operations_pb'
|
12
|
+
require 'google/protobuf/duration_pb'
|
13
|
+
require 'google/protobuf/empty_pb'
|
14
|
+
require 'google/protobuf/field_mask_pb'
|
15
|
+
require 'google/protobuf/timestamp_pb'
|
16
|
+
require 'google/rpc/status_pb'
|
17
|
+
Google::Protobuf::DescriptorPool.generated_pool.build do
|
18
|
+
add_file("google/cloud/contactcenterinsights/v1/contact_center_insights.proto", :syntax => :proto3) do
|
19
|
+
add_message "google.cloud.contactcenterinsights.v1.CalculateStatsRequest" do
|
20
|
+
optional :location, :string, 1
|
21
|
+
optional :filter, :string, 2
|
22
|
+
end
|
23
|
+
add_message "google.cloud.contactcenterinsights.v1.CalculateStatsResponse" do
|
24
|
+
optional :average_duration, :message, 1, "google.protobuf.Duration"
|
25
|
+
optional :average_turn_count, :int32, 2
|
26
|
+
optional :conversation_count, :int32, 3
|
27
|
+
map :smart_highlighter_matches, :string, :int32, 4
|
28
|
+
map :custom_highlighter_matches, :string, :int32, 5
|
29
|
+
map :issue_matches, :string, :int32, 6
|
30
|
+
optional :conversation_count_time_series, :message, 7, "google.cloud.contactcenterinsights.v1.CalculateStatsResponse.TimeSeries"
|
31
|
+
end
|
32
|
+
add_message "google.cloud.contactcenterinsights.v1.CalculateStatsResponse.TimeSeries" do
|
33
|
+
optional :interval_duration, :message, 1, "google.protobuf.Duration"
|
34
|
+
repeated :points, :message, 2, "google.cloud.contactcenterinsights.v1.CalculateStatsResponse.TimeSeries.Interval"
|
35
|
+
end
|
36
|
+
add_message "google.cloud.contactcenterinsights.v1.CalculateStatsResponse.TimeSeries.Interval" do
|
37
|
+
optional :start_time, :message, 1, "google.protobuf.Timestamp"
|
38
|
+
optional :conversation_count, :int32, 2
|
39
|
+
end
|
40
|
+
add_message "google.cloud.contactcenterinsights.v1.CreateAnalysisOperationMetadata" do
|
41
|
+
optional :create_time, :message, 1, "google.protobuf.Timestamp"
|
42
|
+
optional :end_time, :message, 2, "google.protobuf.Timestamp"
|
43
|
+
optional :conversation, :string, 3
|
44
|
+
end
|
45
|
+
add_message "google.cloud.contactcenterinsights.v1.CreateConversationRequest" do
|
46
|
+
optional :parent, :string, 1
|
47
|
+
optional :conversation, :message, 2, "google.cloud.contactcenterinsights.v1.Conversation"
|
48
|
+
optional :conversation_id, :string, 3
|
49
|
+
end
|
50
|
+
add_message "google.cloud.contactcenterinsights.v1.ListConversationsRequest" do
|
51
|
+
optional :parent, :string, 1
|
52
|
+
optional :page_size, :int32, 2
|
53
|
+
optional :page_token, :string, 3
|
54
|
+
optional :filter, :string, 4
|
55
|
+
optional :view, :enum, 5, "google.cloud.contactcenterinsights.v1.ConversationView"
|
56
|
+
end
|
57
|
+
add_message "google.cloud.contactcenterinsights.v1.ListConversationsResponse" do
|
58
|
+
repeated :conversations, :message, 1, "google.cloud.contactcenterinsights.v1.Conversation"
|
59
|
+
optional :next_page_token, :string, 2
|
60
|
+
end
|
61
|
+
add_message "google.cloud.contactcenterinsights.v1.GetConversationRequest" do
|
62
|
+
optional :name, :string, 1
|
63
|
+
optional :view, :enum, 2, "google.cloud.contactcenterinsights.v1.ConversationView"
|
64
|
+
end
|
65
|
+
add_message "google.cloud.contactcenterinsights.v1.UpdateConversationRequest" do
|
66
|
+
optional :conversation, :message, 1, "google.cloud.contactcenterinsights.v1.Conversation"
|
67
|
+
optional :update_mask, :message, 2, "google.protobuf.FieldMask"
|
68
|
+
end
|
69
|
+
add_message "google.cloud.contactcenterinsights.v1.DeleteConversationRequest" do
|
70
|
+
optional :name, :string, 1
|
71
|
+
optional :force, :bool, 2
|
72
|
+
end
|
73
|
+
add_message "google.cloud.contactcenterinsights.v1.CreateAnalysisRequest" do
|
74
|
+
optional :parent, :string, 1
|
75
|
+
optional :analysis, :message, 2, "google.cloud.contactcenterinsights.v1.Analysis"
|
76
|
+
end
|
77
|
+
add_message "google.cloud.contactcenterinsights.v1.ListAnalysesRequest" do
|
78
|
+
optional :parent, :string, 1
|
79
|
+
optional :page_size, :int32, 2
|
80
|
+
optional :page_token, :string, 3
|
81
|
+
optional :filter, :string, 4
|
82
|
+
end
|
83
|
+
add_message "google.cloud.contactcenterinsights.v1.ListAnalysesResponse" do
|
84
|
+
repeated :analyses, :message, 1, "google.cloud.contactcenterinsights.v1.Analysis"
|
85
|
+
optional :next_page_token, :string, 2
|
86
|
+
end
|
87
|
+
add_message "google.cloud.contactcenterinsights.v1.GetAnalysisRequest" do
|
88
|
+
optional :name, :string, 1
|
89
|
+
end
|
90
|
+
add_message "google.cloud.contactcenterinsights.v1.DeleteAnalysisRequest" do
|
91
|
+
optional :name, :string, 1
|
92
|
+
end
|
93
|
+
add_message "google.cloud.contactcenterinsights.v1.ExportInsightsDataRequest" do
|
94
|
+
optional :parent, :string, 1
|
95
|
+
optional :filter, :string, 3
|
96
|
+
optional :kms_key, :string, 4
|
97
|
+
oneof :destination do
|
98
|
+
optional :big_query_destination, :message, 2, "google.cloud.contactcenterinsights.v1.ExportInsightsDataRequest.BigQueryDestination"
|
99
|
+
end
|
100
|
+
end
|
101
|
+
add_message "google.cloud.contactcenterinsights.v1.ExportInsightsDataRequest.BigQueryDestination" do
|
102
|
+
optional :project_id, :string, 3
|
103
|
+
optional :dataset, :string, 1
|
104
|
+
optional :table, :string, 2
|
105
|
+
end
|
106
|
+
add_message "google.cloud.contactcenterinsights.v1.ExportInsightsDataMetadata" do
|
107
|
+
optional :create_time, :message, 1, "google.protobuf.Timestamp"
|
108
|
+
optional :end_time, :message, 2, "google.protobuf.Timestamp"
|
109
|
+
optional :request, :message, 3, "google.cloud.contactcenterinsights.v1.ExportInsightsDataRequest"
|
110
|
+
repeated :partial_errors, :message, 4, "google.rpc.Status"
|
111
|
+
end
|
112
|
+
add_message "google.cloud.contactcenterinsights.v1.ExportInsightsDataResponse" do
|
113
|
+
end
|
114
|
+
add_message "google.cloud.contactcenterinsights.v1.CreateIssueModelRequest" do
|
115
|
+
optional :parent, :string, 1
|
116
|
+
optional :issue_model, :message, 2, "google.cloud.contactcenterinsights.v1.IssueModel"
|
117
|
+
end
|
118
|
+
add_message "google.cloud.contactcenterinsights.v1.CreateIssueModelMetadata" do
|
119
|
+
optional :create_time, :message, 1, "google.protobuf.Timestamp"
|
120
|
+
optional :end_time, :message, 2, "google.protobuf.Timestamp"
|
121
|
+
optional :request, :message, 3, "google.cloud.contactcenterinsights.v1.CreateIssueModelRequest"
|
122
|
+
end
|
123
|
+
add_message "google.cloud.contactcenterinsights.v1.UpdateIssueModelRequest" do
|
124
|
+
optional :issue_model, :message, 1, "google.cloud.contactcenterinsights.v1.IssueModel"
|
125
|
+
optional :update_mask, :message, 2, "google.protobuf.FieldMask"
|
126
|
+
end
|
127
|
+
add_message "google.cloud.contactcenterinsights.v1.ListIssueModelsRequest" do
|
128
|
+
optional :parent, :string, 1
|
129
|
+
end
|
130
|
+
add_message "google.cloud.contactcenterinsights.v1.ListIssueModelsResponse" do
|
131
|
+
repeated :issue_models, :message, 1, "google.cloud.contactcenterinsights.v1.IssueModel"
|
132
|
+
end
|
133
|
+
add_message "google.cloud.contactcenterinsights.v1.GetIssueModelRequest" do
|
134
|
+
optional :name, :string, 1
|
135
|
+
end
|
136
|
+
add_message "google.cloud.contactcenterinsights.v1.DeleteIssueModelRequest" do
|
137
|
+
optional :name, :string, 1
|
138
|
+
end
|
139
|
+
add_message "google.cloud.contactcenterinsights.v1.DeleteIssueModelMetadata" do
|
140
|
+
optional :create_time, :message, 1, "google.protobuf.Timestamp"
|
141
|
+
optional :end_time, :message, 2, "google.protobuf.Timestamp"
|
142
|
+
optional :request, :message, 3, "google.cloud.contactcenterinsights.v1.DeleteIssueModelRequest"
|
143
|
+
end
|
144
|
+
add_message "google.cloud.contactcenterinsights.v1.DeployIssueModelRequest" do
|
145
|
+
optional :name, :string, 1
|
146
|
+
end
|
147
|
+
add_message "google.cloud.contactcenterinsights.v1.DeployIssueModelResponse" do
|
148
|
+
end
|
149
|
+
add_message "google.cloud.contactcenterinsights.v1.DeployIssueModelMetadata" do
|
150
|
+
optional :create_time, :message, 1, "google.protobuf.Timestamp"
|
151
|
+
optional :end_time, :message, 2, "google.protobuf.Timestamp"
|
152
|
+
optional :request, :message, 3, "google.cloud.contactcenterinsights.v1.DeployIssueModelRequest"
|
153
|
+
end
|
154
|
+
add_message "google.cloud.contactcenterinsights.v1.UndeployIssueModelRequest" do
|
155
|
+
optional :name, :string, 1
|
156
|
+
end
|
157
|
+
add_message "google.cloud.contactcenterinsights.v1.UndeployIssueModelResponse" do
|
158
|
+
end
|
159
|
+
add_message "google.cloud.contactcenterinsights.v1.UndeployIssueModelMetadata" do
|
160
|
+
optional :create_time, :message, 1, "google.protobuf.Timestamp"
|
161
|
+
optional :end_time, :message, 2, "google.protobuf.Timestamp"
|
162
|
+
optional :request, :message, 3, "google.cloud.contactcenterinsights.v1.UndeployIssueModelRequest"
|
163
|
+
end
|
164
|
+
add_message "google.cloud.contactcenterinsights.v1.GetIssueRequest" do
|
165
|
+
optional :name, :string, 1
|
166
|
+
end
|
167
|
+
add_message "google.cloud.contactcenterinsights.v1.ListIssuesRequest" do
|
168
|
+
optional :parent, :string, 1
|
169
|
+
end
|
170
|
+
add_message "google.cloud.contactcenterinsights.v1.ListIssuesResponse" do
|
171
|
+
repeated :issues, :message, 1, "google.cloud.contactcenterinsights.v1.Issue"
|
172
|
+
end
|
173
|
+
add_message "google.cloud.contactcenterinsights.v1.UpdateIssueRequest" do
|
174
|
+
optional :issue, :message, 1, "google.cloud.contactcenterinsights.v1.Issue"
|
175
|
+
optional :update_mask, :message, 2, "google.protobuf.FieldMask"
|
176
|
+
end
|
177
|
+
add_message "google.cloud.contactcenterinsights.v1.CalculateIssueModelStatsRequest" do
|
178
|
+
optional :issue_model, :string, 1
|
179
|
+
end
|
180
|
+
add_message "google.cloud.contactcenterinsights.v1.CalculateIssueModelStatsResponse" do
|
181
|
+
optional :current_stats, :message, 4, "google.cloud.contactcenterinsights.v1.IssueModelLabelStats"
|
182
|
+
end
|
183
|
+
add_message "google.cloud.contactcenterinsights.v1.CreatePhraseMatcherRequest" do
|
184
|
+
optional :parent, :string, 1
|
185
|
+
optional :phrase_matcher, :message, 2, "google.cloud.contactcenterinsights.v1.PhraseMatcher"
|
186
|
+
end
|
187
|
+
add_message "google.cloud.contactcenterinsights.v1.ListPhraseMatchersRequest" do
|
188
|
+
optional :parent, :string, 1
|
189
|
+
optional :page_size, :int32, 2
|
190
|
+
optional :page_token, :string, 3
|
191
|
+
optional :filter, :string, 4
|
192
|
+
end
|
193
|
+
add_message "google.cloud.contactcenterinsights.v1.ListPhraseMatchersResponse" do
|
194
|
+
repeated :phrase_matchers, :message, 1, "google.cloud.contactcenterinsights.v1.PhraseMatcher"
|
195
|
+
optional :next_page_token, :string, 2
|
196
|
+
end
|
197
|
+
add_message "google.cloud.contactcenterinsights.v1.GetPhraseMatcherRequest" do
|
198
|
+
optional :name, :string, 1
|
199
|
+
end
|
200
|
+
add_message "google.cloud.contactcenterinsights.v1.DeletePhraseMatcherRequest" do
|
201
|
+
optional :name, :string, 1
|
202
|
+
end
|
203
|
+
add_message "google.cloud.contactcenterinsights.v1.GetSettingsRequest" do
|
204
|
+
optional :name, :string, 1
|
205
|
+
end
|
206
|
+
add_message "google.cloud.contactcenterinsights.v1.UpdateSettingsRequest" do
|
207
|
+
optional :settings, :message, 1, "google.cloud.contactcenterinsights.v1.Settings"
|
208
|
+
optional :update_mask, :message, 2, "google.protobuf.FieldMask"
|
209
|
+
end
|
210
|
+
add_enum "google.cloud.contactcenterinsights.v1.ConversationView" do
|
211
|
+
value :CONVERSATION_VIEW_UNSPECIFIED, 0
|
212
|
+
value :BASIC, 1
|
213
|
+
value :FULL, 2
|
214
|
+
end
|
215
|
+
end
|
216
|
+
end
|
217
|
+
|
218
|
+
module Google
|
219
|
+
module Cloud
|
220
|
+
module ContactCenterInsights
|
221
|
+
module V1
|
222
|
+
CalculateStatsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.CalculateStatsRequest").msgclass
|
223
|
+
CalculateStatsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.CalculateStatsResponse").msgclass
|
224
|
+
CalculateStatsResponse::TimeSeries = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.CalculateStatsResponse.TimeSeries").msgclass
|
225
|
+
CalculateStatsResponse::TimeSeries::Interval = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.CalculateStatsResponse.TimeSeries.Interval").msgclass
|
226
|
+
CreateAnalysisOperationMetadata = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.CreateAnalysisOperationMetadata").msgclass
|
227
|
+
CreateConversationRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.CreateConversationRequest").msgclass
|
228
|
+
ListConversationsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.ListConversationsRequest").msgclass
|
229
|
+
ListConversationsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.ListConversationsResponse").msgclass
|
230
|
+
GetConversationRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.GetConversationRequest").msgclass
|
231
|
+
UpdateConversationRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.UpdateConversationRequest").msgclass
|
232
|
+
DeleteConversationRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.DeleteConversationRequest").msgclass
|
233
|
+
CreateAnalysisRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.CreateAnalysisRequest").msgclass
|
234
|
+
ListAnalysesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.ListAnalysesRequest").msgclass
|
235
|
+
ListAnalysesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.ListAnalysesResponse").msgclass
|
236
|
+
GetAnalysisRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.GetAnalysisRequest").msgclass
|
237
|
+
DeleteAnalysisRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.DeleteAnalysisRequest").msgclass
|
238
|
+
ExportInsightsDataRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.ExportInsightsDataRequest").msgclass
|
239
|
+
ExportInsightsDataRequest::BigQueryDestination = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.ExportInsightsDataRequest.BigQueryDestination").msgclass
|
240
|
+
ExportInsightsDataMetadata = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.ExportInsightsDataMetadata").msgclass
|
241
|
+
ExportInsightsDataResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.ExportInsightsDataResponse").msgclass
|
242
|
+
CreateIssueModelRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.CreateIssueModelRequest").msgclass
|
243
|
+
CreateIssueModelMetadata = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.CreateIssueModelMetadata").msgclass
|
244
|
+
UpdateIssueModelRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.UpdateIssueModelRequest").msgclass
|
245
|
+
ListIssueModelsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.ListIssueModelsRequest").msgclass
|
246
|
+
ListIssueModelsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.ListIssueModelsResponse").msgclass
|
247
|
+
GetIssueModelRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.GetIssueModelRequest").msgclass
|
248
|
+
DeleteIssueModelRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.DeleteIssueModelRequest").msgclass
|
249
|
+
DeleteIssueModelMetadata = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.DeleteIssueModelMetadata").msgclass
|
250
|
+
DeployIssueModelRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.DeployIssueModelRequest").msgclass
|
251
|
+
DeployIssueModelResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.DeployIssueModelResponse").msgclass
|
252
|
+
DeployIssueModelMetadata = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.DeployIssueModelMetadata").msgclass
|
253
|
+
UndeployIssueModelRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.UndeployIssueModelRequest").msgclass
|
254
|
+
UndeployIssueModelResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.UndeployIssueModelResponse").msgclass
|
255
|
+
UndeployIssueModelMetadata = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.UndeployIssueModelMetadata").msgclass
|
256
|
+
GetIssueRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.GetIssueRequest").msgclass
|
257
|
+
ListIssuesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.ListIssuesRequest").msgclass
|
258
|
+
ListIssuesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.ListIssuesResponse").msgclass
|
259
|
+
UpdateIssueRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.UpdateIssueRequest").msgclass
|
260
|
+
CalculateIssueModelStatsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.CalculateIssueModelStatsRequest").msgclass
|
261
|
+
CalculateIssueModelStatsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.CalculateIssueModelStatsResponse").msgclass
|
262
|
+
CreatePhraseMatcherRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.CreatePhraseMatcherRequest").msgclass
|
263
|
+
ListPhraseMatchersRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.ListPhraseMatchersRequest").msgclass
|
264
|
+
ListPhraseMatchersResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.ListPhraseMatchersResponse").msgclass
|
265
|
+
GetPhraseMatcherRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.GetPhraseMatcherRequest").msgclass
|
266
|
+
DeletePhraseMatcherRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.DeletePhraseMatcherRequest").msgclass
|
267
|
+
GetSettingsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.GetSettingsRequest").msgclass
|
268
|
+
UpdateSettingsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.UpdateSettingsRequest").msgclass
|
269
|
+
ConversationView = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.contactcenterinsights.v1.ConversationView").enummodule
|
270
|
+
end
|
271
|
+
end
|
272
|
+
end
|
273
|
+
end
|