google-apis-contactcenterinsights_v1 0.58.0 → 0.60.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 +8 -0
- data/lib/google/apis/contactcenterinsights_v1/classes.rb +206 -12
- data/lib/google/apis/contactcenterinsights_v1/gem_version.rb +2 -2
- data/lib/google/apis/contactcenterinsights_v1/representations.rb +92 -0
- data/lib/google/apis/contactcenterinsights_v1/service.rb +38 -2
- 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: f6eee2636fc2834f9936a94dfa8f7c931c70634e9f685ceec8db63bfb2bcce2b
|
4
|
+
data.tar.gz: 0d47ec48387de9e75733da31df529d81b64795f7566f0e7b4fd68e9fdccaaf4a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d15e1d15daac31484e2be7f3ae1cd47a3745735713f9b81b8ba828aec91b38d495a2c7a49a1b243b1e3e2cebe89cfb14c7715c0cbb32e4f1ebfad3492b152c76
|
7
|
+
data.tar.gz: 994e4abebed6bb670e135e170dad209e570bb5c3f9f7e42832cfd29bb8e1b3d4a9e30f01561748005b0e29fb63d00724220f9705dec2331284c1ec9645e8c3fa
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-contactcenterinsights_v1
|
2
2
|
|
3
|
+
### v0.60.0 (2025-03-16)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250311
|
6
|
+
|
7
|
+
### v0.59.0 (2025-02-26)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250224
|
10
|
+
|
3
11
|
### v0.58.0 (2025-01-12)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250106
|
@@ -410,6 +410,12 @@ module Google
|
|
410
410
|
# @return [String]
|
411
411
|
attr_accessor :conversation_profile
|
412
412
|
|
413
|
+
# The resource name of the existing created generator. Format: projects//
|
414
|
+
# locations//generators/
|
415
|
+
# Corresponds to the JSON property `generator`
|
416
|
+
# @return [String]
|
417
|
+
attr_accessor :generator
|
418
|
+
|
413
419
|
# Default summarization model to be used.
|
414
420
|
# Corresponds to the JSON property `summarizationModel`
|
415
421
|
# @return [String]
|
@@ -422,6 +428,7 @@ module Google
|
|
422
428
|
# Update properties of this object
|
423
429
|
def update!(**args)
|
424
430
|
@conversation_profile = args[:conversation_profile] if args.key?(:conversation_profile)
|
431
|
+
@generator = args[:generator] if args.key?(:generator)
|
425
432
|
@summarization_model = args[:summarization_model] if args.key?(:summarization_model)
|
426
433
|
end
|
427
434
|
end
|
@@ -724,6 +731,74 @@ module Google
|
|
724
731
|
end
|
725
732
|
end
|
726
733
|
|
734
|
+
# Metadata for the BulkDeleteFeedbackLabels endpoint.
|
735
|
+
class GoogleCloudContactcenterinsightsV1BulkDeleteFeedbackLabelsMetadata
|
736
|
+
include Google::Apis::Core::Hashable
|
737
|
+
|
738
|
+
# Partial errors during deletion operation that might cause the operation output
|
739
|
+
# to be incomplete.
|
740
|
+
# Corresponds to the JSON property `partialErrors`
|
741
|
+
# @return [Array<Google::Apis::ContactcenterinsightsV1::GoogleRpcStatus>]
|
742
|
+
attr_accessor :partial_errors
|
743
|
+
|
744
|
+
# Request for the BulkDeleteFeedbackLabels endpoint.
|
745
|
+
# Corresponds to the JSON property `request`
|
746
|
+
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1BulkDeleteFeedbackLabelsRequest]
|
747
|
+
attr_accessor :request
|
748
|
+
|
749
|
+
def initialize(**args)
|
750
|
+
update!(**args)
|
751
|
+
end
|
752
|
+
|
753
|
+
# Update properties of this object
|
754
|
+
def update!(**args)
|
755
|
+
@partial_errors = args[:partial_errors] if args.key?(:partial_errors)
|
756
|
+
@request = args[:request] if args.key?(:request)
|
757
|
+
end
|
758
|
+
end
|
759
|
+
|
760
|
+
# Request for the BulkDeleteFeedbackLabels endpoint.
|
761
|
+
class GoogleCloudContactcenterinsightsV1BulkDeleteFeedbackLabelsRequest
|
762
|
+
include Google::Apis::Core::Hashable
|
763
|
+
|
764
|
+
# Optional. A filter to reduce results to a specific subset. Supports
|
765
|
+
# disjunctions (OR) and conjunctions (AND). Supported fields: * `issue_model_id`
|
766
|
+
# * `qa_question_id` * `qa_scorecard_id` * `min_create_time` * `max_create_time`
|
767
|
+
# * `min_update_time` * `max_update_time` * `feedback_label_type`: QUALITY_AI,
|
768
|
+
# TOPIC_MODELING
|
769
|
+
# Corresponds to the JSON property `filter`
|
770
|
+
# @return [String]
|
771
|
+
attr_accessor :filter
|
772
|
+
|
773
|
+
# Required. The parent resource for new feedback labels.
|
774
|
+
# Corresponds to the JSON property `parent`
|
775
|
+
# @return [String]
|
776
|
+
attr_accessor :parent
|
777
|
+
|
778
|
+
def initialize(**args)
|
779
|
+
update!(**args)
|
780
|
+
end
|
781
|
+
|
782
|
+
# Update properties of this object
|
783
|
+
def update!(**args)
|
784
|
+
@filter = args[:filter] if args.key?(:filter)
|
785
|
+
@parent = args[:parent] if args.key?(:parent)
|
786
|
+
end
|
787
|
+
end
|
788
|
+
|
789
|
+
# Response for the BulkDeleteFeedbackLabels endpoint.
|
790
|
+
class GoogleCloudContactcenterinsightsV1BulkDeleteFeedbackLabelsResponse
|
791
|
+
include Google::Apis::Core::Hashable
|
792
|
+
|
793
|
+
def initialize(**args)
|
794
|
+
update!(**args)
|
795
|
+
end
|
796
|
+
|
797
|
+
# Update properties of this object
|
798
|
+
def update!(**args)
|
799
|
+
end
|
800
|
+
end
|
801
|
+
|
727
802
|
# Metadata for the BulkDownloadFeedbackLabel endpoint.
|
728
803
|
class GoogleCloudContactcenterinsightsV1BulkDownloadFeedbackLabelsMetadata
|
729
804
|
include Google::Apis::Core::Hashable
|
@@ -1283,7 +1358,7 @@ module Google
|
|
1283
1358
|
attr_accessor :medium
|
1284
1359
|
|
1285
1360
|
# Input only. JSON metadata encoded as a string. This field is primarily used by
|
1286
|
-
# Insights integrations with various
|
1361
|
+
# Insights integrations with various telephony systems and must be in one of
|
1287
1362
|
# Insight's supported formats.
|
1288
1363
|
# Corresponds to the JSON property `metadataJson`
|
1289
1364
|
# @return [String]
|
@@ -2477,6 +2552,11 @@ module Google
|
|
2477
2552
|
class GoogleCloudContactcenterinsightsV1ExportInsightsDataMetadata
|
2478
2553
|
include Google::Apis::Core::Hashable
|
2479
2554
|
|
2555
|
+
# The number of conversations that were exported successfully.
|
2556
|
+
# Corresponds to the JSON property `completedExportCount`
|
2557
|
+
# @return [Fixnum]
|
2558
|
+
attr_accessor :completed_export_count
|
2559
|
+
|
2480
2560
|
# Output only. The time the operation was created.
|
2481
2561
|
# Corresponds to the JSON property `createTime`
|
2482
2562
|
# @return [String]
|
@@ -2487,6 +2567,11 @@ module Google
|
|
2487
2567
|
# @return [String]
|
2488
2568
|
attr_accessor :end_time
|
2489
2569
|
|
2570
|
+
# The number of conversations that failed to be exported.
|
2571
|
+
# Corresponds to the JSON property `failedExportCount`
|
2572
|
+
# @return [Fixnum]
|
2573
|
+
attr_accessor :failed_export_count
|
2574
|
+
|
2490
2575
|
# Partial errors during export operation that might cause the operation output
|
2491
2576
|
# to be incomplete.
|
2492
2577
|
# Corresponds to the JSON property `partialErrors`
|
@@ -2504,8 +2589,10 @@ module Google
|
|
2504
2589
|
|
2505
2590
|
# Update properties of this object
|
2506
2591
|
def update!(**args)
|
2592
|
+
@completed_export_count = args[:completed_export_count] if args.key?(:completed_export_count)
|
2507
2593
|
@create_time = args[:create_time] if args.key?(:create_time)
|
2508
2594
|
@end_time = args[:end_time] if args.key?(:end_time)
|
2595
|
+
@failed_export_count = args[:failed_export_count] if args.key?(:failed_export_count)
|
2509
2596
|
@partial_errors = args[:partial_errors] if args.key?(:partial_errors)
|
2510
2597
|
@request = args[:request] if args.key?(:request)
|
2511
2598
|
end
|
@@ -2520,6 +2607,11 @@ module Google
|
|
2520
2607
|
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ExportInsightsDataRequestBigQueryDestination]
|
2521
2608
|
attr_accessor :big_query_destination
|
2522
2609
|
|
2610
|
+
# Optional. Version of the export schema.
|
2611
|
+
# Corresponds to the JSON property `exportSchemaVersion`
|
2612
|
+
# @return [String]
|
2613
|
+
attr_accessor :export_schema_version
|
2614
|
+
|
2523
2615
|
# A filter to reduce results to a specific subset. Useful for exporting
|
2524
2616
|
# conversations with specific properties.
|
2525
2617
|
# Corresponds to the JSON property `filter`
|
@@ -2550,6 +2642,7 @@ module Google
|
|
2550
2642
|
# Update properties of this object
|
2551
2643
|
def update!(**args)
|
2552
2644
|
@big_query_destination = args[:big_query_destination] if args.key?(:big_query_destination)
|
2645
|
+
@export_schema_version = args[:export_schema_version] if args.key?(:export_schema_version)
|
2553
2646
|
@filter = args[:filter] if args.key?(:filter)
|
2554
2647
|
@kms_key = args[:kms_key] if args.key?(:kms_key)
|
2555
2648
|
@parent = args[:parent] if args.key?(:parent)
|
@@ -2748,7 +2841,9 @@ module Google
|
|
2748
2841
|
end
|
2749
2842
|
end
|
2750
2843
|
|
2751
|
-
# Represents a conversation, resource, and label provided by the user.
|
2844
|
+
# Represents a conversation, resource, and label provided by the user. Can take
|
2845
|
+
# the form of a string label or a QaAnswer label. QaAnswer labels are used for
|
2846
|
+
# Quality AI example conversations. String labels are used for Topic Modeling.
|
2752
2847
|
class GoogleCloudContactcenterinsightsV1FeedbackLabel
|
2753
2848
|
include Google::Apis::Core::Hashable
|
2754
2849
|
|
@@ -2757,12 +2852,14 @@ module Google
|
|
2757
2852
|
# @return [String]
|
2758
2853
|
attr_accessor :create_time
|
2759
2854
|
|
2760
|
-
# String label.
|
2855
|
+
# String label used for Topic Modeling.
|
2761
2856
|
# Corresponds to the JSON property `label`
|
2762
2857
|
# @return [String]
|
2763
2858
|
attr_accessor :label
|
2764
2859
|
|
2765
|
-
# Resource name of the resource to be labeled.
|
2860
|
+
# Resource name of the resource to be labeled. Supported resources: -
|
2861
|
+
# qaScorecards/`scorecard`/revisions/`revision`/qaQuestions/`question` -
|
2862
|
+
# issueModels/`issue_model`
|
2766
2863
|
# Corresponds to the JSON property `labeledResource`
|
2767
2864
|
# @return [String]
|
2768
2865
|
attr_accessor :labeled_resource
|
@@ -3392,7 +3489,7 @@ module Google
|
|
3392
3489
|
include Google::Apis::Core::Hashable
|
3393
3490
|
|
3394
3491
|
# Immutable. Display name of the assigned issue. This field is set at time of
|
3395
|
-
#
|
3492
|
+
# analysis and immutable since then.
|
3396
3493
|
# Corresponds to the JSON property `displayName`
|
3397
3494
|
# @return [String]
|
3398
3495
|
attr_accessor :display_name
|
@@ -5184,7 +5281,7 @@ module Google
|
|
5184
5281
|
class GoogleCloudContactcenterinsightsV1SentimentData
|
5185
5282
|
include Google::Apis::Core::Hashable
|
5186
5283
|
|
5187
|
-
# A non-negative number from 0 to infinity which represents the
|
5284
|
+
# A non-negative number from 0 to infinity which represents the absolute
|
5188
5285
|
# magnitude of sentiment regardless of score.
|
5189
5286
|
# Corresponds to the JSON property `magnitude`
|
5190
5287
|
# @return [Float]
|
@@ -6026,6 +6123,12 @@ module Google
|
|
6026
6123
|
# @return [String]
|
6027
6124
|
attr_accessor :conversation_profile
|
6028
6125
|
|
6126
|
+
# The resource name of the existing created generator. Format: projects//
|
6127
|
+
# locations//generators/
|
6128
|
+
# Corresponds to the JSON property `generator`
|
6129
|
+
# @return [String]
|
6130
|
+
attr_accessor :generator
|
6131
|
+
|
6029
6132
|
# Default summarization model to be used.
|
6030
6133
|
# Corresponds to the JSON property `summarizationModel`
|
6031
6134
|
# @return [String]
|
@@ -6038,6 +6141,7 @@ module Google
|
|
6038
6141
|
# Update properties of this object
|
6039
6142
|
def update!(**args)
|
6040
6143
|
@conversation_profile = args[:conversation_profile] if args.key?(:conversation_profile)
|
6144
|
+
@generator = args[:generator] if args.key?(:generator)
|
6041
6145
|
@summarization_model = args[:summarization_model] if args.key?(:summarization_model)
|
6042
6146
|
end
|
6043
6147
|
end
|
@@ -6340,6 +6444,74 @@ module Google
|
|
6340
6444
|
end
|
6341
6445
|
end
|
6342
6446
|
|
6447
|
+
# Metadata for the BulkDeleteFeedbackLabels endpoint.
|
6448
|
+
class GoogleCloudContactcenterinsightsV1alpha1BulkDeleteFeedbackLabelsMetadata
|
6449
|
+
include Google::Apis::Core::Hashable
|
6450
|
+
|
6451
|
+
# Partial errors during deletion operation that might cause the operation output
|
6452
|
+
# to be incomplete.
|
6453
|
+
# Corresponds to the JSON property `partialErrors`
|
6454
|
+
# @return [Array<Google::Apis::ContactcenterinsightsV1::GoogleRpcStatus>]
|
6455
|
+
attr_accessor :partial_errors
|
6456
|
+
|
6457
|
+
# Request for the BulkDeleteFeedbackLabels endpoint.
|
6458
|
+
# Corresponds to the JSON property `request`
|
6459
|
+
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1BulkDeleteFeedbackLabelsRequest]
|
6460
|
+
attr_accessor :request
|
6461
|
+
|
6462
|
+
def initialize(**args)
|
6463
|
+
update!(**args)
|
6464
|
+
end
|
6465
|
+
|
6466
|
+
# Update properties of this object
|
6467
|
+
def update!(**args)
|
6468
|
+
@partial_errors = args[:partial_errors] if args.key?(:partial_errors)
|
6469
|
+
@request = args[:request] if args.key?(:request)
|
6470
|
+
end
|
6471
|
+
end
|
6472
|
+
|
6473
|
+
# Request for the BulkDeleteFeedbackLabels endpoint.
|
6474
|
+
class GoogleCloudContactcenterinsightsV1alpha1BulkDeleteFeedbackLabelsRequest
|
6475
|
+
include Google::Apis::Core::Hashable
|
6476
|
+
|
6477
|
+
# Optional. A filter to reduce results to a specific subset. Supports
|
6478
|
+
# disjunctions (OR) and conjunctions (AND). Supported fields: * `issue_model_id`
|
6479
|
+
# * `qa_question_id` * `qa_scorecard_id` * `min_create_time` * `max_create_time`
|
6480
|
+
# * `min_update_time` * `max_update_time` * `feedback_label_type`: QUALITY_AI,
|
6481
|
+
# TOPIC_MODELING
|
6482
|
+
# Corresponds to the JSON property `filter`
|
6483
|
+
# @return [String]
|
6484
|
+
attr_accessor :filter
|
6485
|
+
|
6486
|
+
# Required. The parent resource for new feedback labels.
|
6487
|
+
# Corresponds to the JSON property `parent`
|
6488
|
+
# @return [String]
|
6489
|
+
attr_accessor :parent
|
6490
|
+
|
6491
|
+
def initialize(**args)
|
6492
|
+
update!(**args)
|
6493
|
+
end
|
6494
|
+
|
6495
|
+
# Update properties of this object
|
6496
|
+
def update!(**args)
|
6497
|
+
@filter = args[:filter] if args.key?(:filter)
|
6498
|
+
@parent = args[:parent] if args.key?(:parent)
|
6499
|
+
end
|
6500
|
+
end
|
6501
|
+
|
6502
|
+
# Response for the BulkDeleteFeedbackLabels endpoint.
|
6503
|
+
class GoogleCloudContactcenterinsightsV1alpha1BulkDeleteFeedbackLabelsResponse
|
6504
|
+
include Google::Apis::Core::Hashable
|
6505
|
+
|
6506
|
+
def initialize(**args)
|
6507
|
+
update!(**args)
|
6508
|
+
end
|
6509
|
+
|
6510
|
+
# Update properties of this object
|
6511
|
+
def update!(**args)
|
6512
|
+
end
|
6513
|
+
end
|
6514
|
+
|
6343
6515
|
# A piece of metadata that applies to a window of a call.
|
6344
6516
|
class GoogleCloudContactcenterinsightsV1alpha1CallAnnotation
|
6345
6517
|
include Google::Apis::Core::Hashable
|
@@ -6494,7 +6666,7 @@ module Google
|
|
6494
6666
|
attr_accessor :medium
|
6495
6667
|
|
6496
6668
|
# Input only. JSON metadata encoded as a string. This field is primarily used by
|
6497
|
-
# Insights integrations with various
|
6669
|
+
# Insights integrations with various telephony systems and must be in one of
|
6498
6670
|
# Insight's supported formats.
|
6499
6671
|
# Corresponds to the JSON property `metadataJson`
|
6500
6672
|
# @return [String]
|
@@ -7655,6 +7827,11 @@ module Google
|
|
7655
7827
|
class GoogleCloudContactcenterinsightsV1alpha1ExportInsightsDataMetadata
|
7656
7828
|
include Google::Apis::Core::Hashable
|
7657
7829
|
|
7830
|
+
# The number of conversations that were exported successfully.
|
7831
|
+
# Corresponds to the JSON property `completedExportCount`
|
7832
|
+
# @return [Fixnum]
|
7833
|
+
attr_accessor :completed_export_count
|
7834
|
+
|
7658
7835
|
# Output only. The time the operation was created.
|
7659
7836
|
# Corresponds to the JSON property `createTime`
|
7660
7837
|
# @return [String]
|
@@ -7665,6 +7842,11 @@ module Google
|
|
7665
7842
|
# @return [String]
|
7666
7843
|
attr_accessor :end_time
|
7667
7844
|
|
7845
|
+
# The number of conversations that failed to be exported.
|
7846
|
+
# Corresponds to the JSON property `failedExportCount`
|
7847
|
+
# @return [Fixnum]
|
7848
|
+
attr_accessor :failed_export_count
|
7849
|
+
|
7668
7850
|
# Partial errors during export operation that might cause the operation output
|
7669
7851
|
# to be incomplete.
|
7670
7852
|
# Corresponds to the JSON property `partialErrors`
|
@@ -7682,8 +7864,10 @@ module Google
|
|
7682
7864
|
|
7683
7865
|
# Update properties of this object
|
7684
7866
|
def update!(**args)
|
7867
|
+
@completed_export_count = args[:completed_export_count] if args.key?(:completed_export_count)
|
7685
7868
|
@create_time = args[:create_time] if args.key?(:create_time)
|
7686
7869
|
@end_time = args[:end_time] if args.key?(:end_time)
|
7870
|
+
@failed_export_count = args[:failed_export_count] if args.key?(:failed_export_count)
|
7687
7871
|
@partial_errors = args[:partial_errors] if args.key?(:partial_errors)
|
7688
7872
|
@request = args[:request] if args.key?(:request)
|
7689
7873
|
end
|
@@ -7698,6 +7882,11 @@ module Google
|
|
7698
7882
|
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ExportInsightsDataRequestBigQueryDestination]
|
7699
7883
|
attr_accessor :big_query_destination
|
7700
7884
|
|
7885
|
+
# Optional. Version of the export schema.
|
7886
|
+
# Corresponds to the JSON property `exportSchemaVersion`
|
7887
|
+
# @return [String]
|
7888
|
+
attr_accessor :export_schema_version
|
7889
|
+
|
7701
7890
|
# A filter to reduce results to a specific subset. Useful for exporting
|
7702
7891
|
# conversations with specific properties.
|
7703
7892
|
# Corresponds to the JSON property `filter`
|
@@ -7728,6 +7917,7 @@ module Google
|
|
7728
7917
|
# Update properties of this object
|
7729
7918
|
def update!(**args)
|
7730
7919
|
@big_query_destination = args[:big_query_destination] if args.key?(:big_query_destination)
|
7920
|
+
@export_schema_version = args[:export_schema_version] if args.key?(:export_schema_version)
|
7731
7921
|
@filter = args[:filter] if args.key?(:filter)
|
7732
7922
|
@kms_key = args[:kms_key] if args.key?(:kms_key)
|
7733
7923
|
@parent = args[:parent] if args.key?(:parent)
|
@@ -7926,7 +8116,9 @@ module Google
|
|
7926
8116
|
end
|
7927
8117
|
end
|
7928
8118
|
|
7929
|
-
# Represents a conversation, resource, and label provided by the user.
|
8119
|
+
# Represents a conversation, resource, and label provided by the user. Can take
|
8120
|
+
# the form of a string label or a QaAnswer label. QaAnswer labels are used for
|
8121
|
+
# Quality AI example conversations. String labels are used for Topic Modeling.
|
7930
8122
|
class GoogleCloudContactcenterinsightsV1alpha1FeedbackLabel
|
7931
8123
|
include Google::Apis::Core::Hashable
|
7932
8124
|
|
@@ -7935,12 +8127,14 @@ module Google
|
|
7935
8127
|
# @return [String]
|
7936
8128
|
attr_accessor :create_time
|
7937
8129
|
|
7938
|
-
# String label.
|
8130
|
+
# String label used for Topic Modeling.
|
7939
8131
|
# Corresponds to the JSON property `label`
|
7940
8132
|
# @return [String]
|
7941
8133
|
attr_accessor :label
|
7942
8134
|
|
7943
|
-
# Resource name of the resource to be labeled.
|
8135
|
+
# Resource name of the resource to be labeled. Supported resources: -
|
8136
|
+
# qaScorecards/`scorecard`/revisions/`revision`/qaQuestions/`question` -
|
8137
|
+
# issueModels/`issue_model`
|
7944
8138
|
# Corresponds to the JSON property `labeledResource`
|
7945
8139
|
# @return [String]
|
7946
8140
|
attr_accessor :labeled_resource
|
@@ -8570,7 +8764,7 @@ module Google
|
|
8570
8764
|
include Google::Apis::Core::Hashable
|
8571
8765
|
|
8572
8766
|
# Immutable. Display name of the assigned issue. This field is set at time of
|
8573
|
-
#
|
8767
|
+
# analysis and immutable since then.
|
8574
8768
|
# Corresponds to the JSON property `displayName`
|
8575
8769
|
# @return [String]
|
8576
8770
|
attr_accessor :display_name
|
@@ -9613,7 +9807,7 @@ module Google
|
|
9613
9807
|
class GoogleCloudContactcenterinsightsV1alpha1SentimentData
|
9614
9808
|
include Google::Apis::Core::Hashable
|
9615
9809
|
|
9616
|
-
# A non-negative number from 0 to infinity which represents the
|
9810
|
+
# A non-negative number from 0 to infinity which represents the absolute
|
9617
9811
|
# magnitude of sentiment regardless of score.
|
9618
9812
|
# Corresponds to the JSON property `magnitude`
|
9619
9813
|
# @return [Float]
|
@@ -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.60.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250311"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -124,6 +124,24 @@ module Google
|
|
124
124
|
include Google::Apis::Core::JsonObjectSupport
|
125
125
|
end
|
126
126
|
|
127
|
+
class GoogleCloudContactcenterinsightsV1BulkDeleteFeedbackLabelsMetadata
|
128
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
129
|
+
|
130
|
+
include Google::Apis::Core::JsonObjectSupport
|
131
|
+
end
|
132
|
+
|
133
|
+
class GoogleCloudContactcenterinsightsV1BulkDeleteFeedbackLabelsRequest
|
134
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
135
|
+
|
136
|
+
include Google::Apis::Core::JsonObjectSupport
|
137
|
+
end
|
138
|
+
|
139
|
+
class GoogleCloudContactcenterinsightsV1BulkDeleteFeedbackLabelsResponse
|
140
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
141
|
+
|
142
|
+
include Google::Apis::Core::JsonObjectSupport
|
143
|
+
end
|
144
|
+
|
127
145
|
class GoogleCloudContactcenterinsightsV1BulkDownloadFeedbackLabelsMetadata
|
128
146
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
129
147
|
|
@@ -1060,6 +1078,24 @@ module Google
|
|
1060
1078
|
include Google::Apis::Core::JsonObjectSupport
|
1061
1079
|
end
|
1062
1080
|
|
1081
|
+
class GoogleCloudContactcenterinsightsV1alpha1BulkDeleteFeedbackLabelsMetadata
|
1082
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1083
|
+
|
1084
|
+
include Google::Apis::Core::JsonObjectSupport
|
1085
|
+
end
|
1086
|
+
|
1087
|
+
class GoogleCloudContactcenterinsightsV1alpha1BulkDeleteFeedbackLabelsRequest
|
1088
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1089
|
+
|
1090
|
+
include Google::Apis::Core::JsonObjectSupport
|
1091
|
+
end
|
1092
|
+
|
1093
|
+
class GoogleCloudContactcenterinsightsV1alpha1BulkDeleteFeedbackLabelsResponse
|
1094
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1095
|
+
|
1096
|
+
include Google::Apis::Core::JsonObjectSupport
|
1097
|
+
end
|
1098
|
+
|
1063
1099
|
class GoogleCloudContactcenterinsightsV1alpha1CallAnnotation
|
1064
1100
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1065
1101
|
|
@@ -1803,6 +1839,7 @@ module Google
|
|
1803
1839
|
# @private
|
1804
1840
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1805
1841
|
property :conversation_profile, as: 'conversationProfile'
|
1842
|
+
property :generator, as: 'generator'
|
1806
1843
|
property :summarization_model, as: 'summarizationModel'
|
1807
1844
|
end
|
1808
1845
|
end
|
@@ -1890,6 +1927,30 @@ module Google
|
|
1890
1927
|
end
|
1891
1928
|
end
|
1892
1929
|
|
1930
|
+
class GoogleCloudContactcenterinsightsV1BulkDeleteFeedbackLabelsMetadata
|
1931
|
+
# @private
|
1932
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1933
|
+
collection :partial_errors, as: 'partialErrors', class: Google::Apis::ContactcenterinsightsV1::GoogleRpcStatus, decorator: Google::Apis::ContactcenterinsightsV1::GoogleRpcStatus::Representation
|
1934
|
+
|
1935
|
+
property :request, as: 'request', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1BulkDeleteFeedbackLabelsRequest, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1BulkDeleteFeedbackLabelsRequest::Representation
|
1936
|
+
|
1937
|
+
end
|
1938
|
+
end
|
1939
|
+
|
1940
|
+
class GoogleCloudContactcenterinsightsV1BulkDeleteFeedbackLabelsRequest
|
1941
|
+
# @private
|
1942
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1943
|
+
property :filter, as: 'filter'
|
1944
|
+
property :parent, as: 'parent'
|
1945
|
+
end
|
1946
|
+
end
|
1947
|
+
|
1948
|
+
class GoogleCloudContactcenterinsightsV1BulkDeleteFeedbackLabelsResponse
|
1949
|
+
# @private
|
1950
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1951
|
+
end
|
1952
|
+
end
|
1953
|
+
|
1893
1954
|
class GoogleCloudContactcenterinsightsV1BulkDownloadFeedbackLabelsMetadata
|
1894
1955
|
# @private
|
1895
1956
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2402,8 +2463,10 @@ module Google
|
|
2402
2463
|
class GoogleCloudContactcenterinsightsV1ExportInsightsDataMetadata
|
2403
2464
|
# @private
|
2404
2465
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2466
|
+
property :completed_export_count, as: 'completedExportCount'
|
2405
2467
|
property :create_time, as: 'createTime'
|
2406
2468
|
property :end_time, as: 'endTime'
|
2469
|
+
property :failed_export_count, as: 'failedExportCount'
|
2407
2470
|
collection :partial_errors, as: 'partialErrors', class: Google::Apis::ContactcenterinsightsV1::GoogleRpcStatus, decorator: Google::Apis::ContactcenterinsightsV1::GoogleRpcStatus::Representation
|
2408
2471
|
|
2409
2472
|
property :request, as: 'request', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ExportInsightsDataRequest, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ExportInsightsDataRequest::Representation
|
@@ -2416,6 +2479,7 @@ module Google
|
|
2416
2479
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2417
2480
|
property :big_query_destination, as: 'bigQueryDestination', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ExportInsightsDataRequestBigQueryDestination, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ExportInsightsDataRequestBigQueryDestination::Representation
|
2418
2481
|
|
2482
|
+
property :export_schema_version, as: 'exportSchemaVersion'
|
2419
2483
|
property :filter, as: 'filter'
|
2420
2484
|
property :kms_key, as: 'kmsKey'
|
2421
2485
|
property :parent, as: 'parent'
|
@@ -3424,6 +3488,7 @@ module Google
|
|
3424
3488
|
# @private
|
3425
3489
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3426
3490
|
property :conversation_profile, as: 'conversationProfile'
|
3491
|
+
property :generator, as: 'generator'
|
3427
3492
|
property :summarization_model, as: 'summarizationModel'
|
3428
3493
|
end
|
3429
3494
|
end
|
@@ -3511,6 +3576,30 @@ module Google
|
|
3511
3576
|
end
|
3512
3577
|
end
|
3513
3578
|
|
3579
|
+
class GoogleCloudContactcenterinsightsV1alpha1BulkDeleteFeedbackLabelsMetadata
|
3580
|
+
# @private
|
3581
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3582
|
+
collection :partial_errors, as: 'partialErrors', class: Google::Apis::ContactcenterinsightsV1::GoogleRpcStatus, decorator: Google::Apis::ContactcenterinsightsV1::GoogleRpcStatus::Representation
|
3583
|
+
|
3584
|
+
property :request, as: 'request', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1BulkDeleteFeedbackLabelsRequest, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1BulkDeleteFeedbackLabelsRequest::Representation
|
3585
|
+
|
3586
|
+
end
|
3587
|
+
end
|
3588
|
+
|
3589
|
+
class GoogleCloudContactcenterinsightsV1alpha1BulkDeleteFeedbackLabelsRequest
|
3590
|
+
# @private
|
3591
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3592
|
+
property :filter, as: 'filter'
|
3593
|
+
property :parent, as: 'parent'
|
3594
|
+
end
|
3595
|
+
end
|
3596
|
+
|
3597
|
+
class GoogleCloudContactcenterinsightsV1alpha1BulkDeleteFeedbackLabelsResponse
|
3598
|
+
# @private
|
3599
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3600
|
+
end
|
3601
|
+
end
|
3602
|
+
|
3514
3603
|
class GoogleCloudContactcenterinsightsV1alpha1CallAnnotation
|
3515
3604
|
# @private
|
3516
3605
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3897,8 +3986,10 @@ module Google
|
|
3897
3986
|
class GoogleCloudContactcenterinsightsV1alpha1ExportInsightsDataMetadata
|
3898
3987
|
# @private
|
3899
3988
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3989
|
+
property :completed_export_count, as: 'completedExportCount'
|
3900
3990
|
property :create_time, as: 'createTime'
|
3901
3991
|
property :end_time, as: 'endTime'
|
3992
|
+
property :failed_export_count, as: 'failedExportCount'
|
3902
3993
|
collection :partial_errors, as: 'partialErrors', class: Google::Apis::ContactcenterinsightsV1::GoogleRpcStatus, decorator: Google::Apis::ContactcenterinsightsV1::GoogleRpcStatus::Representation
|
3903
3994
|
|
3904
3995
|
property :request, as: 'request', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ExportInsightsDataRequest, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ExportInsightsDataRequest::Representation
|
@@ -3911,6 +4002,7 @@ module Google
|
|
3911
4002
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3912
4003
|
property :big_query_destination, as: 'bigQueryDestination', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ExportInsightsDataRequestBigQueryDestination, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ExportInsightsDataRequestBigQueryDestination::Representation
|
3913
4004
|
|
4005
|
+
property :export_schema_version, as: 'exportSchemaVersion'
|
3914
4006
|
property :filter, as: 'filter'
|
3915
4007
|
property :kms_key, as: 'kmsKey'
|
3916
4008
|
property :parent, as: 'parent'
|
@@ -51,7 +51,42 @@ module Google
|
|
51
51
|
@batch_path = 'batch'
|
52
52
|
end
|
53
53
|
|
54
|
-
#
|
54
|
+
# Delete feedback labels in bulk using a filter.
|
55
|
+
# @param [String] parent
|
56
|
+
# Required. The parent resource for new feedback labels.
|
57
|
+
# @param [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1BulkDeleteFeedbackLabelsRequest] google_cloud_contactcenterinsights_v1_bulk_delete_feedback_labels_request_object
|
58
|
+
# @param [String] fields
|
59
|
+
# Selector specifying which fields to include in a partial response.
|
60
|
+
# @param [String] quota_user
|
61
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
62
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
63
|
+
# @param [Google::Apis::RequestOptions] options
|
64
|
+
# Request-specific options
|
65
|
+
#
|
66
|
+
# @yield [result, err] Result & error if block supplied
|
67
|
+
# @yieldparam result [Google::Apis::ContactcenterinsightsV1::GoogleLongrunningOperation] parsed result object
|
68
|
+
# @yieldparam err [StandardError] error object if request failed
|
69
|
+
#
|
70
|
+
# @return [Google::Apis::ContactcenterinsightsV1::GoogleLongrunningOperation]
|
71
|
+
#
|
72
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
73
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
74
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
75
|
+
def bulk_project_location_delete_feedback_labels(parent, google_cloud_contactcenterinsights_v1_bulk_delete_feedback_labels_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
76
|
+
command = make_simple_command(:post, 'v1/{+parent}:bulkDeleteFeedbackLabels', options)
|
77
|
+
command.request_representation = Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1BulkDeleteFeedbackLabelsRequest::Representation
|
78
|
+
command.request_object = google_cloud_contactcenterinsights_v1_bulk_delete_feedback_labels_request_object
|
79
|
+
command.response_representation = Google::Apis::ContactcenterinsightsV1::GoogleLongrunningOperation::Representation
|
80
|
+
command.response_class = Google::Apis::ContactcenterinsightsV1::GoogleLongrunningOperation
|
81
|
+
command.params['parent'] = parent unless parent.nil?
|
82
|
+
command.query['fields'] = fields unless fields.nil?
|
83
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
84
|
+
execute_or_queue_command(command, &block)
|
85
|
+
end
|
86
|
+
|
87
|
+
# Download feedback labels in bulk from an external source. Currently supports
|
88
|
+
# exporting Quality AI example conversations with transcripts and question
|
89
|
+
# bodies.
|
55
90
|
# @param [String] parent
|
56
91
|
# Required. The parent resource for new feedback labels.
|
57
92
|
# @param [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1BulkDownloadFeedbackLabelsRequest] google_cloud_contactcenterinsights_v1_bulk_download_feedback_labels_request_object
|
@@ -84,7 +119,8 @@ module Google
|
|
84
119
|
execute_or_queue_command(command, &block)
|
85
120
|
end
|
86
121
|
|
87
|
-
# Upload feedback labels in bulk.
|
122
|
+
# Upload feedback labels from an external source in bulk. Currently supports
|
123
|
+
# labeling Quality AI example conversations.
|
88
124
|
# @param [String] parent
|
89
125
|
# Required. The parent resource for new feedback labels.
|
90
126
|
# @param [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1BulkUploadFeedbackLabelsRequest] google_cloud_contactcenterinsights_v1_bulk_upload_feedback_labels_request_object
|
metadata
CHANGED
@@ -1,13 +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.60.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-03-16 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-contactcenterinsights_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-contactcenterinsights_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-contactcenterinsights_v1/v0.60.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-contactcenterinsights_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '0'
|
75
75
|
requirements: []
|
76
|
-
rubygems_version: 3.6.
|
76
|
+
rubygems_version: 3.6.5
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for Contact Center AI Insights API V1
|
79
79
|
test_files: []
|