com.google.api.services.run.v1.model.Task Maven / Gradle / Ivy
/*
* 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://github.com/googleapis/google-api-java-client-services/
* Modify at your own risk.
*/
package com.google.api.services.run.v1.model;
/**
* Task represents a single run of a container to completion.
*
* 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 Admin API. For a detailed explanation see:
* https://developers.google.com/api-client-library/java/google-http-java-client/json
*
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class Task extends com.google.api.client.json.GenericJson {
/**
* Optional. APIVersion defines the versioned schema of this representation of an object. Servers
* should convert recognized schemas to the latest internal value, and may reject unrecognized
* values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-
* conventions.md#resources
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String apiVersion;
/**
* Optional. Kind is a string value representing the REST resource this object represents. Servers
* may infer this from the endpoint the client submits requests to. Cannot be updated. In
* CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-
* conventions.md#types-kinds
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String kind;
/**
* Optional. Standard object's metadata. More info:
* https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private ObjectMeta metadata;
/**
* Optional. Specification of the desired behavior of a task. More info:
* https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-
* status
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private TaskSpec spec;
/**
* Output only. Current status of a task. More info:
* https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-
* status
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private TaskStatus status;
/**
* Optional. APIVersion defines the versioned schema of this representation of an object. Servers
* should convert recognized schemas to the latest internal value, and may reject unrecognized
* values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-
* conventions.md#resources
* @return value or {@code null} for none
*/
public java.lang.String getApiVersion() {
return apiVersion;
}
/**
* Optional. APIVersion defines the versioned schema of this representation of an object. Servers
* should convert recognized schemas to the latest internal value, and may reject unrecognized
* values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-
* conventions.md#resources
* @param apiVersion apiVersion or {@code null} for none
*/
public Task setApiVersion(java.lang.String apiVersion) {
this.apiVersion = apiVersion;
return this;
}
/**
* Optional. Kind is a string value representing the REST resource this object represents. Servers
* may infer this from the endpoint the client submits requests to. Cannot be updated. In
* CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-
* conventions.md#types-kinds
* @return value or {@code null} for none
*/
public java.lang.String getKind() {
return kind;
}
/**
* Optional. Kind is a string value representing the REST resource this object represents. Servers
* may infer this from the endpoint the client submits requests to. Cannot be updated. In
* CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-
* conventions.md#types-kinds
* @param kind kind or {@code null} for none
*/
public Task setKind(java.lang.String kind) {
this.kind = kind;
return this;
}
/**
* Optional. Standard object's metadata. More info:
* https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
* @return value or {@code null} for none
*/
public ObjectMeta getMetadata() {
return metadata;
}
/**
* Optional. Standard object's metadata. More info:
* https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
* @param metadata metadata or {@code null} for none
*/
public Task setMetadata(ObjectMeta metadata) {
this.metadata = metadata;
return this;
}
/**
* Optional. Specification of the desired behavior of a task. More info:
* https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-
* status
* @return value or {@code null} for none
*/
public TaskSpec getSpec() {
return spec;
}
/**
* Optional. Specification of the desired behavior of a task. More info:
* https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-
* status
* @param spec spec or {@code null} for none
*/
public Task setSpec(TaskSpec spec) {
this.spec = spec;
return this;
}
/**
* Output only. Current status of a task. More info:
* https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-
* status
* @return value or {@code null} for none
*/
public TaskStatus getStatus() {
return status;
}
/**
* Output only. Current status of a task. More info:
* https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-
* status
* @param status status or {@code null} for none
*/
public Task setStatus(TaskStatus status) {
this.status = status;
return this;
}
@Override
public Task set(String fieldName, Object value) {
return (Task) super.set(fieldName, value);
}
@Override
public Task clone() {
return (Task) super.clone();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy