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 TargetgetActionTarget()Output only.TargetOrBuildergetActionTargetOrBuilder()Output only.StringgetMessage()Output only.com.google.protobuf.ByteStringgetMessageBytes()Output only.StringgetPath()Output only.com.google.protobuf.ByteStringgetPathBytes()Output only.StringgetStack()Output only.com.google.protobuf.ByteStringgetStackBytes()Output only.booleanhasActionTarget()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.v1alpha2.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.v1alpha2.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.v1alpha2.Target action_target = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
-