|
| 1 | +/* |
| 2 | + * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except |
| 3 | + * in compliance with the License. You may obtain a copy of the License at |
| 4 | + * |
| 5 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 6 | + * |
| 7 | + * Unless required by applicable law or agreed to in writing, software distributed under the License |
| 8 | + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express |
| 9 | + * or implied. See the License for the specific language governing permissions and limitations under |
| 10 | + * the License. |
| 11 | + */ |
| 12 | +/* |
| 13 | + * This code was generated by https://github.com/googleapis/google-api-java-client-services/ |
| 14 | + * Modify at your own risk. |
| 15 | + */ |
| 16 | + |
| 17 | +package com.google.api.services.dataplex.v1.model; |
| 18 | + |
| 19 | +/** |
| 20 | + * The assets generated by Anomaly Detection Data Scan. |
| 21 | + * |
| 22 | + * <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is |
| 23 | + * transmitted over HTTP when working with the Cloud Dataplex API. For a detailed explanation see: |
| 24 | + * <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a> |
| 25 | + * </p> |
| 26 | + * |
| 27 | + * @author Google, Inc. |
| 28 | + */ |
| 29 | +@SuppressWarnings("javadoc") |
| 30 | +public final class GoogleCloudDataplexV1DataQualityResultAnomalyDetectionGeneratedAssets extends com.google.api.client.json.GenericJson { |
| 31 | + |
| 32 | + /** |
| 33 | + * Output only. The intermediate table for data anomaly detection. Format: |
| 34 | + * PROJECT_ID.DATASET_ID.TABLE_ID |
| 35 | + * The value may be {@code null}. |
| 36 | + */ |
| 37 | + @com.google.api.client.util.Key |
| 38 | + private java.lang.String dataIntermediateTable; |
| 39 | + |
| 40 | + /** |
| 41 | + * Output only. The intermediate table for freshness anomaly detection. Format: |
| 42 | + * PROJECT_ID.DATASET_ID.TABLE_ID |
| 43 | + * The value may be {@code null}. |
| 44 | + */ |
| 45 | + @com.google.api.client.util.Key |
| 46 | + private java.lang.String freshnessIntermediateTable; |
| 47 | + |
| 48 | + /** |
| 49 | + * Output only. The result table for anomaly detection. Format: PROJECT_ID.DATASET_ID.TABLE_ID If |
| 50 | + * the result table is set at AnomalyDetectionAssets, the result table here would be the same as |
| 51 | + * the one set in the AnomalyDetectionAssets.result_table. |
| 52 | + * The value may be {@code null}. |
| 53 | + */ |
| 54 | + @com.google.api.client.util.Key |
| 55 | + private java.lang.String resultTable; |
| 56 | + |
| 57 | + /** |
| 58 | + * Output only. The intermediate table for volume anomaly detection. Format: |
| 59 | + * PROJECT_ID.DATASET_ID.TABLE_ID |
| 60 | + * The value may be {@code null}. |
| 61 | + */ |
| 62 | + @com.google.api.client.util.Key |
| 63 | + private java.lang.String volumeIntermediateTable; |
| 64 | + |
| 65 | + /** |
| 66 | + * Output only. The intermediate table for data anomaly detection. Format: |
| 67 | + * PROJECT_ID.DATASET_ID.TABLE_ID |
| 68 | + * @return value or {@code null} for none |
| 69 | + */ |
| 70 | + public java.lang.String getDataIntermediateTable() { |
| 71 | + return dataIntermediateTable; |
| 72 | + } |
| 73 | + |
| 74 | + /** |
| 75 | + * Output only. The intermediate table for data anomaly detection. Format: |
| 76 | + * PROJECT_ID.DATASET_ID.TABLE_ID |
| 77 | + * @param dataIntermediateTable dataIntermediateTable or {@code null} for none |
| 78 | + */ |
| 79 | + public GoogleCloudDataplexV1DataQualityResultAnomalyDetectionGeneratedAssets setDataIntermediateTable(java.lang.String dataIntermediateTable) { |
| 80 | + this.dataIntermediateTable = dataIntermediateTable; |
| 81 | + return this; |
| 82 | + } |
| 83 | + |
| 84 | + /** |
| 85 | + * Output only. The intermediate table for freshness anomaly detection. Format: |
| 86 | + * PROJECT_ID.DATASET_ID.TABLE_ID |
| 87 | + * @return value or {@code null} for none |
| 88 | + */ |
| 89 | + public java.lang.String getFreshnessIntermediateTable() { |
| 90 | + return freshnessIntermediateTable; |
| 91 | + } |
| 92 | + |
| 93 | + /** |
| 94 | + * Output only. The intermediate table for freshness anomaly detection. Format: |
| 95 | + * PROJECT_ID.DATASET_ID.TABLE_ID |
| 96 | + * @param freshnessIntermediateTable freshnessIntermediateTable or {@code null} for none |
| 97 | + */ |
| 98 | + public GoogleCloudDataplexV1DataQualityResultAnomalyDetectionGeneratedAssets setFreshnessIntermediateTable(java.lang.String freshnessIntermediateTable) { |
| 99 | + this.freshnessIntermediateTable = freshnessIntermediateTable; |
| 100 | + return this; |
| 101 | + } |
| 102 | + |
| 103 | + /** |
| 104 | + * Output only. The result table for anomaly detection. Format: PROJECT_ID.DATASET_ID.TABLE_ID If |
| 105 | + * the result table is set at AnomalyDetectionAssets, the result table here would be the same as |
| 106 | + * the one set in the AnomalyDetectionAssets.result_table. |
| 107 | + * @return value or {@code null} for none |
| 108 | + */ |
| 109 | + public java.lang.String getResultTable() { |
| 110 | + return resultTable; |
| 111 | + } |
| 112 | + |
| 113 | + /** |
| 114 | + * Output only. The result table for anomaly detection. Format: PROJECT_ID.DATASET_ID.TABLE_ID If |
| 115 | + * the result table is set at AnomalyDetectionAssets, the result table here would be the same as |
| 116 | + * the one set in the AnomalyDetectionAssets.result_table. |
| 117 | + * @param resultTable resultTable or {@code null} for none |
| 118 | + */ |
| 119 | + public GoogleCloudDataplexV1DataQualityResultAnomalyDetectionGeneratedAssets setResultTable(java.lang.String resultTable) { |
| 120 | + this.resultTable = resultTable; |
| 121 | + return this; |
| 122 | + } |
| 123 | + |
| 124 | + /** |
| 125 | + * Output only. The intermediate table for volume anomaly detection. Format: |
| 126 | + * PROJECT_ID.DATASET_ID.TABLE_ID |
| 127 | + * @return value or {@code null} for none |
| 128 | + */ |
| 129 | + public java.lang.String getVolumeIntermediateTable() { |
| 130 | + return volumeIntermediateTable; |
| 131 | + } |
| 132 | + |
| 133 | + /** |
| 134 | + * Output only. The intermediate table for volume anomaly detection. Format: |
| 135 | + * PROJECT_ID.DATASET_ID.TABLE_ID |
| 136 | + * @param volumeIntermediateTable volumeIntermediateTable or {@code null} for none |
| 137 | + */ |
| 138 | + public GoogleCloudDataplexV1DataQualityResultAnomalyDetectionGeneratedAssets setVolumeIntermediateTable(java.lang.String volumeIntermediateTable) { |
| 139 | + this.volumeIntermediateTable = volumeIntermediateTable; |
| 140 | + return this; |
| 141 | + } |
| 142 | + |
| 143 | + @Override |
| 144 | + public GoogleCloudDataplexV1DataQualityResultAnomalyDetectionGeneratedAssets set(String fieldName, Object value) { |
| 145 | + return (GoogleCloudDataplexV1DataQualityResultAnomalyDetectionGeneratedAssets) super.set(fieldName, value); |
| 146 | + } |
| 147 | + |
| 148 | + @Override |
| 149 | + public GoogleCloudDataplexV1DataQualityResultAnomalyDetectionGeneratedAssets clone() { |
| 150 | + return (GoogleCloudDataplexV1DataQualityResultAnomalyDetectionGeneratedAssets) super.clone(); |
| 151 | + } |
| 152 | + |
| 153 | +} |
0 commit comments