All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.api.services.run.v1.model.Job Maven / Gradle / Ivy

There is a newer version: v2-rev20241213-2.0.0
Show newest version
/*
 * 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;

/**
 * Job represents the configuration of a single job, which references a container image which is run
 * 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 Job 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 job. 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 JobSpec spec; /** * Output only. Current status of a job. 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 JobStatus 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 Job 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 Job 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 Job setMetadata(ObjectMeta metadata) { this.metadata = metadata; return this; } /** * Optional. Specification of the desired behavior of a job. 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 JobSpec getSpec() { return spec; } /** * Optional. Specification of the desired behavior of a job. 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 Job setSpec(JobSpec spec) { this.spec = spec; return this; } /** * Output only. Current status of a job. 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 JobStatus getStatus() { return status; } /** * Output only. Current status of a job. 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 Job setStatus(JobStatus status) { this.status = status; return this; } @Override public Job set(String fieldName, Object value) { return (Job) super.set(fieldName, value); } @Override public Job clone() { return (Job) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy