Documentation
¶
Index ¶
- Variables
- type DisconnectAction
- type Job
- type JobAssignedAction
- type PauseAction
- type ResumeAction
- type StreamPingsRequest
- func (*StreamPingsRequest) Descriptor() ([]byte, []int)deprecated
- func (x *StreamPingsRequest) GetAgentId() string
- func (*StreamPingsRequest) ProtoMessage()
- func (x *StreamPingsRequest) ProtoReflect() protoreflect.Message
- func (x *StreamPingsRequest) Reset()
- func (x *StreamPingsRequest) String() string
- type StreamPingsResponse
- func (*StreamPingsResponse) Descriptor() ([]byte, []int)deprecated
- func (x *StreamPingsResponse) GetAction() isStreamPingsResponse_Action
- func (x *StreamPingsResponse) GetDisconnect() *DisconnectAction
- func (x *StreamPingsResponse) GetJobAssigned() *JobAssignedAction
- func (x *StreamPingsResponse) GetPause() *PauseAction
- func (x *StreamPingsResponse) GetResume() *ResumeAction
- func (*StreamPingsResponse) ProtoMessage()
- func (x *StreamPingsResponse) ProtoReflect() protoreflect.Message
- func (x *StreamPingsResponse) Reset()
- func (x *StreamPingsResponse) String() string
- type StreamPingsResponse_Disconnect
- type StreamPingsResponse_JobAssigned
- type StreamPingsResponse_Pause
- type StreamPingsResponse_Resume
Constants ¶
This section is empty.
Variables ¶
View Source
var File_agentedge_proto protoreflect.FileDescriptor
Functions ¶
This section is empty.
Types ¶
type DisconnectAction ¶
type DisconnectAction struct {
Reason string `protobuf:"bytes,1,opt,name=reason,proto3" json:"reason,omitempty"`
// contains filtered or unexported fields
}
func (*DisconnectAction) Descriptor
deprecated
func (*DisconnectAction) Descriptor() ([]byte, []int)
Deprecated: Use DisconnectAction.ProtoReflect.Descriptor instead.
func (*DisconnectAction) GetReason ¶
func (x *DisconnectAction) GetReason() string
func (*DisconnectAction) ProtoMessage ¶
func (*DisconnectAction) ProtoMessage()
func (*DisconnectAction) ProtoReflect ¶
func (x *DisconnectAction) ProtoReflect() protoreflect.Message
func (*DisconnectAction) Reset ¶
func (x *DisconnectAction) Reset()
func (*DisconnectAction) String ¶
func (x *DisconnectAction) String() string
type Job ¶
type Job struct {
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
// contains filtered or unexported fields
}
func (*Job) Descriptor
deprecated
func (*Job) ProtoMessage ¶
func (*Job) ProtoMessage()
func (*Job) ProtoReflect ¶
func (x *Job) ProtoReflect() protoreflect.Message
type JobAssignedAction ¶
type JobAssignedAction struct {
Job *Job `protobuf:"bytes,1,opt,name=job,proto3" json:"job,omitempty"`
// contains filtered or unexported fields
}
func (*JobAssignedAction) Descriptor
deprecated
func (*JobAssignedAction) Descriptor() ([]byte, []int)
Deprecated: Use JobAssignedAction.ProtoReflect.Descriptor instead.
func (*JobAssignedAction) GetJob ¶
func (x *JobAssignedAction) GetJob() *Job
func (*JobAssignedAction) ProtoMessage ¶
func (*JobAssignedAction) ProtoMessage()
func (*JobAssignedAction) ProtoReflect ¶
func (x *JobAssignedAction) ProtoReflect() protoreflect.Message
func (*JobAssignedAction) Reset ¶
func (x *JobAssignedAction) Reset()
func (*JobAssignedAction) String ¶
func (x *JobAssignedAction) String() string
type PauseAction ¶
type PauseAction struct {
Reason string `protobuf:"bytes,1,opt,name=reason,proto3" json:"reason,omitempty"`
// contains filtered or unexported fields
}
func (*PauseAction) Descriptor
deprecated
func (*PauseAction) Descriptor() ([]byte, []int)
Deprecated: Use PauseAction.ProtoReflect.Descriptor instead.
func (*PauseAction) GetReason ¶
func (x *PauseAction) GetReason() string
func (*PauseAction) ProtoMessage ¶
func (*PauseAction) ProtoMessage()
func (*PauseAction) ProtoReflect ¶
func (x *PauseAction) ProtoReflect() protoreflect.Message
func (*PauseAction) Reset ¶
func (x *PauseAction) Reset()
func (*PauseAction) String ¶
func (x *PauseAction) String() string
type ResumeAction ¶
type ResumeAction struct {
// contains filtered or unexported fields
}
func (*ResumeAction) Descriptor
deprecated
func (*ResumeAction) Descriptor() ([]byte, []int)
Deprecated: Use ResumeAction.ProtoReflect.Descriptor instead.
func (*ResumeAction) ProtoMessage ¶
func (*ResumeAction) ProtoMessage()
func (*ResumeAction) ProtoReflect ¶
func (x *ResumeAction) ProtoReflect() protoreflect.Message
func (*ResumeAction) Reset ¶
func (x *ResumeAction) Reset()
func (*ResumeAction) String ¶
func (x *ResumeAction) String() string
type StreamPingsRequest ¶
type StreamPingsRequest struct {
AgentId string `protobuf:"bytes,1,opt,name=agent_id,json=agentId,proto3" json:"agent_id,omitempty"`
// contains filtered or unexported fields
}
func (*StreamPingsRequest) Descriptor
deprecated
func (*StreamPingsRequest) Descriptor() ([]byte, []int)
Deprecated: Use StreamPingsRequest.ProtoReflect.Descriptor instead.
func (*StreamPingsRequest) GetAgentId ¶
func (x *StreamPingsRequest) GetAgentId() string
func (*StreamPingsRequest) ProtoMessage ¶
func (*StreamPingsRequest) ProtoMessage()
func (*StreamPingsRequest) ProtoReflect ¶
func (x *StreamPingsRequest) ProtoReflect() protoreflect.Message
func (*StreamPingsRequest) Reset ¶
func (x *StreamPingsRequest) Reset()
func (*StreamPingsRequest) String ¶
func (x *StreamPingsRequest) String() string
type StreamPingsResponse ¶
type StreamPingsResponse struct {
// Types that are valid to be assigned to Action:
//
// *StreamPingsResponse_Resume
// *StreamPingsResponse_Pause
// *StreamPingsResponse_Disconnect
// *StreamPingsResponse_JobAssigned
Action isStreamPingsResponse_Action `protobuf_oneof:"action"`
// contains filtered or unexported fields
}
func (*StreamPingsResponse) Descriptor
deprecated
func (*StreamPingsResponse) Descriptor() ([]byte, []int)
Deprecated: Use StreamPingsResponse.ProtoReflect.Descriptor instead.
func (*StreamPingsResponse) GetAction ¶
func (x *StreamPingsResponse) GetAction() isStreamPingsResponse_Action
func (*StreamPingsResponse) GetDisconnect ¶
func (x *StreamPingsResponse) GetDisconnect() *DisconnectAction
func (*StreamPingsResponse) GetJobAssigned ¶
func (x *StreamPingsResponse) GetJobAssigned() *JobAssignedAction
func (*StreamPingsResponse) GetPause ¶
func (x *StreamPingsResponse) GetPause() *PauseAction
func (*StreamPingsResponse) GetResume ¶
func (x *StreamPingsResponse) GetResume() *ResumeAction
func (*StreamPingsResponse) ProtoMessage ¶
func (*StreamPingsResponse) ProtoMessage()
func (*StreamPingsResponse) ProtoReflect ¶
func (x *StreamPingsResponse) ProtoReflect() protoreflect.Message
func (*StreamPingsResponse) Reset ¶
func (x *StreamPingsResponse) Reset()
func (*StreamPingsResponse) String ¶
func (x *StreamPingsResponse) String() string
type StreamPingsResponse_Disconnect ¶
type StreamPingsResponse_Disconnect struct {
Disconnect *DisconnectAction `protobuf:"bytes,4,opt,name=disconnect,proto3,oneof"`
}
type StreamPingsResponse_JobAssigned ¶
type StreamPingsResponse_JobAssigned struct {
JobAssigned *JobAssignedAction `protobuf:"bytes,5,opt,name=job_assigned,json=jobAssigned,proto3,oneof"`
}
type StreamPingsResponse_Pause ¶
type StreamPingsResponse_Pause struct {
Pause *PauseAction `protobuf:"bytes,3,opt,name=pause,proto3,oneof"`
}
type StreamPingsResponse_Resume ¶
type StreamPingsResponse_Resume struct {
Resume *ResumeAction `protobuf:"bytes,2,opt,name=resume,proto3,oneof"`
}
Click to show internal directories.
Click to hide internal directories.