com.google.api.services.run.v1alpha1.model.ServiceSpec Maven / Gradle / Ivy
/*
* Copyright 2010 Google Inc.
*
* 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
*
* http://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.
*/
/*
* This code was generated by https://code.google.com/p/google-apis-client-generator/
* (build: 2018-10-08 17:45:39 UTC)
* on 2019-11-08 at 00:46:02 UTC
* Modify at your own risk.
*/
package com.google.api.services.run.v1alpha1.model;
/**
* ServiceSpec holds the desired state of the Route (from the client), which is used to manipulate
* the underlying Route and Configuration(s).
*
* This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Cloud Run API. For a detailed explanation see:
* http://code.google.com/p/google-http-java-client/wiki/JSON
*
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class ServiceSpec extends com.google.api.client.json.GenericJson {
/**
* Deprecated and not currently populated by Cloud Run. See metadata.generation instead, which is
* the sequence number containing the latest generation of the desired state.
*
* Read-only.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Integer generation;
/**
* Manual contains the options for configuring a manual service. See ServiceSpec for more details.
*
* Not currently supported by Cloud Run.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private ServiceSpecManualType manual;
/**
* Pins this service to a specific revision name. The revision must be owned by the configuration
* provided.
*
* Deprecated and not supported by Cloud Run. +optional
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private ServiceSpecPinnedType pinned;
/**
* Release enables gradual promotion of new revisions by allowing traffic to be split between two
* revisions. This type replaces the deprecated Pinned type.
*
* Not currently supported by Cloud Run.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private ServiceSpecReleaseType release;
/**
* RunLatest defines a simple Service. It will automatically configure a route that keeps the
* latest ready revision from the supplied configuration running. +optional
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private ServiceSpecRunLatest runLatest;
/**
* Template holds the latest specification for the Revision to be stamped out.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private RevisionTemplate template;
/**
* Traffic specifies how to distribute traffic over a collection of Knative Revisions and
* Configurations.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.List traffic;
/**
* Deprecated and not currently populated by Cloud Run. See metadata.generation instead, which is
* the sequence number containing the latest generation of the desired state.
*
* Read-only.
* @return value or {@code null} for none
*/
public java.lang.Integer getGeneration() {
return generation;
}
/**
* Deprecated and not currently populated by Cloud Run. See metadata.generation instead, which is
* the sequence number containing the latest generation of the desired state.
*
* Read-only.
* @param generation generation or {@code null} for none
*/
public ServiceSpec setGeneration(java.lang.Integer generation) {
this.generation = generation;
return this;
}
/**
* Manual contains the options for configuring a manual service. See ServiceSpec for more details.
*
* Not currently supported by Cloud Run.
* @return value or {@code null} for none
*/
public ServiceSpecManualType getManual() {
return manual;
}
/**
* Manual contains the options for configuring a manual service. See ServiceSpec for more details.
*
* Not currently supported by Cloud Run.
* @param manual manual or {@code null} for none
*/
public ServiceSpec setManual(ServiceSpecManualType manual) {
this.manual = manual;
return this;
}
/**
* Pins this service to a specific revision name. The revision must be owned by the configuration
* provided.
*
* Deprecated and not supported by Cloud Run. +optional
* @return value or {@code null} for none
*/
public ServiceSpecPinnedType getPinned() {
return pinned;
}
/**
* Pins this service to a specific revision name. The revision must be owned by the configuration
* provided.
*
* Deprecated and not supported by Cloud Run. +optional
* @param pinned pinned or {@code null} for none
*/
public ServiceSpec setPinned(ServiceSpecPinnedType pinned) {
this.pinned = pinned;
return this;
}
/**
* Release enables gradual promotion of new revisions by allowing traffic to be split between two
* revisions. This type replaces the deprecated Pinned type.
*
* Not currently supported by Cloud Run.
* @return value or {@code null} for none
*/
public ServiceSpecReleaseType getRelease() {
return release;
}
/**
* Release enables gradual promotion of new revisions by allowing traffic to be split between two
* revisions. This type replaces the deprecated Pinned type.
*
* Not currently supported by Cloud Run.
* @param release release or {@code null} for none
*/
public ServiceSpec setRelease(ServiceSpecReleaseType release) {
this.release = release;
return this;
}
/**
* RunLatest defines a simple Service. It will automatically configure a route that keeps the
* latest ready revision from the supplied configuration running. +optional
* @return value or {@code null} for none
*/
public ServiceSpecRunLatest getRunLatest() {
return runLatest;
}
/**
* RunLatest defines a simple Service. It will automatically configure a route that keeps the
* latest ready revision from the supplied configuration running. +optional
* @param runLatest runLatest or {@code null} for none
*/
public ServiceSpec setRunLatest(ServiceSpecRunLatest runLatest) {
this.runLatest = runLatest;
return this;
}
/**
* Template holds the latest specification for the Revision to be stamped out.
* @return value or {@code null} for none
*/
public RevisionTemplate getTemplate() {
return template;
}
/**
* Template holds the latest specification for the Revision to be stamped out.
* @param template template or {@code null} for none
*/
public ServiceSpec setTemplate(RevisionTemplate template) {
this.template = template;
return this;
}
/**
* Traffic specifies how to distribute traffic over a collection of Knative Revisions and
* Configurations.
* @return value or {@code null} for none
*/
public java.util.List getTraffic() {
return traffic;
}
/**
* Traffic specifies how to distribute traffic over a collection of Knative Revisions and
* Configurations.
* @param traffic traffic or {@code null} for none
*/
public ServiceSpec setTraffic(java.util.List traffic) {
this.traffic = traffic;
return this;
}
@Override
public ServiceSpec set(String fieldName, Object value) {
return (ServiceSpec) super.set(fieldName, value);
}
@Override
public ServiceSpec clone() {
return (ServiceSpec) super.clone();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy