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

com.google.api.services.genomics.model.Operation Maven / Gradle / Ivy

There is a newer version: v2alpha1-rev20220913-2.0.0
Show newest version
/*
 * 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://github.com/google/apis-client-generator/
 * (build: 2016-05-27 16:00:31 UTC)
 * on 2016-07-28 at 21:58:52 UTC 
 * Modify at your own risk.
 */

package com.google.api.services.genomics.model;

/**
 * This resource represents a long-running operation that is the result of a network API call.
 *
 * 

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 Genomics 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 Operation extends com.google.api.client.json.GenericJson { /** * If the value is `false`, it means the operation is still in progress. If true, the operation is * completed, and either `error` or `response` is available. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.Boolean done; /** * The error result of the operation in case of failure. * The value may be {@code null}. */ @com.google.api.client.util.Key private Status error; /** * An OperationMetadata object. This will always be returned with the Operation. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.util.Map metadata; /** * The server-assigned name, which is only unique within the same service that originally returns * it. For example: `operations/CJHU7Oi_ChDrveSpBRjfuL-qzoWAgEw` * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String name; /** * If importing ReadGroupSets, an ImportReadGroupSetsResponse is returned. If importing Variants, * an ImportVariantsResponse is returned. For exports, an empty response is returned. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.util.Map response; /** * If the value is `false`, it means the operation is still in progress. If true, the operation is * completed, and either `error` or `response` is available. * @return value or {@code null} for none */ public java.lang.Boolean getDone() { return done; } /** * If the value is `false`, it means the operation is still in progress. If true, the operation is * completed, and either `error` or `response` is available. * @param done done or {@code null} for none */ public Operation setDone(java.lang.Boolean done) { this.done = done; return this; } /** * The error result of the operation in case of failure. * @return value or {@code null} for none */ public Status getError() { return error; } /** * The error result of the operation in case of failure. * @param error error or {@code null} for none */ public Operation setError(Status error) { this.error = error; return this; } /** * An OperationMetadata object. This will always be returned with the Operation. * @return value or {@code null} for none */ public java.util.Map getMetadata() { return metadata; } /** * An OperationMetadata object. This will always be returned with the Operation. * @param metadata metadata or {@code null} for none */ public Operation setMetadata(java.util.Map metadata) { this.metadata = metadata; return this; } /** * The server-assigned name, which is only unique within the same service that originally returns * it. For example: `operations/CJHU7Oi_ChDrveSpBRjfuL-qzoWAgEw` * @return value or {@code null} for none */ public java.lang.String getName() { return name; } /** * The server-assigned name, which is only unique within the same service that originally returns * it. For example: `operations/CJHU7Oi_ChDrveSpBRjfuL-qzoWAgEw` * @param name name or {@code null} for none */ public Operation setName(java.lang.String name) { this.name = name; return this; } /** * If importing ReadGroupSets, an ImportReadGroupSetsResponse is returned. If importing Variants, * an ImportVariantsResponse is returned. For exports, an empty response is returned. * @return value or {@code null} for none */ public java.util.Map getResponse() { return response; } /** * If importing ReadGroupSets, an ImportReadGroupSetsResponse is returned. If importing Variants, * an ImportVariantsResponse is returned. For exports, an empty response is returned. * @param response response or {@code null} for none */ public Operation setResponse(java.util.Map response) { this.response = response; return this; } @Override public Operation set(String fieldName, Object value) { return (Operation) super.set(fieldName, value); } @Override public Operation clone() { return (Operation) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy