com.google.cloud.dataform.v1alpha2.CompilationResultOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-dataform-v1alpha2 Show documentation
Show all versions of proto-google-cloud-dataform-v1alpha2 Show documentation
Proto library for google-cloud-dataform
/*
* 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/v1alpha2/dataform.proto
// Protobuf Java Version: 3.25.4
package com.google.cloud.dataform.v1alpha2;
public interface CompilationResultOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.dataform.v1alpha2.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. If set, fields of `code_compilation_overrides` override the default
* compilation settings that are specified in dataform.json.
*
*
*
* .google.cloud.dataform.v1alpha2.CompilationResult.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_overrides` override the default
* compilation settings that are specified in dataform.json.
*
*
*
* .google.cloud.dataform.v1alpha2.CompilationResult.CodeCompilationConfig code_compilation_config = 4 [(.google.api.field_behavior) = IMMUTABLE];
*
*
* @return The codeCompilationConfig.
*/
com.google.cloud.dataform.v1alpha2.CompilationResult.CodeCompilationConfig
getCodeCompilationConfig();
/**
*
*
*
* Immutable. If set, fields of `code_compilation_overrides` override the default
* compilation settings that are specified in dataform.json.
*
*
*
* .google.cloud.dataform.v1alpha2.CompilationResult.CodeCompilationConfig code_compilation_config = 4 [(.google.api.field_behavior) = IMMUTABLE];
*
*/
com.google.cloud.dataform.v1alpha2.CompilationResult.CodeCompilationConfigOrBuilder
getCodeCompilationConfigOrBuilder();
/**
*
*
*
* 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.v1alpha2.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.v1alpha2.CompilationResult.CompilationError compilation_errors = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*/
com.google.cloud.dataform.v1alpha2.CompilationResult.CompilationError getCompilationErrors(
int index);
/**
*
*
*
* Output only. Errors encountered during project compilation.
*
*
*
* repeated .google.cloud.dataform.v1alpha2.CompilationResult.CompilationError compilation_errors = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*/
int getCompilationErrorsCount();
/**
*
*
*
* Output only. Errors encountered during project compilation.
*
*
*
* repeated .google.cloud.dataform.v1alpha2.CompilationResult.CompilationError compilation_errors = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*/
java.util.List<
? extends com.google.cloud.dataform.v1alpha2.CompilationResult.CompilationErrorOrBuilder>
getCompilationErrorsOrBuilderList();
/**
*
*
*
* Output only. Errors encountered during project compilation.
*
*
*
* repeated .google.cloud.dataform.v1alpha2.CompilationResult.CompilationError compilation_errors = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*/
com.google.cloud.dataform.v1alpha2.CompilationResult.CompilationErrorOrBuilder
getCompilationErrorsOrBuilder(int index);
com.google.cloud.dataform.v1alpha2.CompilationResult.SourceCase getSourceCase();
}