cloud.google.com/go/aiplatform@v1.106.0/apiv1/aiplatformpb/metadata_schema.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_schema.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 // Describes the type of the MetadataSchema. 40 type MetadataSchema_MetadataSchemaType int32 41 42 const ( 43 // Unspecified type for the MetadataSchema. 44 MetadataSchema_METADATA_SCHEMA_TYPE_UNSPECIFIED MetadataSchema_MetadataSchemaType = 0 45 // A type indicating that the MetadataSchema will be used by Artifacts. 46 MetadataSchema_ARTIFACT_TYPE MetadataSchema_MetadataSchemaType = 1 47 // A typee indicating that the MetadataSchema will be used by Executions. 48 MetadataSchema_EXECUTION_TYPE MetadataSchema_MetadataSchemaType = 2 49 // A state indicating that the MetadataSchema will be used by Contexts. 50 MetadataSchema_CONTEXT_TYPE MetadataSchema_MetadataSchemaType = 3 51 ) 52 53 // Enum value maps for MetadataSchema_MetadataSchemaType. 54 var ( 55 MetadataSchema_MetadataSchemaType_name = map[int32]string{ 56 0: "METADATA_SCHEMA_TYPE_UNSPECIFIED", 57 1: "ARTIFACT_TYPE", 58 2: "EXECUTION_TYPE", 59 3: "CONTEXT_TYPE", 60 } 61 MetadataSchema_MetadataSchemaType_value = map[string]int32{ 62 "METADATA_SCHEMA_TYPE_UNSPECIFIED": 0, 63 "ARTIFACT_TYPE": 1, 64 "EXECUTION_TYPE": 2, 65 "CONTEXT_TYPE": 3, 66 } 67 ) 68 69 func (x MetadataSchema_MetadataSchemaType) Enum() *MetadataSchema_MetadataSchemaType { 70 p := new(MetadataSchema_MetadataSchemaType) 71 *p = x 72 return p 73 } 74 75 func (x MetadataSchema_MetadataSchemaType) String() string { 76 return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) 77 } 78 79 func (MetadataSchema_MetadataSchemaType) Descriptor() protoreflect.EnumDescriptor { 80 return file_google_cloud_aiplatform_v1_metadata_schema_proto_enumTypes[0].Descriptor() 81 } 82 83 func (MetadataSchema_MetadataSchemaType) Type() protoreflect.EnumType { 84 return &file_google_cloud_aiplatform_v1_metadata_schema_proto_enumTypes[0] 85 } 86 87 func (x MetadataSchema_MetadataSchemaType) Number() protoreflect.EnumNumber { 88 return protoreflect.EnumNumber(x) 89 } 90 91 // Deprecated: Use MetadataSchema_MetadataSchemaType.Descriptor instead. 92 func (MetadataSchema_MetadataSchemaType) EnumDescriptor() ([]byte, []int) { 93 return file_google_cloud_aiplatform_v1_metadata_schema_proto_rawDescGZIP(), []int{0, 0} 94 } 95 96 // Instance of a general MetadataSchema. 97 type MetadataSchema struct { 98 state protoimpl.MessageState 99 sizeCache protoimpl.SizeCache 100 unknownFields protoimpl.UnknownFields 101 102 // Output only. The resource name of the MetadataSchema. 103 Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` 104 // The version of the MetadataSchema. The version's format must match 105 // the following regular expression: `^[0-9]+[.][0-9]+[.][0-9]+$`, which would 106 // allow to order/compare different versions. Example: 1.0.0, 1.0.1, etc. 107 SchemaVersion string `protobuf:"bytes,2,opt,name=schema_version,json=schemaVersion,proto3" json:"schema_version,omitempty"` 108 // Required. The raw YAML string representation of the MetadataSchema. The 109 // combination of [MetadataSchema.version] and the schema name given by 110 // `title` in [MetadataSchema.schema] must be unique within a MetadataStore. 111 // 112 // The schema is defined as an OpenAPI 3.0.2 113 // [MetadataSchema 114 // Object](https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.2.md#schemaObject) 115 Schema string `protobuf:"bytes,3,opt,name=schema,proto3" json:"schema,omitempty"` 116 // The type of the MetadataSchema. This is a property that identifies which 117 // metadata types will use the MetadataSchema. 118 SchemaType MetadataSchema_MetadataSchemaType `protobuf:"varint,4,opt,name=schema_type,json=schemaType,proto3,enum=google.cloud.aiplatform.v1.MetadataSchema_MetadataSchemaType" json:"schema_type,omitempty"` 119 // Output only. Timestamp when this MetadataSchema was created. 120 CreateTime *timestamppb.Timestamp `protobuf:"bytes,5,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty"` 121 // Description of the Metadata Schema 122 Description string `protobuf:"bytes,6,opt,name=description,proto3" json:"description,omitempty"` 123 } 124 125 func (x *MetadataSchema) Reset() { 126 *x = MetadataSchema{} 127 mi := &file_google_cloud_aiplatform_v1_metadata_schema_proto_msgTypes[0] 128 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) 129 ms.StoreMessageInfo(mi) 130 } 131 132 func (x *MetadataSchema) String() string { 133 return protoimpl.X.MessageStringOf(x) 134 } 135 136 func (*MetadataSchema) ProtoMessage() {} 137 138 func (x *MetadataSchema) ProtoReflect() protoreflect.Message { 139 mi := &file_google_cloud_aiplatform_v1_metadata_schema_proto_msgTypes[0] 140 if x != nil { 141 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) 142 if ms.LoadMessageInfo() == nil { 143 ms.StoreMessageInfo(mi) 144 } 145 return ms 146 } 147 return mi.MessageOf(x) 148 } 149 150 // Deprecated: Use MetadataSchema.ProtoReflect.Descriptor instead. 151 func (*MetadataSchema) Descriptor() ([]byte, []int) { 152 return file_google_cloud_aiplatform_v1_metadata_schema_proto_rawDescGZIP(), []int{0} 153 } 154 155 func (x *MetadataSchema) GetName() string { 156 if x != nil { 157 return x.Name 158 } 159 return "" 160 } 161 162 func (x *MetadataSchema) GetSchemaVersion() string { 163 if x != nil { 164 return x.SchemaVersion 165 } 166 return "" 167 } 168 169 func (x *MetadataSchema) GetSchema() string { 170 if x != nil { 171 return x.Schema 172 } 173 return "" 174 } 175 176 func (x *MetadataSchema) GetSchemaType() MetadataSchema_MetadataSchemaType { 177 if x != nil { 178 return x.SchemaType 179 } 180 return MetadataSchema_METADATA_SCHEMA_TYPE_UNSPECIFIED 181 } 182 183 func (x *MetadataSchema) GetCreateTime() *timestamppb.Timestamp { 184 if x != nil { 185 return x.CreateTime 186 } 187 return nil 188 } 189 190 func (x *MetadataSchema) GetDescription() string { 191 if x != nil { 192 return x.Description 193 } 194 return "" 195 } 196 197 var File_google_cloud_aiplatform_v1_metadata_schema_proto protoreflect.FileDescriptor 198 199 var file_google_cloud_aiplatform_v1_metadata_schema_proto_rawDesc = []byte{ 200 0x0a, 0x30, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x2f, 0x61, 201 0x69, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x2f, 0x76, 0x31, 0x2f, 0x6d, 0x65, 0x74, 202 0x61, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x2e, 0x70, 0x72, 0x6f, 203 0x74, 0x6f, 0x12, 0x1a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 204 0x2e, 0x61, 0x69, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x76, 0x31, 0x1a, 0x1f, 205 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 206 0x5f, 0x62, 0x65, 0x68, 0x61, 0x76, 0x69, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 207 0x19, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 208 0x75, 0x72, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 209 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x74, 0x69, 0x6d, 0x65, 210 0x73, 0x74, 0x61, 0x6d, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xc2, 0x04, 0x0a, 0x0e, 211 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x12, 0x17, 212 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 213 0x03, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x25, 0x0a, 0x0e, 0x73, 0x63, 0x68, 0x65, 0x6d, 214 0x61, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 215 0x0d, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x1b, 216 0x0a, 0x06, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 217 0xe0, 0x41, 0x02, 0x52, 0x06, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x12, 0x5e, 0x0a, 0x0b, 0x73, 218 0x63, 0x68, 0x65, 0x6d, 0x61, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0e, 219 0x32, 0x3d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x2e, 220 0x61, 0x69, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x65, 221 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x2e, 0x4d, 0x65, 0x74, 222 0x61, 0x64, 0x61, 0x74, 0x61, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x54, 0x79, 0x70, 0x65, 0x52, 223 0x0a, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x54, 0x79, 0x70, 0x65, 0x12, 0x40, 0x0a, 0x0b, 0x63, 224 0x72, 0x65, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 225 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 226 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x42, 0x03, 0xe0, 0x41, 227 0x03, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x20, 0x0a, 228 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 229 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x22, 230 0x73, 0x0a, 0x12, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x53, 0x63, 0x68, 0x65, 0x6d, 231 0x61, 0x54, 0x79, 0x70, 0x65, 0x12, 0x24, 0x0a, 0x20, 0x4d, 0x45, 0x54, 0x41, 0x44, 0x41, 0x54, 232 0x41, 0x5f, 0x53, 0x43, 0x48, 0x45, 0x4d, 0x41, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x55, 0x4e, 233 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x11, 0x0a, 0x0d, 0x41, 234 0x52, 0x54, 0x49, 0x46, 0x41, 0x43, 0x54, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x10, 0x01, 0x12, 0x12, 235 0x0a, 0x0e, 0x45, 0x58, 0x45, 0x43, 0x55, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45, 236 0x10, 0x02, 0x12, 0x10, 0x0a, 0x0c, 0x43, 0x4f, 0x4e, 0x54, 0x45, 0x58, 0x54, 0x5f, 0x54, 0x59, 237 0x50, 0x45, 0x10, 0x03, 0x3a, 0x99, 0x01, 0xea, 0x41, 0x95, 0x01, 0x0a, 0x28, 0x61, 0x69, 0x70, 238 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 239 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x53, 240 0x63, 0x68, 0x65, 0x6d, 0x61, 0x12, 0x69, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 241 0x7b, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x7d, 0x2f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 242 0x6f, 0x6e, 0x73, 0x2f, 0x7b, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x7d, 0x2f, 0x6d, 243 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x53, 0x74, 0x6f, 0x72, 0x65, 0x73, 0x2f, 0x7b, 0x6d, 244 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x7d, 0x2f, 0x6d, 245 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x73, 0x2f, 0x7b, 246 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x7d, 247 0x42, 0xd1, 0x01, 0x0a, 0x1e, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 248 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x2e, 0x61, 0x69, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 249 0x2e, 0x76, 0x31, 0x42, 0x13, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x53, 0x63, 0x68, 250 0x65, 0x6d, 0x61, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x3e, 0x63, 0x6c, 0x6f, 0x75, 251 0x64, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x67, 0x6f, 0x2f, 252 0x61, 0x69, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x2f, 0x61, 0x70, 0x69, 0x76, 0x31, 253 0x2f, 0x61, 0x69, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x70, 0x62, 0x3b, 0x61, 0x69, 254 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x70, 0x62, 0xaa, 0x02, 0x1a, 0x47, 0x6f, 0x6f, 255 0x67, 0x6c, 0x65, 0x2e, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x2e, 0x41, 0x49, 0x50, 0x6c, 0x61, 0x74, 256 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x56, 0x31, 0xca, 0x02, 0x1a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 257 0x5c, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x5c, 0x41, 0x49, 0x50, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 258 0x6d, 0x5c, 0x56, 0x31, 0xea, 0x02, 0x1d, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x43, 259 0x6c, 0x6f, 0x75, 0x64, 0x3a, 0x3a, 0x41, 0x49, 0x50, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 260 0x3a, 0x3a, 0x56, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, 261 } 262 263 var ( 264 file_google_cloud_aiplatform_v1_metadata_schema_proto_rawDescOnce sync.Once 265 file_google_cloud_aiplatform_v1_metadata_schema_proto_rawDescData = file_google_cloud_aiplatform_v1_metadata_schema_proto_rawDesc 266 ) 267 268 func file_google_cloud_aiplatform_v1_metadata_schema_proto_rawDescGZIP() []byte { 269 file_google_cloud_aiplatform_v1_metadata_schema_proto_rawDescOnce.Do(func() { 270 file_google_cloud_aiplatform_v1_metadata_schema_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_cloud_aiplatform_v1_metadata_schema_proto_rawDescData) 271 }) 272 return file_google_cloud_aiplatform_v1_metadata_schema_proto_rawDescData 273 } 274 275 var file_google_cloud_aiplatform_v1_metadata_schema_proto_enumTypes = make([]protoimpl.EnumInfo, 1) 276 var file_google_cloud_aiplatform_v1_metadata_schema_proto_msgTypes = make([]protoimpl.MessageInfo, 1) 277 var file_google_cloud_aiplatform_v1_metadata_schema_proto_goTypes = []any{ 278 (MetadataSchema_MetadataSchemaType)(0), // 0: google.cloud.aiplatform.v1.MetadataSchema.MetadataSchemaType 279 (*MetadataSchema)(nil), // 1: google.cloud.aiplatform.v1.MetadataSchema 280 (*timestamppb.Timestamp)(nil), // 2: google.protobuf.Timestamp 281 } 282 var file_google_cloud_aiplatform_v1_metadata_schema_proto_depIdxs = []int32{ 283 0, // 0: google.cloud.aiplatform.v1.MetadataSchema.schema_type:type_name -> google.cloud.aiplatform.v1.MetadataSchema.MetadataSchemaType 284 2, // 1: google.cloud.aiplatform.v1.MetadataSchema.create_time:type_name -> google.protobuf.Timestamp 285 2, // [2:2] is the sub-list for method output_type 286 2, // [2:2] is the sub-list for method input_type 287 2, // [2:2] is the sub-list for extension type_name 288 2, // [2:2] is the sub-list for extension extendee 289 0, // [0:2] is the sub-list for field type_name 290 } 291 292 func init() { file_google_cloud_aiplatform_v1_metadata_schema_proto_init() } 293 func file_google_cloud_aiplatform_v1_metadata_schema_proto_init() { 294 if File_google_cloud_aiplatform_v1_metadata_schema_proto != nil { 295 return 296 } 297 type x struct{} 298 out := protoimpl.TypeBuilder{ 299 File: protoimpl.DescBuilder{ 300 GoPackagePath: reflect.TypeOf(x{}).PkgPath(), 301 RawDescriptor: file_google_cloud_aiplatform_v1_metadata_schema_proto_rawDesc, 302 NumEnums: 1, 303 NumMessages: 1, 304 NumExtensions: 0, 305 NumServices: 0, 306 }, 307 GoTypes: file_google_cloud_aiplatform_v1_metadata_schema_proto_goTypes, 308 DependencyIndexes: file_google_cloud_aiplatform_v1_metadata_schema_proto_depIdxs, 309 EnumInfos: file_google_cloud_aiplatform_v1_metadata_schema_proto_enumTypes, 310 MessageInfos: file_google_cloud_aiplatform_v1_metadata_schema_proto_msgTypes, 311 }.Build() 312 File_google_cloud_aiplatform_v1_metadata_schema_proto = out.File 313 file_google_cloud_aiplatform_v1_metadata_schema_proto_rawDesc = nil 314 file_google_cloud_aiplatform_v1_metadata_schema_proto_goTypes = nil 315 file_google_cloud_aiplatform_v1_metadata_schema_proto_depIdxs = nil 316 }