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/datacatalog.proto 18 19 package com.google.cloud.datacatalog.v1; 20 21 public interface LookerSystemSpecOrBuilder 22 extends 23 // @@protoc_insertion_point(interface_extends:google.cloud.datacatalog.v1.LookerSystemSpec) 24 com.google.protobuf.MessageOrBuilder { 25 26 /** 27 * 28 * 29 * <pre> 30 * ID of the parent Looker Instance. Empty if it does not exist. 31 * Example value: `someinstance.looker.com` 32 * </pre> 33 * 34 * <code>string parent_instance_id = 1;</code> 35 * 36 * @return The parentInstanceId. 37 */ getParentInstanceId()38 java.lang.String getParentInstanceId(); 39 /** 40 * 41 * 42 * <pre> 43 * ID of the parent Looker Instance. Empty if it does not exist. 44 * Example value: `someinstance.looker.com` 45 * </pre> 46 * 47 * <code>string parent_instance_id = 1;</code> 48 * 49 * @return The bytes for parentInstanceId. 50 */ getParentInstanceIdBytes()51 com.google.protobuf.ByteString getParentInstanceIdBytes(); 52 53 /** 54 * 55 * 56 * <pre> 57 * Name of the parent Looker Instance. Empty if it does not exist. 58 * </pre> 59 * 60 * <code>string parent_instance_display_name = 2;</code> 61 * 62 * @return The parentInstanceDisplayName. 63 */ getParentInstanceDisplayName()64 java.lang.String getParentInstanceDisplayName(); 65 /** 66 * 67 * 68 * <pre> 69 * Name of the parent Looker Instance. Empty if it does not exist. 70 * </pre> 71 * 72 * <code>string parent_instance_display_name = 2;</code> 73 * 74 * @return The bytes for parentInstanceDisplayName. 75 */ getParentInstanceDisplayNameBytes()76 com.google.protobuf.ByteString getParentInstanceDisplayNameBytes(); 77 78 /** 79 * 80 * 81 * <pre> 82 * ID of the parent Model. Empty if it does not exist. 83 * </pre> 84 * 85 * <code>string parent_model_id = 3;</code> 86 * 87 * @return The parentModelId. 88 */ getParentModelId()89 java.lang.String getParentModelId(); 90 /** 91 * 92 * 93 * <pre> 94 * ID of the parent Model. Empty if it does not exist. 95 * </pre> 96 * 97 * <code>string parent_model_id = 3;</code> 98 * 99 * @return The bytes for parentModelId. 100 */ getParentModelIdBytes()101 com.google.protobuf.ByteString getParentModelIdBytes(); 102 103 /** 104 * 105 * 106 * <pre> 107 * Name of the parent Model. Empty if it does not exist. 108 * </pre> 109 * 110 * <code>string parent_model_display_name = 4;</code> 111 * 112 * @return The parentModelDisplayName. 113 */ getParentModelDisplayName()114 java.lang.String getParentModelDisplayName(); 115 /** 116 * 117 * 118 * <pre> 119 * Name of the parent Model. Empty if it does not exist. 120 * </pre> 121 * 122 * <code>string parent_model_display_name = 4;</code> 123 * 124 * @return The bytes for parentModelDisplayName. 125 */ getParentModelDisplayNameBytes()126 com.google.protobuf.ByteString getParentModelDisplayNameBytes(); 127 128 /** 129 * 130 * 131 * <pre> 132 * ID of the parent View. Empty if it does not exist. 133 * </pre> 134 * 135 * <code>string parent_view_id = 5;</code> 136 * 137 * @return The parentViewId. 138 */ getParentViewId()139 java.lang.String getParentViewId(); 140 /** 141 * 142 * 143 * <pre> 144 * ID of the parent View. Empty if it does not exist. 145 * </pre> 146 * 147 * <code>string parent_view_id = 5;</code> 148 * 149 * @return The bytes for parentViewId. 150 */ getParentViewIdBytes()151 com.google.protobuf.ByteString getParentViewIdBytes(); 152 153 /** 154 * 155 * 156 * <pre> 157 * Name of the parent View. Empty if it does not exist. 158 * </pre> 159 * 160 * <code>string parent_view_display_name = 6;</code> 161 * 162 * @return The parentViewDisplayName. 163 */ getParentViewDisplayName()164 java.lang.String getParentViewDisplayName(); 165 /** 166 * 167 * 168 * <pre> 169 * Name of the parent View. Empty if it does not exist. 170 * </pre> 171 * 172 * <code>string parent_view_display_name = 6;</code> 173 * 174 * @return The bytes for parentViewDisplayName. 175 */ getParentViewDisplayNameBytes()176 com.google.protobuf.ByteString getParentViewDisplayNameBytes(); 177 } 178