google-apis-contactcenterinsights_v1 0.63.0 → 0.65.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: 14b4a056c914cc25caa26a6661f3f20d30b7f295e115d348ee9cf441146fc558
4
- data.tar.gz: bffc335a0d193017b5c7620f9bc3df841deec1be21a5bcda5090319c30dd3f03
3
+ metadata.gz: 0bb03096779929b013df811ac9a86a738f0643b4b82ce0955665a1953b60f4f8
4
+ data.tar.gz: fdc212e1b089c5fa55ac18f899bf082306667c736c46cc79ccc1a241a8a810d1
5
5
  SHA512:
6
- metadata.gz: 317734acabf90bfc20f83ecbb3535f734e8b20a45f688b5f1e23fdbc3d05d631fbd098141bc5a594c4b2b5a13bf39a1e76cdd5eb2801ba0b68a1f2f13c85d074
7
- data.tar.gz: 72754f8f559cbc050a53a603e03431e108a7f6f675711276b8ff49e383c9f7f175b7e91159424b2c758609c18f2c360daec9f51d4274a2230d0190120d5b7776
6
+ metadata.gz: 2e7094e090639dfc7494980eb521949097e7e31318c9a6056fb3d96b9f90cbfa349c4a153c1009b2b56681d7f4eb62762b6450223501b2af2caec6afa2194b38
7
+ data.tar.gz: cfc73b88abb0184c0a8e8ff6bb31aa67d3ae1d79ced72114a181376470b4eb0ba6afe2f17f0d39db2b6825a68b6b995ee0b6c965fb1be914d84f5f3f77fff704
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-contactcenterinsights_v1
2
2
 
3
+ ### v0.65.0 (2025-06-01)
4
+
5
+ * Regenerated from discovery document revision 20250526
6
+
7
+ ### v0.64.0 (2025-05-25)
8
+
9
+ * Regenerated from discovery document revision 20250521
10
+ * Regenerated using generator version 0.18.0
11
+
3
12
  ### v0.63.0 (2025-05-18)
4
13
 
5
14
  * Regenerated from discovery document revision 20250512
@@ -467,6 +467,19 @@ module Google
467
467
  end
468
468
  end
469
469
 
470
+ # The message to appeal an assessment.
471
+ class GoogleCloudContactcenterinsightsV1AppealAssessmentRequest
472
+ include Google::Apis::Core::Hashable
473
+
474
+ def initialize(**args)
475
+ update!(**args)
476
+ end
477
+
478
+ # Update properties of this object
479
+ def update!(**args)
480
+ end
481
+ end
482
+
470
483
  # Agent Assist Article Suggestion data.
471
484
  class GoogleCloudContactcenterinsightsV1ArticleSuggestionData
472
485
  include Google::Apis::Core::Hashable
@@ -521,6 +534,110 @@ module Google
521
534
  end
522
535
  end
523
536
 
537
+ # The assessment resource.
538
+ class GoogleCloudContactcenterinsightsV1Assessment
539
+ include Google::Apis::Core::Hashable
540
+
541
+ # Information about an agent involved in the conversation.
542
+ # Corresponds to the JSON property `agentInfo`
543
+ # @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ConversationQualityMetadataAgentInfo]
544
+ attr_accessor :agent_info
545
+
546
+ # Output only. The time at which the assessment was created.
547
+ # Corresponds to the JSON property `createTime`
548
+ # @return [String]
549
+ attr_accessor :create_time
550
+
551
+ # Identifier. The resource name of the assessment. Format: projects/`project`/
552
+ # locations/`location`/conversations/`conversation`/assessments/`assessment`
553
+ # Corresponds to the JSON property `name`
554
+ # @return [String]
555
+ attr_accessor :name
556
+
557
+ # Output only. The state of the assessment.
558
+ # Corresponds to the JSON property `state`
559
+ # @return [String]
560
+ attr_accessor :state
561
+
562
+ # Output only. The time at which the assessment was last updated.
563
+ # Corresponds to the JSON property `updateTime`
564
+ # @return [String]
565
+ attr_accessor :update_time
566
+
567
+ def initialize(**args)
568
+ update!(**args)
569
+ end
570
+
571
+ # Update properties of this object
572
+ def update!(**args)
573
+ @agent_info = args[:agent_info] if args.key?(:agent_info)
574
+ @create_time = args[:create_time] if args.key?(:create_time)
575
+ @name = args[:name] if args.key?(:name)
576
+ @state = args[:state] if args.key?(:state)
577
+ @update_time = args[:update_time] if args.key?(:update_time)
578
+ end
579
+ end
580
+
581
+ # The CCAI Insights project wide assessment rule. This assessment rule will be
582
+ # applied to all conversations from the previous sampling cycle that match the
583
+ # sample rule defined in the assessment rule. One project can have multiple
584
+ # assessment rules.
585
+ class GoogleCloudContactcenterinsightsV1AssessmentRule
586
+ include Google::Apis::Core::Hashable
587
+
588
+ # If true, apply this rule to conversations. Otherwise, this rule is inactive.
589
+ # Corresponds to the JSON property `active`
590
+ # @return [Boolean]
591
+ attr_accessor :active
592
+ alias_method :active?, :active
593
+
594
+ # Output only. The time at which this assessment rule was created.
595
+ # Corresponds to the JSON property `createTime`
596
+ # @return [String]
597
+ attr_accessor :create_time
598
+
599
+ # Display Name of the assessment rule.
600
+ # Corresponds to the JSON property `displayName`
601
+ # @return [String]
602
+ attr_accessor :display_name
603
+
604
+ # Identifier. The resource name of the assessment rule. Format: projects/`
605
+ # project`/locations/`location`/assessmentRules/`assessment_rule`
606
+ # Corresponds to the JSON property `name`
607
+ # @return [String]
608
+ attr_accessor :name
609
+
610
+ # Message for sampling conversations.
611
+ # Corresponds to the JSON property `sampleRule`
612
+ # @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1SampleRule]
613
+ attr_accessor :sample_rule
614
+
615
+ # Message for schedule info.
616
+ # Corresponds to the JSON property `scheduleInfo`
617
+ # @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ScheduleInfo]
618
+ attr_accessor :schedule_info
619
+
620
+ # Output only. The most recent time at which this assessment rule was updated.
621
+ # Corresponds to the JSON property `updateTime`
622
+ # @return [String]
623
+ attr_accessor :update_time
624
+
625
+ def initialize(**args)
626
+ update!(**args)
627
+ end
628
+
629
+ # Update properties of this object
630
+ def update!(**args)
631
+ @active = args[:active] if args.key?(:active)
632
+ @create_time = args[:create_time] if args.key?(:create_time)
633
+ @display_name = args[:display_name] if args.key?(:display_name)
634
+ @name = args[:name] if args.key?(:name)
635
+ @sample_rule = args[:sample_rule] if args.key?(:sample_rule)
636
+ @schedule_info = args[:schedule_info] if args.key?(:schedule_info)
637
+ @update_time = args[:update_time] if args.key?(:update_time)
638
+ end
639
+ end
640
+
524
641
  # An AuthorizedView represents a view of accessible Insights resources (for
525
642
  # example, Conversation and Scorecard). Who have read access to the
526
643
  # AuthorizedView resource will have access to these Insight resources as well.
@@ -1655,6 +1772,12 @@ module Google
1655
1772
  # @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1GcsSource]
1656
1773
  attr_accessor :gcs_source
1657
1774
 
1775
+ # Cloud Storage URI that points to a file that contains the conversation
1776
+ # metadata.
1777
+ # Corresponds to the JSON property `metadataUri`
1778
+ # @return [String]
1779
+ attr_accessor :metadata_uri
1780
+
1658
1781
  def initialize(**args)
1659
1782
  update!(**args)
1660
1783
  end
@@ -1663,6 +1786,7 @@ module Google
1663
1786
  def update!(**args)
1664
1787
  @dialogflow_source = args[:dialogflow_source] if args.key?(:dialogflow_source)
1665
1788
  @gcs_source = args[:gcs_source] if args.key?(:gcs_source)
1789
+ @metadata_uri = args[:metadata_uri] if args.key?(:metadata_uri)
1666
1790
  end
1667
1791
  end
1668
1792
 
@@ -3131,6 +3255,20 @@ module Google
3131
3255
  end
3132
3256
  end
3133
3257
 
3258
+ # The message to finalize an assessment. Finalizing makes an assessment and its
3259
+ # notes immutable.
3260
+ class GoogleCloudContactcenterinsightsV1FinalizeAssessmentRequest
3261
+ include Google::Apis::Core::Hashable
3262
+
3263
+ def initialize(**args)
3264
+ update!(**args)
3265
+ end
3266
+
3267
+ # Update properties of this object
3268
+ def update!(**args)
3269
+ end
3270
+ end
3271
+
3134
3272
  # A Cloud Storage source of conversation data.
3135
3273
  class GoogleCloudContactcenterinsightsV1GcsSource
3136
3274
  include Google::Apis::Core::Hashable
@@ -4047,6 +4185,58 @@ module Google
4047
4185
  end
4048
4186
  end
4049
4187
 
4188
+ # The response of listing assessment rules.
4189
+ class GoogleCloudContactcenterinsightsV1ListAssessmentRulesResponse
4190
+ include Google::Apis::Core::Hashable
4191
+
4192
+ # The assessment rules that match the request.
4193
+ # Corresponds to the JSON property `assessmentRules`
4194
+ # @return [Array<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1AssessmentRule>]
4195
+ attr_accessor :assessment_rules
4196
+
4197
+ # A token, which can be sent as `page_token` to retrieve the next page. If this
4198
+ # field is omitted, there are no subsequent pages.
4199
+ # Corresponds to the JSON property `nextPageToken`
4200
+ # @return [String]
4201
+ attr_accessor :next_page_token
4202
+
4203
+ def initialize(**args)
4204
+ update!(**args)
4205
+ end
4206
+
4207
+ # Update properties of this object
4208
+ def update!(**args)
4209
+ @assessment_rules = args[:assessment_rules] if args.key?(:assessment_rules)
4210
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
4211
+ end
4212
+ end
4213
+
4214
+ # The response of listing assessments.
4215
+ class GoogleCloudContactcenterinsightsV1ListAssessmentsResponse
4216
+ include Google::Apis::Core::Hashable
4217
+
4218
+ # The assessments that match the request.
4219
+ # Corresponds to the JSON property `assessments`
4220
+ # @return [Array<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1Assessment>]
4221
+ attr_accessor :assessments
4222
+
4223
+ # A token, which can be sent as `page_token` to retrieve the next page. If this
4224
+ # field is omitted, there are no subsequent pages.
4225
+ # Corresponds to the JSON property `nextPageToken`
4226
+ # @return [String]
4227
+ attr_accessor :next_page_token
4228
+
4229
+ def initialize(**args)
4230
+ update!(**args)
4231
+ end
4232
+
4233
+ # Update properties of this object
4234
+ def update!(**args)
4235
+ @assessments = args[:assessments] if args.key?(:assessments)
4236
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
4237
+ end
4238
+ end
4239
+
4050
4240
  # The response from a ListAuthorizedViewSet request.
4051
4241
  class GoogleCloudContactcenterinsightsV1ListAuthorizedViewSetsResponse
4052
4242
  include Google::Apis::Core::Hashable
@@ -4189,6 +4379,32 @@ module Google
4189
4379
  end
4190
4380
  end
4191
4381
 
4382
+ # The response of listing notes.
4383
+ class GoogleCloudContactcenterinsightsV1ListNotesResponse
4384
+ include Google::Apis::Core::Hashable
4385
+
4386
+ # A token, which can be sent as `page_token` to retrieve the next page. If this
4387
+ # field is omitted, there are no subsequent pages.
4388
+ # Corresponds to the JSON property `nextPageToken`
4389
+ # @return [String]
4390
+ attr_accessor :next_page_token
4391
+
4392
+ # The notes that match the request.
4393
+ # Corresponds to the JSON property `notes`
4394
+ # @return [Array<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1Note>]
4395
+ attr_accessor :notes
4396
+
4397
+ def initialize(**args)
4398
+ update!(**args)
4399
+ end
4400
+
4401
+ # Update properties of this object
4402
+ def update!(**args)
4403
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
4404
+ @notes = args[:notes] if args.key?(:notes)
4405
+ end
4406
+ end
4407
+
4192
4408
  # The response of listing phrase matchers.
4193
4409
  class GoogleCloudContactcenterinsightsV1ListPhraseMatchersResponse
4194
4410
  include Google::Apis::Core::Hashable
@@ -4319,6 +4535,120 @@ module Google
4319
4535
  end
4320
4536
  end
4321
4537
 
4538
+ # The conversation assessment note resource.
4539
+ class GoogleCloudContactcenterinsightsV1Note
4540
+ include Google::Apis::Core::Hashable
4541
+
4542
+ # A note about the entire parent assessment.
4543
+ # Corresponds to the JSON property `assessmentNote`
4544
+ # @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1NoteAssessmentNote]
4545
+ attr_accessor :assessment_note
4546
+
4547
+ # The note content.
4548
+ # Corresponds to the JSON property `content`
4549
+ # @return [String]
4550
+ attr_accessor :content
4551
+
4552
+ # A note about a conversation turn.
4553
+ # Corresponds to the JSON property `conversationTurnNote`
4554
+ # @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1NoteConversationTurnNote]
4555
+ attr_accessor :conversation_turn_note
4556
+
4557
+ # Output only. The time at which the note was created.
4558
+ # Corresponds to the JSON property `createTime`
4559
+ # @return [String]
4560
+ attr_accessor :create_time
4561
+
4562
+ # Identifier. The resource name of the note. Format: projects/`project`/
4563
+ # locations/`location`/conversations/`conversation`/assessments/`assessment`/
4564
+ # notes/`note`
4565
+ # Corresponds to the JSON property `name`
4566
+ # @return [String]
4567
+ attr_accessor :name
4568
+
4569
+ # Information about a user.
4570
+ # Corresponds to the JSON property `noteCreator`
4571
+ # @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1UserInfo]
4572
+ attr_accessor :note_creator
4573
+
4574
+ # A note about a QA question.
4575
+ # Corresponds to the JSON property `qaQuestionNote`
4576
+ # @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1NoteQaQuestionNote]
4577
+ attr_accessor :qa_question_note
4578
+
4579
+ # Output only. The time at which the note was last updated.
4580
+ # Corresponds to the JSON property `updateTime`
4581
+ # @return [String]
4582
+ attr_accessor :update_time
4583
+
4584
+ def initialize(**args)
4585
+ update!(**args)
4586
+ end
4587
+
4588
+ # Update properties of this object
4589
+ def update!(**args)
4590
+ @assessment_note = args[:assessment_note] if args.key?(:assessment_note)
4591
+ @content = args[:content] if args.key?(:content)
4592
+ @conversation_turn_note = args[:conversation_turn_note] if args.key?(:conversation_turn_note)
4593
+ @create_time = args[:create_time] if args.key?(:create_time)
4594
+ @name = args[:name] if args.key?(:name)
4595
+ @note_creator = args[:note_creator] if args.key?(:note_creator)
4596
+ @qa_question_note = args[:qa_question_note] if args.key?(:qa_question_note)
4597
+ @update_time = args[:update_time] if args.key?(:update_time)
4598
+ end
4599
+ end
4600
+
4601
+ # A note about the entire parent assessment.
4602
+ class GoogleCloudContactcenterinsightsV1NoteAssessmentNote
4603
+ include Google::Apis::Core::Hashable
4604
+
4605
+ def initialize(**args)
4606
+ update!(**args)
4607
+ end
4608
+
4609
+ # Update properties of this object
4610
+ def update!(**args)
4611
+ end
4612
+ end
4613
+
4614
+ # A note about a conversation turn.
4615
+ class GoogleCloudContactcenterinsightsV1NoteConversationTurnNote
4616
+ include Google::Apis::Core::Hashable
4617
+
4618
+ # The conversation turn index that the note is associated with.
4619
+ # Corresponds to the JSON property `turnIndex`
4620
+ # @return [Fixnum]
4621
+ attr_accessor :turn_index
4622
+
4623
+ def initialize(**args)
4624
+ update!(**args)
4625
+ end
4626
+
4627
+ # Update properties of this object
4628
+ def update!(**args)
4629
+ @turn_index = args[:turn_index] if args.key?(:turn_index)
4630
+ end
4631
+ end
4632
+
4633
+ # A note about a QA question.
4634
+ class GoogleCloudContactcenterinsightsV1NoteQaQuestionNote
4635
+ include Google::Apis::Core::Hashable
4636
+
4637
+ # The question resource that the note is associated with.
4638
+ # Corresponds to the JSON property `qaQuestion`
4639
+ # @return [String]
4640
+ attr_accessor :qa_question
4641
+
4642
+ def initialize(**args)
4643
+ update!(**args)
4644
+ end
4645
+
4646
+ # Update properties of this object
4647
+ def update!(**args)
4648
+ @qa_question = args[:qa_question] if args.key?(:qa_question)
4649
+ end
4650
+ end
4651
+
4322
4652
  # The data for a matched phrase matcher. Represents information identifying a
4323
4653
  # phrase matcher for a given match.
4324
4654
  class GoogleCloudContactcenterinsightsV1PhraseMatchData
@@ -4510,6 +4840,21 @@ module Google
4510
4840
  end
4511
4841
  end
4512
4842
 
4843
+ # The message to publish an assessment. Draft and appealed assessments can be
4844
+ # published. Publishing simply changes the state of the assessment to published,
4845
+ # allowing the console and authorized views to filter on the state.
4846
+ class GoogleCloudContactcenterinsightsV1PublishAssessmentRequest
4847
+ include Google::Apis::Core::Hashable
4848
+
4849
+ def initialize(**args)
4850
+ update!(**args)
4851
+ end
4852
+
4853
+ # Update properties of this object
4854
+ def update!(**args)
4855
+ end
4856
+ end
4857
+
4513
4858
  # An answer to a QaQuestion.
4514
4859
  class GoogleCloudContactcenterinsightsV1QaAnswer
4515
4860
  include Google::Apis::Core::Hashable
@@ -5758,6 +6103,49 @@ module Google
5758
6103
  end
5759
6104
  end
5760
6105
 
6106
+ # Message for schedule info.
6107
+ class GoogleCloudContactcenterinsightsV1ScheduleInfo
6108
+ include Google::Apis::Core::Hashable
6109
+
6110
+ # End time of the schedule. If not specified, will keep scheduling new pipelines
6111
+ # for execution util the schedule is no longer active or deleted.
6112
+ # Corresponds to the JSON property `endTime`
6113
+ # @return [String]
6114
+ attr_accessor :end_time
6115
+
6116
+ # The groc expression. Format: `every number [synchronized]` Time units can be:
6117
+ # minutes, hours Synchronized is optional and indicates that the schedule should
6118
+ # be synchronized to the start of the interval: every 5 minutes synchronized
6119
+ # means 00:00, 00:05 ... Otherwise the start time is random within the interval.
6120
+ # Example: `every 5 minutes` could be 00:02, 00:07, 00:12, ...
6121
+ # Corresponds to the JSON property `schedule`
6122
+ # @return [String]
6123
+ attr_accessor :schedule
6124
+
6125
+ # Start time of the schedule. If not specified, will start as soon as the
6126
+ # schedule is created.
6127
+ # Corresponds to the JSON property `startTime`
6128
+ # @return [String]
6129
+ attr_accessor :start_time
6130
+
6131
+ # The timezone to use for the groc expression. If not specified, defaults to UTC.
6132
+ # Corresponds to the JSON property `timeZone`
6133
+ # @return [String]
6134
+ attr_accessor :time_zone
6135
+
6136
+ def initialize(**args)
6137
+ update!(**args)
6138
+ end
6139
+
6140
+ # Update properties of this object
6141
+ def update!(**args)
6142
+ @end_time = args[:end_time] if args.key?(:end_time)
6143
+ @schedule = args[:schedule] if args.key?(:schedule)
6144
+ @start_time = args[:start_time] if args.key?(:start_time)
6145
+ @time_zone = args[:time_zone] if args.key?(:time_zone)
6146
+ end
6147
+ end
6148
+
5761
6149
  # The response from a ListAuthorizedViews request.
5762
6150
  class GoogleCloudContactcenterinsightsV1SearchAuthorizedViewsResponse
5763
6151
  include Google::Apis::Core::Hashable
@@ -6270,6 +6658,25 @@ module Google
6270
6658
  end
6271
6659
  end
6272
6660
 
6661
+ # Information about a user.
6662
+ class GoogleCloudContactcenterinsightsV1UserInfo
6663
+ include Google::Apis::Core::Hashable
6664
+
6665
+ # The user's username.
6666
+ # Corresponds to the JSON property `username`
6667
+ # @return [String]
6668
+ attr_accessor :username
6669
+
6670
+ def initialize(**args)
6671
+ update!(**args)
6672
+ end
6673
+
6674
+ # Update properties of this object
6675
+ def update!(**args)
6676
+ @username = args[:username] if args.key?(:username)
6677
+ end
6678
+ end
6679
+
6273
6680
  # The View resource.
6274
6681
  class GoogleCloudContactcenterinsightsV1View
6275
6682
  include Google::Apis::Core::Hashable
@@ -7297,6 +7704,12 @@ module Google
7297
7704
  # @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1GcsSource]
7298
7705
  attr_accessor :gcs_source
7299
7706
 
7707
+ # Cloud Storage URI that points to a file that contains the conversation
7708
+ # metadata.
7709
+ # Corresponds to the JSON property `metadataUri`
7710
+ # @return [String]
7711
+ attr_accessor :metadata_uri
7712
+
7300
7713
  def initialize(**args)
7301
7714
  update!(**args)
7302
7715
  end
@@ -7305,6 +7718,7 @@ module Google
7305
7718
  def update!(**args)
7306
7719
  @dialogflow_source = args[:dialogflow_source] if args.key?(:dialogflow_source)
7307
7720
  @gcs_source = args[:gcs_source] if args.key?(:gcs_source)
7721
+ @metadata_uri = args[:metadata_uri] if args.key?(:metadata_uri)
7308
7722
  end
7309
7723
  end
7310
7724
 
@@ -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.63.0"
19
+ GEM_VERSION = "0.65.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.17.0"
22
+ GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250512"
25
+ REVISION = "20250526"
26
26
  end
27
27
  end
28
28
  end