com.google.api.services.dlp.v2beta1.model.GoogleLongrunningOperation 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://github.com/google/apis-client-generator/
* (build: 2017-11-07 19:12:12 UTC)
* on 2018-01-18 at 22:50:57 UTC
* Modify at your own risk.
*/
package com.google.api.services.dlp.v2beta1.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 DLP 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 GoogleLongrunningOperation 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 or cancellation.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private GoogleRpcStatus error;
/**
* This field will contain an InspectOperationMetadata object for `inspect.operations.create` or a
* RiskAnalysisOperationMetadata object for `dataSource.analyze`. 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. The `name` should have the format of `inspect/operations/`.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String name;
/**
* This field will contain an InspectOperationResult object for `inspect.operations.create` or a
* RiskAnalysisOperationResult object for `dataSource.analyze`.
* 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 GoogleLongrunningOperation setDone(java.lang.Boolean done) {
this.done = done;
return this;
}
/**
* The error result of the operation in case of failure or cancellation.
* @return value or {@code null} for none
*/
public GoogleRpcStatus getError() {
return error;
}
/**
* The error result of the operation in case of failure or cancellation.
* @param error error or {@code null} for none
*/
public GoogleLongrunningOperation setError(GoogleRpcStatus error) {
this.error = error;
return this;
}
/**
* This field will contain an InspectOperationMetadata object for `inspect.operations.create` or a
* RiskAnalysisOperationMetadata object for `dataSource.analyze`. This will always be returned
* with the Operation.
* @return value or {@code null} for none
*/
public java.util.Map getMetadata() {
return metadata;
}
/**
* This field will contain an InspectOperationMetadata object for `inspect.operations.create` or a
* RiskAnalysisOperationMetadata object for `dataSource.analyze`. This will always be returned
* with the Operation.
* @param metadata metadata or {@code null} for none
*/
public GoogleLongrunningOperation setMetadata(java.util.Map metadata) {
this.metadata = metadata;
return this;
}
/**
* The server-assigned name. The `name` should have the format of `inspect/operations/`.
* @return value or {@code null} for none
*/
public java.lang.String getName() {
return name;
}
/**
* The server-assigned name. The `name` should have the format of `inspect/operations/`.
* @param name name or {@code null} for none
*/
public GoogleLongrunningOperation setName(java.lang.String name) {
this.name = name;
return this;
}
/**
* This field will contain an InspectOperationResult object for `inspect.operations.create` or a
* RiskAnalysisOperationResult object for `dataSource.analyze`.
* @return value or {@code null} for none
*/
public java.util.Map getResponse() {
return response;
}
/**
* This field will contain an InspectOperationResult object for `inspect.operations.create` or a
* RiskAnalysisOperationResult object for `dataSource.analyze`.
* @param response response or {@code null} for none
*/
public GoogleLongrunningOperation setResponse(java.util.Map response) {
this.response = response;
return this;
}
@Override
public GoogleLongrunningOperation set(String fieldName, Object value) {
return (GoogleLongrunningOperation) super.set(fieldName, value);
}
@Override
public GoogleLongrunningOperation clone() {
return (GoogleLongrunningOperation) super.clone();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy