com.google.cloudbuild.v1.UpdateWorkerPoolOperationMetadataOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-build-v1 Show documentation
Show all versions of proto-google-cloud-build-v1 Show documentation
PROTO library for proto-google-cloud-build-v1
The 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/devtools/cloudbuild/v1/cloudbuild.proto
// Protobuf Java Version: 3.25.4
package com.google.cloudbuild.v1;
public interface UpdateWorkerPoolOperationMetadataOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.devtools.cloudbuild.v1.UpdateWorkerPoolOperationMetadata)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* The resource name of the `WorkerPool` being updated.
* Format:
* `projects/{project}/locations/{location}/workerPools/{worker_pool}`.
*
*
* string worker_pool = 1 [(.google.api.resource_reference) = { ... }
*
* @return The workerPool.
*/
java.lang.String getWorkerPool();
/**
*
*
*
* The resource name of the `WorkerPool` being updated.
* Format:
* `projects/{project}/locations/{location}/workerPools/{worker_pool}`.
*
*
* string worker_pool = 1 [(.google.api.resource_reference) = { ... }
*
* @return The bytes for workerPool.
*/
com.google.protobuf.ByteString getWorkerPoolBytes();
/**
*
*
*
* Time the operation was created.
*
*
* .google.protobuf.Timestamp create_time = 2;
*
* @return Whether the createTime field is set.
*/
boolean hasCreateTime();
/**
*
*
*
* Time the operation was created.
*
*
* .google.protobuf.Timestamp create_time = 2;
*
* @return The createTime.
*/
com.google.protobuf.Timestamp getCreateTime();
/**
*
*
*
* Time the operation was created.
*
*
* .google.protobuf.Timestamp create_time = 2;
*/
com.google.protobuf.TimestampOrBuilder getCreateTimeOrBuilder();
/**
*
*
*
* Time the operation was completed.
*
*
* .google.protobuf.Timestamp complete_time = 3;
*
* @return Whether the completeTime field is set.
*/
boolean hasCompleteTime();
/**
*
*
*
* Time the operation was completed.
*
*
* .google.protobuf.Timestamp complete_time = 3;
*
* @return The completeTime.
*/
com.google.protobuf.Timestamp getCompleteTime();
/**
*
*
*
* Time the operation was completed.
*
*
* .google.protobuf.Timestamp complete_time = 3;
*/
com.google.protobuf.TimestampOrBuilder getCompleteTimeOrBuilder();
}