google-apis-contactcenterinsights_v1 0.43.0 → 0.44.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/lib/google/apis/contactcenterinsights_v1/classes.rb +115 -20
- data/lib/google/apis/contactcenterinsights_v1/gem_version.rb +3 -3
- data/lib/google/apis/contactcenterinsights_v1/representations.rb +2 -0
- data/lib/google/apis/contactcenterinsights_v1/service.rb +7 -2
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bbe6071895bf77320580ae9f12cff5f9ca641a491247521b74182f81ba5059eb
|
4
|
+
data.tar.gz: 4c285605983084f138d21fffe3847b71aa55fd24398cf5db1b806750d3f0cd73
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5e8097aa5d3bf00fd47ee8497eace5c21d38a9aa9b3d93753aac2548b300978ee29795bcea40433c9b4fe423a7045970cdb657efaa08daea3706f9393815f092
|
7
|
+
data.tar.gz: f50a8634ef304b490b94c7242f6354bfbea9ea8b9ea6a76621b06a85db7501b63376542671dd7a54990ba5d49c7d98292a92cc613aed3975e5ed990e33fa23fe
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-contactcenterinsights_v1
|
2
2
|
|
3
|
+
### v0.44.0 (2024-05-26)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240520
|
6
|
+
* Regenerated using generator version 0.15.0
|
7
|
+
|
3
8
|
### v0.43.0 (2024-04-28)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20240420
|
@@ -2756,12 +2756,29 @@ module Google
|
|
2756
2756
|
# @return [String]
|
2757
2757
|
attr_accessor :parent
|
2758
2758
|
|
2759
|
-
# DLP resources used for redaction while ingesting conversations.
|
2759
|
+
# DLP resources used for redaction while ingesting conversations. DLP settings
|
2760
|
+
# are applied to conversations ingested from the UploadConversation and
|
2761
|
+
# IngestConversations endpoints, including conversation coming from CCAI
|
2762
|
+
# Platform. They are not applied to conversations ingested from the
|
2763
|
+
# CreateConversation endpoint or the Dialogflow / Agent Assist runtime
|
2764
|
+
# integrations. When using Dialogflow / Agent Assist runtime integrations
|
2765
|
+
# redaction should be performed in Dialogflow / Agent Assist.
|
2760
2766
|
# Corresponds to the JSON property `redactionConfig`
|
2761
2767
|
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1RedactionConfig]
|
2762
2768
|
attr_accessor :redaction_config
|
2763
2769
|
|
2764
|
-
#
|
2770
|
+
# Optional. If set, this fields indicates the number of objects to ingest from
|
2771
|
+
# the Cloud Storage bucket. If empty, the entire bucket will be ingested. Note
|
2772
|
+
# that conversations produced via sampling will not be ingested by subsequent
|
2773
|
+
# ingest requests unless they are first deleted.
|
2774
|
+
# Corresponds to the JSON property `sampleSize`
|
2775
|
+
# @return [Fixnum]
|
2776
|
+
attr_accessor :sample_size
|
2777
|
+
|
2778
|
+
# Speech-to-Text configuration. Speech-to-Text settings are applied to
|
2779
|
+
# conversations ingested from the UploadConversation and IngestConversations
|
2780
|
+
# endpoints, including conversation coming from CCAI Platform. They are not
|
2781
|
+
# applied to conversations ingested from the CreateConversation endpoint.
|
2765
2782
|
# Corresponds to the JSON property `speechConfig`
|
2766
2783
|
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1SpeechConfig]
|
2767
2784
|
attr_accessor :speech_config
|
@@ -2781,6 +2798,7 @@ module Google
|
|
2781
2798
|
@gcs_source = args[:gcs_source] if args.key?(:gcs_source)
|
2782
2799
|
@parent = args[:parent] if args.key?(:parent)
|
2783
2800
|
@redaction_config = args[:redaction_config] if args.key?(:redaction_config)
|
2801
|
+
@sample_size = args[:sample_size] if args.key?(:sample_size)
|
2784
2802
|
@speech_config = args[:speech_config] if args.key?(:speech_config)
|
2785
2803
|
@transcript_object_config = args[:transcript_object_config] if args.key?(:transcript_object_config)
|
2786
2804
|
end
|
@@ -2796,8 +2814,9 @@ module Google
|
|
2796
2814
|
# @return [Fixnum]
|
2797
2815
|
attr_accessor :agent_channel
|
2798
2816
|
|
2799
|
-
# An opaque, user-specified string representing
|
2800
|
-
# conversations.
|
2817
|
+
# Optional. An opaque, user-specified string representing a human agent who
|
2818
|
+
# handled all conversations in the import. Note that this will be overridden if
|
2819
|
+
# per-conversation metadata is provided via the `metadata_bucket_uri`.
|
2801
2820
|
# Corresponds to the JSON property `agentId`
|
2802
2821
|
# @return [String]
|
2803
2822
|
attr_accessor :agent_id
|
@@ -3584,7 +3603,13 @@ module Google
|
|
3584
3603
|
end
|
3585
3604
|
end
|
3586
3605
|
|
3587
|
-
# DLP resources used for redaction while ingesting conversations.
|
3606
|
+
# DLP resources used for redaction while ingesting conversations. DLP settings
|
3607
|
+
# are applied to conversations ingested from the UploadConversation and
|
3608
|
+
# IngestConversations endpoints, including conversation coming from CCAI
|
3609
|
+
# Platform. They are not applied to conversations ingested from the
|
3610
|
+
# CreateConversation endpoint or the Dialogflow / Agent Assist runtime
|
3611
|
+
# integrations. When using Dialogflow / Agent Assist runtime integrations
|
3612
|
+
# redaction should be performed in Dialogflow / Agent Assist.
|
3588
3613
|
class GoogleCloudContactcenterinsightsV1RedactionConfig
|
3589
3614
|
include Google::Apis::Core::Hashable
|
3590
3615
|
|
@@ -3869,12 +3894,21 @@ module Google
|
|
3869
3894
|
# @return [Hash<String,String>]
|
3870
3895
|
attr_accessor :pubsub_notification_settings
|
3871
3896
|
|
3872
|
-
# DLP resources used for redaction while ingesting conversations.
|
3897
|
+
# DLP resources used for redaction while ingesting conversations. DLP settings
|
3898
|
+
# are applied to conversations ingested from the UploadConversation and
|
3899
|
+
# IngestConversations endpoints, including conversation coming from CCAI
|
3900
|
+
# Platform. They are not applied to conversations ingested from the
|
3901
|
+
# CreateConversation endpoint or the Dialogflow / Agent Assist runtime
|
3902
|
+
# integrations. When using Dialogflow / Agent Assist runtime integrations
|
3903
|
+
# redaction should be performed in Dialogflow / Agent Assist.
|
3873
3904
|
# Corresponds to the JSON property `redactionConfig`
|
3874
3905
|
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1RedactionConfig]
|
3875
3906
|
attr_accessor :redaction_config
|
3876
3907
|
|
3877
|
-
# Speech-to-Text configuration.
|
3908
|
+
# Speech-to-Text configuration. Speech-to-Text settings are applied to
|
3909
|
+
# conversations ingested from the UploadConversation and IngestConversations
|
3910
|
+
# endpoints, including conversation coming from CCAI Platform. They are not
|
3911
|
+
# applied to conversations ingested from the CreateConversation endpoint.
|
3878
3912
|
# Corresponds to the JSON property `speechConfig`
|
3879
3913
|
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1SpeechConfig]
|
3880
3914
|
attr_accessor :speech_config
|
@@ -4030,7 +4064,10 @@ module Google
|
|
4030
4064
|
end
|
4031
4065
|
end
|
4032
4066
|
|
4033
|
-
# Speech-to-Text configuration.
|
4067
|
+
# Speech-to-Text configuration. Speech-to-Text settings are applied to
|
4068
|
+
# conversations ingested from the UploadConversation and IngestConversations
|
4069
|
+
# endpoints, including conversation coming from CCAI Platform. They are not
|
4070
|
+
# applied to conversations ingested from the CreateConversation endpoint.
|
4034
4071
|
class GoogleCloudContactcenterinsightsV1SpeechConfig
|
4035
4072
|
include Google::Apis::Core::Hashable
|
4036
4073
|
|
@@ -4167,7 +4204,13 @@ module Google
|
|
4167
4204
|
# @return [String]
|
4168
4205
|
attr_accessor :analysis_operation
|
4169
4206
|
|
4170
|
-
# DLP resources used for redaction while ingesting conversations.
|
4207
|
+
# DLP resources used for redaction while ingesting conversations. DLP settings
|
4208
|
+
# are applied to conversations ingested from the UploadConversation and
|
4209
|
+
# IngestConversations endpoints, including conversation coming from CCAI
|
4210
|
+
# Platform. They are not applied to conversations ingested from the
|
4211
|
+
# CreateConversation endpoint or the Dialogflow / Agent Assist runtime
|
4212
|
+
# integrations. When using Dialogflow / Agent Assist runtime integrations
|
4213
|
+
# redaction should be performed in Dialogflow / Agent Assist.
|
4171
4214
|
# Corresponds to the JSON property `appliedRedactionConfig`
|
4172
4215
|
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1RedactionConfig]
|
4173
4216
|
attr_accessor :applied_redaction_config
|
@@ -4223,12 +4266,21 @@ module Google
|
|
4223
4266
|
# @return [String]
|
4224
4267
|
attr_accessor :parent
|
4225
4268
|
|
4226
|
-
# DLP resources used for redaction while ingesting conversations.
|
4269
|
+
# DLP resources used for redaction while ingesting conversations. DLP settings
|
4270
|
+
# are applied to conversations ingested from the UploadConversation and
|
4271
|
+
# IngestConversations endpoints, including conversation coming from CCAI
|
4272
|
+
# Platform. They are not applied to conversations ingested from the
|
4273
|
+
# CreateConversation endpoint or the Dialogflow / Agent Assist runtime
|
4274
|
+
# integrations. When using Dialogflow / Agent Assist runtime integrations
|
4275
|
+
# redaction should be performed in Dialogflow / Agent Assist.
|
4227
4276
|
# Corresponds to the JSON property `redactionConfig`
|
4228
4277
|
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1RedactionConfig]
|
4229
4278
|
attr_accessor :redaction_config
|
4230
4279
|
|
4231
|
-
# Speech-to-Text configuration.
|
4280
|
+
# Speech-to-Text configuration. Speech-to-Text settings are applied to
|
4281
|
+
# conversations ingested from the UploadConversation and IngestConversations
|
4282
|
+
# endpoints, including conversation coming from CCAI Platform. They are not
|
4283
|
+
# applied to conversations ingested from the CreateConversation endpoint.
|
4232
4284
|
# Corresponds to the JSON property `speechConfig`
|
4233
4285
|
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1SpeechConfig]
|
4234
4286
|
attr_accessor :speech_config
|
@@ -6867,12 +6919,29 @@ module Google
|
|
6867
6919
|
# @return [String]
|
6868
6920
|
attr_accessor :parent
|
6869
6921
|
|
6870
|
-
# DLP resources used for redaction while ingesting conversations.
|
6922
|
+
# DLP resources used for redaction while ingesting conversations. DLP settings
|
6923
|
+
# are applied to conversations ingested from the UploadConversation and
|
6924
|
+
# IngestConversations endpoints, including conversation coming from CCAI
|
6925
|
+
# Platform. They are not applied to conversations ingested from the
|
6926
|
+
# CreateConversation endpoint or the Dialogflow / Agent Assist runtime
|
6927
|
+
# integrations. When using Dialogflow / Agent Assist runtime integrations
|
6928
|
+
# redaction should be performed in Dialogflow / Agent Assist.
|
6871
6929
|
# Corresponds to the JSON property `redactionConfig`
|
6872
6930
|
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1RedactionConfig]
|
6873
6931
|
attr_accessor :redaction_config
|
6874
6932
|
|
6875
|
-
#
|
6933
|
+
# Optional. If set, this fields indicates the number of objects to ingest from
|
6934
|
+
# the Cloud Storage bucket. If empty, the entire bucket will be ingested. Note
|
6935
|
+
# that conversations produced via sampling will not be ingested by subsequent
|
6936
|
+
# ingest requests unless they are first deleted.
|
6937
|
+
# Corresponds to the JSON property `sampleSize`
|
6938
|
+
# @return [Fixnum]
|
6939
|
+
attr_accessor :sample_size
|
6940
|
+
|
6941
|
+
# Speech-to-Text configuration. Speech-to-Text settings are applied to
|
6942
|
+
# conversations ingested from the UploadConversation and IngestConversations
|
6943
|
+
# endpoints, including conversation coming from CCAI Platform. They are not
|
6944
|
+
# applied to conversations ingested from the CreateConversation endpoint.
|
6876
6945
|
# Corresponds to the JSON property `speechConfig`
|
6877
6946
|
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1SpeechConfig]
|
6878
6947
|
attr_accessor :speech_config
|
@@ -6892,6 +6961,7 @@ module Google
|
|
6892
6961
|
@gcs_source = args[:gcs_source] if args.key?(:gcs_source)
|
6893
6962
|
@parent = args[:parent] if args.key?(:parent)
|
6894
6963
|
@redaction_config = args[:redaction_config] if args.key?(:redaction_config)
|
6964
|
+
@sample_size = args[:sample_size] if args.key?(:sample_size)
|
6895
6965
|
@speech_config = args[:speech_config] if args.key?(:speech_config)
|
6896
6966
|
@transcript_object_config = args[:transcript_object_config] if args.key?(:transcript_object_config)
|
6897
6967
|
end
|
@@ -6907,8 +6977,9 @@ module Google
|
|
6907
6977
|
# @return [Fixnum]
|
6908
6978
|
attr_accessor :agent_channel
|
6909
6979
|
|
6910
|
-
# An opaque, user-specified string representing
|
6911
|
-
# conversations.
|
6980
|
+
# Optional. An opaque, user-specified string representing a human agent who
|
6981
|
+
# handled all conversations in the import. Note that this will be overridden if
|
6982
|
+
# per-conversation metadata is provided via the `metadata_bucket_uri`.
|
6912
6983
|
# Corresponds to the JSON property `agentId`
|
6913
6984
|
# @return [String]
|
6914
6985
|
attr_accessor :agent_id
|
@@ -7342,7 +7413,13 @@ module Google
|
|
7342
7413
|
end
|
7343
7414
|
end
|
7344
7415
|
|
7345
|
-
# DLP resources used for redaction while ingesting conversations.
|
7416
|
+
# DLP resources used for redaction while ingesting conversations. DLP settings
|
7417
|
+
# are applied to conversations ingested from the UploadConversation and
|
7418
|
+
# IngestConversations endpoints, including conversation coming from CCAI
|
7419
|
+
# Platform. They are not applied to conversations ingested from the
|
7420
|
+
# CreateConversation endpoint or the Dialogflow / Agent Assist runtime
|
7421
|
+
# integrations. When using Dialogflow / Agent Assist runtime integrations
|
7422
|
+
# redaction should be performed in Dialogflow / Agent Assist.
|
7346
7423
|
class GoogleCloudContactcenterinsightsV1alpha1RedactionConfig
|
7347
7424
|
include Google::Apis::Core::Hashable
|
7348
7425
|
|
@@ -7672,7 +7749,10 @@ module Google
|
|
7672
7749
|
end
|
7673
7750
|
end
|
7674
7751
|
|
7675
|
-
# Speech-to-Text configuration.
|
7752
|
+
# Speech-to-Text configuration. Speech-to-Text settings are applied to
|
7753
|
+
# conversations ingested from the UploadConversation and IngestConversations
|
7754
|
+
# endpoints, including conversation coming from CCAI Platform. They are not
|
7755
|
+
# applied to conversations ingested from the CreateConversation endpoint.
|
7676
7756
|
class GoogleCloudContactcenterinsightsV1alpha1SpeechConfig
|
7677
7757
|
include Google::Apis::Core::Hashable
|
7678
7758
|
|
@@ -7809,7 +7889,13 @@ module Google
|
|
7809
7889
|
# @return [String]
|
7810
7890
|
attr_accessor :analysis_operation
|
7811
7891
|
|
7812
|
-
# DLP resources used for redaction while ingesting conversations.
|
7892
|
+
# DLP resources used for redaction while ingesting conversations. DLP settings
|
7893
|
+
# are applied to conversations ingested from the UploadConversation and
|
7894
|
+
# IngestConversations endpoints, including conversation coming from CCAI
|
7895
|
+
# Platform. They are not applied to conversations ingested from the
|
7896
|
+
# CreateConversation endpoint or the Dialogflow / Agent Assist runtime
|
7897
|
+
# integrations. When using Dialogflow / Agent Assist runtime integrations
|
7898
|
+
# redaction should be performed in Dialogflow / Agent Assist.
|
7813
7899
|
# Corresponds to the JSON property `appliedRedactionConfig`
|
7814
7900
|
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1RedactionConfig]
|
7815
7901
|
attr_accessor :applied_redaction_config
|
@@ -7865,12 +7951,21 @@ module Google
|
|
7865
7951
|
# @return [String]
|
7866
7952
|
attr_accessor :parent
|
7867
7953
|
|
7868
|
-
# DLP resources used for redaction while ingesting conversations.
|
7954
|
+
# DLP resources used for redaction while ingesting conversations. DLP settings
|
7955
|
+
# are applied to conversations ingested from the UploadConversation and
|
7956
|
+
# IngestConversations endpoints, including conversation coming from CCAI
|
7957
|
+
# Platform. They are not applied to conversations ingested from the
|
7958
|
+
# CreateConversation endpoint or the Dialogflow / Agent Assist runtime
|
7959
|
+
# integrations. When using Dialogflow / Agent Assist runtime integrations
|
7960
|
+
# redaction should be performed in Dialogflow / Agent Assist.
|
7869
7961
|
# Corresponds to the JSON property `redactionConfig`
|
7870
7962
|
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1RedactionConfig]
|
7871
7963
|
attr_accessor :redaction_config
|
7872
7964
|
|
7873
|
-
# Speech-to-Text configuration.
|
7965
|
+
# Speech-to-Text configuration. Speech-to-Text settings are applied to
|
7966
|
+
# conversations ingested from the UploadConversation and IngestConversations
|
7967
|
+
# endpoints, including conversation coming from CCAI Platform. They are not
|
7968
|
+
# applied to conversations ingested from the CreateConversation endpoint.
|
7874
7969
|
# Corresponds to the JSON property `speechConfig`
|
7875
7970
|
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1SpeechConfig]
|
7876
7971
|
attr_accessor :speech_config
|
@@ -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.44.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.15.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240520"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -2255,6 +2255,7 @@ module Google
|
|
2255
2255
|
property :parent, as: 'parent'
|
2256
2256
|
property :redaction_config, as: 'redactionConfig', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1RedactionConfig, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1RedactionConfig::Representation
|
2257
2257
|
|
2258
|
+
property :sample_size, as: 'sampleSize'
|
2258
2259
|
property :speech_config, as: 'speechConfig', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1SpeechConfig, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1SpeechConfig::Representation
|
2259
2260
|
|
2260
2261
|
property :transcript_object_config, as: 'transcriptObjectConfig', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1IngestConversationsRequestTranscriptObjectConfig, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1IngestConversationsRequestTranscriptObjectConfig::Representation
|
@@ -3486,6 +3487,7 @@ module Google
|
|
3486
3487
|
property :parent, as: 'parent'
|
3487
3488
|
property :redaction_config, as: 'redactionConfig', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1RedactionConfig, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1RedactionConfig::Representation
|
3488
3489
|
|
3490
|
+
property :sample_size, as: 'sampleSize'
|
3489
3491
|
property :speech_config, as: 'speechConfig', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1SpeechConfig, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1SpeechConfig::Representation
|
3490
3492
|
|
3491
3493
|
property :transcript_object_config, as: 'transcriptObjectConfig', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1IngestConversationsRequestTranscriptObjectConfig, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1IngestConversationsRequestTranscriptObjectConfig::Representation
|
@@ -219,7 +219,8 @@ module Google
|
|
219
219
|
execute_or_queue_command(command, &block)
|
220
220
|
end
|
221
221
|
|
222
|
-
# Creates a conversation.
|
222
|
+
# Creates a conversation. DEPRECATED: Use UploadConversation instead.
|
223
|
+
# CreateConversation does not support audio transcription or DLP redaction.
|
223
224
|
# @param [String] parent
|
224
225
|
# Required. The parent resource of the conversation.
|
225
226
|
# @param [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1Conversation] google_cloud_contactcenterinsights_v1_conversation_object
|
@@ -420,7 +421,11 @@ module Google
|
|
420
421
|
# locations/`location`/conversations/`conversation`
|
421
422
|
# @param [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1Conversation] google_cloud_contactcenterinsights_v1_conversation_object
|
422
423
|
# @param [String] update_mask
|
423
|
-
# The list of fields to be updated.
|
424
|
+
# The list of fields to be updated. All possible fields can be updated by
|
425
|
+
# passing `*`, or a subset of the following updateable fields can be provided: *
|
426
|
+
# `agent_id` * `language_code` * `labels` * `metadata` * `quality_metadata` * `
|
427
|
+
# call_metadata` * `start_time` * `expire_time` or `ttl` * `data_source.
|
428
|
+
# gcs_source.audio_uri` or `data_source.dialogflow_source.audio_uri`
|
424
429
|
# @param [String] fields
|
425
430
|
# Selector specifying which fields to include in a partial response.
|
426
431
|
# @param [String] quota_user
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-contactcenterinsights_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.44.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-05-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.15.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.15.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-contactcenterinsights_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-contactcenterinsights_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-contactcenterinsights_v1/v0.44.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-contactcenterinsights_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|