com.google.cloud.deploy.v1.PrivatePoolOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-deploy-v1 Show documentation
Show all versions of proto-google-cloud-deploy-v1 Show documentation
Proto library for google-cloud-deploy
/*
* 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/deploy/v1/cloud_deploy.proto
// Protobuf Java Version: 3.25.3
package com.google.cloud.deploy.v1;
public interface PrivatePoolOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.deploy.v1.PrivatePool)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Required. Resource name of the Cloud Build worker pool to use. The format
* is `projects/{project}/locations/{location}/workerPools/{pool}`.
*
*
*
* string worker_pool = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
*
*
* @return The workerPool.
*/
java.lang.String getWorkerPool();
/**
*
*
*
* Required. Resource name of the Cloud Build worker pool to use. The format
* is `projects/{project}/locations/{location}/workerPools/{pool}`.
*
*
*
* string worker_pool = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
*
*
* @return The bytes for workerPool.
*/
com.google.protobuf.ByteString getWorkerPoolBytes();
/**
*
*
*
* Optional. Google service account to use for execution. If unspecified,
* the project execution service account
* (<PROJECT_NUMBER>-compute@developer.gserviceaccount.com) will be used.
*
*
* string service_account = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The serviceAccount.
*/
java.lang.String getServiceAccount();
/**
*
*
*
* Optional. Google service account to use for execution. If unspecified,
* the project execution service account
* (<PROJECT_NUMBER>-compute@developer.gserviceaccount.com) will be used.
*
*
* string service_account = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The bytes for serviceAccount.
*/
com.google.protobuf.ByteString getServiceAccountBytes();
/**
*
*
*
* Optional. Cloud Storage location where execution outputs should be stored.
* This can either be a bucket ("gs://my-bucket") or a path within a bucket
* ("gs://my-bucket/my-dir").
* If unspecified, a default bucket located in the same region will be used.
*
*
* string artifact_storage = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The artifactStorage.
*/
java.lang.String getArtifactStorage();
/**
*
*
*
* Optional. Cloud Storage location where execution outputs should be stored.
* This can either be a bucket ("gs://my-bucket") or a path within a bucket
* ("gs://my-bucket/my-dir").
* If unspecified, a default bucket located in the same region will be used.
*
*
* string artifact_storage = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The bytes for artifactStorage.
*/
com.google.protobuf.ByteString getArtifactStorageBytes();
}