1 /* 2 * Copyright 2020 Google LLC 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * https://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 // Generated by the protocol buffer compiler. DO NOT EDIT! 17 // source: google/cloud/datacatalog/v1/dataplex_spec.proto 18 19 package com.google.cloud.datacatalog.v1; 20 21 public interface DataplexSpecOrBuilder 22 extends 23 // @@protoc_insertion_point(interface_extends:google.cloud.datacatalog.v1.DataplexSpec) 24 com.google.protobuf.MessageOrBuilder { 25 26 /** 27 * 28 * 29 * <pre> 30 * Fully qualified resource name of an asset in Dataplex, to which the 31 * underlying data source (Cloud Storage bucket or BigQuery dataset) of the 32 * entity is attached. 33 * </pre> 34 * 35 * <code>string asset = 1;</code> 36 * 37 * @return The asset. 38 */ getAsset()39 java.lang.String getAsset(); 40 /** 41 * 42 * 43 * <pre> 44 * Fully qualified resource name of an asset in Dataplex, to which the 45 * underlying data source (Cloud Storage bucket or BigQuery dataset) of the 46 * entity is attached. 47 * </pre> 48 * 49 * <code>string asset = 1;</code> 50 * 51 * @return The bytes for asset. 52 */ getAssetBytes()53 com.google.protobuf.ByteString getAssetBytes(); 54 55 /** 56 * 57 * 58 * <pre> 59 * Format of the data. 60 * </pre> 61 * 62 * <code>.google.cloud.datacatalog.v1.PhysicalSchema data_format = 2;</code> 63 * 64 * @return Whether the dataFormat field is set. 65 */ hasDataFormat()66 boolean hasDataFormat(); 67 /** 68 * 69 * 70 * <pre> 71 * Format of the data. 72 * </pre> 73 * 74 * <code>.google.cloud.datacatalog.v1.PhysicalSchema data_format = 2;</code> 75 * 76 * @return The dataFormat. 77 */ getDataFormat()78 com.google.cloud.datacatalog.v1.PhysicalSchema getDataFormat(); 79 /** 80 * 81 * 82 * <pre> 83 * Format of the data. 84 * </pre> 85 * 86 * <code>.google.cloud.datacatalog.v1.PhysicalSchema data_format = 2;</code> 87 */ getDataFormatOrBuilder()88 com.google.cloud.datacatalog.v1.PhysicalSchemaOrBuilder getDataFormatOrBuilder(); 89 90 /** 91 * 92 * 93 * <pre> 94 * Compression format of the data, e.g., zip, gzip etc. 95 * </pre> 96 * 97 * <code>string compression_format = 3;</code> 98 * 99 * @return The compressionFormat. 100 */ getCompressionFormat()101 java.lang.String getCompressionFormat(); 102 /** 103 * 104 * 105 * <pre> 106 * Compression format of the data, e.g., zip, gzip etc. 107 * </pre> 108 * 109 * <code>string compression_format = 3;</code> 110 * 111 * @return The bytes for compressionFormat. 112 */ getCompressionFormatBytes()113 com.google.protobuf.ByteString getCompressionFormatBytes(); 114 115 /** 116 * 117 * 118 * <pre> 119 * Project ID of the underlying Cloud Storage or BigQuery data. Note that 120 * this may not be the same project as the correspondingly Dataplex lake / 121 * zone / asset. 122 * </pre> 123 * 124 * <code>string project_id = 4;</code> 125 * 126 * @return The projectId. 127 */ getProjectId()128 java.lang.String getProjectId(); 129 /** 130 * 131 * 132 * <pre> 133 * Project ID of the underlying Cloud Storage or BigQuery data. Note that 134 * this may not be the same project as the correspondingly Dataplex lake / 135 * zone / asset. 136 * </pre> 137 * 138 * <code>string project_id = 4;</code> 139 * 140 * @return The bytes for projectId. 141 */ getProjectIdBytes()142 com.google.protobuf.ByteString getProjectIdBytes(); 143 } 144