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

com.google.api.services.dataplex.v1.model.GoogleCloudDataplexV1MetadataJobImportJobResult 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.dataplex.v1.model;

/**
 * Results from a metadata import job.
 *
 * 

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 Dataplex 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 GoogleCloudDataplexV1MetadataJobImportJobResult extends com.google.api.client.json.GenericJson { /** * Output only. The total number of entries that were created. * The value may be {@code null}. */ @com.google.api.client.util.Key @com.google.api.client.json.JsonString private java.lang.Long createdEntries; /** * Output only. The total number of entries that were deleted. * The value may be {@code null}. */ @com.google.api.client.util.Key @com.google.api.client.json.JsonString private java.lang.Long deletedEntries; /** * Output only. The total number of entries that were recreated. * The value may be {@code null}. */ @com.google.api.client.util.Key @com.google.api.client.json.JsonString private java.lang.Long recreatedEntries; /** * Output only. The total number of entries that were unchanged. * The value may be {@code null}. */ @com.google.api.client.util.Key @com.google.api.client.json.JsonString private java.lang.Long unchangedEntries; /** * Output only. The time when the status was updated. * The value may be {@code null}. */ @com.google.api.client.util.Key private String updateTime; /** * Output only. The total number of entries that were updated. * The value may be {@code null}. */ @com.google.api.client.util.Key @com.google.api.client.json.JsonString private java.lang.Long updatedEntries; /** * Output only. The total number of entries that were created. * @return value or {@code null} for none */ public java.lang.Long getCreatedEntries() { return createdEntries; } /** * Output only. The total number of entries that were created. * @param createdEntries createdEntries or {@code null} for none */ public GoogleCloudDataplexV1MetadataJobImportJobResult setCreatedEntries(java.lang.Long createdEntries) { this.createdEntries = createdEntries; return this; } /** * Output only. The total number of entries that were deleted. * @return value or {@code null} for none */ public java.lang.Long getDeletedEntries() { return deletedEntries; } /** * Output only. The total number of entries that were deleted. * @param deletedEntries deletedEntries or {@code null} for none */ public GoogleCloudDataplexV1MetadataJobImportJobResult setDeletedEntries(java.lang.Long deletedEntries) { this.deletedEntries = deletedEntries; return this; } /** * Output only. The total number of entries that were recreated. * @return value or {@code null} for none */ public java.lang.Long getRecreatedEntries() { return recreatedEntries; } /** * Output only. The total number of entries that were recreated. * @param recreatedEntries recreatedEntries or {@code null} for none */ public GoogleCloudDataplexV1MetadataJobImportJobResult setRecreatedEntries(java.lang.Long recreatedEntries) { this.recreatedEntries = recreatedEntries; return this; } /** * Output only. The total number of entries that were unchanged. * @return value or {@code null} for none */ public java.lang.Long getUnchangedEntries() { return unchangedEntries; } /** * Output only. The total number of entries that were unchanged. * @param unchangedEntries unchangedEntries or {@code null} for none */ public GoogleCloudDataplexV1MetadataJobImportJobResult setUnchangedEntries(java.lang.Long unchangedEntries) { this.unchangedEntries = unchangedEntries; return this; } /** * Output only. The time when the status was updated. * @return value or {@code null} for none */ public String getUpdateTime() { return updateTime; } /** * Output only. The time when the status was updated. * @param updateTime updateTime or {@code null} for none */ public GoogleCloudDataplexV1MetadataJobImportJobResult setUpdateTime(String updateTime) { this.updateTime = updateTime; return this; } /** * Output only. The total number of entries that were updated. * @return value or {@code null} for none */ public java.lang.Long getUpdatedEntries() { return updatedEntries; } /** * Output only. The total number of entries that were updated. * @param updatedEntries updatedEntries or {@code null} for none */ public GoogleCloudDataplexV1MetadataJobImportJobResult setUpdatedEntries(java.lang.Long updatedEntries) { this.updatedEntries = updatedEntries; return this; } @Override public GoogleCloudDataplexV1MetadataJobImportJobResult set(String fieldName, Object value) { return (GoogleCloudDataplexV1MetadataJobImportJobResult) super.set(fieldName, value); } @Override public GoogleCloudDataplexV1MetadataJobImportJobResult clone() { return (GoogleCloudDataplexV1MetadataJobImportJobResult) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy