iop/proto/gen/iop/job.pb.go

413 lines
12 KiB
Go

// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// protoc-gen-go v1.36.11
// protoc v5.29.3
// source: proto/iop/job.proto
package iop
import (
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
reflect "reflect"
sync "sync"
unsafe "unsafe"
)
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 JobStatus int32
const (
JobStatus_JOB_STATUS_UNSPECIFIED JobStatus = 0
JobStatus_JOB_STATUS_PENDING JobStatus = 1
JobStatus_JOB_STATUS_RUNNING JobStatus = 2
JobStatus_JOB_STATUS_COMPLETED JobStatus = 3
JobStatus_JOB_STATUS_FAILED JobStatus = 4
JobStatus_JOB_STATUS_CANCELLED JobStatus = 5
)
// Enum value maps for JobStatus.
var (
JobStatus_name = map[int32]string{
0: "JOB_STATUS_UNSPECIFIED",
1: "JOB_STATUS_PENDING",
2: "JOB_STATUS_RUNNING",
3: "JOB_STATUS_COMPLETED",
4: "JOB_STATUS_FAILED",
5: "JOB_STATUS_CANCELLED",
}
JobStatus_value = map[string]int32{
"JOB_STATUS_UNSPECIFIED": 0,
"JOB_STATUS_PENDING": 1,
"JOB_STATUS_RUNNING": 2,
"JOB_STATUS_COMPLETED": 3,
"JOB_STATUS_FAILED": 4,
"JOB_STATUS_CANCELLED": 5,
}
)
func (x JobStatus) Enum() *JobStatus {
p := new(JobStatus)
*p = x
return p
}
func (x JobStatus) String() string {
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
}
func (JobStatus) Descriptor() protoreflect.EnumDescriptor {
return file_proto_iop_job_proto_enumTypes[0].Descriptor()
}
func (JobStatus) Type() protoreflect.EnumType {
return &file_proto_iop_job_proto_enumTypes[0]
}
func (x JobStatus) Number() protoreflect.EnumNumber {
return protoreflect.EnumNumber(x)
}
// Deprecated: Use JobStatus.Descriptor instead.
func (JobStatus) EnumDescriptor() ([]byte, []int) {
return file_proto_iop_job_proto_rawDescGZIP(), []int{0}
}
type Job struct {
state protoimpl.MessageState `protogen:"open.v1"`
JobId string `protobuf:"bytes,1,opt,name=job_id,json=jobId,proto3" json:"job_id,omitempty"`
RunId string `protobuf:"bytes,2,opt,name=run_id,json=runId,proto3" json:"run_id,omitempty"`
NodeId string `protobuf:"bytes,3,opt,name=node_id,json=nodeId,proto3" json:"node_id,omitempty"`
Adapter string `protobuf:"bytes,4,opt,name=adapter,proto3" json:"adapter,omitempty"`
Target string `protobuf:"bytes,5,opt,name=target,proto3" json:"target,omitempty"`
Status JobStatus `protobuf:"varint,6,opt,name=status,proto3,enum=iop.JobStatus" json:"status,omitempty"`
CreatedAt int64 `protobuf:"varint,7,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
StartedAt int64 `protobuf:"varint,8,opt,name=started_at,json=startedAt,proto3" json:"started_at,omitempty"`
FinishedAt int64 `protobuf:"varint,9,opt,name=finished_at,json=finishedAt,proto3" json:"finished_at,omitempty"`
Error string `protobuf:"bytes,10,opt,name=error,proto3" json:"error,omitempty"`
Metadata map[string]string `protobuf:"bytes,11,rep,name=metadata,proto3" json:"metadata,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
unknownFields protoimpl.UnknownFields
sizeCache protoimpl.SizeCache
}
func (x *Job) Reset() {
*x = Job{}
mi := &file_proto_iop_job_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
func (x *Job) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*Job) ProtoMessage() {}
func (x *Job) ProtoReflect() protoreflect.Message {
mi := &file_proto_iop_job_proto_msgTypes[0]
if x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use Job.ProtoReflect.Descriptor instead.
func (*Job) Descriptor() ([]byte, []int) {
return file_proto_iop_job_proto_rawDescGZIP(), []int{0}
}
func (x *Job) GetJobId() string {
if x != nil {
return x.JobId
}
return ""
}
func (x *Job) GetRunId() string {
if x != nil {
return x.RunId
}
return ""
}
func (x *Job) GetNodeId() string {
if x != nil {
return x.NodeId
}
return ""
}
func (x *Job) GetAdapter() string {
if x != nil {
return x.Adapter
}
return ""
}
func (x *Job) GetTarget() string {
if x != nil {
return x.Target
}
return ""
}
func (x *Job) GetStatus() JobStatus {
if x != nil {
return x.Status
}
return JobStatus_JOB_STATUS_UNSPECIFIED
}
func (x *Job) GetCreatedAt() int64 {
if x != nil {
return x.CreatedAt
}
return 0
}
func (x *Job) GetStartedAt() int64 {
if x != nil {
return x.StartedAt
}
return 0
}
func (x *Job) GetFinishedAt() int64 {
if x != nil {
return x.FinishedAt
}
return 0
}
func (x *Job) GetError() string {
if x != nil {
return x.Error
}
return ""
}
func (x *Job) GetMetadata() map[string]string {
if x != nil {
return x.Metadata
}
return nil
}
type JobListRequest struct {
state protoimpl.MessageState `protogen:"open.v1"`
StatusFilter JobStatus `protobuf:"varint,1,opt,name=status_filter,json=statusFilter,proto3,enum=iop.JobStatus" json:"status_filter,omitempty"`
Limit int32 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
Cursor string `protobuf:"bytes,3,opt,name=cursor,proto3" json:"cursor,omitempty"`
unknownFields protoimpl.UnknownFields
sizeCache protoimpl.SizeCache
}
func (x *JobListRequest) Reset() {
*x = JobListRequest{}
mi := &file_proto_iop_job_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
func (x *JobListRequest) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*JobListRequest) ProtoMessage() {}
func (x *JobListRequest) ProtoReflect() protoreflect.Message {
mi := &file_proto_iop_job_proto_msgTypes[1]
if x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use JobListRequest.ProtoReflect.Descriptor instead.
func (*JobListRequest) Descriptor() ([]byte, []int) {
return file_proto_iop_job_proto_rawDescGZIP(), []int{1}
}
func (x *JobListRequest) GetStatusFilter() JobStatus {
if x != nil {
return x.StatusFilter
}
return JobStatus_JOB_STATUS_UNSPECIFIED
}
func (x *JobListRequest) GetLimit() int32 {
if x != nil {
return x.Limit
}
return 0
}
func (x *JobListRequest) GetCursor() string {
if x != nil {
return x.Cursor
}
return ""
}
type JobListResponse struct {
state protoimpl.MessageState `protogen:"open.v1"`
Jobs []*Job `protobuf:"bytes,1,rep,name=jobs,proto3" json:"jobs,omitempty"`
Next string `protobuf:"bytes,2,opt,name=next,proto3" json:"next,omitempty"`
unknownFields protoimpl.UnknownFields
sizeCache protoimpl.SizeCache
}
func (x *JobListResponse) Reset() {
*x = JobListResponse{}
mi := &file_proto_iop_job_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
func (x *JobListResponse) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*JobListResponse) ProtoMessage() {}
func (x *JobListResponse) ProtoReflect() protoreflect.Message {
mi := &file_proto_iop_job_proto_msgTypes[2]
if x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use JobListResponse.ProtoReflect.Descriptor instead.
func (*JobListResponse) Descriptor() ([]byte, []int) {
return file_proto_iop_job_proto_rawDescGZIP(), []int{2}
}
func (x *JobListResponse) GetJobs() []*Job {
if x != nil {
return x.Jobs
}
return nil
}
func (x *JobListResponse) GetNext() string {
if x != nil {
return x.Next
}
return ""
}
var File_proto_iop_job_proto protoreflect.FileDescriptor
const file_proto_iop_job_proto_rawDesc = "" +
"\n" +
"\x13proto/iop/job.proto\x12\x03iop\"\x8c\x03\n" +
"\x03Job\x12\x15\n" +
"\x06job_id\x18\x01 \x01(\tR\x05jobId\x12\x15\n" +
"\x06run_id\x18\x02 \x01(\tR\x05runId\x12\x17\n" +
"\anode_id\x18\x03 \x01(\tR\x06nodeId\x12\x18\n" +
"\aadapter\x18\x04 \x01(\tR\aadapter\x12\x16\n" +
"\x06target\x18\x05 \x01(\tR\x06target\x12&\n" +
"\x06status\x18\x06 \x01(\x0e2\x0e.iop.JobStatusR\x06status\x12\x1d\n" +
"\n" +
"created_at\x18\a \x01(\x03R\tcreatedAt\x12\x1d\n" +
"\n" +
"started_at\x18\b \x01(\x03R\tstartedAt\x12\x1f\n" +
"\vfinished_at\x18\t \x01(\x03R\n" +
"finishedAt\x12\x14\n" +
"\x05error\x18\n" +
" \x01(\tR\x05error\x122\n" +
"\bmetadata\x18\v \x03(\v2\x16.iop.Job.MetadataEntryR\bmetadata\x1a;\n" +
"\rMetadataEntry\x12\x10\n" +
"\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n" +
"\x05value\x18\x02 \x01(\tR\x05value:\x028\x01\"s\n" +
"\x0eJobListRequest\x123\n" +
"\rstatus_filter\x18\x01 \x01(\x0e2\x0e.iop.JobStatusR\fstatusFilter\x12\x14\n" +
"\x05limit\x18\x02 \x01(\x05R\x05limit\x12\x16\n" +
"\x06cursor\x18\x03 \x01(\tR\x06cursor\"C\n" +
"\x0fJobListResponse\x12\x1c\n" +
"\x04jobs\x18\x01 \x03(\v2\b.iop.JobR\x04jobs\x12\x12\n" +
"\x04next\x18\x02 \x01(\tR\x04next*\xa2\x01\n" +
"\tJobStatus\x12\x1a\n" +
"\x16JOB_STATUS_UNSPECIFIED\x10\x00\x12\x16\n" +
"\x12JOB_STATUS_PENDING\x10\x01\x12\x16\n" +
"\x12JOB_STATUS_RUNNING\x10\x02\x12\x18\n" +
"\x14JOB_STATUS_COMPLETED\x10\x03\x12\x15\n" +
"\x11JOB_STATUS_FAILED\x10\x04\x12\x18\n" +
"\x14JOB_STATUS_CANCELLED\x10\x05B\x13Z\x11iop/proto/gen/iopb\x06proto3"
var (
file_proto_iop_job_proto_rawDescOnce sync.Once
file_proto_iop_job_proto_rawDescData []byte
)
func file_proto_iop_job_proto_rawDescGZIP() []byte {
file_proto_iop_job_proto_rawDescOnce.Do(func() {
file_proto_iop_job_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_proto_iop_job_proto_rawDesc), len(file_proto_iop_job_proto_rawDesc)))
})
return file_proto_iop_job_proto_rawDescData
}
var file_proto_iop_job_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
var file_proto_iop_job_proto_msgTypes = make([]protoimpl.MessageInfo, 4)
var file_proto_iop_job_proto_goTypes = []any{
(JobStatus)(0), // 0: iop.JobStatus
(*Job)(nil), // 1: iop.Job
(*JobListRequest)(nil), // 2: iop.JobListRequest
(*JobListResponse)(nil), // 3: iop.JobListResponse
nil, // 4: iop.Job.MetadataEntry
}
var file_proto_iop_job_proto_depIdxs = []int32{
0, // 0: iop.Job.status:type_name -> iop.JobStatus
4, // 1: iop.Job.metadata:type_name -> iop.Job.MetadataEntry
0, // 2: iop.JobListRequest.status_filter:type_name -> iop.JobStatus
1, // 3: iop.JobListResponse.jobs:type_name -> iop.Job
4, // [4:4] is the sub-list for method output_type
4, // [4:4] is the sub-list for method input_type
4, // [4:4] is the sub-list for extension type_name
4, // [4:4] is the sub-list for extension extendee
0, // [0:4] is the sub-list for field type_name
}
func init() { file_proto_iop_job_proto_init() }
func file_proto_iop_job_proto_init() {
if File_proto_iop_job_proto != nil {
return
}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: unsafe.Slice(unsafe.StringData(file_proto_iop_job_proto_rawDesc), len(file_proto_iop_job_proto_rawDesc)),
NumEnums: 1,
NumMessages: 4,
NumExtensions: 0,
NumServices: 0,
},
GoTypes: file_proto_iop_job_proto_goTypes,
DependencyIndexes: file_proto_iop_job_proto_depIdxs,
EnumInfos: file_proto_iop_job_proto_enumTypes,
MessageInfos: file_proto_iop_job_proto_msgTypes,
}.Build()
File_proto_iop_job_proto = out.File
file_proto_iop_job_proto_goTypes = nil
file_proto_iop_job_proto_depIdxs = nil
}