google-apis-contactcenterinsights_v1 0.77.0 → 0.78.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 +4 -0
- data/lib/google/apis/contactcenterinsights_v1/classes.rb +65 -2
- 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 +12 -10
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a9840cde5a04e6c774040b9b71e461f8e977ebb0904924ff8ff50f77e21a7692
|
|
4
|
+
data.tar.gz: 5173faa8b172dc0edbf2933ff17eabbac76ea7065f1775574403c537f7897c6e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e177184bfd9962d1a544b899abefd6042be862a230813d59861cb408534e4a86215e31f97d9cf8af4d0ccf09889dec9f8d1ed3f930c289499377b0ae8ee28c36
|
|
7
|
+
data.tar.gz: 0551b4143301ca1d83eeaaf82f2511b232e940ca482358e1faa47b6db1b1607a5f5d5423979e6ec3bb91bef68cc8304e2a78e3abdbcbee13ced5569dddf8c165
|
data/CHANGELOG.md
CHANGED
|
@@ -2719,6 +2719,11 @@ module Google
|
|
|
2719
2719
|
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1DimensionIssueDimensionMetadata]
|
|
2720
2720
|
attr_accessor :issue_dimension_metadata
|
|
2721
2721
|
|
|
2722
|
+
# Metadata about conversation labels.
|
|
2723
|
+
# Corresponds to the JSON property `labelDimensionMetadata`
|
|
2724
|
+
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1DimensionLabelDimensionMetadata]
|
|
2725
|
+
attr_accessor :label_dimension_metadata
|
|
2726
|
+
|
|
2722
2727
|
# Metadata about the conversation medium dimension.
|
|
2723
2728
|
# Corresponds to the JSON property `mediumDimensionMetadata`
|
|
2724
2729
|
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1DimensionMediumDimensionMetadata]
|
|
@@ -2753,6 +2758,7 @@ module Google
|
|
|
2753
2758
|
@conversational_agents_tool_dimension_metadata = args[:conversational_agents_tool_dimension_metadata] if args.key?(:conversational_agents_tool_dimension_metadata)
|
|
2754
2759
|
@dimension_key = args[:dimension_key] if args.key?(:dimension_key)
|
|
2755
2760
|
@issue_dimension_metadata = args[:issue_dimension_metadata] if args.key?(:issue_dimension_metadata)
|
|
2761
|
+
@label_dimension_metadata = args[:label_dimension_metadata] if args.key?(:label_dimension_metadata)
|
|
2756
2762
|
@medium_dimension_metadata = args[:medium_dimension_metadata] if args.key?(:medium_dimension_metadata)
|
|
2757
2763
|
@qa_question_answer_dimension_metadata = args[:qa_question_answer_dimension_metadata] if args.key?(:qa_question_answer_dimension_metadata)
|
|
2758
2764
|
@qa_question_dimension_metadata = args[:qa_question_dimension_metadata] if args.key?(:qa_question_dimension_metadata)
|
|
@@ -2942,6 +2948,31 @@ module Google
|
|
|
2942
2948
|
end
|
|
2943
2949
|
end
|
|
2944
2950
|
|
|
2951
|
+
# Metadata about conversation labels.
|
|
2952
|
+
class GoogleCloudContactcenterinsightsV1DimensionLabelDimensionMetadata
|
|
2953
|
+
include Google::Apis::Core::Hashable
|
|
2954
|
+
|
|
2955
|
+
# Optional. The label key.
|
|
2956
|
+
# Corresponds to the JSON property `labelKey`
|
|
2957
|
+
# @return [String]
|
|
2958
|
+
attr_accessor :label_key
|
|
2959
|
+
|
|
2960
|
+
# Optional. The label value.
|
|
2961
|
+
# Corresponds to the JSON property `labelValue`
|
|
2962
|
+
# @return [String]
|
|
2963
|
+
attr_accessor :label_value
|
|
2964
|
+
|
|
2965
|
+
def initialize(**args)
|
|
2966
|
+
update!(**args)
|
|
2967
|
+
end
|
|
2968
|
+
|
|
2969
|
+
# Update properties of this object
|
|
2970
|
+
def update!(**args)
|
|
2971
|
+
@label_key = args[:label_key] if args.key?(:label_key)
|
|
2972
|
+
@label_value = args[:label_value] if args.key?(:label_value)
|
|
2973
|
+
end
|
|
2974
|
+
end
|
|
2975
|
+
|
|
2945
2976
|
# Metadata about the conversation medium dimension.
|
|
2946
2977
|
class GoogleCloudContactcenterinsightsV1DimensionMediumDimensionMetadata
|
|
2947
2978
|
include Google::Apis::Core::Hashable
|
|
@@ -9269,6 +9300,11 @@ module Google
|
|
|
9269
9300
|
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1DimensionIssueDimensionMetadata]
|
|
9270
9301
|
attr_accessor :issue_dimension_metadata
|
|
9271
9302
|
|
|
9303
|
+
# Metadata about conversation labels.
|
|
9304
|
+
# Corresponds to the JSON property `labelDimensionMetadata`
|
|
9305
|
+
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1DimensionLabelDimensionMetadata]
|
|
9306
|
+
attr_accessor :label_dimension_metadata
|
|
9307
|
+
|
|
9272
9308
|
# Metadata about the conversation medium dimension.
|
|
9273
9309
|
# Corresponds to the JSON property `mediumDimensionMetadata`
|
|
9274
9310
|
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1DimensionMediumDimensionMetadata]
|
|
@@ -9303,6 +9339,7 @@ module Google
|
|
|
9303
9339
|
@conversational_agents_tool_dimension_metadata = args[:conversational_agents_tool_dimension_metadata] if args.key?(:conversational_agents_tool_dimension_metadata)
|
|
9304
9340
|
@dimension_key = args[:dimension_key] if args.key?(:dimension_key)
|
|
9305
9341
|
@issue_dimension_metadata = args[:issue_dimension_metadata] if args.key?(:issue_dimension_metadata)
|
|
9342
|
+
@label_dimension_metadata = args[:label_dimension_metadata] if args.key?(:label_dimension_metadata)
|
|
9306
9343
|
@medium_dimension_metadata = args[:medium_dimension_metadata] if args.key?(:medium_dimension_metadata)
|
|
9307
9344
|
@qa_question_answer_dimension_metadata = args[:qa_question_answer_dimension_metadata] if args.key?(:qa_question_answer_dimension_metadata)
|
|
9308
9345
|
@qa_question_dimension_metadata = args[:qa_question_dimension_metadata] if args.key?(:qa_question_dimension_metadata)
|
|
@@ -9492,6 +9529,31 @@ module Google
|
|
|
9492
9529
|
end
|
|
9493
9530
|
end
|
|
9494
9531
|
|
|
9532
|
+
# Metadata about conversation labels.
|
|
9533
|
+
class GoogleCloudContactcenterinsightsV1alpha1DimensionLabelDimensionMetadata
|
|
9534
|
+
include Google::Apis::Core::Hashable
|
|
9535
|
+
|
|
9536
|
+
# Optional. The label key.
|
|
9537
|
+
# Corresponds to the JSON property `labelKey`
|
|
9538
|
+
# @return [String]
|
|
9539
|
+
attr_accessor :label_key
|
|
9540
|
+
|
|
9541
|
+
# Optional. The label value.
|
|
9542
|
+
# Corresponds to the JSON property `labelValue`
|
|
9543
|
+
# @return [String]
|
|
9544
|
+
attr_accessor :label_value
|
|
9545
|
+
|
|
9546
|
+
def initialize(**args)
|
|
9547
|
+
update!(**args)
|
|
9548
|
+
end
|
|
9549
|
+
|
|
9550
|
+
# Update properties of this object
|
|
9551
|
+
def update!(**args)
|
|
9552
|
+
@label_key = args[:label_key] if args.key?(:label_key)
|
|
9553
|
+
@label_value = args[:label_value] if args.key?(:label_value)
|
|
9554
|
+
end
|
|
9555
|
+
end
|
|
9556
|
+
|
|
9495
9557
|
# Metadata about the conversation medium dimension.
|
|
9496
9558
|
class GoogleCloudContactcenterinsightsV1alpha1DimensionMediumDimensionMetadata
|
|
9497
9559
|
include Google::Apis::Core::Hashable
|
|
@@ -12727,8 +12789,9 @@ module Google
|
|
|
12727
12789
|
attr_accessor :operations
|
|
12728
12790
|
|
|
12729
12791
|
# Unordered list. Unreachable resources. Populated when the request sets `
|
|
12730
|
-
# ListOperationsRequest.return_partial_success` and reads across collections
|
|
12731
|
-
# when attempting to list all resources across all supported
|
|
12792
|
+
# ListOperationsRequest.return_partial_success` and reads across collections.
|
|
12793
|
+
# For example, when attempting to list all resources across all supported
|
|
12794
|
+
# locations.
|
|
12732
12795
|
# Corresponds to the JSON property `unreachable`
|
|
12733
12796
|
# @return [Array<String>]
|
|
12734
12797
|
attr_accessor :unreachable
|
|
@@ -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.78.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20251112"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -484,6 +484,12 @@ module Google
|
|
|
484
484
|
include Google::Apis::Core::JsonObjectSupport
|
|
485
485
|
end
|
|
486
486
|
|
|
487
|
+
class GoogleCloudContactcenterinsightsV1DimensionLabelDimensionMetadata
|
|
488
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
489
|
+
|
|
490
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
491
|
+
end
|
|
492
|
+
|
|
487
493
|
class GoogleCloudContactcenterinsightsV1DimensionMediumDimensionMetadata
|
|
488
494
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
489
495
|
|
|
@@ -1600,6 +1606,12 @@ module Google
|
|
|
1600
1606
|
include Google::Apis::Core::JsonObjectSupport
|
|
1601
1607
|
end
|
|
1602
1608
|
|
|
1609
|
+
class GoogleCloudContactcenterinsightsV1alpha1DimensionLabelDimensionMetadata
|
|
1610
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1611
|
+
|
|
1612
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1613
|
+
end
|
|
1614
|
+
|
|
1603
1615
|
class GoogleCloudContactcenterinsightsV1alpha1DimensionMediumDimensionMetadata
|
|
1604
1616
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1605
1617
|
|
|
@@ -2949,6 +2961,8 @@ module Google
|
|
|
2949
2961
|
property :dimension_key, as: 'dimensionKey'
|
|
2950
2962
|
property :issue_dimension_metadata, as: 'issueDimensionMetadata', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1DimensionIssueDimensionMetadata, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1DimensionIssueDimensionMetadata::Representation
|
|
2951
2963
|
|
|
2964
|
+
property :label_dimension_metadata, as: 'labelDimensionMetadata', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1DimensionLabelDimensionMetadata, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1DimensionLabelDimensionMetadata::Representation
|
|
2965
|
+
|
|
2952
2966
|
property :medium_dimension_metadata, as: 'mediumDimensionMetadata', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1DimensionMediumDimensionMetadata, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1DimensionMediumDimensionMetadata::Representation
|
|
2953
2967
|
|
|
2954
2968
|
property :qa_question_answer_dimension_metadata, as: 'qaQuestionAnswerDimensionMetadata', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1DimensionQaQuestionAnswerDimensionMetadata, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1DimensionQaQuestionAnswerDimensionMetadata::Representation
|
|
@@ -3012,6 +3026,14 @@ module Google
|
|
|
3012
3026
|
end
|
|
3013
3027
|
end
|
|
3014
3028
|
|
|
3029
|
+
class GoogleCloudContactcenterinsightsV1DimensionLabelDimensionMetadata
|
|
3030
|
+
# @private
|
|
3031
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3032
|
+
property :label_key, as: 'labelKey'
|
|
3033
|
+
property :label_value, as: 'labelValue'
|
|
3034
|
+
end
|
|
3035
|
+
end
|
|
3036
|
+
|
|
3015
3037
|
class GoogleCloudContactcenterinsightsV1DimensionMediumDimensionMetadata
|
|
3016
3038
|
# @private
|
|
3017
3039
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -4853,6 +4875,8 @@ module Google
|
|
|
4853
4875
|
property :dimension_key, as: 'dimensionKey'
|
|
4854
4876
|
property :issue_dimension_metadata, as: 'issueDimensionMetadata', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1DimensionIssueDimensionMetadata, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1DimensionIssueDimensionMetadata::Representation
|
|
4855
4877
|
|
|
4878
|
+
property :label_dimension_metadata, as: 'labelDimensionMetadata', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1DimensionLabelDimensionMetadata, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1DimensionLabelDimensionMetadata::Representation
|
|
4879
|
+
|
|
4856
4880
|
property :medium_dimension_metadata, as: 'mediumDimensionMetadata', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1DimensionMediumDimensionMetadata, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1DimensionMediumDimensionMetadata::Representation
|
|
4857
4881
|
|
|
4858
4882
|
property :qa_question_answer_dimension_metadata, as: 'qaQuestionAnswerDimensionMetadata', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1DimensionQaQuestionAnswerDimensionMetadata, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1DimensionQaQuestionAnswerDimensionMetadata::Representation
|
|
@@ -4916,6 +4940,14 @@ module Google
|
|
|
4916
4940
|
end
|
|
4917
4941
|
end
|
|
4918
4942
|
|
|
4943
|
+
class GoogleCloudContactcenterinsightsV1alpha1DimensionLabelDimensionMetadata
|
|
4944
|
+
# @private
|
|
4945
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4946
|
+
property :label_key, as: 'labelKey'
|
|
4947
|
+
property :label_value, as: 'labelValue'
|
|
4948
|
+
end
|
|
4949
|
+
end
|
|
4950
|
+
|
|
4919
4951
|
class GoogleCloudContactcenterinsightsV1alpha1DimensionMediumDimensionMetadata
|
|
4920
4952
|
# @private
|
|
4921
4953
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2154,11 +2154,12 @@ module Google
|
|
|
2154
2154
|
# The standard list page token.
|
|
2155
2155
|
# @param [Boolean] return_partial_success
|
|
2156
2156
|
# When set to `true`, operations that are reachable are returned as normal, and
|
|
2157
|
-
# those that are unreachable are returned in the
|
|
2158
|
-
# unreachable
|
|
2159
|
-
#
|
|
2160
|
-
# by default
|
|
2161
|
-
# explicitly documented otherwise in service or product specific
|
|
2157
|
+
# those that are unreachable are returned in the ListOperationsResponse.
|
|
2158
|
+
# unreachable field. This can only be `true` when reading across collections.
|
|
2159
|
+
# For example, when `parent` is set to `"projects/example/locations/-"`. This
|
|
2160
|
+
# field is not supported by default and will result in an `UNIMPLEMENTED` error
|
|
2161
|
+
# if set unless explicitly documented otherwise in service or product specific
|
|
2162
|
+
# documentation.
|
|
2162
2163
|
# @param [String] fields
|
|
2163
2164
|
# Selector specifying which fields to include in a partial response.
|
|
2164
2165
|
# @param [String] quota_user
|
|
@@ -4783,11 +4784,12 @@ module Google
|
|
|
4783
4784
|
# The standard list page token.
|
|
4784
4785
|
# @param [Boolean] return_partial_success
|
|
4785
4786
|
# When set to `true`, operations that are reachable are returned as normal, and
|
|
4786
|
-
# those that are unreachable are returned in the
|
|
4787
|
-
# unreachable
|
|
4788
|
-
#
|
|
4789
|
-
# by default
|
|
4790
|
-
# explicitly documented otherwise in service or product specific
|
|
4787
|
+
# those that are unreachable are returned in the ListOperationsResponse.
|
|
4788
|
+
# unreachable field. This can only be `true` when reading across collections.
|
|
4789
|
+
# For example, when `parent` is set to `"projects/example/locations/-"`. This
|
|
4790
|
+
# field is not supported by default and will result in an `UNIMPLEMENTED` error
|
|
4791
|
+
# if set unless explicitly documented otherwise in service or product specific
|
|
4792
|
+
# documentation.
|
|
4791
4793
|
# @param [String] fields
|
|
4792
4794
|
# Selector specifying which fields to include in a partial response.
|
|
4793
4795
|
# @param [String] quota_user
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.78.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -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.78.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:
|