Package org.mlflow.api.proto
Interface Issues.UpdateIssueOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Issues.UpdateIssue,Issues.UpdateIssue.Builder
- Enclosing class:
- Issues
public static interface Issues.UpdateIssueOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetDescription()Detailed description of the issue.com.google.protobuf.ByteStringgetDescriptionBytes()Detailed description of the issue.java.lang.StringgetIssueId()Issue ID to update.com.google.protobuf.ByteStringgetIssueIdBytes()Issue ID to update.java.lang.StringgetName()Short descriptive name for the issue.com.google.protobuf.ByteStringgetNameBytes()Short descriptive name for the issue.java.lang.StringgetSeverity()Severity level indicator.com.google.protobuf.ByteStringgetSeverityBytes()Severity level indicator.java.lang.StringgetStatus()Issue status to update.com.google.protobuf.ByteStringgetStatusBytes()Issue status to update.booleanhasDescription()Detailed description of the issue.booleanhasIssueId()Issue ID to update.booleanhasName()Short descriptive name for the issue.booleanhasSeverity()Severity level indicator.booleanhasStatus()Issue status to update.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasIssueId
boolean hasIssueId()
Issue ID to update.
optional string issue_id = 1 [(.mlflow.validate_required) = true];- Returns:
- Whether the issueId field is set.
-
getIssueId
java.lang.String getIssueId()
Issue ID to update.
optional string issue_id = 1 [(.mlflow.validate_required) = true];- Returns:
- The issueId.
-
getIssueIdBytes
com.google.protobuf.ByteString getIssueIdBytes()
Issue ID to update.
optional string issue_id = 1 [(.mlflow.validate_required) = true];- Returns:
- The bytes for issueId.
-
hasName
boolean hasName()
Short descriptive name for the issue.
optional string name = 2;- Returns:
- Whether the name field is set.
-
getName
java.lang.String getName()
Short descriptive name for the issue.
optional string name = 2;- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
Short descriptive name for the issue.
optional string name = 2;- Returns:
- The bytes for name.
-
hasDescription
boolean hasDescription()
Detailed description of the issue.
optional string description = 3;- Returns:
- Whether the description field is set.
-
getDescription
java.lang.String getDescription()
Detailed description of the issue.
optional string description = 3;- Returns:
- The description.
-
getDescriptionBytes
com.google.protobuf.ByteString getDescriptionBytes()
Detailed description of the issue.
optional string description = 3;- Returns:
- The bytes for description.
-
hasStatus
boolean hasStatus()
Issue status to update.
optional string status = 4;- Returns:
- Whether the status field is set.
-
getStatus
java.lang.String getStatus()
Issue status to update.
optional string status = 4;- Returns:
- The status.
-
getStatusBytes
com.google.protobuf.ByteString getStatusBytes()
Issue status to update.
optional string status = 4;- Returns:
- The bytes for status.
-
hasSeverity
boolean hasSeverity()
Severity level indicator.
optional string severity = 5;- Returns:
- Whether the severity field is set.
-
getSeverity
java.lang.String getSeverity()
Severity level indicator.
optional string severity = 5;- Returns:
- The severity.
-
getSeverityBytes
com.google.protobuf.ByteString getSeverityBytes()
Severity level indicator.
optional string severity = 5;- Returns:
- The bytes for severity.
-
-