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/types.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)
32
33const (
34	// Verify that this generated code is sufficiently up-to-date.
35	_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
36	// Verify that runtime/protoimpl is sufficiently up-to-date.
37	_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
38)
39
40// This is a compile-time assertion that a sufficiently up-to-date version
41// of the legacy proto package is being used.
42const _ = proto.ProtoPackageIsVersion4
43
44// A list of boolean values.
45type BoolArray struct {
46	state         protoimpl.MessageState
47	sizeCache     protoimpl.SizeCache
48	unknownFields protoimpl.UnknownFields
49
50	// A list of bool values.
51	Values []bool `protobuf:"varint,1,rep,packed,name=values,proto3" json:"values,omitempty"`
52}
53
54func (x *BoolArray) Reset() {
55	*x = BoolArray{}
56	if protoimpl.UnsafeEnabled {
57		mi := &file_google_cloud_aiplatform_v1beta1_types_proto_msgTypes[0]
58		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
59		ms.StoreMessageInfo(mi)
60	}
61}
62
63func (x *BoolArray) String() string {
64	return protoimpl.X.MessageStringOf(x)
65}
66
67func (*BoolArray) ProtoMessage() {}
68
69func (x *BoolArray) ProtoReflect() protoreflect.Message {
70	mi := &file_google_cloud_aiplatform_v1beta1_types_proto_msgTypes[0]
71	if protoimpl.UnsafeEnabled && x != nil {
72		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
73		if ms.LoadMessageInfo() == nil {
74			ms.StoreMessageInfo(mi)
75		}
76		return ms
77	}
78	return mi.MessageOf(x)
79}
80
81// Deprecated: Use BoolArray.ProtoReflect.Descriptor instead.
82func (*BoolArray) Descriptor() ([]byte, []int) {
83	return file_google_cloud_aiplatform_v1beta1_types_proto_rawDescGZIP(), []int{0}
84}
85
86func (x *BoolArray) GetValues() []bool {
87	if x != nil {
88		return x.Values
89	}
90	return nil
91}
92
93// A list of double values.
94type DoubleArray struct {
95	state         protoimpl.MessageState
96	sizeCache     protoimpl.SizeCache
97	unknownFields protoimpl.UnknownFields
98
99	// A list of bool values.
100	Values []float64 `protobuf:"fixed64,1,rep,packed,name=values,proto3" json:"values,omitempty"`
101}
102
103func (x *DoubleArray) Reset() {
104	*x = DoubleArray{}
105	if protoimpl.UnsafeEnabled {
106		mi := &file_google_cloud_aiplatform_v1beta1_types_proto_msgTypes[1]
107		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
108		ms.StoreMessageInfo(mi)
109	}
110}
111
112func (x *DoubleArray) String() string {
113	return protoimpl.X.MessageStringOf(x)
114}
115
116func (*DoubleArray) ProtoMessage() {}
117
118func (x *DoubleArray) ProtoReflect() protoreflect.Message {
119	mi := &file_google_cloud_aiplatform_v1beta1_types_proto_msgTypes[1]
120	if protoimpl.UnsafeEnabled && x != nil {
121		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
122		if ms.LoadMessageInfo() == nil {
123			ms.StoreMessageInfo(mi)
124		}
125		return ms
126	}
127	return mi.MessageOf(x)
128}
129
130// Deprecated: Use DoubleArray.ProtoReflect.Descriptor instead.
131func (*DoubleArray) Descriptor() ([]byte, []int) {
132	return file_google_cloud_aiplatform_v1beta1_types_proto_rawDescGZIP(), []int{1}
133}
134
135func (x *DoubleArray) GetValues() []float64 {
136	if x != nil {
137		return x.Values
138	}
139	return nil
140}
141
142// A list of int64 values.
143type Int64Array struct {
144	state         protoimpl.MessageState
145	sizeCache     protoimpl.SizeCache
146	unknownFields protoimpl.UnknownFields
147
148	// A list of int64 values.
149	Values []int64 `protobuf:"varint,1,rep,packed,name=values,proto3" json:"values,omitempty"`
150}
151
152func (x *Int64Array) Reset() {
153	*x = Int64Array{}
154	if protoimpl.UnsafeEnabled {
155		mi := &file_google_cloud_aiplatform_v1beta1_types_proto_msgTypes[2]
156		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
157		ms.StoreMessageInfo(mi)
158	}
159}
160
161func (x *Int64Array) String() string {
162	return protoimpl.X.MessageStringOf(x)
163}
164
165func (*Int64Array) ProtoMessage() {}
166
167func (x *Int64Array) ProtoReflect() protoreflect.Message {
168	mi := &file_google_cloud_aiplatform_v1beta1_types_proto_msgTypes[2]
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 Int64Array.ProtoReflect.Descriptor instead.
180func (*Int64Array) Descriptor() ([]byte, []int) {
181	return file_google_cloud_aiplatform_v1beta1_types_proto_rawDescGZIP(), []int{2}
182}
183
184func (x *Int64Array) GetValues() []int64 {
185	if x != nil {
186		return x.Values
187	}
188	return nil
189}
190
191// A list of string values.
192type StringArray struct {
193	state         protoimpl.MessageState
194	sizeCache     protoimpl.SizeCache
195	unknownFields protoimpl.UnknownFields
196
197	// A list of string values.
198	Values []string `protobuf:"bytes,1,rep,name=values,proto3" json:"values,omitempty"`
199}
200
201func (x *StringArray) Reset() {
202	*x = StringArray{}
203	if protoimpl.UnsafeEnabled {
204		mi := &file_google_cloud_aiplatform_v1beta1_types_proto_msgTypes[3]
205		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
206		ms.StoreMessageInfo(mi)
207	}
208}
209
210func (x *StringArray) String() string {
211	return protoimpl.X.MessageStringOf(x)
212}
213
214func (*StringArray) ProtoMessage() {}
215
216func (x *StringArray) ProtoReflect() protoreflect.Message {
217	mi := &file_google_cloud_aiplatform_v1beta1_types_proto_msgTypes[3]
218	if protoimpl.UnsafeEnabled && x != nil {
219		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
220		if ms.LoadMessageInfo() == nil {
221			ms.StoreMessageInfo(mi)
222		}
223		return ms
224	}
225	return mi.MessageOf(x)
226}
227
228// Deprecated: Use StringArray.ProtoReflect.Descriptor instead.
229func (*StringArray) Descriptor() ([]byte, []int) {
230	return file_google_cloud_aiplatform_v1beta1_types_proto_rawDescGZIP(), []int{3}
231}
232
233func (x *StringArray) GetValues() []string {
234	if x != nil {
235		return x.Values
236	}
237	return nil
238}
239
240var File_google_cloud_aiplatform_v1beta1_types_proto protoreflect.FileDescriptor
241
242var file_google_cloud_aiplatform_v1beta1_types_proto_rawDesc = []byte{
243	0x0a, 0x2b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x2f, 0x61,
244	0x69, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x2f, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61,
245	0x31, 0x2f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67,
246	0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x2e, 0x61, 0x69, 0x70, 0x6c,
247	0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x31, 0x1a, 0x1c,
248	0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74,
249	0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x23, 0x0a, 0x09,
250	0x42, 0x6f, 0x6f, 0x6c, 0x41, 0x72, 0x72, 0x61, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x76, 0x61, 0x6c,
251	0x75, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x08, 0x52, 0x06, 0x76, 0x61, 0x6c, 0x75, 0x65,
252	0x73, 0x22, 0x25, 0x0a, 0x0b, 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x41, 0x72, 0x72, 0x61, 0x79,
253	0x12, 0x16, 0x0a, 0x06, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x01,
254	0x52, 0x06, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x22, 0x24, 0x0a, 0x0a, 0x49, 0x6e, 0x74, 0x36,
255	0x34, 0x41, 0x72, 0x72, 0x61, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x73,
256	0x18, 0x01, 0x20, 0x03, 0x28, 0x03, 0x52, 0x06, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x22, 0x25,
257	0x0a, 0x0b, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x41, 0x72, 0x72, 0x61, 0x79, 0x12, 0x16, 0x0a,
258	0x06, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x06, 0x76,
259	0x61, 0x6c, 0x75, 0x65, 0x73, 0x42, 0x7e, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f,
260	0x67, 0x6c, 0x65, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x2e, 0x61, 0x69, 0x70, 0x6c, 0x61, 0x74,
261	0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x31, 0x42, 0x0a, 0x54, 0x79,
262	0x70, 0x65, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x49, 0x67, 0x6f, 0x6f, 0x67,
263	0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65,
264	0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69,
265	0x73, 0x2f, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x2f, 0x61, 0x69, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f,
266	0x72, 0x6d, 0x2f, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x31, 0x3b, 0x61, 0x69, 0x70, 0x6c, 0x61,
267	0x74, 0x66, 0x6f, 0x72, 0x6d, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
268}
269
270var (
271	file_google_cloud_aiplatform_v1beta1_types_proto_rawDescOnce sync.Once
272	file_google_cloud_aiplatform_v1beta1_types_proto_rawDescData = file_google_cloud_aiplatform_v1beta1_types_proto_rawDesc
273)
274
275func file_google_cloud_aiplatform_v1beta1_types_proto_rawDescGZIP() []byte {
276	file_google_cloud_aiplatform_v1beta1_types_proto_rawDescOnce.Do(func() {
277		file_google_cloud_aiplatform_v1beta1_types_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_cloud_aiplatform_v1beta1_types_proto_rawDescData)
278	})
279	return file_google_cloud_aiplatform_v1beta1_types_proto_rawDescData
280}
281
282var file_google_cloud_aiplatform_v1beta1_types_proto_msgTypes = make([]protoimpl.MessageInfo, 4)
283var file_google_cloud_aiplatform_v1beta1_types_proto_goTypes = []interface{}{
284	(*BoolArray)(nil),   // 0: google.cloud.aiplatform.v1beta1.BoolArray
285	(*DoubleArray)(nil), // 1: google.cloud.aiplatform.v1beta1.DoubleArray
286	(*Int64Array)(nil),  // 2: google.cloud.aiplatform.v1beta1.Int64Array
287	(*StringArray)(nil), // 3: google.cloud.aiplatform.v1beta1.StringArray
288}
289var file_google_cloud_aiplatform_v1beta1_types_proto_depIdxs = []int32{
290	0, // [0:0] is the sub-list for method output_type
291	0, // [0:0] is the sub-list for method input_type
292	0, // [0:0] is the sub-list for extension type_name
293	0, // [0:0] is the sub-list for extension extendee
294	0, // [0:0] is the sub-list for field type_name
295}
296
297func init() { file_google_cloud_aiplatform_v1beta1_types_proto_init() }
298func file_google_cloud_aiplatform_v1beta1_types_proto_init() {
299	if File_google_cloud_aiplatform_v1beta1_types_proto != nil {
300		return
301	}
302	if !protoimpl.UnsafeEnabled {
303		file_google_cloud_aiplatform_v1beta1_types_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
304			switch v := v.(*BoolArray); 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		file_google_cloud_aiplatform_v1beta1_types_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
316			switch v := v.(*DoubleArray); i {
317			case 0:
318				return &v.state
319			case 1:
320				return &v.sizeCache
321			case 2:
322				return &v.unknownFields
323			default:
324				return nil
325			}
326		}
327		file_google_cloud_aiplatform_v1beta1_types_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
328			switch v := v.(*Int64Array); i {
329			case 0:
330				return &v.state
331			case 1:
332				return &v.sizeCache
333			case 2:
334				return &v.unknownFields
335			default:
336				return nil
337			}
338		}
339		file_google_cloud_aiplatform_v1beta1_types_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
340			switch v := v.(*StringArray); i {
341			case 0:
342				return &v.state
343			case 1:
344				return &v.sizeCache
345			case 2:
346				return &v.unknownFields
347			default:
348				return nil
349			}
350		}
351	}
352	type x struct{}
353	out := protoimpl.TypeBuilder{
354		File: protoimpl.DescBuilder{
355			GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
356			RawDescriptor: file_google_cloud_aiplatform_v1beta1_types_proto_rawDesc,
357			NumEnums:      0,
358			NumMessages:   4,
359			NumExtensions: 0,
360			NumServices:   0,
361		},
362		GoTypes:           file_google_cloud_aiplatform_v1beta1_types_proto_goTypes,
363		DependencyIndexes: file_google_cloud_aiplatform_v1beta1_types_proto_depIdxs,
364		MessageInfos:      file_google_cloud_aiplatform_v1beta1_types_proto_msgTypes,
365	}.Build()
366	File_google_cloud_aiplatform_v1beta1_types_proto = out.File
367	file_google_cloud_aiplatform_v1beta1_types_proto_rawDesc = nil
368	file_google_cloud_aiplatform_v1beta1_types_proto_goTypes = nil
369	file_google_cloud_aiplatform_v1beta1_types_proto_depIdxs = nil
370}
371