Skip to content

Commit

Permalink
docs: clarify the unavailability of some features
Browse files Browse the repository at this point in the history
chore: field behavior annotations in processor.proto

PiperOrigin-RevId: 633834640
  • Loading branch information
Google APIs authored and Copybara-Service committed May 15, 2024
1 parent 584e0de commit ca6e6eb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions google/cloud/documentai/v1/document.proto
Original file line number Diff line number Diff line change
Expand Up @@ -286,16 +286,16 @@ message Document {
// Whether the text is underlined.
bool underlined = 7;

// Whether the text is strikethrough.
// Whether the text is strikethrough. This feature is not supported yet.
bool strikeout = 8;

// Whether the text is a subscript.
// Whether the text is a subscript. This feature is not supported yet.
bool subscript = 9;

// Whether the text is a superscript.
// Whether the text is a superscript. This feature is not supported yet.
bool superscript = 10;

// Whether the text is in small caps.
// Whether the text is in small caps. This feature is not supported yet.
bool smallcaps = 11;

// TrueType weight on a scale `100` (thin) to `1000` (ultra-heavy).
Expand Down
8 changes: 4 additions & 4 deletions google/cloud/documentai/v1/processor.proto
Original file line number Diff line number Diff line change
Expand Up @@ -94,19 +94,19 @@ message ProcessorVersion {
MODEL_TYPE_CUSTOM = 2;
}

// The resource name of the processor version.
// Identifier. The resource name of the processor version.
// Format:
// `projects/{project}/locations/{location}/processors/{processor}/processorVersions/{processor_version}`
string name = 1;
string name = 1 [(google.api.field_behavior) = IDENTIFIER];

// The display name of the processor version.
string display_name = 2;

// The schema of the processor version. Describes the output.
DocumentSchema document_schema = 12;

// The state of the processor version.
State state = 6;
// Output only. The state of the processor version.
State state = 6 [(google.api.field_behavior) = OUTPUT_ONLY];

// The time the processor version was created.
google.protobuf.Timestamp create_time = 7;
Expand Down

0 comments on commit ca6e6eb

Please sign in to comment.