Interface CompilationResultAction.AssertionOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CompilationResultAction.Assertion
,CompilationResultAction.Assertion.Builder
- Enclosing class:
- CompilationResultAction
public static interface CompilationResultAction.AssertionOrBuilder 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.Target
getParentAction()
The parent action of this assertion.TargetOrBuilder
getParentActionOrBuilder()
The parent action of this assertion.RelationDescriptor
getRelationDescriptor()
Descriptor for the assertion's automatically-generated view and its columns.RelationDescriptorOrBuilder
getRelationDescriptorOrBuilder()
Descriptor for the assertion's automatically-generated view and its columns.String
getSelectQuery()
The SELECT query which must return zero rows in order for this assertion to succeed.com.google.protobuf.ByteString
getSelectQueryBytes()
The SELECT query which must return zero rows in order for this assertion to succeed.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
hasParentAction()
The parent action of this assertion.boolean
hasRelationDescriptor()
Descriptor for the assertion's automatically-generated view 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.v1alpha2.Target dependency_targets = 1;
-
getDependencyTargets
Target getDependencyTargets(int index)
A list of actions that this action depends on.
repeated .google.cloud.dataform.v1alpha2.Target dependency_targets = 1;
-
getDependencyTargetsCount
int getDependencyTargetsCount()
A list of actions that this action depends on.
repeated .google.cloud.dataform.v1alpha2.Target dependency_targets = 1;
-
getDependencyTargetsOrBuilderList
List<? extends TargetOrBuilder> getDependencyTargetsOrBuilderList()
A list of actions that this action depends on.
repeated .google.cloud.dataform.v1alpha2.Target dependency_targets = 1;
-
getDependencyTargetsOrBuilder
TargetOrBuilder getDependencyTargetsOrBuilder(int index)
A list of actions that this action depends on.
repeated .google.cloud.dataform.v1alpha2.Target dependency_targets = 1;
-
hasParentAction
boolean hasParentAction()
The parent action of this assertion. Only set if this assertion was automatically generated.
.google.cloud.dataform.v1alpha2.Target parent_action = 5;
- Returns:
- Whether the parentAction field is set.
-
getParentAction
Target getParentAction()
The parent action of this assertion. Only set if this assertion was automatically generated.
.google.cloud.dataform.v1alpha2.Target parent_action = 5;
- Returns:
- The parentAction.
-
getParentActionOrBuilder
TargetOrBuilder getParentActionOrBuilder()
The parent action of this assertion. Only set if this assertion was automatically generated.
.google.cloud.dataform.v1alpha2.Target parent_action = 5;
-
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.
-
getSelectQuery
String getSelectQuery()
The SELECT query which must return zero rows in order for this assertion to succeed.
string select_query = 4;
- Returns:
- The selectQuery.
-
getSelectQueryBytes
com.google.protobuf.ByteString getSelectQueryBytes()
The SELECT query which must return zero rows in order for this assertion to succeed.
string select_query = 4;
- Returns:
- The bytes for selectQuery.
-
hasRelationDescriptor
boolean hasRelationDescriptor()
Descriptor for the assertion's automatically-generated view and its columns.
.google.cloud.dataform.v1alpha2.RelationDescriptor relation_descriptor = 6;
- Returns:
- Whether the relationDescriptor field is set.
-
getRelationDescriptor
RelationDescriptor getRelationDescriptor()
Descriptor for the assertion's automatically-generated view and its columns.
.google.cloud.dataform.v1alpha2.RelationDescriptor relation_descriptor = 6;
- Returns:
- The relationDescriptor.
-
getRelationDescriptorOrBuilder
RelationDescriptorOrBuilder getRelationDescriptorOrBuilder()
Descriptor for the assertion's automatically-generated view and its columns.
.google.cloud.dataform.v1alpha2.RelationDescriptor relation_descriptor = 6;
-
-