blob: e11a70a4989fcba5932785ec2675ce84ecaaf6ba [file] [log] [blame]
// Copyright 2021 The ChromiumOS Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// protoc-gen-go v1.27.1
// protoc v3.17.1
// source: chromiumos/storage_path.proto
package storage_path
import (
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
reflect "reflect"
sync "sync"
)
const (
// Verify that this generated code is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
// Verify that runtime/protoimpl is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
type StoragePath_HostType int32
const (
StoragePath_HOSTTYPE_UNSPECIFIED StoragePath_HostType = 0
// The resources are hosted locally.
StoragePath_LOCAL StoragePath_HostType = 1
// The resources are hosted in Google Storage.
StoragePath_GS StoragePath_HostType = 2
)
// Enum value maps for StoragePath_HostType.
var (
StoragePath_HostType_name = map[int32]string{
0: "HOSTTYPE_UNSPECIFIED",
1: "LOCAL",
2: "GS",
}
StoragePath_HostType_value = map[string]int32{
"HOSTTYPE_UNSPECIFIED": 0,
"LOCAL": 1,
"GS": 2,
}
)
func (x StoragePath_HostType) Enum() *StoragePath_HostType {
p := new(StoragePath_HostType)
*p = x
return p
}
func (x StoragePath_HostType) String() string {
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
}
func (StoragePath_HostType) Descriptor() protoreflect.EnumDescriptor {
return file_chromiumos_storage_path_proto_enumTypes[0].Descriptor()
}
func (StoragePath_HostType) Type() protoreflect.EnumType {
return &file_chromiumos_storage_path_proto_enumTypes[0]
}
func (x StoragePath_HostType) Number() protoreflect.EnumNumber {
return protoreflect.EnumNumber(x)
}
// Deprecated: Use StoragePath_HostType.Descriptor instead.
func (StoragePath_HostType) EnumDescriptor() ([]byte, []int) {
return file_chromiumos_storage_path_proto_rawDescGZIP(), []int{0, 0}
}
// Defines remote/local path to storage resources
// E.g. build/test artifacts, logs, telemetry, etc...
//
// This abstraction enables consistent API usage regardless of test
// execution environment (local dev, managed labs, ...).
type StoragePath struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
// Host of the storage resources.
HostType StoragePath_HostType `protobuf:"varint,1,opt,name=host_type,json=hostType,proto3,enum=chromiumos.StoragePath_HostType" json:"host_type,omitempty"`
// Path to a directory on the host containing the resources.
Path string `protobuf:"bytes,2,opt,name=path,proto3" json:"path,omitempty"`
}
func (x *StoragePath) Reset() {
*x = StoragePath{}
if protoimpl.UnsafeEnabled {
mi := &file_chromiumos_storage_path_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *StoragePath) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*StoragePath) ProtoMessage() {}
func (x *StoragePath) ProtoReflect() protoreflect.Message {
mi := &file_chromiumos_storage_path_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use StoragePath.ProtoReflect.Descriptor instead.
func (*StoragePath) Descriptor() ([]byte, []int) {
return file_chromiumos_storage_path_proto_rawDescGZIP(), []int{0}
}
func (x *StoragePath) GetHostType() StoragePath_HostType {
if x != nil {
return x.HostType
}
return StoragePath_HOSTTYPE_UNSPECIFIED
}
func (x *StoragePath) GetPath() string {
if x != nil {
return x.Path
}
return ""
}
var File_chromiumos_storage_path_proto protoreflect.FileDescriptor
var file_chromiumos_storage_path_proto_rawDesc = []byte{
0x0a, 0x1d, 0x63, 0x68, 0x72, 0x6f, 0x6d, 0x69, 0x75, 0x6d, 0x6f, 0x73, 0x2f, 0x73, 0x74, 0x6f,
0x72, 0x61, 0x67, 0x65, 0x5f, 0x70, 0x61, 0x74, 0x68, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
0x0a, 0x63, 0x68, 0x72, 0x6f, 0x6d, 0x69, 0x75, 0x6d, 0x6f, 0x73, 0x22, 0x99, 0x01, 0x0a, 0x0b,
0x53, 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x50, 0x61, 0x74, 0x68, 0x12, 0x3d, 0x0a, 0x09, 0x68,
0x6f, 0x73, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x20,
0x2e, 0x63, 0x68, 0x72, 0x6f, 0x6d, 0x69, 0x75, 0x6d, 0x6f, 0x73, 0x2e, 0x53, 0x74, 0x6f, 0x72,
0x61, 0x67, 0x65, 0x50, 0x61, 0x74, 0x68, 0x2e, 0x48, 0x6f, 0x73, 0x74, 0x54, 0x79, 0x70, 0x65,
0x52, 0x08, 0x68, 0x6f, 0x73, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61,
0x74, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x70, 0x61, 0x74, 0x68, 0x22, 0x37,
0x0a, 0x08, 0x48, 0x6f, 0x73, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x18, 0x0a, 0x14, 0x48, 0x4f,
0x53, 0x54, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49,
0x45, 0x44, 0x10, 0x00, 0x12, 0x09, 0x0a, 0x05, 0x4c, 0x4f, 0x43, 0x41, 0x4c, 0x10, 0x01, 0x12,
0x06, 0x0a, 0x02, 0x47, 0x53, 0x10, 0x02, 0x42, 0x33, 0x5a, 0x31, 0x67, 0x6f, 0x2e, 0x63, 0x68,
0x72, 0x6f, 0x6d, 0x69, 0x75, 0x6d, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x63, 0x68, 0x72, 0x6f, 0x6d,
0x69, 0x75, 0x6d, 0x6f, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2f, 0x67, 0x6f, 0x3b,
0x73, 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x70, 0x61, 0x74, 0x68, 0x62, 0x06, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x33,
}
var (
file_chromiumos_storage_path_proto_rawDescOnce sync.Once
file_chromiumos_storage_path_proto_rawDescData = file_chromiumos_storage_path_proto_rawDesc
)
func file_chromiumos_storage_path_proto_rawDescGZIP() []byte {
file_chromiumos_storage_path_proto_rawDescOnce.Do(func() {
file_chromiumos_storage_path_proto_rawDescData = protoimpl.X.CompressGZIP(file_chromiumos_storage_path_proto_rawDescData)
})
return file_chromiumos_storage_path_proto_rawDescData
}
var file_chromiumos_storage_path_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
var file_chromiumos_storage_path_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
var file_chromiumos_storage_path_proto_goTypes = []interface{}{
(StoragePath_HostType)(0), // 0: chromiumos.StoragePath.HostType
(*StoragePath)(nil), // 1: chromiumos.StoragePath
}
var file_chromiumos_storage_path_proto_depIdxs = []int32{
0, // 0: chromiumos.StoragePath.host_type:type_name -> chromiumos.StoragePath.HostType
1, // [1:1] is the sub-list for method output_type
1, // [1:1] is the sub-list for method input_type
1, // [1:1] is the sub-list for extension type_name
1, // [1:1] is the sub-list for extension extendee
0, // [0:1] is the sub-list for field type_name
}
func init() { file_chromiumos_storage_path_proto_init() }
func file_chromiumos_storage_path_proto_init() {
if File_chromiumos_storage_path_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
file_chromiumos_storage_path_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*StoragePath); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_chromiumos_storage_path_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
GoTypes: file_chromiumos_storage_path_proto_goTypes,
DependencyIndexes: file_chromiumos_storage_path_proto_depIdxs,
EnumInfos: file_chromiumos_storage_path_proto_enumTypes,
MessageInfos: file_chromiumos_storage_path_proto_msgTypes,
}.Build()
File_chromiumos_storage_path_proto = out.File
file_chromiumos_storage_path_proto_rawDesc = nil
file_chromiumos_storage_path_proto_goTypes = nil
file_chromiumos_storage_path_proto_depIdxs = nil
}