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 TargetgetDependencyTargets(int index)A list of actions that this action depends on.intgetDependencyTargetsCount()A list of actions that this action depends on.List<Target>getDependencyTargetsList()A list of actions that this action depends on.TargetOrBuildergetDependencyTargetsOrBuilder(int index)A list of actions that this action depends on.List<? extends TargetOrBuilder>getDependencyTargetsOrBuilderList()A list of actions that this action depends on.booleangetDisabled()Whether this action is disabled (i.e.booleangetHasOutput()Whether these operations produce an output relation.StringgetQueries(int index)A list of arbitrary SQL statements that will be executed without alteration.com.google.protobuf.ByteStringgetQueriesBytes(int index)A list of arbitrary SQL statements that will be executed without alteration.intgetQueriesCount()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.RelationDescriptorgetRelationDescriptor()Descriptor for any output relation and its columns.RelationDescriptorOrBuildergetRelationDescriptorOrBuilder()Descriptor for any output relation and its columns.StringgetTags(int index)Arbitrary, user-defined tags on this action.com.google.protobuf.ByteStringgetTagsBytes(int index)Arbitrary, user-defined tags on this action.intgetTagsCount()Arbitrary, user-defined tags on this action.List<String>getTagsList()Arbitrary, user-defined tags on this action.booleanhasRelationDescriptor()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.
-
-