google-apis-contactcenterinsights_v1 0.21.0 → 0.23.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 +8 -0
- data/lib/google/apis/contactcenterinsights_v1/classes.rb +63 -0
- data/lib/google/apis/contactcenterinsights_v1/gem_version.rb +2 -2
- data/lib/google/apis/contactcenterinsights_v1/representations.rb +32 -0
- data/lib/google/apis/contactcenterinsights_v1/service.rb +1 -7
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b6ba4be92ea361a3b43cbc0007e47e56f2993aa99c5067f7471e4a0a7f9b609f
|
4
|
+
data.tar.gz: c591fcbebced2419e7dfc740c61de500dce3ffd9925a072c33ec785b55608ab8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 85ec38ff9accf8739921afd571aa3e3c251ffc148a7ea4738fc628056a2cdb371a103e6697474334d5913fc2f1eed04c2bbd426523b02279218f6cbf50cc4915
|
7
|
+
data.tar.gz: b7437f24e1b7d21a71f9edfc1fba7eacb0ab3a3b538bccf295284643b5d13d1bbbace1570eb6307381c5c1d0a6fc9d8cb20b7d45673d8fb89ac25b213ab9fe4c
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-contactcenterinsights_v1
|
2
2
|
|
3
|
+
### v0.23.0 (2023-03-12)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230304
|
6
|
+
|
7
|
+
### v0.22.0 (2023-03-05)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230226
|
10
|
+
|
3
11
|
### v0.21.0 (2023-02-15)
|
4
12
|
|
5
13
|
* Regenerated using generator version 0.12.0
|
@@ -1118,6 +1118,37 @@ module Google
|
|
1118
1118
|
end
|
1119
1119
|
end
|
1120
1120
|
|
1121
|
+
# Metadata for creating an issue.
|
1122
|
+
class GoogleCloudContactcenterinsightsV1CreateIssueMetadata
|
1123
|
+
include Google::Apis::Core::Hashable
|
1124
|
+
|
1125
|
+
# Output only. The time the operation was created.
|
1126
|
+
# Corresponds to the JSON property `createTime`
|
1127
|
+
# @return [String]
|
1128
|
+
attr_accessor :create_time
|
1129
|
+
|
1130
|
+
# Output only. The time the operation finished running.
|
1131
|
+
# Corresponds to the JSON property `endTime`
|
1132
|
+
# @return [String]
|
1133
|
+
attr_accessor :end_time
|
1134
|
+
|
1135
|
+
# The request to create an issue.
|
1136
|
+
# Corresponds to the JSON property `request`
|
1137
|
+
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1CreateIssueRequest]
|
1138
|
+
attr_accessor :request
|
1139
|
+
|
1140
|
+
def initialize(**args)
|
1141
|
+
update!(**args)
|
1142
|
+
end
|
1143
|
+
|
1144
|
+
# Update properties of this object
|
1145
|
+
def update!(**args)
|
1146
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
1147
|
+
@end_time = args[:end_time] if args.key?(:end_time)
|
1148
|
+
@request = args[:request] if args.key?(:request)
|
1149
|
+
end
|
1150
|
+
end
|
1151
|
+
|
1121
1152
|
# Metadata for creating an issue model.
|
1122
1153
|
class GoogleCloudContactcenterinsightsV1CreateIssueModelMetadata
|
1123
1154
|
include Google::Apis::Core::Hashable
|
@@ -1174,6 +1205,31 @@ module Google
|
|
1174
1205
|
end
|
1175
1206
|
end
|
1176
1207
|
|
1208
|
+
# The request to create an issue.
|
1209
|
+
class GoogleCloudContactcenterinsightsV1CreateIssueRequest
|
1210
|
+
include Google::Apis::Core::Hashable
|
1211
|
+
|
1212
|
+
# The issue resource.
|
1213
|
+
# Corresponds to the JSON property `issue`
|
1214
|
+
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1Issue]
|
1215
|
+
attr_accessor :issue
|
1216
|
+
|
1217
|
+
# Required. The parent resource of the issue.
|
1218
|
+
# Corresponds to the JSON property `parent`
|
1219
|
+
# @return [String]
|
1220
|
+
attr_accessor :parent
|
1221
|
+
|
1222
|
+
def initialize(**args)
|
1223
|
+
update!(**args)
|
1224
|
+
end
|
1225
|
+
|
1226
|
+
# Update properties of this object
|
1227
|
+
def update!(**args)
|
1228
|
+
@issue = args[:issue] if args.key?(:issue)
|
1229
|
+
@parent = args[:parent] if args.key?(:parent)
|
1230
|
+
end
|
1231
|
+
end
|
1232
|
+
|
1177
1233
|
# Metadata for deleting an issue model.
|
1178
1234
|
class GoogleCloudContactcenterinsightsV1DeleteIssueModelMetadata
|
1179
1235
|
include Google::Apis::Core::Hashable
|
@@ -2745,6 +2801,12 @@ module Google
|
|
2745
2801
|
# @return [Float]
|
2746
2802
|
attr_accessor :runtime_integration_analysis_percentage
|
2747
2803
|
|
2804
|
+
# Percentage of conversations created using the UploadConversation endpoint to
|
2805
|
+
# analyze automatically, between [0, 100].
|
2806
|
+
# Corresponds to the JSON property `uploadConversationAnalysisPercentage`
|
2807
|
+
# @return [Float]
|
2808
|
+
attr_accessor :upload_conversation_analysis_percentage
|
2809
|
+
|
2748
2810
|
def initialize(**args)
|
2749
2811
|
update!(**args)
|
2750
2812
|
end
|
@@ -2753,6 +2815,7 @@ module Google
|
|
2753
2815
|
def update!(**args)
|
2754
2816
|
@annotator_selector = args[:annotator_selector] if args.key?(:annotator_selector)
|
2755
2817
|
@runtime_integration_analysis_percentage = args[:runtime_integration_analysis_percentage] if args.key?(:runtime_integration_analysis_percentage)
|
2818
|
+
@upload_conversation_analysis_percentage = args[:upload_conversation_analysis_percentage] if args.key?(:upload_conversation_analysis_percentage)
|
2756
2819
|
end
|
2757
2820
|
end
|
2758
2821
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ContactcenterinsightsV1
|
18
18
|
# Version of the google-apis-contactcenterinsights_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.23.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230304"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -172,6 +172,12 @@ module Google
|
|
172
172
|
include Google::Apis::Core::JsonObjectSupport
|
173
173
|
end
|
174
174
|
|
175
|
+
class GoogleCloudContactcenterinsightsV1CreateIssueMetadata
|
176
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
177
|
+
|
178
|
+
include Google::Apis::Core::JsonObjectSupport
|
179
|
+
end
|
180
|
+
|
175
181
|
class GoogleCloudContactcenterinsightsV1CreateIssueModelMetadata
|
176
182
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
177
183
|
|
@@ -184,6 +190,12 @@ module Google
|
|
184
190
|
include Google::Apis::Core::JsonObjectSupport
|
185
191
|
end
|
186
192
|
|
193
|
+
class GoogleCloudContactcenterinsightsV1CreateIssueRequest
|
194
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
195
|
+
|
196
|
+
include Google::Apis::Core::JsonObjectSupport
|
197
|
+
end
|
198
|
+
|
187
199
|
class GoogleCloudContactcenterinsightsV1DeleteIssueModelMetadata
|
188
200
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
189
201
|
|
@@ -1044,6 +1056,16 @@ module Google
|
|
1044
1056
|
end
|
1045
1057
|
end
|
1046
1058
|
|
1059
|
+
class GoogleCloudContactcenterinsightsV1CreateIssueMetadata
|
1060
|
+
# @private
|
1061
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1062
|
+
property :create_time, as: 'createTime'
|
1063
|
+
property :end_time, as: 'endTime'
|
1064
|
+
property :request, as: 'request', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1CreateIssueRequest, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1CreateIssueRequest::Representation
|
1065
|
+
|
1066
|
+
end
|
1067
|
+
end
|
1068
|
+
|
1047
1069
|
class GoogleCloudContactcenterinsightsV1CreateIssueModelMetadata
|
1048
1070
|
# @private
|
1049
1071
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1063,6 +1085,15 @@ module Google
|
|
1063
1085
|
end
|
1064
1086
|
end
|
1065
1087
|
|
1088
|
+
class GoogleCloudContactcenterinsightsV1CreateIssueRequest
|
1089
|
+
# @private
|
1090
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1091
|
+
property :issue, as: 'issue', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1Issue, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1Issue::Representation
|
1092
|
+
|
1093
|
+
property :parent, as: 'parent'
|
1094
|
+
end
|
1095
|
+
end
|
1096
|
+
|
1066
1097
|
class GoogleCloudContactcenterinsightsV1DeleteIssueModelMetadata
|
1067
1098
|
# @private
|
1068
1099
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1543,6 +1574,7 @@ module Google
|
|
1543
1574
|
property :annotator_selector, as: 'annotatorSelector', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1AnnotatorSelector, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1AnnotatorSelector::Representation
|
1544
1575
|
|
1545
1576
|
property :runtime_integration_analysis_percentage, as: 'runtimeIntegrationAnalysisPercentage'
|
1577
|
+
property :upload_conversation_analysis_percentage, as: 'uploadConversationAnalysisPercentage'
|
1546
1578
|
end
|
1547
1579
|
end
|
1548
1580
|
|
@@ -1033,13 +1033,7 @@ module Google
|
|
1033
1033
|
end
|
1034
1034
|
|
1035
1035
|
# Lists operations that match the specified filter in the request. If the server
|
1036
|
-
# doesn't support this method, it returns `UNIMPLEMENTED`.
|
1037
|
-
# binding allows API services to override the binding to use different resource
|
1038
|
-
# name schemes, such as `users/*/operations`. To override the binding, API
|
1039
|
-
# services can add a binding such as `"/v1/`name=users/*`/operations"` to their
|
1040
|
-
# service configuration. For backwards compatibility, the default name includes
|
1041
|
-
# the operations collection id, however overriding users must ensure the name
|
1042
|
-
# binding is the parent resource, without the operations collection id.
|
1036
|
+
# doesn't support this method, it returns `UNIMPLEMENTED`.
|
1043
1037
|
# @param [String] name
|
1044
1038
|
# The name of the operation's parent resource.
|
1045
1039
|
# @param [String] filter
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-contactcenterinsights_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.23.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-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-contactcenterinsights_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-contactcenterinsights_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-contactcenterinsights_v1/v0.23.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-contactcenterinsights_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|