com.google.cloudbuild.v1.ResultsOrBuilder 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 ResultsOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.devtools.cloudbuild.v1.Results)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Container images that were built as a part of the build.
*
*
* repeated .google.devtools.cloudbuild.v1.BuiltImage images = 2;
*/
java.util.List getImagesList();
/**
*
*
*
* Container images that were built as a part of the build.
*
*
* repeated .google.devtools.cloudbuild.v1.BuiltImage images = 2;
*/
com.google.cloudbuild.v1.BuiltImage getImages(int index);
/**
*
*
*
* Container images that were built as a part of the build.
*
*
* repeated .google.devtools.cloudbuild.v1.BuiltImage images = 2;
*/
int getImagesCount();
/**
*
*
*
* Container images that were built as a part of the build.
*
*
* repeated .google.devtools.cloudbuild.v1.BuiltImage images = 2;
*/
java.util.List extends com.google.cloudbuild.v1.BuiltImageOrBuilder> getImagesOrBuilderList();
/**
*
*
*
* Container images that were built as a part of the build.
*
*
* repeated .google.devtools.cloudbuild.v1.BuiltImage images = 2;
*/
com.google.cloudbuild.v1.BuiltImageOrBuilder getImagesOrBuilder(int index);
/**
*
*
*
* List of build step digests, in the order corresponding to build step
* indices.
*
*
* repeated string build_step_images = 3;
*
* @return A list containing the buildStepImages.
*/
java.util.List getBuildStepImagesList();
/**
*
*
*
* List of build step digests, in the order corresponding to build step
* indices.
*
*
* repeated string build_step_images = 3;
*
* @return The count of buildStepImages.
*/
int getBuildStepImagesCount();
/**
*
*
*
* List of build step digests, in the order corresponding to build step
* indices.
*
*
* repeated string build_step_images = 3;
*
* @param index The index of the element to return.
* @return The buildStepImages at the given index.
*/
java.lang.String getBuildStepImages(int index);
/**
*
*
*
* List of build step digests, in the order corresponding to build step
* indices.
*
*
* repeated string build_step_images = 3;
*
* @param index The index of the value to return.
* @return The bytes of the buildStepImages at the given index.
*/
com.google.protobuf.ByteString getBuildStepImagesBytes(int index);
/**
*
*
*
* Path to the artifact manifest for non-container artifacts uploaded to Cloud
* Storage. Only populated when artifacts are uploaded to Cloud Storage.
*
*
* string artifact_manifest = 4;
*
* @return The artifactManifest.
*/
java.lang.String getArtifactManifest();
/**
*
*
*
* Path to the artifact manifest for non-container artifacts uploaded to Cloud
* Storage. Only populated when artifacts are uploaded to Cloud Storage.
*
*
* string artifact_manifest = 4;
*
* @return The bytes for artifactManifest.
*/
com.google.protobuf.ByteString getArtifactManifestBytes();
/**
*
*
*
* Number of non-container artifacts uploaded to Cloud Storage. Only populated
* when artifacts are uploaded to Cloud Storage.
*
*
* int64 num_artifacts = 5;
*
* @return The numArtifacts.
*/
long getNumArtifacts();
/**
*
*
*
* List of build step outputs, produced by builder images, in the order
* corresponding to build step indices.
*
* [Cloud Builders](https://cloud.google.com/cloud-build/docs/cloud-builders)
* can produce this output by writing to `$BUILDER_OUTPUT/output`.
* Only the first 4KB of data is stored.
*
*
* repeated bytes build_step_outputs = 6;
*
* @return A list containing the buildStepOutputs.
*/
java.util.List getBuildStepOutputsList();
/**
*
*
*
* List of build step outputs, produced by builder images, in the order
* corresponding to build step indices.
*
* [Cloud Builders](https://cloud.google.com/cloud-build/docs/cloud-builders)
* can produce this output by writing to `$BUILDER_OUTPUT/output`.
* Only the first 4KB of data is stored.
*
*
* repeated bytes build_step_outputs = 6;
*
* @return The count of buildStepOutputs.
*/
int getBuildStepOutputsCount();
/**
*
*
*
* List of build step outputs, produced by builder images, in the order
* corresponding to build step indices.
*
* [Cloud Builders](https://cloud.google.com/cloud-build/docs/cloud-builders)
* can produce this output by writing to `$BUILDER_OUTPUT/output`.
* Only the first 4KB of data is stored.
*
*
* repeated bytes build_step_outputs = 6;
*
* @param index The index of the element to return.
* @return The buildStepOutputs at the given index.
*/
com.google.protobuf.ByteString getBuildStepOutputs(int index);
/**
*
*
*
* Time to push all non-container artifacts to Cloud Storage.
*
*
* .google.devtools.cloudbuild.v1.TimeSpan artifact_timing = 7;
*
* @return Whether the artifactTiming field is set.
*/
boolean hasArtifactTiming();
/**
*
*
*
* Time to push all non-container artifacts to Cloud Storage.
*
*
* .google.devtools.cloudbuild.v1.TimeSpan artifact_timing = 7;
*
* @return The artifactTiming.
*/
com.google.cloudbuild.v1.TimeSpan getArtifactTiming();
/**
*
*
*
* Time to push all non-container artifacts to Cloud Storage.
*
*
* .google.devtools.cloudbuild.v1.TimeSpan artifact_timing = 7;
*/
com.google.cloudbuild.v1.TimeSpanOrBuilder getArtifactTimingOrBuilder();
/**
*
*
*
* Python artifacts uploaded to Artifact Registry at the end of the build.
*
*
* repeated .google.devtools.cloudbuild.v1.UploadedPythonPackage python_packages = 8;
*/
java.util.List getPythonPackagesList();
/**
*
*
*
* Python artifacts uploaded to Artifact Registry at the end of the build.
*
*
* repeated .google.devtools.cloudbuild.v1.UploadedPythonPackage python_packages = 8;
*/
com.google.cloudbuild.v1.UploadedPythonPackage getPythonPackages(int index);
/**
*
*
*
* Python artifacts uploaded to Artifact Registry at the end of the build.
*
*
* repeated .google.devtools.cloudbuild.v1.UploadedPythonPackage python_packages = 8;
*/
int getPythonPackagesCount();
/**
*
*
*
* Python artifacts uploaded to Artifact Registry at the end of the build.
*
*
* repeated .google.devtools.cloudbuild.v1.UploadedPythonPackage python_packages = 8;
*/
java.util.List extends com.google.cloudbuild.v1.UploadedPythonPackageOrBuilder>
getPythonPackagesOrBuilderList();
/**
*
*
*
* Python artifacts uploaded to Artifact Registry at the end of the build.
*
*
* repeated .google.devtools.cloudbuild.v1.UploadedPythonPackage python_packages = 8;
*/
com.google.cloudbuild.v1.UploadedPythonPackageOrBuilder getPythonPackagesOrBuilder(int index);
/**
*
*
*
* Maven artifacts uploaded to Artifact Registry at the end of the build.
*
*
* repeated .google.devtools.cloudbuild.v1.UploadedMavenArtifact maven_artifacts = 9;
*/
java.util.List getMavenArtifactsList();
/**
*
*
*
* Maven artifacts uploaded to Artifact Registry at the end of the build.
*
*
* repeated .google.devtools.cloudbuild.v1.UploadedMavenArtifact maven_artifacts = 9;
*/
com.google.cloudbuild.v1.UploadedMavenArtifact getMavenArtifacts(int index);
/**
*
*
*
* Maven artifacts uploaded to Artifact Registry at the end of the build.
*
*
* repeated .google.devtools.cloudbuild.v1.UploadedMavenArtifact maven_artifacts = 9;
*/
int getMavenArtifactsCount();
/**
*
*
*
* Maven artifacts uploaded to Artifact Registry at the end of the build.
*
*
* repeated .google.devtools.cloudbuild.v1.UploadedMavenArtifact maven_artifacts = 9;
*/
java.util.List extends com.google.cloudbuild.v1.UploadedMavenArtifactOrBuilder>
getMavenArtifactsOrBuilderList();
/**
*
*
*
* Maven artifacts uploaded to Artifact Registry at the end of the build.
*
*
* repeated .google.devtools.cloudbuild.v1.UploadedMavenArtifact maven_artifacts = 9;
*/
com.google.cloudbuild.v1.UploadedMavenArtifactOrBuilder getMavenArtifactsOrBuilder(int index);
/**
*
*
*
* Npm packages uploaded to Artifact Registry at the end of the build.
*
*
* repeated .google.devtools.cloudbuild.v1.UploadedNpmPackage npm_packages = 12;
*/
java.util.List getNpmPackagesList();
/**
*
*
*
* Npm packages uploaded to Artifact Registry at the end of the build.
*
*
* repeated .google.devtools.cloudbuild.v1.UploadedNpmPackage npm_packages = 12;
*/
com.google.cloudbuild.v1.UploadedNpmPackage getNpmPackages(int index);
/**
*
*
*
* Npm packages uploaded to Artifact Registry at the end of the build.
*
*
* repeated .google.devtools.cloudbuild.v1.UploadedNpmPackage npm_packages = 12;
*/
int getNpmPackagesCount();
/**
*
*
*
* Npm packages uploaded to Artifact Registry at the end of the build.
*
*
* repeated .google.devtools.cloudbuild.v1.UploadedNpmPackage npm_packages = 12;
*/
java.util.List extends com.google.cloudbuild.v1.UploadedNpmPackageOrBuilder>
getNpmPackagesOrBuilderList();
/**
*
*
*
* Npm packages uploaded to Artifact Registry at the end of the build.
*
*
* repeated .google.devtools.cloudbuild.v1.UploadedNpmPackage npm_packages = 12;
*/
com.google.cloudbuild.v1.UploadedNpmPackageOrBuilder getNpmPackagesOrBuilder(int index);
}