google-apis-contactcenterinsights_v1 0.56.0 → 0.58.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 +9 -0
- data/lib/google/apis/contactcenterinsights_v1/classes.rb +187 -4
- data/lib/google/apis/contactcenterinsights_v1/gem_version.rb +3 -3
- data/lib/google/apis/contactcenterinsights_v1/representations.rb +82 -0
- data/lib/google/apis/contactcenterinsights_v1/service.rb +33 -0
- metadata +4 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e611d04fc3e735cab06d7bf577f5cd252d98b26d88f1f64287b88134ba71e575
|
4
|
+
data.tar.gz: 4d3d953f66518ce75e4ae36e8e000a8152ec2623cfc8a224166e783d191af2f4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ace5dd4961d1e6f553cc78621557b90f0e6dc9bd2a7acac3240f88fbb863ee9d79f367fc2e862e069639ae112650182337296eab28465d887f44fee5d22caae0
|
7
|
+
data.tar.gz: 4b26c73e743da10e31043ea8a6fdffc96d87de2d39d04295c148eb15d5d18e278533af7f97041fed54e3ef881c4e4fe0d3ea078c5b691992114b57520970414f
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-contactcenterinsights_v1
|
2
2
|
|
3
|
+
### v0.58.0 (2025-01-12)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250106
|
6
|
+
* Regenerated using generator version 0.16.0
|
7
|
+
|
8
|
+
### v0.57.0 (2024-12-22)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20241218
|
11
|
+
|
3
12
|
### v0.56.0 (2024-12-15)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20241209
|
@@ -182,7 +182,8 @@ module Google
|
|
182
182
|
attr_accessor :annotator_selector
|
183
183
|
|
184
184
|
# Filter for the conversations that should apply this analysis rule. An empty
|
185
|
-
# filter means this analysis rule applies to all conversations.
|
185
|
+
# filter means this analysis rule applies to all conversations. Refer to https://
|
186
|
+
# cloud.google.com/contact-center/insights/docs/filtering for details.
|
186
187
|
# Corresponds to the JSON property `conversationFilter`
|
187
188
|
# @return [String]
|
188
189
|
attr_accessor :conversation_filter
|
@@ -1850,6 +1851,37 @@ module Google
|
|
1850
1851
|
end
|
1851
1852
|
end
|
1852
1853
|
|
1854
|
+
# Metadata for creating an issue.
|
1855
|
+
class GoogleCloudContactcenterinsightsV1CreateIssueMetadata
|
1856
|
+
include Google::Apis::Core::Hashable
|
1857
|
+
|
1858
|
+
# Output only. The time the operation was created.
|
1859
|
+
# Corresponds to the JSON property `createTime`
|
1860
|
+
# @return [String]
|
1861
|
+
attr_accessor :create_time
|
1862
|
+
|
1863
|
+
# Output only. The time the operation finished running.
|
1864
|
+
# Corresponds to the JSON property `endTime`
|
1865
|
+
# @return [String]
|
1866
|
+
attr_accessor :end_time
|
1867
|
+
|
1868
|
+
# The request to create an issue.
|
1869
|
+
# Corresponds to the JSON property `request`
|
1870
|
+
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1CreateIssueRequest]
|
1871
|
+
attr_accessor :request
|
1872
|
+
|
1873
|
+
def initialize(**args)
|
1874
|
+
update!(**args)
|
1875
|
+
end
|
1876
|
+
|
1877
|
+
# Update properties of this object
|
1878
|
+
def update!(**args)
|
1879
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
1880
|
+
@end_time = args[:end_time] if args.key?(:end_time)
|
1881
|
+
@request = args[:request] if args.key?(:request)
|
1882
|
+
end
|
1883
|
+
end
|
1884
|
+
|
1853
1885
|
# Metadata for creating an issue model.
|
1854
1886
|
class GoogleCloudContactcenterinsightsV1CreateIssueModelMetadata
|
1855
1887
|
include Google::Apis::Core::Hashable
|
@@ -1906,6 +1938,31 @@ module Google
|
|
1906
1938
|
end
|
1907
1939
|
end
|
1908
1940
|
|
1941
|
+
# The request to create an issue.
|
1942
|
+
class GoogleCloudContactcenterinsightsV1CreateIssueRequest
|
1943
|
+
include Google::Apis::Core::Hashable
|
1944
|
+
|
1945
|
+
# The issue resource.
|
1946
|
+
# Corresponds to the JSON property `issue`
|
1947
|
+
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1Issue]
|
1948
|
+
attr_accessor :issue
|
1949
|
+
|
1950
|
+
# Required. The parent resource of the issue.
|
1951
|
+
# Corresponds to the JSON property `parent`
|
1952
|
+
# @return [String]
|
1953
|
+
attr_accessor :parent
|
1954
|
+
|
1955
|
+
def initialize(**args)
|
1956
|
+
update!(**args)
|
1957
|
+
end
|
1958
|
+
|
1959
|
+
# Update properties of this object
|
1960
|
+
def update!(**args)
|
1961
|
+
@issue = args[:issue] if args.key?(:issue)
|
1962
|
+
@parent = args[:parent] if args.key?(:parent)
|
1963
|
+
end
|
1964
|
+
end
|
1965
|
+
|
1909
1966
|
# Metadata for deleting an issue model.
|
1910
1967
|
class GoogleCloudContactcenterinsightsV1DeleteIssueModelMetadata
|
1911
1968
|
include Google::Apis::Core::Hashable
|
@@ -3461,7 +3518,8 @@ module Google
|
|
3461
3518
|
include Google::Apis::Core::Hashable
|
3462
3519
|
|
3463
3520
|
# A filter to reduce the conversations used for training the model to a specific
|
3464
|
-
# subset.
|
3521
|
+
# subset. Refer to https://cloud.google.com/contact-center/insights/docs/
|
3522
|
+
# filtering for details.
|
3465
3523
|
# Corresponds to the JSON property `filter`
|
3466
3524
|
# @return [String]
|
3467
3525
|
attr_accessor :filter
|
@@ -4675,12 +4733,20 @@ module Google
|
|
4675
4733
|
class GoogleCloudContactcenterinsightsV1QueryMetricsMetadata
|
4676
4734
|
include Google::Apis::Core::Hashable
|
4677
4735
|
|
4736
|
+
# Whether the result rows were truncated because the result row size is too
|
4737
|
+
# large to materialize.
|
4738
|
+
# Corresponds to the JSON property `resultIsTruncated`
|
4739
|
+
# @return [Boolean]
|
4740
|
+
attr_accessor :result_is_truncated
|
4741
|
+
alias_method :result_is_truncated?, :result_is_truncated
|
4742
|
+
|
4678
4743
|
def initialize(**args)
|
4679
4744
|
update!(**args)
|
4680
4745
|
end
|
4681
4746
|
|
4682
4747
|
# Update properties of this object
|
4683
4748
|
def update!(**args)
|
4749
|
+
@result_is_truncated = args[:result_is_truncated] if args.key?(:result_is_truncated)
|
4684
4750
|
end
|
4685
4751
|
end
|
4686
4752
|
|
@@ -5625,7 +5691,8 @@ module Google
|
|
5625
5691
|
# @return [String]
|
5626
5692
|
attr_accessor :update_time
|
5627
5693
|
|
5628
|
-
#
|
5694
|
+
# A filter to reduce conversation results to a specific subset. Refer to https://
|
5695
|
+
# cloud.google.com/contact-center/insights/docs/filtering for details.
|
5629
5696
|
# Corresponds to the JSON property `value`
|
5630
5697
|
# @return [String]
|
5631
5698
|
attr_accessor :value
|
@@ -6995,6 +7062,37 @@ module Google
|
|
6995
7062
|
end
|
6996
7063
|
end
|
6997
7064
|
|
7065
|
+
# Metadata for creating an issue.
|
7066
|
+
class GoogleCloudContactcenterinsightsV1alpha1CreateIssueMetadata
|
7067
|
+
include Google::Apis::Core::Hashable
|
7068
|
+
|
7069
|
+
# Output only. The time the operation was created.
|
7070
|
+
# Corresponds to the JSON property `createTime`
|
7071
|
+
# @return [String]
|
7072
|
+
attr_accessor :create_time
|
7073
|
+
|
7074
|
+
# Output only. The time the operation finished running.
|
7075
|
+
# Corresponds to the JSON property `endTime`
|
7076
|
+
# @return [String]
|
7077
|
+
attr_accessor :end_time
|
7078
|
+
|
7079
|
+
# The request to create an issue.
|
7080
|
+
# Corresponds to the JSON property `request`
|
7081
|
+
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1CreateIssueRequest]
|
7082
|
+
attr_accessor :request
|
7083
|
+
|
7084
|
+
def initialize(**args)
|
7085
|
+
update!(**args)
|
7086
|
+
end
|
7087
|
+
|
7088
|
+
# Update properties of this object
|
7089
|
+
def update!(**args)
|
7090
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
7091
|
+
@end_time = args[:end_time] if args.key?(:end_time)
|
7092
|
+
@request = args[:request] if args.key?(:request)
|
7093
|
+
end
|
7094
|
+
end
|
7095
|
+
|
6998
7096
|
# Metadata for creating an issue model.
|
6999
7097
|
class GoogleCloudContactcenterinsightsV1alpha1CreateIssueModelMetadata
|
7000
7098
|
include Google::Apis::Core::Hashable
|
@@ -7051,6 +7149,31 @@ module Google
|
|
7051
7149
|
end
|
7052
7150
|
end
|
7053
7151
|
|
7152
|
+
# The request to create an issue.
|
7153
|
+
class GoogleCloudContactcenterinsightsV1alpha1CreateIssueRequest
|
7154
|
+
include Google::Apis::Core::Hashable
|
7155
|
+
|
7156
|
+
# The issue resource.
|
7157
|
+
# Corresponds to the JSON property `issue`
|
7158
|
+
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1Issue]
|
7159
|
+
attr_accessor :issue
|
7160
|
+
|
7161
|
+
# Required. The parent resource of the issue.
|
7162
|
+
# Corresponds to the JSON property `parent`
|
7163
|
+
# @return [String]
|
7164
|
+
attr_accessor :parent
|
7165
|
+
|
7166
|
+
def initialize(**args)
|
7167
|
+
update!(**args)
|
7168
|
+
end
|
7169
|
+
|
7170
|
+
# Update properties of this object
|
7171
|
+
def update!(**args)
|
7172
|
+
@issue = args[:issue] if args.key?(:issue)
|
7173
|
+
@parent = args[:parent] if args.key?(:parent)
|
7174
|
+
end
|
7175
|
+
end
|
7176
|
+
|
7054
7177
|
# Metadata for deleting an issue model.
|
7055
7178
|
class GoogleCloudContactcenterinsightsV1alpha1DeleteIssueModelMetadata
|
7056
7179
|
include Google::Apis::Core::Hashable
|
@@ -8391,6 +8514,57 @@ module Google
|
|
8391
8514
|
end
|
8392
8515
|
end
|
8393
8516
|
|
8517
|
+
# The issue resource.
|
8518
|
+
class GoogleCloudContactcenterinsightsV1alpha1Issue
|
8519
|
+
include Google::Apis::Core::Hashable
|
8520
|
+
|
8521
|
+
# Output only. The time at which this issue was created.
|
8522
|
+
# Corresponds to the JSON property `createTime`
|
8523
|
+
# @return [String]
|
8524
|
+
attr_accessor :create_time
|
8525
|
+
|
8526
|
+
# Representative description of the issue.
|
8527
|
+
# Corresponds to the JSON property `displayDescription`
|
8528
|
+
# @return [String]
|
8529
|
+
attr_accessor :display_description
|
8530
|
+
|
8531
|
+
# The representative name for the issue.
|
8532
|
+
# Corresponds to the JSON property `displayName`
|
8533
|
+
# @return [String]
|
8534
|
+
attr_accessor :display_name
|
8535
|
+
|
8536
|
+
# Immutable. The resource name of the issue. Format: projects/`project`/
|
8537
|
+
# locations/`location`/issueModels/`issue_model`/issues/`issue`
|
8538
|
+
# Corresponds to the JSON property `name`
|
8539
|
+
# @return [String]
|
8540
|
+
attr_accessor :name
|
8541
|
+
|
8542
|
+
# Output only. Resource names of the sample representative utterances that match
|
8543
|
+
# to this issue.
|
8544
|
+
# Corresponds to the JSON property `sampleUtterances`
|
8545
|
+
# @return [Array<String>]
|
8546
|
+
attr_accessor :sample_utterances
|
8547
|
+
|
8548
|
+
# Output only. The most recent time that this issue was updated.
|
8549
|
+
# Corresponds to the JSON property `updateTime`
|
8550
|
+
# @return [String]
|
8551
|
+
attr_accessor :update_time
|
8552
|
+
|
8553
|
+
def initialize(**args)
|
8554
|
+
update!(**args)
|
8555
|
+
end
|
8556
|
+
|
8557
|
+
# Update properties of this object
|
8558
|
+
def update!(**args)
|
8559
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
8560
|
+
@display_description = args[:display_description] if args.key?(:display_description)
|
8561
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
8562
|
+
@name = args[:name] if args.key?(:name)
|
8563
|
+
@sample_utterances = args[:sample_utterances] if args.key?(:sample_utterances)
|
8564
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
8565
|
+
end
|
8566
|
+
end
|
8567
|
+
|
8394
8568
|
# Information about the issue.
|
8395
8569
|
class GoogleCloudContactcenterinsightsV1alpha1IssueAssignment
|
8396
8570
|
include Google::Apis::Core::Hashable
|
@@ -8522,7 +8696,8 @@ module Google
|
|
8522
8696
|
include Google::Apis::Core::Hashable
|
8523
8697
|
|
8524
8698
|
# A filter to reduce the conversations used for training the model to a specific
|
8525
|
-
# subset.
|
8699
|
+
# subset. Refer to https://cloud.google.com/contact-center/insights/docs/
|
8700
|
+
# filtering for details.
|
8526
8701
|
# Corresponds to the JSON property `filter`
|
8527
8702
|
# @return [String]
|
8528
8703
|
attr_accessor :filter
|
@@ -9035,12 +9210,20 @@ module Google
|
|
9035
9210
|
class GoogleCloudContactcenterinsightsV1alpha1QueryMetricsMetadata
|
9036
9211
|
include Google::Apis::Core::Hashable
|
9037
9212
|
|
9213
|
+
# Whether the result rows were truncated because the result row size is too
|
9214
|
+
# large to materialize.
|
9215
|
+
# Corresponds to the JSON property `resultIsTruncated`
|
9216
|
+
# @return [Boolean]
|
9217
|
+
attr_accessor :result_is_truncated
|
9218
|
+
alias_method :result_is_truncated?, :result_is_truncated
|
9219
|
+
|
9038
9220
|
def initialize(**args)
|
9039
9221
|
update!(**args)
|
9040
9222
|
end
|
9041
9223
|
|
9042
9224
|
# Update properties of this object
|
9043
9225
|
def update!(**args)
|
9226
|
+
@result_is_truncated = args[:result_is_truncated] if args.key?(:result_is_truncated)
|
9044
9227
|
end
|
9045
9228
|
end
|
9046
9229
|
|
@@ -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.58.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250106"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -280,6 +280,12 @@ module Google
|
|
280
280
|
include Google::Apis::Core::JsonObjectSupport
|
281
281
|
end
|
282
282
|
|
283
|
+
class GoogleCloudContactcenterinsightsV1CreateIssueMetadata
|
284
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
285
|
+
|
286
|
+
include Google::Apis::Core::JsonObjectSupport
|
287
|
+
end
|
288
|
+
|
283
289
|
class GoogleCloudContactcenterinsightsV1CreateIssueModelMetadata
|
284
290
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
285
291
|
|
@@ -292,6 +298,12 @@ module Google
|
|
292
298
|
include Google::Apis::Core::JsonObjectSupport
|
293
299
|
end
|
294
300
|
|
301
|
+
class GoogleCloudContactcenterinsightsV1CreateIssueRequest
|
302
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
303
|
+
|
304
|
+
include Google::Apis::Core::JsonObjectSupport
|
305
|
+
end
|
306
|
+
|
295
307
|
class GoogleCloudContactcenterinsightsV1DeleteIssueModelMetadata
|
296
308
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
297
309
|
|
@@ -1138,6 +1150,12 @@ module Google
|
|
1138
1150
|
include Google::Apis::Core::JsonObjectSupport
|
1139
1151
|
end
|
1140
1152
|
|
1153
|
+
class GoogleCloudContactcenterinsightsV1alpha1CreateIssueMetadata
|
1154
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1155
|
+
|
1156
|
+
include Google::Apis::Core::JsonObjectSupport
|
1157
|
+
end
|
1158
|
+
|
1141
1159
|
class GoogleCloudContactcenterinsightsV1alpha1CreateIssueModelMetadata
|
1142
1160
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1143
1161
|
|
@@ -1150,6 +1168,12 @@ module Google
|
|
1150
1168
|
include Google::Apis::Core::JsonObjectSupport
|
1151
1169
|
end
|
1152
1170
|
|
1171
|
+
class GoogleCloudContactcenterinsightsV1alpha1CreateIssueRequest
|
1172
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1173
|
+
|
1174
|
+
include Google::Apis::Core::JsonObjectSupport
|
1175
|
+
end
|
1176
|
+
|
1153
1177
|
class GoogleCloudContactcenterinsightsV1alpha1DeleteIssueModelMetadata
|
1154
1178
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1155
1179
|
|
@@ -1420,6 +1444,12 @@ module Google
|
|
1420
1444
|
include Google::Apis::Core::JsonObjectSupport
|
1421
1445
|
end
|
1422
1446
|
|
1447
|
+
class GoogleCloudContactcenterinsightsV1alpha1Issue
|
1448
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1449
|
+
|
1450
|
+
include Google::Apis::Core::JsonObjectSupport
|
1451
|
+
end
|
1452
|
+
|
1423
1453
|
class GoogleCloudContactcenterinsightsV1alpha1IssueAssignment
|
1424
1454
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1425
1455
|
|
@@ -2173,6 +2203,16 @@ module Google
|
|
2173
2203
|
end
|
2174
2204
|
end
|
2175
2205
|
|
2206
|
+
class GoogleCloudContactcenterinsightsV1CreateIssueMetadata
|
2207
|
+
# @private
|
2208
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2209
|
+
property :create_time, as: 'createTime'
|
2210
|
+
property :end_time, as: 'endTime'
|
2211
|
+
property :request, as: 'request', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1CreateIssueRequest, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1CreateIssueRequest::Representation
|
2212
|
+
|
2213
|
+
end
|
2214
|
+
end
|
2215
|
+
|
2176
2216
|
class GoogleCloudContactcenterinsightsV1CreateIssueModelMetadata
|
2177
2217
|
# @private
|
2178
2218
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2192,6 +2232,15 @@ module Google
|
|
2192
2232
|
end
|
2193
2233
|
end
|
2194
2234
|
|
2235
|
+
class GoogleCloudContactcenterinsightsV1CreateIssueRequest
|
2236
|
+
# @private
|
2237
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2238
|
+
property :issue, as: 'issue', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1Issue, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1Issue::Representation
|
2239
|
+
|
2240
|
+
property :parent, as: 'parent'
|
2241
|
+
end
|
2242
|
+
end
|
2243
|
+
|
2195
2244
|
class GoogleCloudContactcenterinsightsV1DeleteIssueModelMetadata
|
2196
2245
|
# @private
|
2197
2246
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3012,6 +3061,7 @@ module Google
|
|
3012
3061
|
class GoogleCloudContactcenterinsightsV1QueryMetricsMetadata
|
3013
3062
|
# @private
|
3014
3063
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3064
|
+
property :result_is_truncated, as: 'resultIsTruncated'
|
3015
3065
|
end
|
3016
3066
|
end
|
3017
3067
|
|
@@ -3661,6 +3711,16 @@ module Google
|
|
3661
3711
|
end
|
3662
3712
|
end
|
3663
3713
|
|
3714
|
+
class GoogleCloudContactcenterinsightsV1alpha1CreateIssueMetadata
|
3715
|
+
# @private
|
3716
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3717
|
+
property :create_time, as: 'createTime'
|
3718
|
+
property :end_time, as: 'endTime'
|
3719
|
+
property :request, as: 'request', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1CreateIssueRequest, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1CreateIssueRequest::Representation
|
3720
|
+
|
3721
|
+
end
|
3722
|
+
end
|
3723
|
+
|
3664
3724
|
class GoogleCloudContactcenterinsightsV1alpha1CreateIssueModelMetadata
|
3665
3725
|
# @private
|
3666
3726
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3680,6 +3740,15 @@ module Google
|
|
3680
3740
|
end
|
3681
3741
|
end
|
3682
3742
|
|
3743
|
+
class GoogleCloudContactcenterinsightsV1alpha1CreateIssueRequest
|
3744
|
+
# @private
|
3745
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3746
|
+
property :issue, as: 'issue', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1Issue, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1Issue::Representation
|
3747
|
+
|
3748
|
+
property :parent, as: 'parent'
|
3749
|
+
end
|
3750
|
+
end
|
3751
|
+
|
3683
3752
|
class GoogleCloudContactcenterinsightsV1alpha1DeleteIssueModelMetadata
|
3684
3753
|
# @private
|
3685
3754
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4091,6 +4160,18 @@ module Google
|
|
4091
4160
|
end
|
4092
4161
|
end
|
4093
4162
|
|
4163
|
+
class GoogleCloudContactcenterinsightsV1alpha1Issue
|
4164
|
+
# @private
|
4165
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4166
|
+
property :create_time, as: 'createTime'
|
4167
|
+
property :display_description, as: 'displayDescription'
|
4168
|
+
property :display_name, as: 'displayName'
|
4169
|
+
property :name, as: 'name'
|
4170
|
+
collection :sample_utterances, as: 'sampleUtterances'
|
4171
|
+
property :update_time, as: 'updateTime'
|
4172
|
+
end
|
4173
|
+
end
|
4174
|
+
|
4094
4175
|
class GoogleCloudContactcenterinsightsV1alpha1IssueAssignment
|
4095
4176
|
# @private
|
4096
4177
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4271,6 +4352,7 @@ module Google
|
|
4271
4352
|
class GoogleCloudContactcenterinsightsV1alpha1QueryMetricsMetadata
|
4272
4353
|
# @private
|
4273
4354
|
class Representation < Google::Apis::Core::JsonRepresentation
|
4355
|
+
property :result_is_truncated, as: 'resultIsTruncated'
|
4274
4356
|
end
|
4275
4357
|
end
|
4276
4358
|
|
@@ -1627,6 +1627,39 @@ module Google
|
|
1627
1627
|
execute_or_queue_command(command, &block)
|
1628
1628
|
end
|
1629
1629
|
|
1630
|
+
# Creates an issue.
|
1631
|
+
# @param [String] parent
|
1632
|
+
# Required. The parent resource of the issue.
|
1633
|
+
# @param [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1Issue] google_cloud_contactcenterinsights_v1_issue_object
|
1634
|
+
# @param [String] fields
|
1635
|
+
# Selector specifying which fields to include in a partial response.
|
1636
|
+
# @param [String] quota_user
|
1637
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1638
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1639
|
+
# @param [Google::Apis::RequestOptions] options
|
1640
|
+
# Request-specific options
|
1641
|
+
#
|
1642
|
+
# @yield [result, err] Result & error if block supplied
|
1643
|
+
# @yieldparam result [Google::Apis::ContactcenterinsightsV1::GoogleLongrunningOperation] parsed result object
|
1644
|
+
# @yieldparam err [StandardError] error object if request failed
|
1645
|
+
#
|
1646
|
+
# @return [Google::Apis::ContactcenterinsightsV1::GoogleLongrunningOperation]
|
1647
|
+
#
|
1648
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1649
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1650
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1651
|
+
def create_project_location_issue_model_issue(parent, google_cloud_contactcenterinsights_v1_issue_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
1652
|
+
command = make_simple_command(:post, 'v1/{+parent}/issues', options)
|
1653
|
+
command.request_representation = Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1Issue::Representation
|
1654
|
+
command.request_object = google_cloud_contactcenterinsights_v1_issue_object
|
1655
|
+
command.response_representation = Google::Apis::ContactcenterinsightsV1::GoogleLongrunningOperation::Representation
|
1656
|
+
command.response_class = Google::Apis::ContactcenterinsightsV1::GoogleLongrunningOperation
|
1657
|
+
command.params['parent'] = parent unless parent.nil?
|
1658
|
+
command.query['fields'] = fields unless fields.nil?
|
1659
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1660
|
+
execute_or_queue_command(command, &block)
|
1661
|
+
end
|
1662
|
+
|
1630
1663
|
# Deletes an issue.
|
1631
1664
|
# @param [String] name
|
1632
1665
|
# Required. The name of the issue to delete.
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
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.58.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-01-12 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: google-apis-core
|
@@ -58,9 +57,8 @@ licenses:
|
|
58
57
|
metadata:
|
59
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
59
|
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.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-contactcenterinsights_v1/v0.58.0
|
62
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-contactcenterinsights_v1
|
63
|
-
post_install_message:
|
64
62
|
rdoc_options: []
|
65
63
|
require_paths:
|
66
64
|
- lib
|
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
73
|
- !ruby/object:Gem::Version
|
76
74
|
version: '0'
|
77
75
|
requirements: []
|
78
|
-
rubygems_version: 3.
|
79
|
-
signing_key:
|
76
|
+
rubygems_version: 3.6.2
|
80
77
|
specification_version: 4
|
81
78
|
summary: Simple REST client for Contact Center AI Insights API V1
|
82
79
|
test_files: []
|