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

com.google.api.services.appengine.model.OperationMetadataV1Beta5 Maven / Gradle / Ivy

There is a newer version: v1-rev20241205-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: 2018-05-04 17:28:03 UTC)
 * on 2018-08-13 at 23:00:04 UTC 
 * Modify at your own risk.
 */

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

/**
 * Metadata for the given google.longrunning.Operation.
 *
 * 

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 App Engine 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 OperationMetadataV1Beta5 extends com.google.api.client.json.GenericJson { /** * Timestamp that this operation completed.@OutputOnly * The value may be {@code null}. */ @com.google.api.client.util.Key private String endTime; /** * Timestamp that this operation was created.@OutputOnly * The value may be {@code null}. */ @com.google.api.client.util.Key private String insertTime; /** * API method name that initiated this operation. Example: * google.appengine.v1beta5.Version.CreateVersion.@OutputOnly * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String method; /** * Name of the resource that this operation is acting on. Example: * apps/myapp/services/default.@OutputOnly * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String target; /** * User who requested this operation.@OutputOnly * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String user; /** * Timestamp that this operation completed.@OutputOnly * @return value or {@code null} for none */ public String getEndTime() { return endTime; } /** * Timestamp that this operation completed.@OutputOnly * @param endTime endTime or {@code null} for none */ public OperationMetadataV1Beta5 setEndTime(String endTime) { this.endTime = endTime; return this; } /** * Timestamp that this operation was created.@OutputOnly * @return value or {@code null} for none */ public String getInsertTime() { return insertTime; } /** * Timestamp that this operation was created.@OutputOnly * @param insertTime insertTime or {@code null} for none */ public OperationMetadataV1Beta5 setInsertTime(String insertTime) { this.insertTime = insertTime; return this; } /** * API method name that initiated this operation. Example: * google.appengine.v1beta5.Version.CreateVersion.@OutputOnly * @return value or {@code null} for none */ public java.lang.String getMethod() { return method; } /** * API method name that initiated this operation. Example: * google.appengine.v1beta5.Version.CreateVersion.@OutputOnly * @param method method or {@code null} for none */ public OperationMetadataV1Beta5 setMethod(java.lang.String method) { this.method = method; return this; } /** * Name of the resource that this operation is acting on. Example: * apps/myapp/services/default.@OutputOnly * @return value or {@code null} for none */ public java.lang.String getTarget() { return target; } /** * Name of the resource that this operation is acting on. Example: * apps/myapp/services/default.@OutputOnly * @param target target or {@code null} for none */ public OperationMetadataV1Beta5 setTarget(java.lang.String target) { this.target = target; return this; } /** * User who requested this operation.@OutputOnly * @return value or {@code null} for none */ public java.lang.String getUser() { return user; } /** * User who requested this operation.@OutputOnly * @param user user or {@code null} for none */ public OperationMetadataV1Beta5 setUser(java.lang.String user) { this.user = user; return this; } @Override public OperationMetadataV1Beta5 set(String fieldName, Object value) { return (OperationMetadataV1Beta5) super.set(fieldName, value); } @Override public OperationMetadataV1Beta5 clone() { return (OperationMetadataV1Beta5) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy