Interface CompilationResult.CompilationErrorOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CompilationResult.CompilationError
,CompilationResult.CompilationError.Builder
- Enclosing class:
- CompilationResult
public static interface CompilationResult.CompilationErrorOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Target
getActionTarget()
Output only.TargetOrBuilder
getActionTargetOrBuilder()
Output only.String
getMessage()
Output only.com.google.protobuf.ByteString
getMessageBytes()
Output only.String
getPath()
Output only.com.google.protobuf.ByteString
getPathBytes()
Output only.String
getStack()
Output only.com.google.protobuf.ByteString
getStackBytes()
Output only.boolean
hasActionTarget()
Output only.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getMessage
String getMessage()
Output only. The error's top level message.
string message = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The message.
-
getMessageBytes
com.google.protobuf.ByteString getMessageBytes()
Output only. The error's top level message.
string message = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The bytes for message.
-
getStack
String getStack()
Output only. The error's full stack trace.
string stack = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The stack.
-
getStackBytes
com.google.protobuf.ByteString getStackBytes()
Output only. The error's full stack trace.
string stack = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The bytes for stack.
-
getPath
String getPath()
Output only. The path of the file where this error occurred, if available, relative to the project root.
string path = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The path.
-
getPathBytes
com.google.protobuf.ByteString getPathBytes()
Output only. The path of the file where this error occurred, if available, relative to the project root.
string path = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The bytes for path.
-
hasActionTarget
boolean hasActionTarget()
Output only. The identifier of the action where this error occurred, if available.
.google.cloud.dataform.v1beta1.Target action_target = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- Whether the actionTarget field is set.
-
getActionTarget
Target getActionTarget()
Output only. The identifier of the action where this error occurred, if available.
.google.cloud.dataform.v1beta1.Target action_target = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The actionTarget.
-
getActionTargetOrBuilder
TargetOrBuilder getActionTargetOrBuilder()
Output only. The identifier of the action where this error occurred, if available.
.google.cloud.dataform.v1beta1.Target action_target = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
-