Interface CompilationResultAction.OperationsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CompilationResultAction.Operations
,CompilationResultAction.Operations.Builder
- Enclosing class:
- CompilationResultAction
public static interface CompilationResultAction.OperationsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Target
getDependencyTargets(int index)
A list of actions that this action depends on.int
getDependencyTargetsCount()
A list of actions that this action depends on.List<Target>
getDependencyTargetsList()
A list of actions that this action depends on.TargetOrBuilder
getDependencyTargetsOrBuilder(int index)
A list of actions that this action depends on.List<? extends TargetOrBuilder>
getDependencyTargetsOrBuilderList()
A list of actions that this action depends on.boolean
getDisabled()
Whether this action is disabled (i.e.boolean
getHasOutput()
Whether these operations produce an output relation.String
getQueries(int index)
A list of arbitrary SQL statements that will be executed without alteration.com.google.protobuf.ByteString
getQueriesBytes(int index)
A list of arbitrary SQL statements that will be executed without alteration.int
getQueriesCount()
A list of arbitrary SQL statements that will be executed without alteration.List<String>
getQueriesList()
A list of arbitrary SQL statements that will be executed without alteration.RelationDescriptor
getRelationDescriptor()
Descriptor for any output relation and its columns.RelationDescriptorOrBuilder
getRelationDescriptorOrBuilder()
Descriptor for any output relation and its columns.String
getTags(int index)
Arbitrary, user-defined tags on this action.com.google.protobuf.ByteString
getTagsBytes(int index)
Arbitrary, user-defined tags on this action.int
getTagsCount()
Arbitrary, user-defined tags on this action.List<String>
getTagsList()
Arbitrary, user-defined tags on this action.boolean
hasRelationDescriptor()
Descriptor for any output relation and its columns.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getDependencyTargetsList
List<Target> getDependencyTargetsList()
A list of actions that this action depends on.
repeated .google.cloud.dataform.v1beta1.Target dependency_targets = 1;
-
getDependencyTargets
Target getDependencyTargets(int index)
A list of actions that this action depends on.
repeated .google.cloud.dataform.v1beta1.Target dependency_targets = 1;
-
getDependencyTargetsCount
int getDependencyTargetsCount()
A list of actions that this action depends on.
repeated .google.cloud.dataform.v1beta1.Target dependency_targets = 1;
-
getDependencyTargetsOrBuilderList
List<? extends TargetOrBuilder> getDependencyTargetsOrBuilderList()
A list of actions that this action depends on.
repeated .google.cloud.dataform.v1beta1.Target dependency_targets = 1;
-
getDependencyTargetsOrBuilder
TargetOrBuilder getDependencyTargetsOrBuilder(int index)
A list of actions that this action depends on.
repeated .google.cloud.dataform.v1beta1.Target dependency_targets = 1;
-
getDisabled
boolean getDisabled()
Whether this action is disabled (i.e. should not be run).
bool disabled = 2;
- Returns:
- The disabled.
-
getTagsList
List<String> getTagsList()
Arbitrary, user-defined tags on this action.
repeated string tags = 3;
- Returns:
- A list containing the tags.
-
getTagsCount
int getTagsCount()
Arbitrary, user-defined tags on this action.
repeated string tags = 3;
- Returns:
- The count of tags.
-
getTags
String getTags(int index)
Arbitrary, user-defined tags on this action.
repeated string tags = 3;
- Parameters:
index
- The index of the element to return.- Returns:
- The tags at the given index.
-
getTagsBytes
com.google.protobuf.ByteString getTagsBytes(int index)
Arbitrary, user-defined tags on this action.
repeated string tags = 3;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the tags at the given index.
-
hasRelationDescriptor
boolean hasRelationDescriptor()
Descriptor for any output relation and its columns. Only set if `has_output` is true.
.google.cloud.dataform.v1beta1.RelationDescriptor relation_descriptor = 6;
- Returns:
- Whether the relationDescriptor field is set.
-
getRelationDescriptor
RelationDescriptor getRelationDescriptor()
Descriptor for any output relation and its columns. Only set if `has_output` is true.
.google.cloud.dataform.v1beta1.RelationDescriptor relation_descriptor = 6;
- Returns:
- The relationDescriptor.
-
getRelationDescriptorOrBuilder
RelationDescriptorOrBuilder getRelationDescriptorOrBuilder()
Descriptor for any output relation and its columns. Only set if `has_output` is true.
.google.cloud.dataform.v1beta1.RelationDescriptor relation_descriptor = 6;
-
getQueriesList
List<String> getQueriesList()
A list of arbitrary SQL statements that will be executed without alteration.
repeated string queries = 4;
- Returns:
- A list containing the queries.
-
getQueriesCount
int getQueriesCount()
A list of arbitrary SQL statements that will be executed without alteration.
repeated string queries = 4;
- Returns:
- The count of queries.
-
getQueries
String getQueries(int index)
A list of arbitrary SQL statements that will be executed without alteration.
repeated string queries = 4;
- Parameters:
index
- The index of the element to return.- Returns:
- The queries at the given index.
-
getQueriesBytes
com.google.protobuf.ByteString getQueriesBytes(int index)
A list of arbitrary SQL statements that will be executed without alteration.
repeated string queries = 4;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the queries at the given index.
-
getHasOutput
boolean getHasOutput()
Whether these operations produce an output relation.
bool has_output = 5;
- Returns:
- The hasOutput.
-
-