com.google.appengine.v1.DeploymentOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-appengine-admin-v1 Show documentation
Show all versions of proto-google-cloud-appengine-admin-v1 Show documentation
Proto library for google-cloud-appengine-admin
/*
* 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/appengine/v1/deploy.proto
// Protobuf Java Version: 3.25.4
package com.google.appengine.v1;
public interface DeploymentOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.appengine.v1.Deployment)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Manifest of the files stored in Google Cloud Storage that are included
* as part of this version. All files must be readable using the
* credentials supplied with this call.
*
*
* map<string, .google.appengine.v1.FileInfo> files = 1;
*/
int getFilesCount();
/**
*
*
*
* Manifest of the files stored in Google Cloud Storage that are included
* as part of this version. All files must be readable using the
* credentials supplied with this call.
*
*
* map<string, .google.appengine.v1.FileInfo> files = 1;
*/
boolean containsFiles(java.lang.String key);
/** Use {@link #getFilesMap()} instead. */
@java.lang.Deprecated
java.util.Map getFiles();
/**
*
*
*
* Manifest of the files stored in Google Cloud Storage that are included
* as part of this version. All files must be readable using the
* credentials supplied with this call.
*
*
* map<string, .google.appengine.v1.FileInfo> files = 1;
*/
java.util.Map getFilesMap();
/**
*
*
*
* Manifest of the files stored in Google Cloud Storage that are included
* as part of this version. All files must be readable using the
* credentials supplied with this call.
*
*
* map<string, .google.appengine.v1.FileInfo> files = 1;
*/
/* nullable */
com.google.appengine.v1.FileInfo getFilesOrDefault(
java.lang.String key,
/* nullable */
com.google.appengine.v1.FileInfo defaultValue);
/**
*
*
*
* Manifest of the files stored in Google Cloud Storage that are included
* as part of this version. All files must be readable using the
* credentials supplied with this call.
*
*
* map<string, .google.appengine.v1.FileInfo> files = 1;
*/
com.google.appengine.v1.FileInfo getFilesOrThrow(java.lang.String key);
/**
*
*
*
* The Docker image for the container that runs the version.
* Only applicable for instances running in the App Engine flexible environment.
*
*
* .google.appengine.v1.ContainerInfo container = 2;
*
* @return Whether the container field is set.
*/
boolean hasContainer();
/**
*
*
*
* The Docker image for the container that runs the version.
* Only applicable for instances running in the App Engine flexible environment.
*
*
* .google.appengine.v1.ContainerInfo container = 2;
*
* @return The container.
*/
com.google.appengine.v1.ContainerInfo getContainer();
/**
*
*
*
* The Docker image for the container that runs the version.
* Only applicable for instances running in the App Engine flexible environment.
*
*
* .google.appengine.v1.ContainerInfo container = 2;
*/
com.google.appengine.v1.ContainerInfoOrBuilder getContainerOrBuilder();
/**
*
*
*
* The zip file for this deployment, if this is a zip deployment.
*
*
* .google.appengine.v1.ZipInfo zip = 3;
*
* @return Whether the zip field is set.
*/
boolean hasZip();
/**
*
*
*
* The zip file for this deployment, if this is a zip deployment.
*
*
* .google.appengine.v1.ZipInfo zip = 3;
*
* @return The zip.
*/
com.google.appengine.v1.ZipInfo getZip();
/**
*
*
*
* The zip file for this deployment, if this is a zip deployment.
*
*
* .google.appengine.v1.ZipInfo zip = 3;
*/
com.google.appengine.v1.ZipInfoOrBuilder getZipOrBuilder();
/**
*
*
*
* Options for any Google Cloud Build builds created as a part of this
* deployment.
*
* These options will only be used if a new build is created, such as when
* deploying to the App Engine flexible environment using files or zip.
*
*
* .google.appengine.v1.CloudBuildOptions cloud_build_options = 6;
*
* @return Whether the cloudBuildOptions field is set.
*/
boolean hasCloudBuildOptions();
/**
*
*
*
* Options for any Google Cloud Build builds created as a part of this
* deployment.
*
* These options will only be used if a new build is created, such as when
* deploying to the App Engine flexible environment using files or zip.
*
*
* .google.appengine.v1.CloudBuildOptions cloud_build_options = 6;
*
* @return The cloudBuildOptions.
*/
com.google.appengine.v1.CloudBuildOptions getCloudBuildOptions();
/**
*
*
*
* Options for any Google Cloud Build builds created as a part of this
* deployment.
*
* These options will only be used if a new build is created, such as when
* deploying to the App Engine flexible environment using files or zip.
*
*
* .google.appengine.v1.CloudBuildOptions cloud_build_options = 6;
*/
com.google.appengine.v1.CloudBuildOptionsOrBuilder getCloudBuildOptionsOrBuilder();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy