com.google.cloudbuild.v1.ArtifactsOrBuilder 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 ArtifactsOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.devtools.cloudbuild.v1.Artifacts)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* A list of images to be pushed upon the successful completion of all build
* steps.
*
* The images will be pushed using the builder service account's credentials.
*
* The digests of the pushed images will be stored in the Build resource's
* results field.
*
* If any of the images fail to be pushed, the build is marked FAILURE.
*
*
* repeated string images = 1;
*
* @return A list containing the images.
*/
java.util.List getImagesList();
/**
*
*
*
* A list of images to be pushed upon the successful completion of all build
* steps.
*
* The images will be pushed using the builder service account's credentials.
*
* The digests of the pushed images will be stored in the Build resource's
* results field.
*
* If any of the images fail to be pushed, the build is marked FAILURE.
*
*
* repeated string images = 1;
*
* @return The count of images.
*/
int getImagesCount();
/**
*
*
*
* A list of images to be pushed upon the successful completion of all build
* steps.
*
* The images will be pushed using the builder service account's credentials.
*
* The digests of the pushed images will be stored in the Build resource's
* results field.
*
* If any of the images fail to be pushed, the build is marked FAILURE.
*
*
* repeated string images = 1;
*
* @param index The index of the element to return.
* @return The images at the given index.
*/
java.lang.String getImages(int index);
/**
*
*
*
* A list of images to be pushed upon the successful completion of all build
* steps.
*
* The images will be pushed using the builder service account's credentials.
*
* The digests of the pushed images will be stored in the Build resource's
* results field.
*
* If any of the images fail to be pushed, the build is marked FAILURE.
*
*
* repeated string images = 1;
*
* @param index The index of the value to return.
* @return The bytes of the images at the given index.
*/
com.google.protobuf.ByteString getImagesBytes(int index);
/**
*
*
*
* A list of objects to be uploaded to Cloud Storage upon successful
* completion of all build steps.
*
* Files in the workspace matching specified paths globs will be uploaded to
* the specified Cloud Storage location using the builder service account's
* credentials.
*
* The location and generation of the uploaded objects will be stored in the
* Build resource's results field.
*
* If any objects fail to be pushed, the build is marked FAILURE.
*
*
* .google.devtools.cloudbuild.v1.Artifacts.ArtifactObjects objects = 2;
*
* @return Whether the objects field is set.
*/
boolean hasObjects();
/**
*
*
*
* A list of objects to be uploaded to Cloud Storage upon successful
* completion of all build steps.
*
* Files in the workspace matching specified paths globs will be uploaded to
* the specified Cloud Storage location using the builder service account's
* credentials.
*
* The location and generation of the uploaded objects will be stored in the
* Build resource's results field.
*
* If any objects fail to be pushed, the build is marked FAILURE.
*
*
* .google.devtools.cloudbuild.v1.Artifacts.ArtifactObjects objects = 2;
*
* @return The objects.
*/
com.google.cloudbuild.v1.Artifacts.ArtifactObjects getObjects();
/**
*
*
*
* A list of objects to be uploaded to Cloud Storage upon successful
* completion of all build steps.
*
* Files in the workspace matching specified paths globs will be uploaded to
* the specified Cloud Storage location using the builder service account's
* credentials.
*
* The location and generation of the uploaded objects will be stored in the
* Build resource's results field.
*
* If any objects fail to be pushed, the build is marked FAILURE.
*
*
* .google.devtools.cloudbuild.v1.Artifacts.ArtifactObjects objects = 2;
*/
com.google.cloudbuild.v1.Artifacts.ArtifactObjectsOrBuilder getObjectsOrBuilder();
/**
*
*
*
* A list of Maven artifacts to be uploaded to Artifact Registry upon
* successful completion of all build steps.
*
* Artifacts in the workspace matching specified paths globs will be uploaded
* to the specified Artifact Registry repository using the builder service
* account's credentials.
*
* If any artifacts fail to be pushed, the build is marked FAILURE.
*
*
* repeated .google.devtools.cloudbuild.v1.Artifacts.MavenArtifact maven_artifacts = 3;
*
*/
java.util.List getMavenArtifactsList();
/**
*
*
*
* A list of Maven artifacts to be uploaded to Artifact Registry upon
* successful completion of all build steps.
*
* Artifacts in the workspace matching specified paths globs will be uploaded
* to the specified Artifact Registry repository using the builder service
* account's credentials.
*
* If any artifacts fail to be pushed, the build is marked FAILURE.
*
*
* repeated .google.devtools.cloudbuild.v1.Artifacts.MavenArtifact maven_artifacts = 3;
*
*/
com.google.cloudbuild.v1.Artifacts.MavenArtifact getMavenArtifacts(int index);
/**
*
*
*
* A list of Maven artifacts to be uploaded to Artifact Registry upon
* successful completion of all build steps.
*
* Artifacts in the workspace matching specified paths globs will be uploaded
* to the specified Artifact Registry repository using the builder service
* account's credentials.
*
* If any artifacts fail to be pushed, the build is marked FAILURE.
*
*
* repeated .google.devtools.cloudbuild.v1.Artifacts.MavenArtifact maven_artifacts = 3;
*
*/
int getMavenArtifactsCount();
/**
*
*
*
* A list of Maven artifacts to be uploaded to Artifact Registry upon
* successful completion of all build steps.
*
* Artifacts in the workspace matching specified paths globs will be uploaded
* to the specified Artifact Registry repository using the builder service
* account's credentials.
*
* If any artifacts fail to be pushed, the build is marked FAILURE.
*
*
* repeated .google.devtools.cloudbuild.v1.Artifacts.MavenArtifact maven_artifacts = 3;
*
*/
java.util.List extends com.google.cloudbuild.v1.Artifacts.MavenArtifactOrBuilder>
getMavenArtifactsOrBuilderList();
/**
*
*
*
* A list of Maven artifacts to be uploaded to Artifact Registry upon
* successful completion of all build steps.
*
* Artifacts in the workspace matching specified paths globs will be uploaded
* to the specified Artifact Registry repository using the builder service
* account's credentials.
*
* If any artifacts fail to be pushed, the build is marked FAILURE.
*
*
* repeated .google.devtools.cloudbuild.v1.Artifacts.MavenArtifact maven_artifacts = 3;
*
*/
com.google.cloudbuild.v1.Artifacts.MavenArtifactOrBuilder getMavenArtifactsOrBuilder(int index);
/**
*
*
*
* A list of Python packages to be uploaded to Artifact Registry upon
* successful completion of all build steps.
*
* The build service account credentials will be used to perform the upload.
*
* If any objects fail to be pushed, the build is marked FAILURE.
*
*
* repeated .google.devtools.cloudbuild.v1.Artifacts.PythonPackage python_packages = 5;
*
*/
java.util.List getPythonPackagesList();
/**
*
*
*
* A list of Python packages to be uploaded to Artifact Registry upon
* successful completion of all build steps.
*
* The build service account credentials will be used to perform the upload.
*
* If any objects fail to be pushed, the build is marked FAILURE.
*
*
* repeated .google.devtools.cloudbuild.v1.Artifacts.PythonPackage python_packages = 5;
*
*/
com.google.cloudbuild.v1.Artifacts.PythonPackage getPythonPackages(int index);
/**
*
*
*
* A list of Python packages to be uploaded to Artifact Registry upon
* successful completion of all build steps.
*
* The build service account credentials will be used to perform the upload.
*
* If any objects fail to be pushed, the build is marked FAILURE.
*
*
* repeated .google.devtools.cloudbuild.v1.Artifacts.PythonPackage python_packages = 5;
*
*/
int getPythonPackagesCount();
/**
*
*
*
* A list of Python packages to be uploaded to Artifact Registry upon
* successful completion of all build steps.
*
* The build service account credentials will be used to perform the upload.
*
* If any objects fail to be pushed, the build is marked FAILURE.
*
*
* repeated .google.devtools.cloudbuild.v1.Artifacts.PythonPackage python_packages = 5;
*
*/
java.util.List extends com.google.cloudbuild.v1.Artifacts.PythonPackageOrBuilder>
getPythonPackagesOrBuilderList();
/**
*
*
*
* A list of Python packages to be uploaded to Artifact Registry upon
* successful completion of all build steps.
*
* The build service account credentials will be used to perform the upload.
*
* If any objects fail to be pushed, the build is marked FAILURE.
*
*
* repeated .google.devtools.cloudbuild.v1.Artifacts.PythonPackage python_packages = 5;
*
*/
com.google.cloudbuild.v1.Artifacts.PythonPackageOrBuilder getPythonPackagesOrBuilder(int index);
/**
*
*
*
* A list of npm packages to be uploaded to Artifact Registry upon
* successful completion of all build steps.
*
* Npm packages in the specified paths will be uploaded
* to the specified Artifact Registry repository using the builder service
* account's credentials.
*
* If any packages fail to be pushed, the build is marked FAILURE.
*
*
* repeated .google.devtools.cloudbuild.v1.Artifacts.NpmPackage npm_packages = 6;
*/
java.util.List getNpmPackagesList();
/**
*
*
*
* A list of npm packages to be uploaded to Artifact Registry upon
* successful completion of all build steps.
*
* Npm packages in the specified paths will be uploaded
* to the specified Artifact Registry repository using the builder service
* account's credentials.
*
* If any packages fail to be pushed, the build is marked FAILURE.
*
*
* repeated .google.devtools.cloudbuild.v1.Artifacts.NpmPackage npm_packages = 6;
*/
com.google.cloudbuild.v1.Artifacts.NpmPackage getNpmPackages(int index);
/**
*
*
*
* A list of npm packages to be uploaded to Artifact Registry upon
* successful completion of all build steps.
*
* Npm packages in the specified paths will be uploaded
* to the specified Artifact Registry repository using the builder service
* account's credentials.
*
* If any packages fail to be pushed, the build is marked FAILURE.
*
*
* repeated .google.devtools.cloudbuild.v1.Artifacts.NpmPackage npm_packages = 6;
*/
int getNpmPackagesCount();
/**
*
*
*
* A list of npm packages to be uploaded to Artifact Registry upon
* successful completion of all build steps.
*
* Npm packages in the specified paths will be uploaded
* to the specified Artifact Registry repository using the builder service
* account's credentials.
*
* If any packages fail to be pushed, the build is marked FAILURE.
*
*
* repeated .google.devtools.cloudbuild.v1.Artifacts.NpmPackage npm_packages = 6;
*/
java.util.List extends com.google.cloudbuild.v1.Artifacts.NpmPackageOrBuilder>
getNpmPackagesOrBuilderList();
/**
*
*
*
* A list of npm packages to be uploaded to Artifact Registry upon
* successful completion of all build steps.
*
* Npm packages in the specified paths will be uploaded
* to the specified Artifact Registry repository using the builder service
* account's credentials.
*
* If any packages fail to be pushed, the build is marked FAILURE.
*
*
* repeated .google.devtools.cloudbuild.v1.Artifacts.NpmPackage npm_packages = 6;
*/
com.google.cloudbuild.v1.Artifacts.NpmPackageOrBuilder getNpmPackagesOrBuilder(int index);
}