com.google.appengine.v1.ServiceOrBuilder 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 2020 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/service.proto
package com.google.appengine.v1;
public interface ServiceOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.appengine.v1.Service)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Full path to the Service resource in the API.
* Example: `apps/myapp/services/default`.
* @OutputOnly
*
*
* string name = 1;
*
* @return The name.
*/
java.lang.String getName();
/**
*
*
*
* Full path to the Service resource in the API.
* Example: `apps/myapp/services/default`.
* @OutputOnly
*
*
* string name = 1;
*
* @return The bytes for name.
*/
com.google.protobuf.ByteString getNameBytes();
/**
*
*
*
* Relative name of the service within the application.
* Example: `default`.
* @OutputOnly
*
*
* string id = 2;
*
* @return The id.
*/
java.lang.String getId();
/**
*
*
*
* Relative name of the service within the application.
* Example: `default`.
* @OutputOnly
*
*
* string id = 2;
*
* @return The bytes for id.
*/
com.google.protobuf.ByteString getIdBytes();
/**
*
*
*
* Mapping that defines fractional HTTP traffic diversion to
* different versions within the service.
*
*
* .google.appengine.v1.TrafficSplit split = 3;
*
* @return Whether the split field is set.
*/
boolean hasSplit();
/**
*
*
*
* Mapping that defines fractional HTTP traffic diversion to
* different versions within the service.
*
*
* .google.appengine.v1.TrafficSplit split = 3;
*
* @return The split.
*/
com.google.appengine.v1.TrafficSplit getSplit();
/**
*
*
*
* Mapping that defines fractional HTTP traffic diversion to
* different versions within the service.
*
*
* .google.appengine.v1.TrafficSplit split = 3;
*/
com.google.appengine.v1.TrafficSplitOrBuilder getSplitOrBuilder();
/**
*
*
*
* Ingress settings for this service. Will apply to all versions.
*
*
* .google.appengine.v1.NetworkSettings network_settings = 6;
*
* @return Whether the networkSettings field is set.
*/
boolean hasNetworkSettings();
/**
*
*
*
* Ingress settings for this service. Will apply to all versions.
*
*
* .google.appengine.v1.NetworkSettings network_settings = 6;
*
* @return The networkSettings.
*/
com.google.appengine.v1.NetworkSettings getNetworkSettings();
/**
*
*
*
* Ingress settings for this service. Will apply to all versions.
*
*
* .google.appengine.v1.NetworkSettings network_settings = 6;
*/
com.google.appengine.v1.NetworkSettingsOrBuilder getNetworkSettingsOrBuilder();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy