Skip to content

Commit

Permalink
feat: Support topic model type V2
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 545798962
  • Loading branch information
Google APIs authored and copybara-github committed Jul 5, 2023
1 parent 679254b commit 601a6dd
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion google/cloud/contactcenterinsights/v1/resources.proto
Original file line number Diff line number Diff line change
Expand Up @@ -654,6 +654,18 @@ message IssueModel {
DELETING = 5;
}

// Type of the model.
enum ModelType {
// Unspecified model type.
MODEL_TYPE_UNSPECIFIED = 0;

// Type V1.
TYPE_V1 = 1;

// Type V2.
TYPE_V2 = 2;
}

// Immutable. The resource name of the issue model.
// Format:
// projects/{project}/locations/{location}/issueModels/{issue_model}
Expand Down Expand Up @@ -685,6 +697,12 @@ message IssueModel {
(google.api.field_behavior) = OUTPUT_ONLY,
(google.api.field_behavior) = IMMUTABLE
];

// Type of the model.
ModelType model_type = 9;

// Language of the model.
string language_code = 10;
}

// The issue resource.
Expand Down Expand Up @@ -944,7 +962,7 @@ message RedactionConfig {

// The fully-qualified DLP inspect template resource name.
// Format:
// `projects/{project}/inspectTemplates/{template}`
// `projects/{project}/locations/{location}/inspectTemplates/{template}`
string inspect_template = 2;
}

Expand Down

0 comments on commit 601a6dd

Please sign in to comment.