File tree Expand file tree Collapse file tree
google/cloud/contactcenterinsights/v1 Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -567,11 +567,17 @@ message IssueModel {
567567
568568 // Configs for the input data used to create the issue model.
569569 message InputDataConfig {
570- // Required. Medium of conversations used in training data.
571- Conversation.Medium medium = 1 [(google.api.field_behavior ) = REQUIRED ];
570+ // Medium of conversations used in training data. This field is being
571+ // deprecated. To specify the medium to be used in training a new issue
572+ // model, set the `medium` field on `filter`.
573+ Conversation.Medium medium = 1 [deprecated = true ];
572574
573575 // Output only. Number of conversations used in training. Output only.
574576 int64 training_conversations_count = 2 [(google.api.field_behavior ) = OUTPUT_ONLY ];
577+
578+ // A filter to reduce the conversations used for training the model to a
579+ // specific subset.
580+ string filter = 3 ;
575581 }
576582
577583 // State of the model.
@@ -730,6 +736,9 @@ message PhraseMatcher {
730736 // against. If the role is ROLE_UNSPECIFIED it will be matched against any
731737 // utterances in the transcript.
732738 ConversationParticipant.Role role_match = 10 ;
739+
740+ // Output only. The most recent time at which the phrase matcher was updated.
741+ google.protobuf.Timestamp update_time = 11 [(google.api.field_behavior ) = OUTPUT_ONLY ];
733742}
734743
735744// A message representing a rule in the phrase matcher.
You can’t perform that action at this time.
0 commit comments