google-apis-contactcenterinsights_v1 0.74.0 → 0.76.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 +194 -6
- data/lib/google/apis/contactcenterinsights_v1/gem_version.rb +2 -2
- data/lib/google/apis/contactcenterinsights_v1/representations.rb +48 -0
- data/lib/google/apis/contactcenterinsights_v1/service.rb +20 -3
- 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: 1cf97b83089519c64ba4dad190da338a7f16d398ced43303790fe89c3bab5daa
|
4
|
+
data.tar.gz: 0f3aed08b4e4285aebfea5ff09164e1fdaa2b7cdd014c6c532740a30eefdf6ad
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b156944d44deaff612981360727c7bca2d06899bfd12c08a9b0797282ef83940507fe628128fd6c4005a464e1665d5c13a78298c32c25c94993b04d49ceaadce
|
7
|
+
data.tar.gz: 3f52fa2d07f731ad2a19a74df1227c26075f9acd2e613caffb9ec83eb5e96be651154363d8342e2111c683fe8122c15d1a78ebb52b21f3917d0e27a328f70e30
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-contactcenterinsights_v1
|
2
2
|
|
3
|
+
### v0.76.0 (2025-10-12)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20251007
|
6
|
+
|
7
|
+
### v0.75.0 (2025-09-28)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250926
|
10
|
+
|
3
11
|
### v0.74.0 (2025-09-07)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250901
|
@@ -1943,6 +1943,16 @@ module Google
|
|
1943
1943
|
# @return [String]
|
1944
1944
|
attr_accessor :agent_type
|
1945
1945
|
|
1946
|
+
# The agent's deployment display name. Only applicable to automated agents.
|
1947
|
+
# Corresponds to the JSON property `deploymentDisplayName`
|
1948
|
+
# @return [String]
|
1949
|
+
attr_accessor :deployment_display_name
|
1950
|
+
|
1951
|
+
# The agent's deployment ID. Only applicable to automated agents.
|
1952
|
+
# Corresponds to the JSON property `deploymentId`
|
1953
|
+
# @return [String]
|
1954
|
+
attr_accessor :deployment_id
|
1955
|
+
|
1946
1956
|
# The agent's name.
|
1947
1957
|
# Corresponds to the JSON property `displayName`
|
1948
1958
|
# @return [String]
|
@@ -1970,6 +1980,16 @@ module Google
|
|
1970
1980
|
# @return [Array<String>]
|
1971
1981
|
attr_accessor :teams
|
1972
1982
|
|
1983
|
+
# The agent's version display name. Only applicable to automated agents.
|
1984
|
+
# Corresponds to the JSON property `versionDisplayName`
|
1985
|
+
# @return [String]
|
1986
|
+
attr_accessor :version_display_name
|
1987
|
+
|
1988
|
+
# The agent's version ID. Only applicable to automated agents.
|
1989
|
+
# Corresponds to the JSON property `versionId`
|
1990
|
+
# @return [String]
|
1991
|
+
attr_accessor :version_id
|
1992
|
+
|
1973
1993
|
def initialize(**args)
|
1974
1994
|
update!(**args)
|
1975
1995
|
end
|
@@ -1978,11 +1998,15 @@ module Google
|
|
1978
1998
|
def update!(**args)
|
1979
1999
|
@agent_id = args[:agent_id] if args.key?(:agent_id)
|
1980
2000
|
@agent_type = args[:agent_type] if args.key?(:agent_type)
|
2001
|
+
@deployment_display_name = args[:deployment_display_name] if args.key?(:deployment_display_name)
|
2002
|
+
@deployment_id = args[:deployment_id] if args.key?(:deployment_id)
|
1981
2003
|
@display_name = args[:display_name] if args.key?(:display_name)
|
1982
2004
|
@disposition_code = args[:disposition_code] if args.key?(:disposition_code)
|
1983
2005
|
@location = args[:location] if args.key?(:location)
|
1984
2006
|
@team = args[:team] if args.key?(:team)
|
1985
2007
|
@teams = args[:teams] if args.key?(:teams)
|
2008
|
+
@version_display_name = args[:version_display_name] if args.key?(:version_display_name)
|
2009
|
+
@version_id = args[:version_id] if args.key?(:version_id)
|
1986
2010
|
end
|
1987
2011
|
end
|
1988
2012
|
|
@@ -2686,6 +2710,11 @@ module Google
|
|
2686
2710
|
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1DimensionQaQuestionDimensionMetadata]
|
2687
2711
|
attr_accessor :qa_question_dimension_metadata
|
2688
2712
|
|
2713
|
+
# Metadata about the QA scorecard dimension.
|
2714
|
+
# Corresponds to the JSON property `qaScorecardDimensionMetadata`
|
2715
|
+
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1DimensionQaScorecardDimensionMetadata]
|
2716
|
+
attr_accessor :qa_scorecard_dimension_metadata
|
2717
|
+
|
2689
2718
|
def initialize(**args)
|
2690
2719
|
update!(**args)
|
2691
2720
|
end
|
@@ -2697,6 +2726,7 @@ module Google
|
|
2697
2726
|
@issue_dimension_metadata = args[:issue_dimension_metadata] if args.key?(:issue_dimension_metadata)
|
2698
2727
|
@qa_question_answer_dimension_metadata = args[:qa_question_answer_dimension_metadata] if args.key?(:qa_question_answer_dimension_metadata)
|
2699
2728
|
@qa_question_dimension_metadata = args[:qa_question_dimension_metadata] if args.key?(:qa_question_dimension_metadata)
|
2729
|
+
@qa_scorecard_dimension_metadata = args[:qa_scorecard_dimension_metadata] if args.key?(:qa_scorecard_dimension_metadata)
|
2700
2730
|
end
|
2701
2731
|
end
|
2702
2732
|
|
@@ -2704,12 +2734,27 @@ module Google
|
|
2704
2734
|
class GoogleCloudContactcenterinsightsV1DimensionAgentDimensionMetadata
|
2705
2735
|
include Google::Apis::Core::Hashable
|
2706
2736
|
|
2707
|
-
# Optional. The agent's name
|
2737
|
+
# Optional. The agent's deployment display name. Only applicable to automated
|
2738
|
+
# agents. This will be populated for AGENT_DEPLOYMENT_ID dimensions.
|
2739
|
+
# Corresponds to the JSON property `agentDeploymentDisplayName`
|
2740
|
+
# @return [String]
|
2741
|
+
attr_accessor :agent_deployment_display_name
|
2742
|
+
|
2743
|
+
# Optional. The agent's deployment ID. Only applicable to automated agents. This
|
2744
|
+
# will be populated for AGENT and AGENT_DEPLOYMENT_ID dimensions.
|
2745
|
+
# Corresponds to the JSON property `agentDeploymentId`
|
2746
|
+
# @return [String]
|
2747
|
+
attr_accessor :agent_deployment_id
|
2748
|
+
|
2749
|
+
# Optional. The agent's name This will be populated for AGENT, AGENT_TEAM,
|
2750
|
+
# AGENT_VERSION_ID, and AGENT_DEPLOYMENT_ID dimensions.
|
2708
2751
|
# Corresponds to the JSON property `agentDisplayName`
|
2709
2752
|
# @return [String]
|
2710
2753
|
attr_accessor :agent_display_name
|
2711
2754
|
|
2712
|
-
# Optional. A user-specified string representing the agent.
|
2755
|
+
# Optional. A user-specified string representing the agent. This will be
|
2756
|
+
# populated for AGENT, AGENT_TEAM, AGENT_VERSION_ID, and AGENT_DEPLOYMENT_ID
|
2757
|
+
# dimensions.
|
2713
2758
|
# Corresponds to the JSON property `agentId`
|
2714
2759
|
# @return [String]
|
2715
2760
|
attr_accessor :agent_id
|
@@ -2719,15 +2764,32 @@ module Google
|
|
2719
2764
|
# @return [String]
|
2720
2765
|
attr_accessor :agent_team
|
2721
2766
|
|
2767
|
+
# Optional. The agent's version display name. Only applicable to automated
|
2768
|
+
# agents. This will be populated for AGENT_VERSION_ID, and AGENT_DEPLOYMENT_ID
|
2769
|
+
# dimensions.
|
2770
|
+
# Corresponds to the JSON property `agentVersionDisplayName`
|
2771
|
+
# @return [String]
|
2772
|
+
attr_accessor :agent_version_display_name
|
2773
|
+
|
2774
|
+
# Optional. The agent's version ID. Only applicable to automated agents. This
|
2775
|
+
# will be populated for AGENT_VERSION_ID, and AGENT_DEPLOYMENT_ID dimensions.
|
2776
|
+
# Corresponds to the JSON property `agentVersionId`
|
2777
|
+
# @return [String]
|
2778
|
+
attr_accessor :agent_version_id
|
2779
|
+
|
2722
2780
|
def initialize(**args)
|
2723
2781
|
update!(**args)
|
2724
2782
|
end
|
2725
2783
|
|
2726
2784
|
# Update properties of this object
|
2727
2785
|
def update!(**args)
|
2786
|
+
@agent_deployment_display_name = args[:agent_deployment_display_name] if args.key?(:agent_deployment_display_name)
|
2787
|
+
@agent_deployment_id = args[:agent_deployment_id] if args.key?(:agent_deployment_id)
|
2728
2788
|
@agent_display_name = args[:agent_display_name] if args.key?(:agent_display_name)
|
2729
2789
|
@agent_id = args[:agent_id] if args.key?(:agent_id)
|
2730
2790
|
@agent_team = args[:agent_team] if args.key?(:agent_team)
|
2791
|
+
@agent_version_display_name = args[:agent_version_display_name] if args.key?(:agent_version_display_name)
|
2792
|
+
@agent_version_id = args[:agent_version_id] if args.key?(:agent_version_id)
|
2731
2793
|
end
|
2732
2794
|
end
|
2733
2795
|
|
@@ -2831,6 +2893,25 @@ module Google
|
|
2831
2893
|
end
|
2832
2894
|
end
|
2833
2895
|
|
2896
|
+
# Metadata about the QA scorecard dimension.
|
2897
|
+
class GoogleCloudContactcenterinsightsV1DimensionQaScorecardDimensionMetadata
|
2898
|
+
include Google::Apis::Core::Hashable
|
2899
|
+
|
2900
|
+
# Optional. The QA scorecard ID.
|
2901
|
+
# Corresponds to the JSON property `qaScorecardId`
|
2902
|
+
# @return [String]
|
2903
|
+
attr_accessor :qa_scorecard_id
|
2904
|
+
|
2905
|
+
def initialize(**args)
|
2906
|
+
update!(**args)
|
2907
|
+
end
|
2908
|
+
|
2909
|
+
# Update properties of this object
|
2910
|
+
def update!(**args)
|
2911
|
+
@qa_scorecard_id = args[:qa_scorecard_id] if args.key?(:qa_scorecard_id)
|
2912
|
+
end
|
2913
|
+
end
|
2914
|
+
|
2834
2915
|
# A customer-managed encryption key specification that can be applied to all
|
2835
2916
|
# created resources (e.g. `Conversation`).
|
2836
2917
|
class GoogleCloudContactcenterinsightsV1EncryptionSpec
|
@@ -5941,7 +6022,11 @@ module Google
|
|
5941
6022
|
# @return [String]
|
5942
6023
|
attr_accessor :average_duration
|
5943
6024
|
|
5944
|
-
#
|
6025
|
+
# The average normalized QA score for a scorecard. When computing the average
|
6026
|
+
# across a set of conversations, if a conversation has been evaluated with
|
6027
|
+
# multiple revisions of a scorecard, only the latest revision results will be
|
6028
|
+
# used. Will exclude 0's in average calculation. Will be only populated if the
|
6029
|
+
# request specifies a dimension of QA_SCORECARD_ID.
|
5945
6030
|
# Corresponds to the JSON property `averageQaNormalizedScore`
|
5946
6031
|
# @return [Float]
|
5947
6032
|
attr_accessor :average_qa_normalized_score
|
@@ -6603,6 +6688,15 @@ module Google
|
|
6603
6688
|
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1RedactionConfig]
|
6604
6689
|
attr_accessor :redaction_config
|
6605
6690
|
|
6691
|
+
# Optional. The path to a Cloud Storage bucket containing conversation screen
|
6692
|
+
# recordings. If provided, Insights will search in the bucket for a screen
|
6693
|
+
# recording file matching the conversation data source object name prefix. If
|
6694
|
+
# matches are found, these file URIs will be stored in the conversation screen
|
6695
|
+
# recordings field.
|
6696
|
+
# Corresponds to the JSON property `screenRecordingBucketUri`
|
6697
|
+
# @return [String]
|
6698
|
+
attr_accessor :screen_recording_bucket_uri
|
6699
|
+
|
6606
6700
|
# Speech-to-Text configuration. Speech-to-Text settings are applied to
|
6607
6701
|
# conversations ingested from the `UploadConversation` and `IngestConversations`
|
6608
6702
|
# endpoints, including conversation coming from CCAI Platform. They are not
|
@@ -6629,6 +6723,7 @@ module Google
|
|
6629
6723
|
@name = args[:name] if args.key?(:name)
|
6630
6724
|
@pubsub_notification_settings = args[:pubsub_notification_settings] if args.key?(:pubsub_notification_settings)
|
6631
6725
|
@redaction_config = args[:redaction_config] if args.key?(:redaction_config)
|
6726
|
+
@screen_recording_bucket_uri = args[:screen_recording_bucket_uri] if args.key?(:screen_recording_bucket_uri)
|
6632
6727
|
@speech_config = args[:speech_config] if args.key?(:speech_config)
|
6633
6728
|
@update_time = args[:update_time] if args.key?(:update_time)
|
6634
6729
|
end
|
@@ -8274,6 +8369,16 @@ module Google
|
|
8274
8369
|
# @return [String]
|
8275
8370
|
attr_accessor :agent_type
|
8276
8371
|
|
8372
|
+
# The agent's deployment display name. Only applicable to automated agents.
|
8373
|
+
# Corresponds to the JSON property `deploymentDisplayName`
|
8374
|
+
# @return [String]
|
8375
|
+
attr_accessor :deployment_display_name
|
8376
|
+
|
8377
|
+
# The agent's deployment ID. Only applicable to automated agents.
|
8378
|
+
# Corresponds to the JSON property `deploymentId`
|
8379
|
+
# @return [String]
|
8380
|
+
attr_accessor :deployment_id
|
8381
|
+
|
8277
8382
|
# The agent's name.
|
8278
8383
|
# Corresponds to the JSON property `displayName`
|
8279
8384
|
# @return [String]
|
@@ -8301,6 +8406,16 @@ module Google
|
|
8301
8406
|
# @return [Array<String>]
|
8302
8407
|
attr_accessor :teams
|
8303
8408
|
|
8409
|
+
# The agent's version display name. Only applicable to automated agents.
|
8410
|
+
# Corresponds to the JSON property `versionDisplayName`
|
8411
|
+
# @return [String]
|
8412
|
+
attr_accessor :version_display_name
|
8413
|
+
|
8414
|
+
# The agent's version ID. Only applicable to automated agents.
|
8415
|
+
# Corresponds to the JSON property `versionId`
|
8416
|
+
# @return [String]
|
8417
|
+
attr_accessor :version_id
|
8418
|
+
|
8304
8419
|
def initialize(**args)
|
8305
8420
|
update!(**args)
|
8306
8421
|
end
|
@@ -8309,11 +8424,15 @@ module Google
|
|
8309
8424
|
def update!(**args)
|
8310
8425
|
@agent_id = args[:agent_id] if args.key?(:agent_id)
|
8311
8426
|
@agent_type = args[:agent_type] if args.key?(:agent_type)
|
8427
|
+
@deployment_display_name = args[:deployment_display_name] if args.key?(:deployment_display_name)
|
8428
|
+
@deployment_id = args[:deployment_id] if args.key?(:deployment_id)
|
8312
8429
|
@display_name = args[:display_name] if args.key?(:display_name)
|
8313
8430
|
@disposition_code = args[:disposition_code] if args.key?(:disposition_code)
|
8314
8431
|
@location = args[:location] if args.key?(:location)
|
8315
8432
|
@team = args[:team] if args.key?(:team)
|
8316
8433
|
@teams = args[:teams] if args.key?(:teams)
|
8434
|
+
@version_display_name = args[:version_display_name] if args.key?(:version_display_name)
|
8435
|
+
@version_id = args[:version_id] if args.key?(:version_id)
|
8317
8436
|
end
|
8318
8437
|
end
|
8319
8438
|
|
@@ -9004,6 +9123,11 @@ module Google
|
|
9004
9123
|
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1DimensionQaQuestionDimensionMetadata]
|
9005
9124
|
attr_accessor :qa_question_dimension_metadata
|
9006
9125
|
|
9126
|
+
# Metadata about the QA scorecard dimension.
|
9127
|
+
# Corresponds to the JSON property `qaScorecardDimensionMetadata`
|
9128
|
+
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1DimensionQaScorecardDimensionMetadata]
|
9129
|
+
attr_accessor :qa_scorecard_dimension_metadata
|
9130
|
+
|
9007
9131
|
def initialize(**args)
|
9008
9132
|
update!(**args)
|
9009
9133
|
end
|
@@ -9015,6 +9139,7 @@ module Google
|
|
9015
9139
|
@issue_dimension_metadata = args[:issue_dimension_metadata] if args.key?(:issue_dimension_metadata)
|
9016
9140
|
@qa_question_answer_dimension_metadata = args[:qa_question_answer_dimension_metadata] if args.key?(:qa_question_answer_dimension_metadata)
|
9017
9141
|
@qa_question_dimension_metadata = args[:qa_question_dimension_metadata] if args.key?(:qa_question_dimension_metadata)
|
9142
|
+
@qa_scorecard_dimension_metadata = args[:qa_scorecard_dimension_metadata] if args.key?(:qa_scorecard_dimension_metadata)
|
9018
9143
|
end
|
9019
9144
|
end
|
9020
9145
|
|
@@ -9022,12 +9147,27 @@ module Google
|
|
9022
9147
|
class GoogleCloudContactcenterinsightsV1alpha1DimensionAgentDimensionMetadata
|
9023
9148
|
include Google::Apis::Core::Hashable
|
9024
9149
|
|
9025
|
-
# Optional. The agent's name
|
9150
|
+
# Optional. The agent's deployment display name. Only applicable to automated
|
9151
|
+
# agents. This will be populated for AGENT_DEPLOYMENT_ID dimensions.
|
9152
|
+
# Corresponds to the JSON property `agentDeploymentDisplayName`
|
9153
|
+
# @return [String]
|
9154
|
+
attr_accessor :agent_deployment_display_name
|
9155
|
+
|
9156
|
+
# Optional. The agent's deployment ID. Only applicable to automated agents. This
|
9157
|
+
# will be populated for AGENT and AGENT_DEPLOYMENT_ID dimensions.
|
9158
|
+
# Corresponds to the JSON property `agentDeploymentId`
|
9159
|
+
# @return [String]
|
9160
|
+
attr_accessor :agent_deployment_id
|
9161
|
+
|
9162
|
+
# Optional. The agent's name This will be populated for AGENT, AGENT_TEAM,
|
9163
|
+
# AGENT_VERSION_ID, and AGENT_DEPLOYMENT_ID dimensions.
|
9026
9164
|
# Corresponds to the JSON property `agentDisplayName`
|
9027
9165
|
# @return [String]
|
9028
9166
|
attr_accessor :agent_display_name
|
9029
9167
|
|
9030
|
-
# Optional. A user-specified string representing the agent.
|
9168
|
+
# Optional. A user-specified string representing the agent. This will be
|
9169
|
+
# populated for AGENT, AGENT_TEAM, AGENT_VERSION_ID, and AGENT_DEPLOYMENT_ID
|
9170
|
+
# dimensions.
|
9031
9171
|
# Corresponds to the JSON property `agentId`
|
9032
9172
|
# @return [String]
|
9033
9173
|
attr_accessor :agent_id
|
@@ -9037,15 +9177,32 @@ module Google
|
|
9037
9177
|
# @return [String]
|
9038
9178
|
attr_accessor :agent_team
|
9039
9179
|
|
9180
|
+
# Optional. The agent's version display name. Only applicable to automated
|
9181
|
+
# agents. This will be populated for AGENT_VERSION_ID, and AGENT_DEPLOYMENT_ID
|
9182
|
+
# dimensions.
|
9183
|
+
# Corresponds to the JSON property `agentVersionDisplayName`
|
9184
|
+
# @return [String]
|
9185
|
+
attr_accessor :agent_version_display_name
|
9186
|
+
|
9187
|
+
# Optional. The agent's version ID. Only applicable to automated agents. This
|
9188
|
+
# will be populated for AGENT_VERSION_ID, and AGENT_DEPLOYMENT_ID dimensions.
|
9189
|
+
# Corresponds to the JSON property `agentVersionId`
|
9190
|
+
# @return [String]
|
9191
|
+
attr_accessor :agent_version_id
|
9192
|
+
|
9040
9193
|
def initialize(**args)
|
9041
9194
|
update!(**args)
|
9042
9195
|
end
|
9043
9196
|
|
9044
9197
|
# Update properties of this object
|
9045
9198
|
def update!(**args)
|
9199
|
+
@agent_deployment_display_name = args[:agent_deployment_display_name] if args.key?(:agent_deployment_display_name)
|
9200
|
+
@agent_deployment_id = args[:agent_deployment_id] if args.key?(:agent_deployment_id)
|
9046
9201
|
@agent_display_name = args[:agent_display_name] if args.key?(:agent_display_name)
|
9047
9202
|
@agent_id = args[:agent_id] if args.key?(:agent_id)
|
9048
9203
|
@agent_team = args[:agent_team] if args.key?(:agent_team)
|
9204
|
+
@agent_version_display_name = args[:agent_version_display_name] if args.key?(:agent_version_display_name)
|
9205
|
+
@agent_version_id = args[:agent_version_id] if args.key?(:agent_version_id)
|
9049
9206
|
end
|
9050
9207
|
end
|
9051
9208
|
|
@@ -9149,6 +9306,25 @@ module Google
|
|
9149
9306
|
end
|
9150
9307
|
end
|
9151
9308
|
|
9309
|
+
# Metadata about the QA scorecard dimension.
|
9310
|
+
class GoogleCloudContactcenterinsightsV1alpha1DimensionQaScorecardDimensionMetadata
|
9311
|
+
include Google::Apis::Core::Hashable
|
9312
|
+
|
9313
|
+
# Optional. The QA scorecard ID.
|
9314
|
+
# Corresponds to the JSON property `qaScorecardId`
|
9315
|
+
# @return [String]
|
9316
|
+
attr_accessor :qa_scorecard_id
|
9317
|
+
|
9318
|
+
def initialize(**args)
|
9319
|
+
update!(**args)
|
9320
|
+
end
|
9321
|
+
|
9322
|
+
# Update properties of this object
|
9323
|
+
def update!(**args)
|
9324
|
+
@qa_scorecard_id = args[:qa_scorecard_id] if args.key?(:qa_scorecard_id)
|
9325
|
+
end
|
9326
|
+
end
|
9327
|
+
|
9152
9328
|
# A customer-managed encryption key specification that can be applied to all
|
9153
9329
|
# created resources (e.g. `Conversation`).
|
9154
9330
|
class GoogleCloudContactcenterinsightsV1alpha1EncryptionSpec
|
@@ -11088,7 +11264,11 @@ module Google
|
|
11088
11264
|
# @return [String]
|
11089
11265
|
attr_accessor :average_duration
|
11090
11266
|
|
11091
|
-
#
|
11267
|
+
# The average normalized QA score for a scorecard. When computing the average
|
11268
|
+
# across a set of conversations, if a conversation has been evaluated with
|
11269
|
+
# multiple revisions of a scorecard, only the latest revision results will be
|
11270
|
+
# used. Will exclude 0's in average calculation. Will be only populated if the
|
11271
|
+
# request specifies a dimension of QA_SCORECARD_ID.
|
11092
11272
|
# Corresponds to the JSON property `averageQaNormalizedScore`
|
11093
11273
|
# @return [Float]
|
11094
11274
|
attr_accessor :average_qa_normalized_score
|
@@ -12272,6 +12452,13 @@ module Google
|
|
12272
12452
|
# @return [Array<Google::Apis::ContactcenterinsightsV1::GoogleLongrunningOperation>]
|
12273
12453
|
attr_accessor :operations
|
12274
12454
|
|
12455
|
+
# Unordered list. Unreachable resources. Populated when the request sets `
|
12456
|
+
# ListOperationsRequest.return_partial_success` and reads across collections e.g.
|
12457
|
+
# when attempting to list all resources across all supported locations.
|
12458
|
+
# Corresponds to the JSON property `unreachable`
|
12459
|
+
# @return [Array<String>]
|
12460
|
+
attr_accessor :unreachable
|
12461
|
+
|
12275
12462
|
def initialize(**args)
|
12276
12463
|
update!(**args)
|
12277
12464
|
end
|
@@ -12280,6 +12467,7 @@ module Google
|
|
12280
12467
|
def update!(**args)
|
12281
12468
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
12282
12469
|
@operations = args[:operations] if args.key?(:operations)
|
12470
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
12283
12471
|
end
|
12284
12472
|
end
|
12285
12473
|
|
@@ -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.76.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 = "20251007"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -472,6 +472,12 @@ module Google
|
|
472
472
|
include Google::Apis::Core::JsonObjectSupport
|
473
473
|
end
|
474
474
|
|
475
|
+
class GoogleCloudContactcenterinsightsV1DimensionQaScorecardDimensionMetadata
|
476
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
477
|
+
|
478
|
+
include Google::Apis::Core::JsonObjectSupport
|
479
|
+
end
|
480
|
+
|
475
481
|
class GoogleCloudContactcenterinsightsV1EncryptionSpec
|
476
482
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
477
483
|
|
@@ -1552,6 +1558,12 @@ module Google
|
|
1552
1558
|
include Google::Apis::Core::JsonObjectSupport
|
1553
1559
|
end
|
1554
1560
|
|
1561
|
+
class GoogleCloudContactcenterinsightsV1alpha1DimensionQaScorecardDimensionMetadata
|
1562
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1563
|
+
|
1564
|
+
include Google::Apis::Core::JsonObjectSupport
|
1565
|
+
end
|
1566
|
+
|
1555
1567
|
class GoogleCloudContactcenterinsightsV1alpha1EncryptionSpec
|
1556
1568
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1557
1569
|
|
@@ -2644,11 +2656,15 @@ module Google
|
|
2644
2656
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2645
2657
|
property :agent_id, as: 'agentId'
|
2646
2658
|
property :agent_type, as: 'agentType'
|
2659
|
+
property :deployment_display_name, as: 'deploymentDisplayName'
|
2660
|
+
property :deployment_id, as: 'deploymentId'
|
2647
2661
|
property :display_name, as: 'displayName'
|
2648
2662
|
property :disposition_code, as: 'dispositionCode'
|
2649
2663
|
property :location, as: 'location'
|
2650
2664
|
property :team, as: 'team'
|
2651
2665
|
collection :teams, as: 'teams'
|
2666
|
+
property :version_display_name, as: 'versionDisplayName'
|
2667
|
+
property :version_id, as: 'versionId'
|
2652
2668
|
end
|
2653
2669
|
end
|
2654
2670
|
|
@@ -2869,15 +2885,21 @@ module Google
|
|
2869
2885
|
|
2870
2886
|
property :qa_question_dimension_metadata, as: 'qaQuestionDimensionMetadata', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1DimensionQaQuestionDimensionMetadata, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1DimensionQaQuestionDimensionMetadata::Representation
|
2871
2887
|
|
2888
|
+
property :qa_scorecard_dimension_metadata, as: 'qaScorecardDimensionMetadata', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1DimensionQaScorecardDimensionMetadata, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1DimensionQaScorecardDimensionMetadata::Representation
|
2889
|
+
|
2872
2890
|
end
|
2873
2891
|
end
|
2874
2892
|
|
2875
2893
|
class GoogleCloudContactcenterinsightsV1DimensionAgentDimensionMetadata
|
2876
2894
|
# @private
|
2877
2895
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2896
|
+
property :agent_deployment_display_name, as: 'agentDeploymentDisplayName'
|
2897
|
+
property :agent_deployment_id, as: 'agentDeploymentId'
|
2878
2898
|
property :agent_display_name, as: 'agentDisplayName'
|
2879
2899
|
property :agent_id, as: 'agentId'
|
2880
2900
|
property :agent_team, as: 'agentTeam'
|
2901
|
+
property :agent_version_display_name, as: 'agentVersionDisplayName'
|
2902
|
+
property :agent_version_id, as: 'agentVersionId'
|
2881
2903
|
end
|
2882
2904
|
end
|
2883
2905
|
|
@@ -2909,6 +2931,13 @@ module Google
|
|
2909
2931
|
end
|
2910
2932
|
end
|
2911
2933
|
|
2934
|
+
class GoogleCloudContactcenterinsightsV1DimensionQaScorecardDimensionMetadata
|
2935
|
+
# @private
|
2936
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2937
|
+
property :qa_scorecard_id, as: 'qaScorecardId'
|
2938
|
+
end
|
2939
|
+
end
|
2940
|
+
|
2912
2941
|
class GoogleCloudContactcenterinsightsV1EncryptionSpec
|
2913
2942
|
# @private
|
2914
2943
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4007,6 +4036,7 @@ module Google
|
|
4007
4036
|
hash :pubsub_notification_settings, as: 'pubsubNotificationSettings'
|
4008
4037
|
property :redaction_config, as: 'redactionConfig', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1RedactionConfig, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1RedactionConfig::Representation
|
4009
4038
|
|
4039
|
+
property :screen_recording_bucket_uri, as: 'screenRecordingBucketUri'
|
4010
4040
|
property :speech_config, as: 'speechConfig', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1SpeechConfig, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1SpeechConfig::Representation
|
4011
4041
|
|
4012
4042
|
property :update_time, as: 'updateTime'
|
@@ -4489,11 +4519,15 @@ module Google
|
|
4489
4519
|
class Representation < Google::Apis::Core::JsonRepresentation
|
4490
4520
|
property :agent_id, as: 'agentId'
|
4491
4521
|
property :agent_type, as: 'agentType'
|
4522
|
+
property :deployment_display_name, as: 'deploymentDisplayName'
|
4523
|
+
property :deployment_id, as: 'deploymentId'
|
4492
4524
|
property :display_name, as: 'displayName'
|
4493
4525
|
property :disposition_code, as: 'dispositionCode'
|
4494
4526
|
property :location, as: 'location'
|
4495
4527
|
property :team, as: 'team'
|
4496
4528
|
collection :teams, as: 'teams'
|
4529
|
+
property :version_display_name, as: 'versionDisplayName'
|
4530
|
+
property :version_id, as: 'versionId'
|
4497
4531
|
end
|
4498
4532
|
end
|
4499
4533
|
|
@@ -4708,15 +4742,21 @@ module Google
|
|
4708
4742
|
|
4709
4743
|
property :qa_question_dimension_metadata, as: 'qaQuestionDimensionMetadata', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1DimensionQaQuestionDimensionMetadata, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1DimensionQaQuestionDimensionMetadata::Representation
|
4710
4744
|
|
4745
|
+
property :qa_scorecard_dimension_metadata, as: 'qaScorecardDimensionMetadata', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1DimensionQaScorecardDimensionMetadata, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1DimensionQaScorecardDimensionMetadata::Representation
|
4746
|
+
|
4711
4747
|
end
|
4712
4748
|
end
|
4713
4749
|
|
4714
4750
|
class GoogleCloudContactcenterinsightsV1alpha1DimensionAgentDimensionMetadata
|
4715
4751
|
# @private
|
4716
4752
|
class Representation < Google::Apis::Core::JsonRepresentation
|
4753
|
+
property :agent_deployment_display_name, as: 'agentDeploymentDisplayName'
|
4754
|
+
property :agent_deployment_id, as: 'agentDeploymentId'
|
4717
4755
|
property :agent_display_name, as: 'agentDisplayName'
|
4718
4756
|
property :agent_id, as: 'agentId'
|
4719
4757
|
property :agent_team, as: 'agentTeam'
|
4758
|
+
property :agent_version_display_name, as: 'agentVersionDisplayName'
|
4759
|
+
property :agent_version_id, as: 'agentVersionId'
|
4720
4760
|
end
|
4721
4761
|
end
|
4722
4762
|
|
@@ -4748,6 +4788,13 @@ module Google
|
|
4748
4788
|
end
|
4749
4789
|
end
|
4750
4790
|
|
4791
|
+
class GoogleCloudContactcenterinsightsV1alpha1DimensionQaScorecardDimensionMetadata
|
4792
|
+
# @private
|
4793
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4794
|
+
property :qa_scorecard_id, as: 'qaScorecardId'
|
4795
|
+
end
|
4796
|
+
end
|
4797
|
+
|
4751
4798
|
class GoogleCloudContactcenterinsightsV1alpha1EncryptionSpec
|
4752
4799
|
# @private
|
4753
4800
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -5610,6 +5657,7 @@ module Google
|
|
5610
5657
|
property :next_page_token, as: 'nextPageToken'
|
5611
5658
|
collection :operations, as: 'operations', class: Google::Apis::ContactcenterinsightsV1::GoogleLongrunningOperation, decorator: Google::Apis::ContactcenterinsightsV1::GoogleLongrunningOperation::Representation
|
5612
5659
|
|
5660
|
+
collection :unreachable, as: 'unreachable'
|
5613
5661
|
end
|
5614
5662
|
end
|
5615
5663
|
|
@@ -2324,6 +2324,13 @@ module Google
|
|
2324
2324
|
# The standard list page size.
|
2325
2325
|
# @param [String] page_token
|
2326
2326
|
# The standard list page token.
|
2327
|
+
# @param [Boolean] return_partial_success
|
2328
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
2329
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
2330
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
2331
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
2332
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
2333
|
+
# explicitly documented otherwise in service or product specific documentation.
|
2327
2334
|
# @param [String] fields
|
2328
2335
|
# Selector specifying which fields to include in a partial response.
|
2329
2336
|
# @param [String] quota_user
|
@@ -2341,7 +2348,7 @@ module Google
|
|
2341
2348
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2342
2349
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2343
2350
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2344
|
-
def list_project_location_authorized_view_set_authorized_view_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2351
|
+
def list_project_location_authorized_view_set_authorized_view_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2345
2352
|
command = make_simple_command(:get, 'v1/{+name}/operations', options)
|
2346
2353
|
command.response_representation = Google::Apis::ContactcenterinsightsV1::GoogleLongrunningListOperationsResponse::Representation
|
2347
2354
|
command.response_class = Google::Apis::ContactcenterinsightsV1::GoogleLongrunningListOperationsResponse
|
@@ -2349,6 +2356,7 @@ module Google
|
|
2349
2356
|
command.query['filter'] = filter unless filter.nil?
|
2350
2357
|
command.query['pageSize'] = page_size unless page_size.nil?
|
2351
2358
|
command.query['pageToken'] = page_token unless page_token.nil?
|
2359
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
2352
2360
|
command.query['fields'] = fields unless fields.nil?
|
2353
2361
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2354
2362
|
execute_or_queue_command(command, &block)
|
@@ -2666,7 +2674,8 @@ module Google
|
|
2666
2674
|
# passing `*`, or a subset of the following updateable fields can be provided: *
|
2667
2675
|
# `agent_id` * `language_code` * `labels` * `metadata` * `quality_metadata` * `
|
2668
2676
|
# call_metadata` * `start_time` * `expire_time` or `ttl` * `data_source.
|
2669
|
-
# gcs_source.audio_uri` or `data_source.dialogflow_source.audio_uri`
|
2677
|
+
# gcs_source.audio_uri` or * `data_source.dialogflow_source.audio_uri` * `
|
2678
|
+
# data_source.screen_recordings`
|
2670
2679
|
# @param [String] fields
|
2671
2680
|
# Selector specifying which fields to include in a partial response.
|
2672
2681
|
# @param [String] quota_user
|
@@ -5083,6 +5092,13 @@ module Google
|
|
5083
5092
|
# The standard list page size.
|
5084
5093
|
# @param [String] page_token
|
5085
5094
|
# The standard list page token.
|
5095
|
+
# @param [Boolean] return_partial_success
|
5096
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
5097
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
5098
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
5099
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
5100
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
5101
|
+
# explicitly documented otherwise in service or product specific documentation.
|
5086
5102
|
# @param [String] fields
|
5087
5103
|
# Selector specifying which fields to include in a partial response.
|
5088
5104
|
# @param [String] quota_user
|
@@ -5100,7 +5116,7 @@ module Google
|
|
5100
5116
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
5101
5117
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
5102
5118
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
5103
|
-
def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
5119
|
+
def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
5104
5120
|
command = make_simple_command(:get, 'v1/{+name}/operations', options)
|
5105
5121
|
command.response_representation = Google::Apis::ContactcenterinsightsV1::GoogleLongrunningListOperationsResponse::Representation
|
5106
5122
|
command.response_class = Google::Apis::ContactcenterinsightsV1::GoogleLongrunningListOperationsResponse
|
@@ -5108,6 +5124,7 @@ module Google
|
|
5108
5124
|
command.query['filter'] = filter unless filter.nil?
|
5109
5125
|
command.query['pageSize'] = page_size unless page_size.nil?
|
5110
5126
|
command.query['pageToken'] = page_token unless page_token.nil?
|
5127
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
5111
5128
|
command.query['fields'] = fields unless fields.nil?
|
5112
5129
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
5113
5130
|
execute_or_queue_command(command, &block)
|
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.76.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.76.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:
|