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