Interface CompilationResultAction.OperationsOrBuilder

    • 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.