All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.cloud.dataform.v1beta1.CompilationResultOrBuilder Maven / Gradle / Ivy

There is a newer version: 0.53.0
Show newest version
/*
 * Copyright 2024 Google LLC
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: google/cloud/dataform/v1beta1/dataform.proto

// Protobuf Java Version: 3.25.4
package com.google.cloud.dataform.v1beta1;

public interface CompilationResultOrBuilder
    extends
    // @@protoc_insertion_point(interface_extends:google.cloud.dataform.v1beta1.CompilationResult)
    com.google.protobuf.MessageOrBuilder {

  /**
   *
   *
   * 
   * Output only. The compilation result's name.
   * 
* * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return The name. */ java.lang.String getName(); /** * * *
   * Output only. The compilation result's name.
   * 
* * string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return The bytes for name. */ com.google.protobuf.ByteString getNameBytes(); /** * * *
   * Immutable. Git commit/tag/branch name at which the repository should be
   * compiled. Must exist in the remote repository. Examples:
   * - a commit SHA: `12ade345`
   * - a tag: `tag1`
   * - a branch name: `branch1`
   * 
* * string git_commitish = 2 [(.google.api.field_behavior) = IMMUTABLE]; * * @return Whether the gitCommitish field is set. */ boolean hasGitCommitish(); /** * * *
   * Immutable. Git commit/tag/branch name at which the repository should be
   * compiled. Must exist in the remote repository. Examples:
   * - a commit SHA: `12ade345`
   * - a tag: `tag1`
   * - a branch name: `branch1`
   * 
* * string git_commitish = 2 [(.google.api.field_behavior) = IMMUTABLE]; * * @return The gitCommitish. */ java.lang.String getGitCommitish(); /** * * *
   * Immutable. Git commit/tag/branch name at which the repository should be
   * compiled. Must exist in the remote repository. Examples:
   * - a commit SHA: `12ade345`
   * - a tag: `tag1`
   * - a branch name: `branch1`
   * 
* * string git_commitish = 2 [(.google.api.field_behavior) = IMMUTABLE]; * * @return The bytes for gitCommitish. */ com.google.protobuf.ByteString getGitCommitishBytes(); /** * * *
   * Immutable. The name of the workspace to compile. Must be in the format
   * `projects/*/locations/*/repositories/*/workspaces/*`.
   * 
* * * string workspace = 3 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * * * @return Whether the workspace field is set. */ boolean hasWorkspace(); /** * * *
   * Immutable. The name of the workspace to compile. Must be in the format
   * `projects/*/locations/*/repositories/*/workspaces/*`.
   * 
* * * string workspace = 3 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * * * @return The workspace. */ java.lang.String getWorkspace(); /** * * *
   * Immutable. The name of the workspace to compile. Must be in the format
   * `projects/*/locations/*/repositories/*/workspaces/*`.
   * 
* * * string workspace = 3 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * * * @return The bytes for workspace. */ com.google.protobuf.ByteString getWorkspaceBytes(); /** * * *
   * Immutable. The name of the release config to compile. The release
   * config's 'current_compilation_result' field will be updated to this
   * compilation result. Must be in the format
   * `projects/*/locations/*/repositories/*/releaseConfigs/*`.
   * 
* * * string release_config = 7 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * * * @return Whether the releaseConfig field is set. */ boolean hasReleaseConfig(); /** * * *
   * Immutable. The name of the release config to compile. The release
   * config's 'current_compilation_result' field will be updated to this
   * compilation result. Must be in the format
   * `projects/*/locations/*/repositories/*/releaseConfigs/*`.
   * 
* * * string release_config = 7 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * * * @return The releaseConfig. */ java.lang.String getReleaseConfig(); /** * * *
   * Immutable. The name of the release config to compile. The release
   * config's 'current_compilation_result' field will be updated to this
   * compilation result. Must be in the format
   * `projects/*/locations/*/repositories/*/releaseConfigs/*`.
   * 
* * * string release_config = 7 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } * * * @return The bytes for releaseConfig. */ com.google.protobuf.ByteString getReleaseConfigBytes(); /** * * *
   * Immutable. If set, fields of `code_compilation_config` override the default
   * compilation settings that are specified in dataform.json.
   * 
* * * .google.cloud.dataform.v1beta1.CodeCompilationConfig code_compilation_config = 4 [(.google.api.field_behavior) = IMMUTABLE]; * * * @return Whether the codeCompilationConfig field is set. */ boolean hasCodeCompilationConfig(); /** * * *
   * Immutable. If set, fields of `code_compilation_config` override the default
   * compilation settings that are specified in dataform.json.
   * 
* * * .google.cloud.dataform.v1beta1.CodeCompilationConfig code_compilation_config = 4 [(.google.api.field_behavior) = IMMUTABLE]; * * * @return The codeCompilationConfig. */ com.google.cloud.dataform.v1beta1.CodeCompilationConfig getCodeCompilationConfig(); /** * * *
   * Immutable. If set, fields of `code_compilation_config` override the default
   * compilation settings that are specified in dataform.json.
   * 
* * * .google.cloud.dataform.v1beta1.CodeCompilationConfig code_compilation_config = 4 [(.google.api.field_behavior) = IMMUTABLE]; * */ com.google.cloud.dataform.v1beta1.CodeCompilationConfigOrBuilder getCodeCompilationConfigOrBuilder(); /** * * *
   * Output only. The fully resolved Git commit SHA of the code that was
   * compiled. Not set for compilation results whose source is a workspace.
   * 
* * string resolved_git_commit_sha = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return The resolvedGitCommitSha. */ java.lang.String getResolvedGitCommitSha(); /** * * *
   * Output only. The fully resolved Git commit SHA of the code that was
   * compiled. Not set for compilation results whose source is a workspace.
   * 
* * string resolved_git_commit_sha = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return The bytes for resolvedGitCommitSha. */ com.google.protobuf.ByteString getResolvedGitCommitShaBytes(); /** * * *
   * Output only. The version of `@dataform/core` that was used for compilation.
   * 
* * string dataform_core_version = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return The dataformCoreVersion. */ java.lang.String getDataformCoreVersion(); /** * * *
   * Output only. The version of `@dataform/core` that was used for compilation.
   * 
* * string dataform_core_version = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; * * @return The bytes for dataformCoreVersion. */ com.google.protobuf.ByteString getDataformCoreVersionBytes(); /** * * *
   * Output only. Errors encountered during project compilation.
   * 
* * * repeated .google.cloud.dataform.v1beta1.CompilationResult.CompilationError compilation_errors = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; * */ java.util.List getCompilationErrorsList(); /** * * *
   * Output only. Errors encountered during project compilation.
   * 
* * * repeated .google.cloud.dataform.v1beta1.CompilationResult.CompilationError compilation_errors = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; * */ com.google.cloud.dataform.v1beta1.CompilationResult.CompilationError getCompilationErrors( int index); /** * * *
   * Output only. Errors encountered during project compilation.
   * 
* * * repeated .google.cloud.dataform.v1beta1.CompilationResult.CompilationError compilation_errors = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; * */ int getCompilationErrorsCount(); /** * * *
   * Output only. Errors encountered during project compilation.
   * 
* * * repeated .google.cloud.dataform.v1beta1.CompilationResult.CompilationError compilation_errors = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; * */ java.util.List< ? extends com.google.cloud.dataform.v1beta1.CompilationResult.CompilationErrorOrBuilder> getCompilationErrorsOrBuilderList(); /** * * *
   * Output only. Errors encountered during project compilation.
   * 
* * * repeated .google.cloud.dataform.v1beta1.CompilationResult.CompilationError compilation_errors = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; * */ com.google.cloud.dataform.v1beta1.CompilationResult.CompilationErrorOrBuilder getCompilationErrorsOrBuilder(int index); com.google.cloud.dataform.v1beta1.CompilationResult.SourceCase getSourceCase(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy