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_store.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// Instance of a metadata store. Contains a set of metadata that can be
46// queried.
47type MetadataStore struct {
48	state         protoimpl.MessageState
49	sizeCache     protoimpl.SizeCache
50	unknownFields protoimpl.UnknownFields
51
52	// Output only. The resource name of the MetadataStore instance.
53	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
54	// Output only. Timestamp when this MetadataStore was created.
55	CreateTime *timestamppb.Timestamp `protobuf:"bytes,3,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty"`
56	// Output only. Timestamp when this MetadataStore was last updated.
57	UpdateTime *timestamppb.Timestamp `protobuf:"bytes,4,opt,name=update_time,json=updateTime,proto3" json:"update_time,omitempty"`
58	// Customer-managed encryption key spec for an Metadata Store. If set, this
59	// Metadata Store and all sub-resources of this Metadata Store will be secured
60	// by this key.
61	EncryptionSpec *EncryptionSpec `protobuf:"bytes,5,opt,name=encryption_spec,json=encryptionSpec,proto3" json:"encryption_spec,omitempty"`
62	// Description of the MetadataStore.
63	Description string `protobuf:"bytes,6,opt,name=description,proto3" json:"description,omitempty"`
64	// Output only. State information of the MetadataStore.
65	State *MetadataStore_MetadataStoreState `protobuf:"bytes,7,opt,name=state,proto3" json:"state,omitempty"`
66}
67
68func (x *MetadataStore) Reset() {
69	*x = MetadataStore{}
70	if protoimpl.UnsafeEnabled {
71		mi := &file_google_cloud_aiplatform_v1beta1_metadata_store_proto_msgTypes[0]
72		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
73		ms.StoreMessageInfo(mi)
74	}
75}
76
77func (x *MetadataStore) String() string {
78	return protoimpl.X.MessageStringOf(x)
79}
80
81func (*MetadataStore) ProtoMessage() {}
82
83func (x *MetadataStore) ProtoReflect() protoreflect.Message {
84	mi := &file_google_cloud_aiplatform_v1beta1_metadata_store_proto_msgTypes[0]
85	if protoimpl.UnsafeEnabled && x != nil {
86		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
87		if ms.LoadMessageInfo() == nil {
88			ms.StoreMessageInfo(mi)
89		}
90		return ms
91	}
92	return mi.MessageOf(x)
93}
94
95// Deprecated: Use MetadataStore.ProtoReflect.Descriptor instead.
96func (*MetadataStore) Descriptor() ([]byte, []int) {
97	return file_google_cloud_aiplatform_v1beta1_metadata_store_proto_rawDescGZIP(), []int{0}
98}
99
100func (x *MetadataStore) GetName() string {
101	if x != nil {
102		return x.Name
103	}
104	return ""
105}
106
107func (x *MetadataStore) GetCreateTime() *timestamppb.Timestamp {
108	if x != nil {
109		return x.CreateTime
110	}
111	return nil
112}
113
114func (x *MetadataStore) GetUpdateTime() *timestamppb.Timestamp {
115	if x != nil {
116		return x.UpdateTime
117	}
118	return nil
119}
120
121func (x *MetadataStore) GetEncryptionSpec() *EncryptionSpec {
122	if x != nil {
123		return x.EncryptionSpec
124	}
125	return nil
126}
127
128func (x *MetadataStore) GetDescription() string {
129	if x != nil {
130		return x.Description
131	}
132	return ""
133}
134
135func (x *MetadataStore) GetState() *MetadataStore_MetadataStoreState {
136	if x != nil {
137		return x.State
138	}
139	return nil
140}
141
142// Represent state information for a MetadataStore.
143type MetadataStore_MetadataStoreState struct {
144	state         protoimpl.MessageState
145	sizeCache     protoimpl.SizeCache
146	unknownFields protoimpl.UnknownFields
147
148	// The disk utilization of the MetadataStore in bytes.
149	DiskUtilizationBytes int64 `protobuf:"varint,1,opt,name=disk_utilization_bytes,json=diskUtilizationBytes,proto3" json:"disk_utilization_bytes,omitempty"`
150}
151
152func (x *MetadataStore_MetadataStoreState) Reset() {
153	*x = MetadataStore_MetadataStoreState{}
154	if protoimpl.UnsafeEnabled {
155		mi := &file_google_cloud_aiplatform_v1beta1_metadata_store_proto_msgTypes[1]
156		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
157		ms.StoreMessageInfo(mi)
158	}
159}
160
161func (x *MetadataStore_MetadataStoreState) String() string {
162	return protoimpl.X.MessageStringOf(x)
163}
164
165func (*MetadataStore_MetadataStoreState) ProtoMessage() {}
166
167func (x *MetadataStore_MetadataStoreState) ProtoReflect() protoreflect.Message {
168	mi := &file_google_cloud_aiplatform_v1beta1_metadata_store_proto_msgTypes[1]
169	if protoimpl.UnsafeEnabled && x != nil {
170		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
171		if ms.LoadMessageInfo() == nil {
172			ms.StoreMessageInfo(mi)
173		}
174		return ms
175	}
176	return mi.MessageOf(x)
177}
178
179// Deprecated: Use MetadataStore_MetadataStoreState.ProtoReflect.Descriptor instead.
180func (*MetadataStore_MetadataStoreState) Descriptor() ([]byte, []int) {
181	return file_google_cloud_aiplatform_v1beta1_metadata_store_proto_rawDescGZIP(), []int{0, 0}
182}
183
184func (x *MetadataStore_MetadataStoreState) GetDiskUtilizationBytes() int64 {
185	if x != nil {
186		return x.DiskUtilizationBytes
187	}
188	return 0
189}
190
191var File_google_cloud_aiplatform_v1beta1_metadata_store_proto protoreflect.FileDescriptor
192
193var file_google_cloud_aiplatform_v1beta1_metadata_store_proto_rawDesc = []byte{
194	0x0a, 0x34, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x2f, 0x61,
195	0x69, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x2f, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61,
196	0x31, 0x2f, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x73, 0x74, 0x6f, 0x72, 0x65,
197	0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x63,
198	0x6c, 0x6f, 0x75, 0x64, 0x2e, 0x61, 0x69, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x2e,
199	0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x31, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f,
200	0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x62, 0x65, 0x68, 0x61, 0x76, 0x69,
201	0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x19, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
202	0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2e, 0x70, 0x72,
203	0x6f, 0x74, 0x6f, 0x1a, 0x35, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x63, 0x6c, 0x6f, 0x75,
204	0x64, 0x2f, 0x61, 0x69, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x2f, 0x76, 0x31, 0x62,
205	0x65, 0x74, 0x61, 0x31, 0x2f, 0x65, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
206	0x73, 0x70, 0x65, 0x63, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67,
207	0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x74, 0x69, 0x6d, 0x65,
208	0x73, 0x74, 0x61, 0x6d, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f,
209	0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69,
210	0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xc9, 0x04, 0x0a, 0x0d, 0x4d, 0x65,
211	0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x53, 0x74, 0x6f, 0x72, 0x65, 0x12, 0x17, 0x0a, 0x04, 0x6e,
212	0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x04,
213	0x6e, 0x61, 0x6d, 0x65, 0x12, 0x40, 0x0a, 0x0b, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x5f, 0x74,
214	0x69, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
215	0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65,
216	0x73, 0x74, 0x61, 0x6d, 0x70, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x61,
217	0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x40, 0x0a, 0x0b, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65,
218	0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f,
219	0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69,
220	0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0a, 0x75, 0x70,
221	0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x58, 0x0a, 0x0f, 0x65, 0x6e, 0x63, 0x72,
222	0x79, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x70, 0x65, 0x63, 0x18, 0x05, 0x20, 0x01, 0x28,
223	0x0b, 0x32, 0x2f, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64,
224	0x2e, 0x61, 0x69, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x76, 0x31, 0x62, 0x65,
225	0x74, 0x61, 0x31, 0x2e, 0x45, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x70,
226	0x65, 0x63, 0x52, 0x0e, 0x65, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x70,
227	0x65, 0x63, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f,
228	0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70,
229	0x74, 0x69, 0x6f, 0x6e, 0x12, 0x5c, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x07, 0x20,
230	0x01, 0x28, 0x0b, 0x32, 0x41, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x63, 0x6c, 0x6f,
231	0x75, 0x64, 0x2e, 0x61, 0x69, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x76, 0x31,
232	0x62, 0x65, 0x74, 0x61, 0x31, 0x2e, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x53, 0x74,
233	0x6f, 0x72, 0x65, 0x2e, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x53, 0x74, 0x6f, 0x72,
234	0x65, 0x53, 0x74, 0x61, 0x74, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x05, 0x73, 0x74, 0x61,
235	0x74, 0x65, 0x1a, 0x4a, 0x0a, 0x12, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x53, 0x74,
236	0x6f, 0x72, 0x65, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x34, 0x0a, 0x16, 0x64, 0x69, 0x73, 0x6b,
237	0x5f, 0x75, 0x74, 0x69, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x62, 0x79, 0x74,
238	0x65, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x14, 0x64, 0x69, 0x73, 0x6b, 0x55, 0x74,
239	0x69, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x79, 0x74, 0x65, 0x73, 0x3a, 0x75,
240	0xea, 0x41, 0x72, 0x0a, 0x27, 0x61, 0x69, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x2e,
241	0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x4d,
242	0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x53, 0x74, 0x6f, 0x72, 0x65, 0x12, 0x47, 0x70, 0x72,
243	0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x7d,
244	0x2f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x7b, 0x6c, 0x6f, 0x63, 0x61,
245	0x74, 0x69, 0x6f, 0x6e, 0x7d, 0x2f, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x53, 0x74,
246	0x6f, 0x72, 0x65, 0x73, 0x2f, 0x7b, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x73,
247	0x74, 0x6f, 0x72, 0x65, 0x7d, 0x42, 0x81, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f,
248	0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x2e, 0x61, 0x69, 0x70, 0x6c, 0x61,
249	0x74, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x31, 0x42, 0x0d, 0x4d,
250	0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49,
251	0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72,
252	0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
253	0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x2f, 0x61, 0x69, 0x70, 0x6c,
254	0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x2f, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x31, 0x3b, 0x61,
255	0x69, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
256	0x33,
257}
258
259var (
260	file_google_cloud_aiplatform_v1beta1_metadata_store_proto_rawDescOnce sync.Once
261	file_google_cloud_aiplatform_v1beta1_metadata_store_proto_rawDescData = file_google_cloud_aiplatform_v1beta1_metadata_store_proto_rawDesc
262)
263
264func file_google_cloud_aiplatform_v1beta1_metadata_store_proto_rawDescGZIP() []byte {
265	file_google_cloud_aiplatform_v1beta1_metadata_store_proto_rawDescOnce.Do(func() {
266		file_google_cloud_aiplatform_v1beta1_metadata_store_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_cloud_aiplatform_v1beta1_metadata_store_proto_rawDescData)
267	})
268	return file_google_cloud_aiplatform_v1beta1_metadata_store_proto_rawDescData
269}
270
271var file_google_cloud_aiplatform_v1beta1_metadata_store_proto_msgTypes = make([]protoimpl.MessageInfo, 2)
272var file_google_cloud_aiplatform_v1beta1_metadata_store_proto_goTypes = []interface{}{
273	(*MetadataStore)(nil),                    // 0: google.cloud.aiplatform.v1beta1.MetadataStore
274	(*MetadataStore_MetadataStoreState)(nil), // 1: google.cloud.aiplatform.v1beta1.MetadataStore.MetadataStoreState
275	(*timestamppb.Timestamp)(nil),            // 2: google.protobuf.Timestamp
276	(*EncryptionSpec)(nil),                   // 3: google.cloud.aiplatform.v1beta1.EncryptionSpec
277}
278var file_google_cloud_aiplatform_v1beta1_metadata_store_proto_depIdxs = []int32{
279	2, // 0: google.cloud.aiplatform.v1beta1.MetadataStore.create_time:type_name -> google.protobuf.Timestamp
280	2, // 1: google.cloud.aiplatform.v1beta1.MetadataStore.update_time:type_name -> google.protobuf.Timestamp
281	3, // 2: google.cloud.aiplatform.v1beta1.MetadataStore.encryption_spec:type_name -> google.cloud.aiplatform.v1beta1.EncryptionSpec
282	1, // 3: google.cloud.aiplatform.v1beta1.MetadataStore.state:type_name -> google.cloud.aiplatform.v1beta1.MetadataStore.MetadataStoreState
283	4, // [4:4] is the sub-list for method output_type
284	4, // [4:4] is the sub-list for method input_type
285	4, // [4:4] is the sub-list for extension type_name
286	4, // [4:4] is the sub-list for extension extendee
287	0, // [0:4] is the sub-list for field type_name
288}
289
290func init() { file_google_cloud_aiplatform_v1beta1_metadata_store_proto_init() }
291func file_google_cloud_aiplatform_v1beta1_metadata_store_proto_init() {
292	if File_google_cloud_aiplatform_v1beta1_metadata_store_proto != nil {
293		return
294	}
295	file_google_cloud_aiplatform_v1beta1_encryption_spec_proto_init()
296	if !protoimpl.UnsafeEnabled {
297		file_google_cloud_aiplatform_v1beta1_metadata_store_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
298			switch v := v.(*MetadataStore); i {
299			case 0:
300				return &v.state
301			case 1:
302				return &v.sizeCache
303			case 2:
304				return &v.unknownFields
305			default:
306				return nil
307			}
308		}
309		file_google_cloud_aiplatform_v1beta1_metadata_store_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
310			switch v := v.(*MetadataStore_MetadataStoreState); i {
311			case 0:
312				return &v.state
313			case 1:
314				return &v.sizeCache
315			case 2:
316				return &v.unknownFields
317			default:
318				return nil
319			}
320		}
321	}
322	type x struct{}
323	out := protoimpl.TypeBuilder{
324		File: protoimpl.DescBuilder{
325			GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
326			RawDescriptor: file_google_cloud_aiplatform_v1beta1_metadata_store_proto_rawDesc,
327			NumEnums:      0,
328			NumMessages:   2,
329			NumExtensions: 0,
330			NumServices:   0,
331		},
332		GoTypes:           file_google_cloud_aiplatform_v1beta1_metadata_store_proto_goTypes,
333		DependencyIndexes: file_google_cloud_aiplatform_v1beta1_metadata_store_proto_depIdxs,
334		MessageInfos:      file_google_cloud_aiplatform_v1beta1_metadata_store_proto_msgTypes,
335	}.Build()
336	File_google_cloud_aiplatform_v1beta1_metadata_store_proto = out.File
337	file_google_cloud_aiplatform_v1beta1_metadata_store_proto_rawDesc = nil
338	file_google_cloud_aiplatform_v1beta1_metadata_store_proto_goTypes = nil
339	file_google_cloud_aiplatform_v1beta1_metadata_store_proto_depIdxs = nil
340}
341