cloud.google.com/go/aiplatform@v1.106.0/apiv1/aiplatformpb/metadata_store.pb.go (about) 1 // Copyright 2025 Google LLC 2 // 3 // Licensed under the Apache License, Version 2.0 (the "License"); 4 // you may not use this file except in compliance with the License. 5 // You may obtain a copy of the License at 6 // 7 // http://www.apache.org/licenses/LICENSE-2.0 8 // 9 // Unless required by applicable law or agreed to in writing, software 10 // distributed under the License is distributed on an "AS IS" BASIS, 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 // See the License for the specific language governing permissions and 13 // limitations under the License. 14 15 // Code generated by protoc-gen-go. DO NOT EDIT. 16 // versions: 17 // protoc-gen-go v1.35.2 18 // protoc v4.25.7 19 // source: google/cloud/aiplatform/v1/metadata_store.proto 20 21 package aiplatformpb 22 23 import ( 24 _ "google.golang.org/genproto/googleapis/api/annotations" 25 protoreflect "google.golang.org/protobuf/reflect/protoreflect" 26 protoimpl "google.golang.org/protobuf/runtime/protoimpl" 27 timestamppb "google.golang.org/protobuf/types/known/timestamppb" 28 reflect "reflect" 29 sync "sync" 30 ) 31 32 const ( 33 // Verify that this generated code is sufficiently up-to-date. 34 _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) 35 // Verify that runtime/protoimpl is sufficiently up-to-date. 36 _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) 37 ) 38 39 // Instance of a metadata store. Contains a set of metadata that can be 40 // queried. 41 type MetadataStore struct { 42 state protoimpl.MessageState 43 sizeCache protoimpl.SizeCache 44 unknownFields protoimpl.UnknownFields 45 46 // Output only. The resource name of the MetadataStore instance. 47 Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` 48 // Output only. Timestamp when this MetadataStore was created. 49 CreateTime *timestamppb.Timestamp `protobuf:"bytes,3,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty"` 50 // Output only. Timestamp when this MetadataStore was last updated. 51 UpdateTime *timestamppb.Timestamp `protobuf:"bytes,4,opt,name=update_time,json=updateTime,proto3" json:"update_time,omitempty"` 52 // Customer-managed encryption key spec for a Metadata Store. If set, this 53 // Metadata Store and all sub-resources of this Metadata Store are secured 54 // using this key. 55 EncryptionSpec *EncryptionSpec `protobuf:"bytes,5,opt,name=encryption_spec,json=encryptionSpec,proto3" json:"encryption_spec,omitempty"` 56 // Description of the MetadataStore. 57 Description string `protobuf:"bytes,6,opt,name=description,proto3" json:"description,omitempty"` 58 // Output only. State information of the MetadataStore. 59 State *MetadataStore_MetadataStoreState `protobuf:"bytes,7,opt,name=state,proto3" json:"state,omitempty"` 60 // Optional. Dataplex integration settings. 61 DataplexConfig *MetadataStore_DataplexConfig `protobuf:"bytes,8,opt,name=dataplex_config,json=dataplexConfig,proto3" json:"dataplex_config,omitempty"` 62 } 63 64 func (x *MetadataStore) Reset() { 65 *x = MetadataStore{} 66 mi := &file_google_cloud_aiplatform_v1_metadata_store_proto_msgTypes[0] 67 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) 68 ms.StoreMessageInfo(mi) 69 } 70 71 func (x *MetadataStore) String() string { 72 return protoimpl.X.MessageStringOf(x) 73 } 74 75 func (*MetadataStore) ProtoMessage() {} 76 77 func (x *MetadataStore) ProtoReflect() protoreflect.Message { 78 mi := &file_google_cloud_aiplatform_v1_metadata_store_proto_msgTypes[0] 79 if x != nil { 80 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) 81 if ms.LoadMessageInfo() == nil { 82 ms.StoreMessageInfo(mi) 83 } 84 return ms 85 } 86 return mi.MessageOf(x) 87 } 88 89 // Deprecated: Use MetadataStore.ProtoReflect.Descriptor instead. 90 func (*MetadataStore) Descriptor() ([]byte, []int) { 91 return file_google_cloud_aiplatform_v1_metadata_store_proto_rawDescGZIP(), []int{0} 92 } 93 94 func (x *MetadataStore) GetName() string { 95 if x != nil { 96 return x.Name 97 } 98 return "" 99 } 100 101 func (x *MetadataStore) GetCreateTime() *timestamppb.Timestamp { 102 if x != nil { 103 return x.CreateTime 104 } 105 return nil 106 } 107 108 func (x *MetadataStore) GetUpdateTime() *timestamppb.Timestamp { 109 if x != nil { 110 return x.UpdateTime 111 } 112 return nil 113 } 114 115 func (x *MetadataStore) GetEncryptionSpec() *EncryptionSpec { 116 if x != nil { 117 return x.EncryptionSpec 118 } 119 return nil 120 } 121 122 func (x *MetadataStore) GetDescription() string { 123 if x != nil { 124 return x.Description 125 } 126 return "" 127 } 128 129 func (x *MetadataStore) GetState() *MetadataStore_MetadataStoreState { 130 if x != nil { 131 return x.State 132 } 133 return nil 134 } 135 136 func (x *MetadataStore) GetDataplexConfig() *MetadataStore_DataplexConfig { 137 if x != nil { 138 return x.DataplexConfig 139 } 140 return nil 141 } 142 143 // Represents state information for a MetadataStore. 144 type MetadataStore_MetadataStoreState struct { 145 state protoimpl.MessageState 146 sizeCache protoimpl.SizeCache 147 unknownFields protoimpl.UnknownFields 148 149 // The disk utilization of the MetadataStore in bytes. 150 DiskUtilizationBytes int64 `protobuf:"varint,1,opt,name=disk_utilization_bytes,json=diskUtilizationBytes,proto3" json:"disk_utilization_bytes,omitempty"` 151 } 152 153 func (x *MetadataStore_MetadataStoreState) Reset() { 154 *x = MetadataStore_MetadataStoreState{} 155 mi := &file_google_cloud_aiplatform_v1_metadata_store_proto_msgTypes[1] 156 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) 157 ms.StoreMessageInfo(mi) 158 } 159 160 func (x *MetadataStore_MetadataStoreState) String() string { 161 return protoimpl.X.MessageStringOf(x) 162 } 163 164 func (*MetadataStore_MetadataStoreState) ProtoMessage() {} 165 166 func (x *MetadataStore_MetadataStoreState) ProtoReflect() protoreflect.Message { 167 mi := &file_google_cloud_aiplatform_v1_metadata_store_proto_msgTypes[1] 168 if x != nil { 169 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) 170 if ms.LoadMessageInfo() == nil { 171 ms.StoreMessageInfo(mi) 172 } 173 return ms 174 } 175 return mi.MessageOf(x) 176 } 177 178 // Deprecated: Use MetadataStore_MetadataStoreState.ProtoReflect.Descriptor instead. 179 func (*MetadataStore_MetadataStoreState) Descriptor() ([]byte, []int) { 180 return file_google_cloud_aiplatform_v1_metadata_store_proto_rawDescGZIP(), []int{0, 0} 181 } 182 183 func (x *MetadataStore_MetadataStoreState) GetDiskUtilizationBytes() int64 { 184 if x != nil { 185 return x.DiskUtilizationBytes 186 } 187 return 0 188 } 189 190 // Represents Dataplex integration settings. 191 type MetadataStore_DataplexConfig struct { 192 state protoimpl.MessageState 193 sizeCache protoimpl.SizeCache 194 unknownFields protoimpl.UnknownFields 195 196 // Optional. Whether or not Data Lineage synchronization is enabled for 197 // Vertex Pipelines. 198 EnabledPipelinesLineage bool `protobuf:"varint,1,opt,name=enabled_pipelines_lineage,json=enabledPipelinesLineage,proto3" json:"enabled_pipelines_lineage,omitempty"` 199 } 200 201 func (x *MetadataStore_DataplexConfig) Reset() { 202 *x = MetadataStore_DataplexConfig{} 203 mi := &file_google_cloud_aiplatform_v1_metadata_store_proto_msgTypes[2] 204 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) 205 ms.StoreMessageInfo(mi) 206 } 207 208 func (x *MetadataStore_DataplexConfig) String() string { 209 return protoimpl.X.MessageStringOf(x) 210 } 211 212 func (*MetadataStore_DataplexConfig) ProtoMessage() {} 213 214 func (x *MetadataStore_DataplexConfig) ProtoReflect() protoreflect.Message { 215 mi := &file_google_cloud_aiplatform_v1_metadata_store_proto_msgTypes[2] 216 if x != nil { 217 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) 218 if ms.LoadMessageInfo() == nil { 219 ms.StoreMessageInfo(mi) 220 } 221 return ms 222 } 223 return mi.MessageOf(x) 224 } 225 226 // Deprecated: Use MetadataStore_DataplexConfig.ProtoReflect.Descriptor instead. 227 func (*MetadataStore_DataplexConfig) Descriptor() ([]byte, []int) { 228 return file_google_cloud_aiplatform_v1_metadata_store_proto_rawDescGZIP(), []int{0, 1} 229 } 230 231 func (x *MetadataStore_DataplexConfig) GetEnabledPipelinesLineage() bool { 232 if x != nil { 233 return x.EnabledPipelinesLineage 234 } 235 return false 236 } 237 238 var File_google_cloud_aiplatform_v1_metadata_store_proto protoreflect.FileDescriptor 239 240 var file_google_cloud_aiplatform_v1_metadata_store_proto_rawDesc = []byte{ 241 0x0a, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x2f, 0x61, 242 0x69, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x2f, 0x76, 0x31, 0x2f, 0x6d, 0x65, 0x74, 243 0x61, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 244 0x6f, 0x12, 0x1a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x2e, 245 0x61, 0x69, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x76, 0x31, 0x1a, 0x1f, 0x67, 246 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 247 0x62, 0x65, 0x68, 0x61, 0x76, 0x69, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x19, 248 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 249 0x72, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x30, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 250 0x65, 0x2f, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x2f, 0x61, 0x69, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 251 0x72, 0x6d, 0x2f, 0x76, 0x31, 0x2f, 0x65, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x69, 0x6f, 0x6e, 252 0x5f, 0x73, 0x70, 0x65, 0x63, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 253 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x74, 0x69, 0x6d, 254 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xfa, 0x05, 0x0a, 255 0x0d, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x53, 0x74, 0x6f, 0x72, 0x65, 0x12, 0x17, 256 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 257 0x03, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x40, 0x0a, 0x0b, 0x63, 0x72, 0x65, 0x61, 0x74, 258 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 259 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 260 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0a, 0x63, 261 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x40, 0x0a, 0x0b, 0x75, 0x70, 0x64, 262 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 263 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 264 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 265 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x53, 0x0a, 0x0f, 0x65, 266 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x70, 0x65, 0x63, 0x18, 0x05, 267 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x63, 0x6c, 268 0x6f, 0x75, 0x64, 0x2e, 0x61, 0x69, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x76, 269 0x31, 0x2e, 0x45, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x70, 0x65, 0x63, 270 0x52, 0x0e, 0x65, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x70, 0x65, 0x63, 271 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 272 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 273 0x6f, 0x6e, 0x12, 0x57, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 274 0x0b, 0x32, 0x3c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 275 0x2e, 0x61, 0x69, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x76, 0x31, 0x2e, 0x4d, 276 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x53, 0x74, 0x6f, 0x72, 0x65, 0x2e, 0x4d, 0x65, 0x74, 277 0x61, 0x64, 0x61, 0x74, 0x61, 0x53, 0x74, 0x6f, 0x72, 0x65, 0x53, 0x74, 0x61, 0x74, 0x65, 0x42, 278 0x03, 0xe0, 0x41, 0x03, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x12, 0x66, 0x0a, 0x0f, 0x64, 279 0x61, 0x74, 0x61, 0x70, 0x6c, 0x65, 0x78, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18, 0x08, 280 0x20, 0x01, 0x28, 0x0b, 0x32, 0x38, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x63, 0x6c, 281 0x6f, 0x75, 0x64, 0x2e, 0x61, 0x69, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x76, 282 0x31, 0x2e, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x53, 0x74, 0x6f, 0x72, 0x65, 0x2e, 283 0x44, 0x61, 0x74, 0x61, 0x70, 0x6c, 0x65, 0x78, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x42, 0x03, 284 0xe0, 0x41, 0x01, 0x52, 0x0e, 0x64, 0x61, 0x74, 0x61, 0x70, 0x6c, 0x65, 0x78, 0x43, 0x6f, 0x6e, 285 0x66, 0x69, 0x67, 0x1a, 0x4a, 0x0a, 0x12, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x53, 286 0x74, 0x6f, 0x72, 0x65, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x34, 0x0a, 0x16, 0x64, 0x69, 0x73, 287 0x6b, 0x5f, 0x75, 0x74, 0x69, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x62, 0x79, 288 0x74, 0x65, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x14, 0x64, 0x69, 0x73, 0x6b, 0x55, 289 0x74, 0x69, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x79, 0x74, 0x65, 0x73, 0x1a, 290 0x51, 0x0a, 0x0e, 0x44, 0x61, 0x74, 0x61, 0x70, 0x6c, 0x65, 0x78, 0x43, 0x6f, 0x6e, 0x66, 0x69, 291 0x67, 0x12, 0x3f, 0x0a, 0x19, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x5f, 0x70, 0x69, 0x70, 292 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x5f, 0x6c, 0x69, 0x6e, 0x65, 0x61, 0x67, 0x65, 0x18, 0x01, 293 0x20, 0x01, 0x28, 0x08, 0x42, 0x03, 0xe0, 0x41, 0x01, 0x52, 0x17, 0x65, 0x6e, 0x61, 0x62, 0x6c, 294 0x65, 0x64, 0x50, 0x69, 0x70, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x4c, 0x69, 0x6e, 0x65, 0x61, 295 0x67, 0x65, 0x3a, 0x75, 0xea, 0x41, 0x72, 0x0a, 0x27, 0x61, 0x69, 0x70, 0x6c, 0x61, 0x74, 0x66, 296 0x6f, 0x72, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 297 0x6f, 0x6d, 0x2f, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x53, 0x74, 0x6f, 0x72, 0x65, 298 0x12, 0x47, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f, 0x6a, 299 0x65, 0x63, 0x74, 0x7d, 0x2f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x7b, 300 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x7d, 0x2f, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 301 0x74, 0x61, 0x53, 0x74, 0x6f, 0x72, 0x65, 0x73, 0x2f, 0x7b, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 302 0x74, 0x61, 0x5f, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x7d, 0x42, 0xcb, 0x01, 0x0a, 0x1e, 0x63, 0x6f, 303 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x2e, 0x61, 304 0x69, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x76, 0x31, 0x42, 0x0d, 0x4d, 0x65, 305 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x3e, 0x63, 306 0x6c, 0x6f, 0x75, 0x64, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 307 0x67, 0x6f, 0x2f, 0x61, 0x69, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x2f, 0x61, 0x70, 308 0x69, 0x76, 0x31, 0x2f, 0x61, 0x69, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x70, 0x62, 309 0x3b, 0x61, 0x69, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x70, 0x62, 0xaa, 0x02, 0x1a, 310 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x2e, 0x41, 0x49, 0x50, 311 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x56, 0x31, 0xca, 0x02, 0x1a, 0x47, 0x6f, 0x6f, 312 0x67, 0x6c, 0x65, 0x5c, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x5c, 0x41, 0x49, 0x50, 0x6c, 0x61, 0x74, 313 0x66, 0x6f, 0x72, 0x6d, 0x5c, 0x56, 0x31, 0xea, 0x02, 0x1d, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 314 0x3a, 0x3a, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x3a, 0x3a, 0x41, 0x49, 0x50, 0x6c, 0x61, 0x74, 0x66, 315 0x6f, 0x72, 0x6d, 0x3a, 0x3a, 0x56, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, 316 } 317 318 var ( 319 file_google_cloud_aiplatform_v1_metadata_store_proto_rawDescOnce sync.Once 320 file_google_cloud_aiplatform_v1_metadata_store_proto_rawDescData = file_google_cloud_aiplatform_v1_metadata_store_proto_rawDesc 321 ) 322 323 func file_google_cloud_aiplatform_v1_metadata_store_proto_rawDescGZIP() []byte { 324 file_google_cloud_aiplatform_v1_metadata_store_proto_rawDescOnce.Do(func() { 325 file_google_cloud_aiplatform_v1_metadata_store_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_cloud_aiplatform_v1_metadata_store_proto_rawDescData) 326 }) 327 return file_google_cloud_aiplatform_v1_metadata_store_proto_rawDescData 328 } 329 330 var file_google_cloud_aiplatform_v1_metadata_store_proto_msgTypes = make([]protoimpl.MessageInfo, 3) 331 var file_google_cloud_aiplatform_v1_metadata_store_proto_goTypes = []any{ 332 (*MetadataStore)(nil), // 0: google.cloud.aiplatform.v1.MetadataStore 333 (*MetadataStore_MetadataStoreState)(nil), // 1: google.cloud.aiplatform.v1.MetadataStore.MetadataStoreState 334 (*MetadataStore_DataplexConfig)(nil), // 2: google.cloud.aiplatform.v1.MetadataStore.DataplexConfig 335 (*timestamppb.Timestamp)(nil), // 3: google.protobuf.Timestamp 336 (*EncryptionSpec)(nil), // 4: google.cloud.aiplatform.v1.EncryptionSpec 337 } 338 var file_google_cloud_aiplatform_v1_metadata_store_proto_depIdxs = []int32{ 339 3, // 0: google.cloud.aiplatform.v1.MetadataStore.create_time:type_name -> google.protobuf.Timestamp 340 3, // 1: google.cloud.aiplatform.v1.MetadataStore.update_time:type_name -> google.protobuf.Timestamp 341 4, // 2: google.cloud.aiplatform.v1.MetadataStore.encryption_spec:type_name -> google.cloud.aiplatform.v1.EncryptionSpec 342 1, // 3: google.cloud.aiplatform.v1.MetadataStore.state:type_name -> google.cloud.aiplatform.v1.MetadataStore.MetadataStoreState 343 2, // 4: google.cloud.aiplatform.v1.MetadataStore.dataplex_config:type_name -> google.cloud.aiplatform.v1.MetadataStore.DataplexConfig 344 5, // [5:5] is the sub-list for method output_type 345 5, // [5:5] is the sub-list for method input_type 346 5, // [5:5] is the sub-list for extension type_name 347 5, // [5:5] is the sub-list for extension extendee 348 0, // [0:5] is the sub-list for field type_name 349 } 350 351 func init() { file_google_cloud_aiplatform_v1_metadata_store_proto_init() } 352 func file_google_cloud_aiplatform_v1_metadata_store_proto_init() { 353 if File_google_cloud_aiplatform_v1_metadata_store_proto != nil { 354 return 355 } 356 file_google_cloud_aiplatform_v1_encryption_spec_proto_init() 357 type x struct{} 358 out := protoimpl.TypeBuilder{ 359 File: protoimpl.DescBuilder{ 360 GoPackagePath: reflect.TypeOf(x{}).PkgPath(), 361 RawDescriptor: file_google_cloud_aiplatform_v1_metadata_store_proto_rawDesc, 362 NumEnums: 0, 363 NumMessages: 3, 364 NumExtensions: 0, 365 NumServices: 0, 366 }, 367 GoTypes: file_google_cloud_aiplatform_v1_metadata_store_proto_goTypes, 368 DependencyIndexes: file_google_cloud_aiplatform_v1_metadata_store_proto_depIdxs, 369 MessageInfos: file_google_cloud_aiplatform_v1_metadata_store_proto_msgTypes, 370 }.Build() 371 File_google_cloud_aiplatform_v1_metadata_store_proto = out.File 372 file_google_cloud_aiplatform_v1_metadata_store_proto_rawDesc = nil 373 file_google_cloud_aiplatform_v1_metadata_store_proto_goTypes = nil 374 file_google_cloud_aiplatform_v1_metadata_store_proto_depIdxs = nil 375 }