blob: a00ab76a2b6211e75678d8d93af28c291fa57469 [file] [log] [blame]
// Code generated by protoc-gen-go. DO NOT EDIT.
// source: test_platform/skylab_local_state/load.proto
package skylab_local_state
import (
fmt "fmt"
proto "github.com/golang/protobuf/proto"
skylab_test_runner "go.chromium.org/chromiumos/infra/proto/go/test_platform/skylab_test_runner"
math "math"
)
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
// This is a compile-time assertion to ensure that this generated file
// is compatible with the proto package it is being compiled against.
// A compilation error at this line likely means your copy of the
// proto package needs to be updated.
const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
// LoadRequest defines the input of `skylab_local_state load`.
type LoadRequest struct {
Config *Config `protobuf:"bytes,1,opt,name=config,proto3" json:"config,omitempty"`
ResultsDir string `protobuf:"bytes,2,opt,name=results_dir,json=resultsDir,proto3" json:"results_dir,omitempty"` // Deprecated: Do not use.
// DUT hostname.
DutName string `protobuf:"bytes,3,opt,name=dut_name,json=dutName,proto3" json:"dut_name,omitempty"`
// Swarming run ID. Used in the results directory name.
RunId string `protobuf:"bytes,4,opt,name=run_id,json=runId,proto3" json:"run_id,omitempty"`
// DUT ID, used in the name of the DUT state cache file.
DutId string `protobuf:"bytes,5,opt,name=dut_id,json=dutId,proto3" json:"dut_id,omitempty"`
// Test ID, used in the results directory name
TestId string `protobuf:"bytes,6,opt,name=test_id,json=testId,proto3" json:"test_id,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *LoadRequest) Reset() { *m = LoadRequest{} }
func (m *LoadRequest) String() string { return proto.CompactTextString(m) }
func (*LoadRequest) ProtoMessage() {}
func (*LoadRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_8da18a4489bdf85e, []int{0}
}
func (m *LoadRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_LoadRequest.Unmarshal(m, b)
}
func (m *LoadRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_LoadRequest.Marshal(b, m, deterministic)
}
func (m *LoadRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_LoadRequest.Merge(m, src)
}
func (m *LoadRequest) XXX_Size() int {
return xxx_messageInfo_LoadRequest.Size(m)
}
func (m *LoadRequest) XXX_DiscardUnknown() {
xxx_messageInfo_LoadRequest.DiscardUnknown(m)
}
var xxx_messageInfo_LoadRequest proto.InternalMessageInfo
func (m *LoadRequest) GetConfig() *Config {
if m != nil {
return m.Config
}
return nil
}
// Deprecated: Do not use.
func (m *LoadRequest) GetResultsDir() string {
if m != nil {
return m.ResultsDir
}
return ""
}
func (m *LoadRequest) GetDutName() string {
if m != nil {
return m.DutName
}
return ""
}
func (m *LoadRequest) GetRunId() string {
if m != nil {
return m.RunId
}
return ""
}
func (m *LoadRequest) GetDutId() string {
if m != nil {
return m.DutId
}
return ""
}
func (m *LoadRequest) GetTestId() string {
if m != nil {
return m.TestId
}
return ""
}
// LoadResponse defines the output of `skylab_local_state load`.
type LoadResponse struct {
// What is currently installed on the DUT, e.g.
// "cros-version": "reef-release/R77-12345.0.0".
ProvisionableLabels map[string]string `protobuf:"bytes,1,rep,name=provisionable_labels,json=provisionableLabels,proto3" json:"provisionable_labels,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
// The path to the newly created directory containing the host info file.
ResultsDir string `protobuf:"bytes,2,opt,name=results_dir,json=resultsDir,proto3" json:"results_dir,omitempty"`
// Paths to future results archives.
// These paths depend on the path of the local results directory, so they
// become well-defined the moment the local directory is created.
// `skylab_local_state load` does not perform the offload to the locations,
// the offload happens asynchronously after the task finishes.
AsyncResults *skylab_test_runner.AsyncResults `protobuf:"bytes,3,opt,name=async_results,json=asyncResults,proto3" json:"async_results,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *LoadResponse) Reset() { *m = LoadResponse{} }
func (m *LoadResponse) String() string { return proto.CompactTextString(m) }
func (*LoadResponse) ProtoMessage() {}
func (*LoadResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_8da18a4489bdf85e, []int{1}
}
func (m *LoadResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_LoadResponse.Unmarshal(m, b)
}
func (m *LoadResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_LoadResponse.Marshal(b, m, deterministic)
}
func (m *LoadResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_LoadResponse.Merge(m, src)
}
func (m *LoadResponse) XXX_Size() int {
return xxx_messageInfo_LoadResponse.Size(m)
}
func (m *LoadResponse) XXX_DiscardUnknown() {
xxx_messageInfo_LoadResponse.DiscardUnknown(m)
}
var xxx_messageInfo_LoadResponse proto.InternalMessageInfo
func (m *LoadResponse) GetProvisionableLabels() map[string]string {
if m != nil {
return m.ProvisionableLabels
}
return nil
}
func (m *LoadResponse) GetResultsDir() string {
if m != nil {
return m.ResultsDir
}
return ""
}
func (m *LoadResponse) GetAsyncResults() *skylab_test_runner.AsyncResults {
if m != nil {
return m.AsyncResults
}
return nil
}
func init() {
proto.RegisterType((*LoadRequest)(nil), "test_platform.skylab_local_state.LoadRequest")
proto.RegisterType((*LoadResponse)(nil), "test_platform.skylab_local_state.LoadResponse")
proto.RegisterMapType((map[string]string)(nil), "test_platform.skylab_local_state.LoadResponse.ProvisionableLabelsEntry")
}
func init() {
proto.RegisterFile("test_platform/skylab_local_state/load.proto", fileDescriptor_8da18a4489bdf85e)
}
var fileDescriptor_8da18a4489bdf85e = []byte{
// 411 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x52, 0xdd, 0x6a, 0x14, 0x31,
0x18, 0x65, 0x76, 0xdd, 0xa9, 0xcd, 0x54, 0x90, 0x58, 0x31, 0xf6, 0xc6, 0xa5, 0xde, 0x2c, 0x88,
0x09, 0xac, 0x37, 0xe2, 0x95, 0xd6, 0x3f, 0x56, 0x16, 0x91, 0x78, 0xe7, 0x4d, 0xc8, 0x4e, 0xb2,
0x6b, 0x68, 0x26, 0xdf, 0x98, 0x9f, 0xc2, 0xfa, 0x84, 0x3e, 0x81, 0xcf, 0x23, 0x93, 0x59, 0x61,
0x4a, 0x5b, 0xe6, 0x6e, 0xce, 0xc9, 0x39, 0x67, 0x4e, 0xbe, 0x7c, 0xe8, 0x45, 0xd4, 0x21, 0x8a,
0xd6, 0xca, 0xb8, 0x05, 0xdf, 0xb0, 0x70, 0xb9, 0xb7, 0x72, 0x23, 0x2c, 0xd4, 0xd2, 0x8a, 0x10,
0x65, 0xd4, 0xcc, 0x82, 0x54, 0xb4, 0xf5, 0x10, 0x01, 0xcf, 0xaf, 0x89, 0xe9, 0x4d, 0xf1, 0xd9,
0xcb, 0xd1, 0xb8, 0x1a, 0x9a, 0x06, 0x5c, 0x1f, 0x78, 0x87, 0x3c, 0x93, 0x3e, 0x39, 0xa7, 0x3d,
0xf3, 0x3a, 0x24, 0x1b, 0x7b, 0xf9, 0xf9, 0xdf, 0x02, 0x55, 0x6b, 0x90, 0x8a, 0xeb, 0x5f, 0x49,
0x87, 0x88, 0xdf, 0xa2, 0xb2, 0x06, 0xb7, 0x35, 0x3b, 0x52, 0xcc, 0x8b, 0x45, 0xb5, 0x5c, 0xd0,
0xb1, 0x82, 0xf4, 0x7d, 0xd6, 0xf3, 0x83, 0x0f, 0x3f, 0x47, 0x55, 0xff, 0x87, 0x20, 0x94, 0xf1,
0x64, 0x32, 0x2f, 0x16, 0xc7, 0x17, 0x13, 0x52, 0x70, 0x74, 0xa0, 0x3f, 0x18, 0x8f, 0x9f, 0xa2,
0xfb, 0x2a, 0x45, 0xe1, 0x64, 0xa3, 0xc9, 0xb4, 0x53, 0xf0, 0x23, 0x95, 0xe2, 0x57, 0xd9, 0x68,
0xfc, 0x18, 0x95, 0x3e, 0x39, 0x61, 0x14, 0xb9, 0x97, 0x0f, 0x66, 0x3e, 0xb9, 0x95, 0xea, 0xe8,
0xce, 0x61, 0x14, 0x99, 0xf5, 0xb4, 0x4a, 0x71, 0xa5, 0xf0, 0x13, 0x74, 0x94, 0x0b, 0x1a, 0x45,
0xca, 0xcc, 0x97, 0x1d, 0x5c, 0xa9, 0xf3, 0x3f, 0x13, 0x74, 0xd2, 0x5f, 0x2c, 0xb4, 0xe0, 0x82,
0xc6, 0xbf, 0xd1, 0x69, 0xeb, 0xe1, 0xca, 0x04, 0x03, 0x4e, 0x6e, 0xac, 0x16, 0x56, 0x6e, 0xb4,
0x0d, 0xa4, 0x98, 0x4f, 0x17, 0xd5, 0xf2, 0xf3, 0xf8, 0x3d, 0x87, 0x69, 0xf4, 0xdb, 0x30, 0x6a,
0x9d, 0x93, 0x3e, 0xba, 0xe8, 0xf7, 0xfc, 0x51, 0x7b, 0xf3, 0x04, 0x3f, 0xbb, 0x65, 0x26, 0xd7,
0xe6, 0xf1, 0x1d, 0x3d, 0x90, 0x61, 0xef, 0x6a, 0x71, 0xe0, 0xf2, 0x50, 0xaa, 0x25, 0xbd, 0xbd,
0xd5, 0xe0, 0x35, 0xe9, 0xbb, 0xce, 0xc6, 0x7b, 0x17, 0x3f, 0x91, 0x03, 0x74, 0xf6, 0x09, 0x91,
0xbb, 0x6a, 0xe2, 0x87, 0x68, 0x7a, 0xa9, 0xf7, 0xf9, 0x91, 0x8f, 0x79, 0xf7, 0x89, 0x4f, 0xd1,
0xec, 0x4a, 0xda, 0xa4, 0x0f, 0xed, 0x7a, 0xf0, 0x66, 0xf2, 0xba, 0xb8, 0x58, 0xff, 0xf8, 0xb2,
0x03, 0x5a, 0xff, 0xf4, 0xd0, 0x98, 0xd4, 0x50, 0xf0, 0x3b, 0xf6, 0x1f, 0x40, 0x60, 0xc6, 0x6d,
0xbd, 0x64, 0x79, 0x9b, 0xd8, 0x0e, 0xd8, 0xd8, 0xb6, 0x6e, 0xca, 0x2c, 0x7d, 0xf5, 0x2f, 0x00,
0x00, 0xff, 0xff, 0x05, 0x70, 0x80, 0x5e, 0x27, 0x03, 0x00, 0x00,
}