Interface CompilationResultAction.RelationOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CompilationResultAction.Relation
,CompilationResultAction.Relation.Builder
- Enclosing class:
- CompilationResultAction
public static interface CompilationResultAction.RelationOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description boolean
containsAdditionalOptions(String key)
Additional options that will be provided as key/value pairs into the options clause of a create table/view statement.Map<String,String>
getAdditionalOptions()
Deprecated.int
getAdditionalOptionsCount()
Additional options that will be provided as key/value pairs into the options clause of a create table/view statement.Map<String,String>
getAdditionalOptionsMap()
Additional options that will be provided as key/value pairs into the options clause of a create table/view statement.String
getAdditionalOptionsOrDefault(String key, String defaultValue)
Additional options that will be provided as key/value pairs into the options clause of a create table/view statement.String
getAdditionalOptionsOrThrow(String key)
Additional options that will be provided as key/value pairs into the options clause of a create table/view statement.String
getClusterExpressions(int index)
A list of columns or SQL expressions used to cluster the table.com.google.protobuf.ByteString
getClusterExpressionsBytes(int index)
A list of columns or SQL expressions used to cluster the table.int
getClusterExpressionsCount()
A list of columns or SQL expressions used to cluster the table.List<String>
getClusterExpressionsList()
A list of columns or SQL expressions used to cluster the table.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.CompilationResultAction.Relation.IncrementalTableConfig
getIncrementalTableConfig()
Configures `INCREMENTAL_TABLE` settings for this relation.CompilationResultAction.Relation.IncrementalTableConfigOrBuilder
getIncrementalTableConfigOrBuilder()
Configures `INCREMENTAL_TABLE` settings for this relation.int
getPartitionExpirationDays()
Sets the partition expiration in days.String
getPartitionExpression()
The SQL expression used to partition the relation.com.google.protobuf.ByteString
getPartitionExpressionBytes()
The SQL expression used to partition the relation.String
getPostOperations(int index)
SQL statements to be executed after creating the relation.com.google.protobuf.ByteString
getPostOperationsBytes(int index)
SQL statements to be executed after creating the relation.int
getPostOperationsCount()
SQL statements to be executed after creating the relation.List<String>
getPostOperationsList()
SQL statements to be executed after creating the relation.String
getPreOperations(int index)
SQL statements to be executed before creating the relation.com.google.protobuf.ByteString
getPreOperationsBytes(int index)
SQL statements to be executed before creating the relation.int
getPreOperationsCount()
SQL statements to be executed before creating the relation.List<String>
getPreOperationsList()
SQL statements to be executed before creating the relation.RelationDescriptor
getRelationDescriptor()
Descriptor for the relation and its columns.RelationDescriptorOrBuilder
getRelationDescriptorOrBuilder()
Descriptor for the relation and its columns.CompilationResultAction.Relation.RelationType
getRelationType()
The type of this relation.int
getRelationTypeValue()
The type of this relation.boolean
getRequirePartitionFilter()
Specifies whether queries on this table must include a predicate filter that filters on the partitioning column.String
getSelectQuery()
The SELECT query which returns rows which this relation should contain.com.google.protobuf.ByteString
getSelectQueryBytes()
The SELECT query which returns rows which this relation should contain.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
hasIncrementalTableConfig()
Configures `INCREMENTAL_TABLE` settings for this relation.boolean
hasRelationDescriptor()
Descriptor for the 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 the relation and its columns.
.google.cloud.dataform.v1beta1.RelationDescriptor relation_descriptor = 4;
- Returns:
- Whether the relationDescriptor field is set.
-
getRelationDescriptor
RelationDescriptor getRelationDescriptor()
Descriptor for the relation and its columns.
.google.cloud.dataform.v1beta1.RelationDescriptor relation_descriptor = 4;
- Returns:
- The relationDescriptor.
-
getRelationDescriptorOrBuilder
RelationDescriptorOrBuilder getRelationDescriptorOrBuilder()
Descriptor for the relation and its columns.
.google.cloud.dataform.v1beta1.RelationDescriptor relation_descriptor = 4;
-
getRelationTypeValue
int getRelationTypeValue()
The type of this relation.
.google.cloud.dataform.v1beta1.CompilationResultAction.Relation.RelationType relation_type = 5;
- Returns:
- The enum numeric value on the wire for relationType.
-
getRelationType
CompilationResultAction.Relation.RelationType getRelationType()
The type of this relation.
.google.cloud.dataform.v1beta1.CompilationResultAction.Relation.RelationType relation_type = 5;
- Returns:
- The relationType.
-
getSelectQuery
String getSelectQuery()
The SELECT query which returns rows which this relation should contain.
string select_query = 6;
- Returns:
- The selectQuery.
-
getSelectQueryBytes
com.google.protobuf.ByteString getSelectQueryBytes()
The SELECT query which returns rows which this relation should contain.
string select_query = 6;
- Returns:
- The bytes for selectQuery.
-
getPreOperationsList
List<String> getPreOperationsList()
SQL statements to be executed before creating the relation.
repeated string pre_operations = 7;
- Returns:
- A list containing the preOperations.
-
getPreOperationsCount
int getPreOperationsCount()
SQL statements to be executed before creating the relation.
repeated string pre_operations = 7;
- Returns:
- The count of preOperations.
-
getPreOperations
String getPreOperations(int index)
SQL statements to be executed before creating the relation.
repeated string pre_operations = 7;
- Parameters:
index
- The index of the element to return.- Returns:
- The preOperations at the given index.
-
getPreOperationsBytes
com.google.protobuf.ByteString getPreOperationsBytes(int index)
SQL statements to be executed before creating the relation.
repeated string pre_operations = 7;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the preOperations at the given index.
-
getPostOperationsList
List<String> getPostOperationsList()
SQL statements to be executed after creating the relation.
repeated string post_operations = 8;
- Returns:
- A list containing the postOperations.
-
getPostOperationsCount
int getPostOperationsCount()
SQL statements to be executed after creating the relation.
repeated string post_operations = 8;
- Returns:
- The count of postOperations.
-
getPostOperations
String getPostOperations(int index)
SQL statements to be executed after creating the relation.
repeated string post_operations = 8;
- Parameters:
index
- The index of the element to return.- Returns:
- The postOperations at the given index.
-
getPostOperationsBytes
com.google.protobuf.ByteString getPostOperationsBytes(int index)
SQL statements to be executed after creating the relation.
repeated string post_operations = 8;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the postOperations at the given index.
-
hasIncrementalTableConfig
boolean hasIncrementalTableConfig()
Configures `INCREMENTAL_TABLE` settings for this relation. Only set if `relation_type` is `INCREMENTAL_TABLE`.
.google.cloud.dataform.v1beta1.CompilationResultAction.Relation.IncrementalTableConfig incremental_table_config = 9;
- Returns:
- Whether the incrementalTableConfig field is set.
-
getIncrementalTableConfig
CompilationResultAction.Relation.IncrementalTableConfig getIncrementalTableConfig()
Configures `INCREMENTAL_TABLE` settings for this relation. Only set if `relation_type` is `INCREMENTAL_TABLE`.
.google.cloud.dataform.v1beta1.CompilationResultAction.Relation.IncrementalTableConfig incremental_table_config = 9;
- Returns:
- The incrementalTableConfig.
-
getIncrementalTableConfigOrBuilder
CompilationResultAction.Relation.IncrementalTableConfigOrBuilder getIncrementalTableConfigOrBuilder()
Configures `INCREMENTAL_TABLE` settings for this relation. Only set if `relation_type` is `INCREMENTAL_TABLE`.
.google.cloud.dataform.v1beta1.CompilationResultAction.Relation.IncrementalTableConfig incremental_table_config = 9;
-
getPartitionExpression
String getPartitionExpression()
The SQL expression used to partition the relation.
string partition_expression = 10;
- Returns:
- The partitionExpression.
-
getPartitionExpressionBytes
com.google.protobuf.ByteString getPartitionExpressionBytes()
The SQL expression used to partition the relation.
string partition_expression = 10;
- Returns:
- The bytes for partitionExpression.
-
getClusterExpressionsList
List<String> getClusterExpressionsList()
A list of columns or SQL expressions used to cluster the table.
repeated string cluster_expressions = 11;
- Returns:
- A list containing the clusterExpressions.
-
getClusterExpressionsCount
int getClusterExpressionsCount()
A list of columns or SQL expressions used to cluster the table.
repeated string cluster_expressions = 11;
- Returns:
- The count of clusterExpressions.
-
getClusterExpressions
String getClusterExpressions(int index)
A list of columns or SQL expressions used to cluster the table.
repeated string cluster_expressions = 11;
- Parameters:
index
- The index of the element to return.- Returns:
- The clusterExpressions at the given index.
-
getClusterExpressionsBytes
com.google.protobuf.ByteString getClusterExpressionsBytes(int index)
A list of columns or SQL expressions used to cluster the table.
repeated string cluster_expressions = 11;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the clusterExpressions at the given index.
-
getPartitionExpirationDays
int getPartitionExpirationDays()
Sets the partition expiration in days.
int32 partition_expiration_days = 12;
- Returns:
- The partitionExpirationDays.
-
getRequirePartitionFilter
boolean getRequirePartitionFilter()
Specifies whether queries on this table must include a predicate filter that filters on the partitioning column.
bool require_partition_filter = 13;
- Returns:
- The requirePartitionFilter.
-
getAdditionalOptionsCount
int getAdditionalOptionsCount()
Additional options that will be provided as key/value pairs into the options clause of a create table/view statement. See https://cloud.google.com/bigquery/docs/reference/standard-sql/data-definition-language for more information on which options are supported.
map<string, string> additional_options = 14;
-
containsAdditionalOptions
boolean containsAdditionalOptions(String key)
Additional options that will be provided as key/value pairs into the options clause of a create table/view statement. See https://cloud.google.com/bigquery/docs/reference/standard-sql/data-definition-language for more information on which options are supported.
map<string, string> additional_options = 14;
-
getAdditionalOptions
@Deprecated Map<String,String> getAdditionalOptions()
Deprecated.UsegetAdditionalOptionsMap()
instead.
-
getAdditionalOptionsMap
Map<String,String> getAdditionalOptionsMap()
Additional options that will be provided as key/value pairs into the options clause of a create table/view statement. See https://cloud.google.com/bigquery/docs/reference/standard-sql/data-definition-language for more information on which options are supported.
map<string, string> additional_options = 14;
-
getAdditionalOptionsOrDefault
String getAdditionalOptionsOrDefault(String key, String defaultValue)
Additional options that will be provided as key/value pairs into the options clause of a create table/view statement. See https://cloud.google.com/bigquery/docs/reference/standard-sql/data-definition-language for more information on which options are supported.
map<string, string> additional_options = 14;
-
getAdditionalOptionsOrThrow
String getAdditionalOptionsOrThrow(String key)
Additional options that will be provided as key/value pairs into the options clause of a create table/view statement. See https://cloud.google.com/bigquery/docs/reference/standard-sql/data-definition-language for more information on which options are supported.
map<string, string> additional_options = 14;
-
-