google-apis-contactcenterinsights_v1 0.42.0 → 0.44.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 06ce93735cdf88178fdaa0358a79f86cd66f4ed09cd0cc4141d1aec0733a5829
4
- data.tar.gz: '0118b6561f8f05cea342b086557677828117cc53427cf85bc149c4c8a6e8e789'
3
+ metadata.gz: bbe6071895bf77320580ae9f12cff5f9ca641a491247521b74182f81ba5059eb
4
+ data.tar.gz: 4c285605983084f138d21fffe3847b71aa55fd24398cf5db1b806750d3f0cd73
5
5
  SHA512:
6
- metadata.gz: 3b58689cd3cd0f2fd672db1724e9e78dcbfbeee809f77f56c4e85d69d6a982d93cdddb5be6b5833a38fcf9ca03257cdb2346bbd50103583af06c158e874aee19
7
- data.tar.gz: 19245f85f35423582a394e58f3dc57b5d1e2adcd3f34df2458ad6b78ad5ff02d02431e1204dc17c16f06d7f87762cf6d83bc4d2a885535fecd2b85fbca179c6a
6
+ metadata.gz: 5e8097aa5d3bf00fd47ee8497eace5c21d38a9aa9b3d93753aac2548b300978ee29795bcea40433c9b4fe423a7045970cdb657efaa08daea3706f9393815f092
7
+ data.tar.gz: f50a8634ef304b490b94c7242f6354bfbea9ea8b9ea6a76621b06a85db7501b63376542671dd7a54990ba5d49c7d98292a92cc613aed3975e5ed990e33fa23fe
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
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
+
8
+ ### v0.43.0 (2024-04-28)
9
+
10
+ * Regenerated from discovery document revision 20240420
11
+
3
12
  ### v0.42.0 (2024-04-21)
4
13
 
5
14
  * Regenerated from discovery document revision 20240416
@@ -313,6 +313,11 @@ module Google
313
313
  # @return [Array<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ConversationLevelSentiment>]
314
314
  attr_accessor :sentiments
315
315
 
316
+ # Conversation-level silence data.
317
+ # Corresponds to the JSON property `silence`
318
+ # @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ConversationLevelSilence]
319
+ attr_accessor :silence
320
+
316
321
  def initialize(**args)
317
322
  update!(**args)
318
323
  end
@@ -325,6 +330,7 @@ module Google
325
330
  @issue_model_result = args[:issue_model_result] if args.key?(:issue_model_result)
326
331
  @phrase_matchers = args[:phrase_matchers] if args.key?(:phrase_matchers)
327
332
  @sentiments = args[:sentiments] if args.key?(:sentiments)
333
+ @silence = args[:silence] if args.key?(:silence)
328
334
  end
329
335
  end
330
336
 
@@ -1219,6 +1225,31 @@ module Google
1219
1225
  end
1220
1226
  end
1221
1227
 
1228
+ # Conversation-level silence data.
1229
+ class GoogleCloudContactcenterinsightsV1ConversationLevelSilence
1230
+ include Google::Apis::Core::Hashable
1231
+
1232
+ # Amount of time calculated to be in silence.
1233
+ # Corresponds to the JSON property `silenceDuration`
1234
+ # @return [String]
1235
+ attr_accessor :silence_duration
1236
+
1237
+ # Percentage of the total conversation spent in silence.
1238
+ # Corresponds to the JSON property `silencePercentage`
1239
+ # @return [Float]
1240
+ attr_accessor :silence_percentage
1241
+
1242
+ def initialize(**args)
1243
+ update!(**args)
1244
+ end
1245
+
1246
+ # Update properties of this object
1247
+ def update!(**args)
1248
+ @silence_duration = args[:silence_duration] if args.key?(:silence_duration)
1249
+ @silence_percentage = args[:silence_percentage] if args.key?(:silence_percentage)
1250
+ end
1251
+ end
1252
+
1222
1253
  # The call participant speaking for a given utterance.
1223
1254
  class GoogleCloudContactcenterinsightsV1ConversationParticipant
1224
1255
  include Google::Apis::Core::Hashable
@@ -2725,12 +2756,29 @@ module Google
2725
2756
  # @return [String]
2726
2757
  attr_accessor :parent
2727
2758
 
2728
- # 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.
2729
2766
  # Corresponds to the JSON property `redactionConfig`
2730
2767
  # @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1RedactionConfig]
2731
2768
  attr_accessor :redaction_config
2732
2769
 
2733
- # Speech-to-Text configuration.
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.
2734
2782
  # Corresponds to the JSON property `speechConfig`
2735
2783
  # @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1SpeechConfig]
2736
2784
  attr_accessor :speech_config
@@ -2750,6 +2798,7 @@ module Google
2750
2798
  @gcs_source = args[:gcs_source] if args.key?(:gcs_source)
2751
2799
  @parent = args[:parent] if args.key?(:parent)
2752
2800
  @redaction_config = args[:redaction_config] if args.key?(:redaction_config)
2801
+ @sample_size = args[:sample_size] if args.key?(:sample_size)
2753
2802
  @speech_config = args[:speech_config] if args.key?(:speech_config)
2754
2803
  @transcript_object_config = args[:transcript_object_config] if args.key?(:transcript_object_config)
2755
2804
  end
@@ -2765,8 +2814,9 @@ module Google
2765
2814
  # @return [Fixnum]
2766
2815
  attr_accessor :agent_channel
2767
2816
 
2768
- # An opaque, user-specified string representing the human agent who handled the
2769
- # 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`.
2770
2820
  # Corresponds to the JSON property `agentId`
2771
2821
  # @return [String]
2772
2822
  attr_accessor :agent_id
@@ -3553,7 +3603,13 @@ module Google
3553
3603
  end
3554
3604
  end
3555
3605
 
3556
- # 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.
3557
3613
  class GoogleCloudContactcenterinsightsV1RedactionConfig
3558
3614
  include Google::Apis::Core::Hashable
3559
3615
 
@@ -3838,12 +3894,21 @@ module Google
3838
3894
  # @return [Hash<String,String>]
3839
3895
  attr_accessor :pubsub_notification_settings
3840
3896
 
3841
- # 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.
3842
3904
  # Corresponds to the JSON property `redactionConfig`
3843
3905
  # @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1RedactionConfig]
3844
3906
  attr_accessor :redaction_config
3845
3907
 
3846
- # 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.
3847
3912
  # Corresponds to the JSON property `speechConfig`
3848
3913
  # @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1SpeechConfig]
3849
3914
  attr_accessor :speech_config
@@ -3999,7 +4064,10 @@ module Google
3999
4064
  end
4000
4065
  end
4001
4066
 
4002
- # 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.
4003
4071
  class GoogleCloudContactcenterinsightsV1SpeechConfig
4004
4072
  include Google::Apis::Core::Hashable
4005
4073
 
@@ -4136,7 +4204,13 @@ module Google
4136
4204
  # @return [String]
4137
4205
  attr_accessor :analysis_operation
4138
4206
 
4139
- # 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.
4140
4214
  # Corresponds to the JSON property `appliedRedactionConfig`
4141
4215
  # @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1RedactionConfig]
4142
4216
  attr_accessor :applied_redaction_config
@@ -4192,12 +4266,21 @@ module Google
4192
4266
  # @return [String]
4193
4267
  attr_accessor :parent
4194
4268
 
4195
- # 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.
4196
4276
  # Corresponds to the JSON property `redactionConfig`
4197
4277
  # @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1RedactionConfig]
4198
4278
  attr_accessor :redaction_config
4199
4279
 
4200
- # 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.
4201
4284
  # Corresponds to the JSON property `speechConfig`
4202
4285
  # @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1SpeechConfig]
4203
4286
  attr_accessor :speech_config
@@ -4551,6 +4634,11 @@ module Google
4551
4634
  # @return [Array<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ConversationLevelSentiment>]
4552
4635
  attr_accessor :sentiments
4553
4636
 
4637
+ # Conversation-level silence data.
4638
+ # Corresponds to the JSON property `silence`
4639
+ # @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ConversationLevelSilence]
4640
+ attr_accessor :silence
4641
+
4554
4642
  def initialize(**args)
4555
4643
  update!(**args)
4556
4644
  end
@@ -4563,6 +4651,7 @@ module Google
4563
4651
  @issue_model_result = args[:issue_model_result] if args.key?(:issue_model_result)
4564
4652
  @phrase_matchers = args[:phrase_matchers] if args.key?(:phrase_matchers)
4565
4653
  @sentiments = args[:sentiments] if args.key?(:sentiments)
4654
+ @silence = args[:silence] if args.key?(:silence)
4566
4655
  end
4567
4656
  end
4568
4657
 
@@ -5319,6 +5408,31 @@ module Google
5319
5408
  end
5320
5409
  end
5321
5410
 
5411
+ # Conversation-level silence data.
5412
+ class GoogleCloudContactcenterinsightsV1alpha1ConversationLevelSilence
5413
+ include Google::Apis::Core::Hashable
5414
+
5415
+ # Amount of time calculated to be in silence.
5416
+ # Corresponds to the JSON property `silenceDuration`
5417
+ # @return [String]
5418
+ attr_accessor :silence_duration
5419
+
5420
+ # Percentage of the total conversation spent in silence.
5421
+ # Corresponds to the JSON property `silencePercentage`
5422
+ # @return [Float]
5423
+ attr_accessor :silence_percentage
5424
+
5425
+ def initialize(**args)
5426
+ update!(**args)
5427
+ end
5428
+
5429
+ # Update properties of this object
5430
+ def update!(**args)
5431
+ @silence_duration = args[:silence_duration] if args.key?(:silence_duration)
5432
+ @silence_percentage = args[:silence_percentage] if args.key?(:silence_percentage)
5433
+ end
5434
+ end
5435
+
5322
5436
  # The call participant speaking for a given utterance.
5323
5437
  class GoogleCloudContactcenterinsightsV1alpha1ConversationParticipant
5324
5438
  include Google::Apis::Core::Hashable
@@ -6805,12 +6919,29 @@ module Google
6805
6919
  # @return [String]
6806
6920
  attr_accessor :parent
6807
6921
 
6808
- # 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.
6809
6929
  # Corresponds to the JSON property `redactionConfig`
6810
6930
  # @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1RedactionConfig]
6811
6931
  attr_accessor :redaction_config
6812
6932
 
6813
- # Speech-to-Text configuration.
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.
6814
6945
  # Corresponds to the JSON property `speechConfig`
6815
6946
  # @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1SpeechConfig]
6816
6947
  attr_accessor :speech_config
@@ -6830,6 +6961,7 @@ module Google
6830
6961
  @gcs_source = args[:gcs_source] if args.key?(:gcs_source)
6831
6962
  @parent = args[:parent] if args.key?(:parent)
6832
6963
  @redaction_config = args[:redaction_config] if args.key?(:redaction_config)
6964
+ @sample_size = args[:sample_size] if args.key?(:sample_size)
6833
6965
  @speech_config = args[:speech_config] if args.key?(:speech_config)
6834
6966
  @transcript_object_config = args[:transcript_object_config] if args.key?(:transcript_object_config)
6835
6967
  end
@@ -6845,8 +6977,9 @@ module Google
6845
6977
  # @return [Fixnum]
6846
6978
  attr_accessor :agent_channel
6847
6979
 
6848
- # An opaque, user-specified string representing the human agent who handled the
6849
- # 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`.
6850
6983
  # Corresponds to the JSON property `agentId`
6851
6984
  # @return [String]
6852
6985
  attr_accessor :agent_id
@@ -7280,7 +7413,13 @@ module Google
7280
7413
  end
7281
7414
  end
7282
7415
 
7283
- # 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.
7284
7423
  class GoogleCloudContactcenterinsightsV1alpha1RedactionConfig
7285
7424
  include Google::Apis::Core::Hashable
7286
7425
 
@@ -7610,7 +7749,10 @@ module Google
7610
7749
  end
7611
7750
  end
7612
7751
 
7613
- # 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.
7614
7756
  class GoogleCloudContactcenterinsightsV1alpha1SpeechConfig
7615
7757
  include Google::Apis::Core::Hashable
7616
7758
 
@@ -7747,7 +7889,13 @@ module Google
7747
7889
  # @return [String]
7748
7890
  attr_accessor :analysis_operation
7749
7891
 
7750
- # 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.
7751
7899
  # Corresponds to the JSON property `appliedRedactionConfig`
7752
7900
  # @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1RedactionConfig]
7753
7901
  attr_accessor :applied_redaction_config
@@ -7803,12 +7951,21 @@ module Google
7803
7951
  # @return [String]
7804
7952
  attr_accessor :parent
7805
7953
 
7806
- # 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.
7807
7961
  # Corresponds to the JSON property `redactionConfig`
7808
7962
  # @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1RedactionConfig]
7809
7963
  attr_accessor :redaction_config
7810
7964
 
7811
- # 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.
7812
7969
  # Corresponds to the JSON property `speechConfig`
7813
7970
  # @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1SpeechConfig]
7814
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.42.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.14.0"
22
+ GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240416"
25
+ REVISION = "20240520"
26
26
  end
27
27
  end
28
28
  end
@@ -196,6 +196,12 @@ module Google
196
196
  include Google::Apis::Core::JsonObjectSupport
197
197
  end
198
198
 
199
+ class GoogleCloudContactcenterinsightsV1ConversationLevelSilence
200
+ class Representation < Google::Apis::Core::JsonRepresentation; end
201
+
202
+ include Google::Apis::Core::JsonObjectSupport
203
+ end
204
+
199
205
  class GoogleCloudContactcenterinsightsV1ConversationParticipant
200
206
  class Representation < Google::Apis::Core::JsonRepresentation; end
201
207
 
@@ -916,6 +922,12 @@ module Google
916
922
  include Google::Apis::Core::JsonObjectSupport
917
923
  end
918
924
 
925
+ class GoogleCloudContactcenterinsightsV1alpha1ConversationLevelSilence
926
+ class Representation < Google::Apis::Core::JsonRepresentation; end
927
+
928
+ include Google::Apis::Core::JsonObjectSupport
929
+ end
930
+
919
931
  class GoogleCloudContactcenterinsightsV1alpha1ConversationParticipant
920
932
  class Representation < Google::Apis::Core::JsonRepresentation; end
921
933
 
@@ -1515,6 +1527,8 @@ module Google
1515
1527
 
1516
1528
  collection :sentiments, as: 'sentiments', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ConversationLevelSentiment, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ConversationLevelSentiment::Representation
1517
1529
 
1530
+ property :silence, as: 'silence', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ConversationLevelSilence, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ConversationLevelSilence::Representation
1531
+
1518
1532
  end
1519
1533
  end
1520
1534
 
@@ -1765,6 +1779,14 @@ module Google
1765
1779
  end
1766
1780
  end
1767
1781
 
1782
+ class GoogleCloudContactcenterinsightsV1ConversationLevelSilence
1783
+ # @private
1784
+ class Representation < Google::Apis::Core::JsonRepresentation
1785
+ property :silence_duration, as: 'silenceDuration'
1786
+ property :silence_percentage, as: 'silencePercentage'
1787
+ end
1788
+ end
1789
+
1768
1790
  class GoogleCloudContactcenterinsightsV1ConversationParticipant
1769
1791
  # @private
1770
1792
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2233,6 +2255,7 @@ module Google
2233
2255
  property :parent, as: 'parent'
2234
2256
  property :redaction_config, as: 'redactionConfig', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1RedactionConfig, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1RedactionConfig::Representation
2235
2257
 
2258
+ property :sample_size, as: 'sampleSize'
2236
2259
  property :speech_config, as: 'speechConfig', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1SpeechConfig, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1SpeechConfig::Representation
2237
2260
 
2238
2261
  property :transcript_object_config, as: 'transcriptObjectConfig', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1IngestConversationsRequestTranscriptObjectConfig, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1IngestConversationsRequestTranscriptObjectConfig::Representation
@@ -2784,6 +2807,8 @@ module Google
2784
2807
 
2785
2808
  collection :sentiments, as: 'sentiments', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ConversationLevelSentiment, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ConversationLevelSentiment::Representation
2786
2809
 
2810
+ property :silence, as: 'silence', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ConversationLevelSilence, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ConversationLevelSilence::Representation
2811
+
2787
2812
  end
2788
2813
  end
2789
2814
 
@@ -2993,6 +3018,14 @@ module Google
2993
3018
  end
2994
3019
  end
2995
3020
 
3021
+ class GoogleCloudContactcenterinsightsV1alpha1ConversationLevelSilence
3022
+ # @private
3023
+ class Representation < Google::Apis::Core::JsonRepresentation
3024
+ property :silence_duration, as: 'silenceDuration'
3025
+ property :silence_percentage, as: 'silencePercentage'
3026
+ end
3027
+ end
3028
+
2996
3029
  class GoogleCloudContactcenterinsightsV1alpha1ConversationParticipant
2997
3030
  # @private
2998
3031
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3454,6 +3487,7 @@ module Google
3454
3487
  property :parent, as: 'parent'
3455
3488
  property :redaction_config, as: 'redactionConfig', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1RedactionConfig, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1RedactionConfig::Representation
3456
3489
 
3490
+ property :sample_size, as: 'sampleSize'
3457
3491
  property :speech_config, as: 'speechConfig', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1SpeechConfig, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1SpeechConfig::Representation
3458
3492
 
3459
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.42.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-04-21 00:00:00.000000000 Z
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.14.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.14.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.42.0
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: []