api

package
v1.2.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 27, 2020 License: MPL-2.0 Imports: 8 Imported by: 12

Documentation

Index

Constants

This section is empty.

Variables

View Source
var Annotation_Level_name = map[int32]string{
	0: "NOTICE",
	1: "WARNING",
	2: "FAILURE",
}
View Source
var Annotation_Level_value = map[string]int32{
	"NOTICE":  0,
	"WARNING": 1,
	"FAILURE": 2,
}
View Source
var Annotation_Type_name = map[int32]string{
	0: "GENERIC",
	1: "TEST_RESULT",
	2: "LINT_RESULT",
	3: "ANALYSIS_RESULT",
}
View Source
var Annotation_Type_value = map[string]int32{
	"GENERIC":         0,
	"TEST_RESULT":     1,
	"LINT_RESULT":     2,
	"ANALYSIS_RESULT": 3,
}
View Source
var Platform_name = map[int32]string{
	0: "LINUX",
	1: "WINDOWS",
}
View Source
var Platform_value = map[string]int32{
	"LINUX":   0,
	"WINDOWS": 1,
}
View Source
var Task_Status_name = map[int32]string{
	0: "CREATED",
	1: "TRIGGERED",
	2: "SCHEDULED",
	3: "EXECUTING",
	4: "ABORTED",
	5: "FAILED",
	6: "COMPLETED",
	7: "SKIPPED",
}
View Source
var Task_Status_value = map[string]int32{
	"CREATED":   0,
	"TRIGGERED": 1,
	"SCHEDULED": 2,
	"EXECUTING": 3,
	"ABORTED":   4,
	"FAILED":    5,
	"COMPLETED": 6,
	"SKIPPED":   7,
}

Functions

func RegisterCirrusCIServiceServer

func RegisterCirrusCIServiceServer(s *grpc.Server, srv CirrusCIServiceServer)

Types

type AdditionalContainer

type AdditionalContainer struct {
	Name                 string            `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Image                string            `protobuf:"bytes,2,opt,name=image,proto3" json:"image,omitempty"`
	Cpu                  float32           `protobuf:"fixed32,3,opt,name=cpu,proto3" json:"cpu,omitempty"`
	Memory               uint32            `protobuf:"varint,4,opt,name=memory,proto3" json:"memory,omitempty"`
	ContainerPort        uint32            `protobuf:"varint,5,opt,name=container_port,json=containerPort,proto3" json:"container_port,omitempty"`
	Environment          map[string]string `` /* 163-byte string literal not displayed */
	Command              []string          `protobuf:"bytes,7,rep,name=command,proto3" json:"command,omitempty"`
	ReadinessCommand     []string          `protobuf:"bytes,8,rep,name=readiness_command,json=readinessCommand,proto3" json:"readiness_command,omitempty"`
	Privileged           bool              `protobuf:"varint,9,opt,name=privileged,proto3" json:"privileged,omitempty"`
	HostPort             uint32            `protobuf:"varint,10,opt,name=host_port,json=hostPort,proto3" json:"host_port,omitempty"`
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_unrecognized     []byte            `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

func (*AdditionalContainer) Descriptor

func (*AdditionalContainer) Descriptor() ([]byte, []int)

func (*AdditionalContainer) GetCommand

func (m *AdditionalContainer) GetCommand() []string

func (*AdditionalContainer) GetContainerPort

func (m *AdditionalContainer) GetContainerPort() uint32

func (*AdditionalContainer) GetCpu

func (m *AdditionalContainer) GetCpu() float32

func (*AdditionalContainer) GetEnvironment

func (m *AdditionalContainer) GetEnvironment() map[string]string

func (*AdditionalContainer) GetHostPort

func (m *AdditionalContainer) GetHostPort() uint32

func (*AdditionalContainer) GetImage

func (m *AdditionalContainer) GetImage() string

func (*AdditionalContainer) GetMemory

func (m *AdditionalContainer) GetMemory() uint32

func (*AdditionalContainer) GetName

func (m *AdditionalContainer) GetName() string

func (*AdditionalContainer) GetPrivileged

func (m *AdditionalContainer) GetPrivileged() bool

func (*AdditionalContainer) GetReadinessCommand

func (m *AdditionalContainer) GetReadinessCommand() []string

func (*AdditionalContainer) ProtoMessage

func (*AdditionalContainer) ProtoMessage()

func (*AdditionalContainer) Reset

func (m *AdditionalContainer) Reset()

func (*AdditionalContainer) String

func (m *AdditionalContainer) String() string

func (*AdditionalContainer) XXX_DiscardUnknown

func (m *AdditionalContainer) XXX_DiscardUnknown()

func (*AdditionalContainer) XXX_Marshal

func (m *AdditionalContainer) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*AdditionalContainer) XXX_Merge

func (m *AdditionalContainer) XXX_Merge(src proto.Message)

func (*AdditionalContainer) XXX_Size

func (m *AdditionalContainer) XXX_Size() int

func (*AdditionalContainer) XXX_Unmarshal

func (m *AdditionalContainer) XXX_Unmarshal(b []byte) error

type Annotation

type Annotation struct {
	Type                 Annotation_Type          `protobuf:"varint,1,opt,name=type,proto3,enum=org.cirruslabs.ci.services.cirruscigrpc.Annotation_Type" json:"type,omitempty"`
	Level                Annotation_Level         `` /* 126-byte string literal not displayed */
	Message              string                   `protobuf:"bytes,3,opt,name=message,proto3" json:"message,omitempty"`
	RawDetails           string                   `protobuf:"bytes,4,opt,name=raw_details,json=rawDetails,proto3" json:"raw_details,omitempty"`
	FullyQualifiedName   string                   `protobuf:"bytes,5,opt,name=fully_qualified_name,json=fullyQualifiedName,proto3" json:"fully_qualified_name,omitempty"`
	FileLocation         *Annotation_FileLocation `protobuf:"bytes,6,opt,name=file_location,json=fileLocation,proto3" json:"file_location,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                 `json:"-"`
	XXX_unrecognized     []byte                   `json:"-"`
	XXX_sizecache        int32                    `json:"-"`
}

func (*Annotation) Descriptor

func (*Annotation) Descriptor() ([]byte, []int)

func (*Annotation) GetFileLocation

func (m *Annotation) GetFileLocation() *Annotation_FileLocation

func (*Annotation) GetFullyQualifiedName

func (m *Annotation) GetFullyQualifiedName() string

func (*Annotation) GetLevel

func (m *Annotation) GetLevel() Annotation_Level

func (*Annotation) GetMessage

func (m *Annotation) GetMessage() string

func (*Annotation) GetRawDetails

func (m *Annotation) GetRawDetails() string

func (*Annotation) GetType

func (m *Annotation) GetType() Annotation_Type

func (*Annotation) ProtoMessage

func (*Annotation) ProtoMessage()

func (*Annotation) Reset

func (m *Annotation) Reset()

func (*Annotation) String

func (m *Annotation) String() string

func (*Annotation) XXX_DiscardUnknown

func (m *Annotation) XXX_DiscardUnknown()

func (*Annotation) XXX_Marshal

func (m *Annotation) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Annotation) XXX_Merge

func (m *Annotation) XXX_Merge(src proto.Message)

func (*Annotation) XXX_Size

func (m *Annotation) XXX_Size() int

func (*Annotation) XXX_Unmarshal

func (m *Annotation) XXX_Unmarshal(b []byte) error

type Annotation_FileLocation

type Annotation_FileLocation struct {
	Path                 string   `protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty"`
	StartLine            int64    `protobuf:"varint,2,opt,name=start_line,json=startLine,proto3" json:"start_line,omitempty"`
	EndLine              int64    `protobuf:"varint,3,opt,name=end_line,json=endLine,proto3" json:"end_line,omitempty"`
	StartColumn          int64    `protobuf:"varint,4,opt,name=start_column,json=startColumn,proto3" json:"start_column,omitempty"`
	EndColumn            int64    `protobuf:"varint,5,opt,name=end_column,json=endColumn,proto3" json:"end_column,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*Annotation_FileLocation) Descriptor

func (*Annotation_FileLocation) Descriptor() ([]byte, []int)

func (*Annotation_FileLocation) GetEndColumn

func (m *Annotation_FileLocation) GetEndColumn() int64

func (*Annotation_FileLocation) GetEndLine

func (m *Annotation_FileLocation) GetEndLine() int64

func (*Annotation_FileLocation) GetPath

func (m *Annotation_FileLocation) GetPath() string

func (*Annotation_FileLocation) GetStartColumn

func (m *Annotation_FileLocation) GetStartColumn() int64

func (*Annotation_FileLocation) GetStartLine

func (m *Annotation_FileLocation) GetStartLine() int64

func (*Annotation_FileLocation) ProtoMessage

func (*Annotation_FileLocation) ProtoMessage()

func (*Annotation_FileLocation) Reset

func (m *Annotation_FileLocation) Reset()

func (*Annotation_FileLocation) String

func (m *Annotation_FileLocation) String() string

func (*Annotation_FileLocation) XXX_DiscardUnknown

func (m *Annotation_FileLocation) XXX_DiscardUnknown()

func (*Annotation_FileLocation) XXX_Marshal

func (m *Annotation_FileLocation) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Annotation_FileLocation) XXX_Merge

func (m *Annotation_FileLocation) XXX_Merge(src proto.Message)

func (*Annotation_FileLocation) XXX_Size

func (m *Annotation_FileLocation) XXX_Size() int

func (*Annotation_FileLocation) XXX_Unmarshal

func (m *Annotation_FileLocation) XXX_Unmarshal(b []byte) error

type Annotation_Level

type Annotation_Level int32
const (
	Annotation_NOTICE  Annotation_Level = 0
	Annotation_WARNING Annotation_Level = 1
	Annotation_FAILURE Annotation_Level = 2
)

func (Annotation_Level) EnumDescriptor

func (Annotation_Level) EnumDescriptor() ([]byte, []int)

func (Annotation_Level) String

func (x Annotation_Level) String() string

type Annotation_Type

type Annotation_Type int32
const (
	Annotation_GENERIC         Annotation_Type = 0
	Annotation_TEST_RESULT     Annotation_Type = 1
	Annotation_LINT_RESULT     Annotation_Type = 2
	Annotation_ANALYSIS_RESULT Annotation_Type = 3
)

func (Annotation_Type) EnumDescriptor

func (Annotation_Type) EnumDescriptor() ([]byte, []int)

func (Annotation_Type) String

func (x Annotation_Type) String() string

type ArtifactEntry

type ArtifactEntry struct {
	// Types that are valid to be assigned to Value:
	//	*ArtifactEntry_ArtifactsUpload_
	//	*ArtifactEntry_Chunk
	Value                isArtifactEntry_Value `protobuf_oneof:"value"`
	XXX_NoUnkeyedLiteral struct{}              `json:"-"`
	XXX_unrecognized     []byte                `json:"-"`
	XXX_sizecache        int32                 `json:"-"`
}

func (*ArtifactEntry) Descriptor

func (*ArtifactEntry) Descriptor() ([]byte, []int)

func (*ArtifactEntry) GetArtifactsUpload

func (m *ArtifactEntry) GetArtifactsUpload() *ArtifactEntry_ArtifactsUpload

func (*ArtifactEntry) GetChunk

func (*ArtifactEntry) GetValue

func (m *ArtifactEntry) GetValue() isArtifactEntry_Value

func (*ArtifactEntry) ProtoMessage

func (*ArtifactEntry) ProtoMessage()

func (*ArtifactEntry) Reset

func (m *ArtifactEntry) Reset()

func (*ArtifactEntry) String

func (m *ArtifactEntry) String() string

func (*ArtifactEntry) XXX_DiscardUnknown

func (m *ArtifactEntry) XXX_DiscardUnknown()

func (*ArtifactEntry) XXX_Marshal

func (m *ArtifactEntry) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ArtifactEntry) XXX_Merge

func (m *ArtifactEntry) XXX_Merge(src proto.Message)

func (*ArtifactEntry) XXX_OneofWrappers

func (*ArtifactEntry) XXX_OneofWrappers() []interface{}

XXX_OneofWrappers is for the internal use of the proto package.

func (*ArtifactEntry) XXX_Size

func (m *ArtifactEntry) XXX_Size() int

func (*ArtifactEntry) XXX_Unmarshal

func (m *ArtifactEntry) XXX_Unmarshal(b []byte) error

type ArtifactEntry_ArtifactChunk

type ArtifactEntry_ArtifactChunk struct {
	ArtifactPath         string   `protobuf:"bytes,1,opt,name=artifact_path,json=artifactPath,proto3" json:"artifact_path,omitempty"`
	Data                 []byte   `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ArtifactEntry_ArtifactChunk) Descriptor

func (*ArtifactEntry_ArtifactChunk) Descriptor() ([]byte, []int)

func (*ArtifactEntry_ArtifactChunk) GetArtifactPath

func (m *ArtifactEntry_ArtifactChunk) GetArtifactPath() string

func (*ArtifactEntry_ArtifactChunk) GetData

func (m *ArtifactEntry_ArtifactChunk) GetData() []byte

func (*ArtifactEntry_ArtifactChunk) ProtoMessage

func (*ArtifactEntry_ArtifactChunk) ProtoMessage()

func (*ArtifactEntry_ArtifactChunk) Reset

func (m *ArtifactEntry_ArtifactChunk) Reset()

func (*ArtifactEntry_ArtifactChunk) String

func (m *ArtifactEntry_ArtifactChunk) String() string

func (*ArtifactEntry_ArtifactChunk) XXX_DiscardUnknown

func (m *ArtifactEntry_ArtifactChunk) XXX_DiscardUnknown()

func (*ArtifactEntry_ArtifactChunk) XXX_Marshal

func (m *ArtifactEntry_ArtifactChunk) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ArtifactEntry_ArtifactChunk) XXX_Merge

func (m *ArtifactEntry_ArtifactChunk) XXX_Merge(src proto.Message)

func (*ArtifactEntry_ArtifactChunk) XXX_Size

func (m *ArtifactEntry_ArtifactChunk) XXX_Size() int

func (*ArtifactEntry_ArtifactChunk) XXX_Unmarshal

func (m *ArtifactEntry_ArtifactChunk) XXX_Unmarshal(b []byte) error

type ArtifactEntry_ArtifactsUpload

type ArtifactEntry_ArtifactsUpload struct {
	TaskIdentification   *TaskIdentification `protobuf:"bytes,1,opt,name=task_identification,json=taskIdentification,proto3" json:"task_identification,omitempty"`
	Name                 string              `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Type                 string              `protobuf:"bytes,3,opt,name=type,proto3" json:"type,omitempty"`
	Format               string              `protobuf:"bytes,4,opt,name=format,proto3" json:"format,omitempty"`
	XXX_NoUnkeyedLiteral struct{}            `json:"-"`
	XXX_unrecognized     []byte              `json:"-"`
	XXX_sizecache        int32               `json:"-"`
}

func (*ArtifactEntry_ArtifactsUpload) Descriptor

func (*ArtifactEntry_ArtifactsUpload) Descriptor() ([]byte, []int)

func (*ArtifactEntry_ArtifactsUpload) GetFormat

func (m *ArtifactEntry_ArtifactsUpload) GetFormat() string

func (*ArtifactEntry_ArtifactsUpload) GetName

func (*ArtifactEntry_ArtifactsUpload) GetTaskIdentification

func (m *ArtifactEntry_ArtifactsUpload) GetTaskIdentification() *TaskIdentification

func (*ArtifactEntry_ArtifactsUpload) GetType

func (*ArtifactEntry_ArtifactsUpload) ProtoMessage

func (*ArtifactEntry_ArtifactsUpload) ProtoMessage()

func (*ArtifactEntry_ArtifactsUpload) Reset

func (m *ArtifactEntry_ArtifactsUpload) Reset()

func (*ArtifactEntry_ArtifactsUpload) String

func (*ArtifactEntry_ArtifactsUpload) XXX_DiscardUnknown

func (m *ArtifactEntry_ArtifactsUpload) XXX_DiscardUnknown()

func (*ArtifactEntry_ArtifactsUpload) XXX_Marshal

func (m *ArtifactEntry_ArtifactsUpload) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ArtifactEntry_ArtifactsUpload) XXX_Merge

func (m *ArtifactEntry_ArtifactsUpload) XXX_Merge(src proto.Message)

func (*ArtifactEntry_ArtifactsUpload) XXX_Size

func (m *ArtifactEntry_ArtifactsUpload) XXX_Size() int

func (*ArtifactEntry_ArtifactsUpload) XXX_Unmarshal

func (m *ArtifactEntry_ArtifactsUpload) XXX_Unmarshal(b []byte) error

type ArtifactEntry_ArtifactsUpload_

type ArtifactEntry_ArtifactsUpload_ struct {
	ArtifactsUpload *ArtifactEntry_ArtifactsUpload `protobuf:"bytes,1,opt,name=artifacts_upload,json=artifactsUpload,proto3,oneof"`
}

type ArtifactEntry_Chunk

type ArtifactEntry_Chunk struct {
	Chunk *ArtifactEntry_ArtifactChunk `protobuf:"bytes,2,opt,name=chunk,proto3,oneof"`
}

type ArtifactsInstruction

type ArtifactsInstruction struct {
	Paths                []string `protobuf:"bytes,1,rep,name=paths,proto3" json:"paths,omitempty"`
	Type                 string   `protobuf:"bytes,2,opt,name=type,proto3" json:"type,omitempty"`
	Format               string   `protobuf:"bytes,3,opt,name=format,proto3" json:"format,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ArtifactsInstruction) Descriptor

func (*ArtifactsInstruction) Descriptor() ([]byte, []int)

func (*ArtifactsInstruction) GetFormat

func (m *ArtifactsInstruction) GetFormat() string

func (*ArtifactsInstruction) GetPaths

func (m *ArtifactsInstruction) GetPaths() []string

func (*ArtifactsInstruction) GetType

func (m *ArtifactsInstruction) GetType() string

func (*ArtifactsInstruction) ProtoMessage

func (*ArtifactsInstruction) ProtoMessage()

func (*ArtifactsInstruction) Reset

func (m *ArtifactsInstruction) Reset()

func (*ArtifactsInstruction) String

func (m *ArtifactsInstruction) String() string

func (*ArtifactsInstruction) XXX_DiscardUnknown

func (m *ArtifactsInstruction) XXX_DiscardUnknown()

func (*ArtifactsInstruction) XXX_Marshal

func (m *ArtifactsInstruction) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ArtifactsInstruction) XXX_Merge

func (m *ArtifactsInstruction) XXX_Merge(src proto.Message)

func (*ArtifactsInstruction) XXX_Size

func (m *ArtifactsInstruction) XXX_Size() int

func (*ArtifactsInstruction) XXX_Unmarshal

func (m *ArtifactsInstruction) XXX_Unmarshal(b []byte) error

type BackgroundScriptInstruction

type BackgroundScriptInstruction struct {
	Scripts              []string `protobuf:"bytes,1,rep,name=scripts,proto3" json:"scripts,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*BackgroundScriptInstruction) Descriptor

func (*BackgroundScriptInstruction) Descriptor() ([]byte, []int)

func (*BackgroundScriptInstruction) GetScripts

func (m *BackgroundScriptInstruction) GetScripts() []string

func (*BackgroundScriptInstruction) ProtoMessage

func (*BackgroundScriptInstruction) ProtoMessage()

func (*BackgroundScriptInstruction) Reset

func (m *BackgroundScriptInstruction) Reset()

func (*BackgroundScriptInstruction) String

func (m *BackgroundScriptInstruction) String() string

func (*BackgroundScriptInstruction) XXX_DiscardUnknown

func (m *BackgroundScriptInstruction) XXX_DiscardUnknown()

func (*BackgroundScriptInstruction) XXX_Marshal

func (m *BackgroundScriptInstruction) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*BackgroundScriptInstruction) XXX_Merge

func (m *BackgroundScriptInstruction) XXX_Merge(src proto.Message)

func (*BackgroundScriptInstruction) XXX_Size

func (m *BackgroundScriptInstruction) XXX_Size() int

func (*BackgroundScriptInstruction) XXX_Unmarshal

func (m *BackgroundScriptInstruction) XXX_Unmarshal(b []byte) error

type CacheEntry

type CacheEntry struct {
	// Types that are valid to be assigned to Value:
	//	*CacheEntry_Key
	//	*CacheEntry_Chunk
	Value                isCacheEntry_Value `protobuf_oneof:"value"`
	XXX_NoUnkeyedLiteral struct{}           `json:"-"`
	XXX_unrecognized     []byte             `json:"-"`
	XXX_sizecache        int32              `json:"-"`
}

func (*CacheEntry) Descriptor

func (*CacheEntry) Descriptor() ([]byte, []int)

func (*CacheEntry) GetChunk

func (m *CacheEntry) GetChunk() *DataChunk

func (*CacheEntry) GetKey

func (m *CacheEntry) GetKey() *CacheEntry_CacheKey

func (*CacheEntry) GetValue

func (m *CacheEntry) GetValue() isCacheEntry_Value

func (*CacheEntry) ProtoMessage

func (*CacheEntry) ProtoMessage()

func (*CacheEntry) Reset

func (m *CacheEntry) Reset()

func (*CacheEntry) String

func (m *CacheEntry) String() string

func (*CacheEntry) XXX_DiscardUnknown

func (m *CacheEntry) XXX_DiscardUnknown()

func (*CacheEntry) XXX_Marshal

func (m *CacheEntry) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CacheEntry) XXX_Merge

func (m *CacheEntry) XXX_Merge(src proto.Message)

func (*CacheEntry) XXX_OneofWrappers

func (*CacheEntry) XXX_OneofWrappers() []interface{}

XXX_OneofWrappers is for the internal use of the proto package.

func (*CacheEntry) XXX_Size

func (m *CacheEntry) XXX_Size() int

func (*CacheEntry) XXX_Unmarshal

func (m *CacheEntry) XXX_Unmarshal(b []byte) error

type CacheEntry_CacheKey

type CacheEntry_CacheKey struct {
	TaskIdentification   *TaskIdentification `protobuf:"bytes,1,opt,name=task_identification,json=taskIdentification,proto3" json:"task_identification,omitempty"`
	CacheKey             string              `protobuf:"bytes,2,opt,name=cache_key,json=cacheKey,proto3" json:"cache_key,omitempty"`
	XXX_NoUnkeyedLiteral struct{}            `json:"-"`
	XXX_unrecognized     []byte              `json:"-"`
	XXX_sizecache        int32               `json:"-"`
}

func (*CacheEntry_CacheKey) Descriptor

func (*CacheEntry_CacheKey) Descriptor() ([]byte, []int)

func (*CacheEntry_CacheKey) GetCacheKey

func (m *CacheEntry_CacheKey) GetCacheKey() string

func (*CacheEntry_CacheKey) GetTaskIdentification

func (m *CacheEntry_CacheKey) GetTaskIdentification() *TaskIdentification

func (*CacheEntry_CacheKey) ProtoMessage

func (*CacheEntry_CacheKey) ProtoMessage()

func (*CacheEntry_CacheKey) Reset

func (m *CacheEntry_CacheKey) Reset()

func (*CacheEntry_CacheKey) String

func (m *CacheEntry_CacheKey) String() string

func (*CacheEntry_CacheKey) XXX_DiscardUnknown

func (m *CacheEntry_CacheKey) XXX_DiscardUnknown()

func (*CacheEntry_CacheKey) XXX_Marshal

func (m *CacheEntry_CacheKey) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CacheEntry_CacheKey) XXX_Merge

func (m *CacheEntry_CacheKey) XXX_Merge(src proto.Message)

func (*CacheEntry_CacheKey) XXX_Size

func (m *CacheEntry_CacheKey) XXX_Size() int

func (*CacheEntry_CacheKey) XXX_Unmarshal

func (m *CacheEntry_CacheKey) XXX_Unmarshal(b []byte) error

type CacheEntry_Chunk

type CacheEntry_Chunk struct {
	Chunk *DataChunk `protobuf:"bytes,2,opt,name=chunk,proto3,oneof"`
}

type CacheEntry_Key

type CacheEntry_Key struct {
	Key *CacheEntry_CacheKey `protobuf:"bytes,1,opt,name=key,proto3,oneof"`
}

type CacheInfo

type CacheInfo struct {
	Key                  string   `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	SizeInBytes          int64    `protobuf:"varint,2,opt,name=size_in_bytes,json=sizeInBytes,proto3" json:"size_in_bytes,omitempty"`
	CreationTimestamp    int64    `protobuf:"varint,3,opt,name=creation_timestamp,json=creationTimestamp,proto3" json:"creation_timestamp,omitempty"`
	CreatedByTaskId      int64    `protobuf:"varint,4,opt,name=created_by_task_id,json=createdByTaskId,proto3" json:"created_by_task_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*CacheInfo) Descriptor

func (*CacheInfo) Descriptor() ([]byte, []int)

func (*CacheInfo) GetCreatedByTaskId

func (m *CacheInfo) GetCreatedByTaskId() int64

func (*CacheInfo) GetCreationTimestamp

func (m *CacheInfo) GetCreationTimestamp() int64

func (*CacheInfo) GetKey

func (m *CacheInfo) GetKey() string

func (*CacheInfo) GetSizeInBytes

func (m *CacheInfo) GetSizeInBytes() int64

func (*CacheInfo) ProtoMessage

func (*CacheInfo) ProtoMessage()

func (*CacheInfo) Reset

func (m *CacheInfo) Reset()

func (*CacheInfo) String

func (m *CacheInfo) String() string

func (*CacheInfo) XXX_DiscardUnknown

func (m *CacheInfo) XXX_DiscardUnknown()

func (*CacheInfo) XXX_Marshal

func (m *CacheInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CacheInfo) XXX_Merge

func (m *CacheInfo) XXX_Merge(src proto.Message)

func (*CacheInfo) XXX_Size

func (m *CacheInfo) XXX_Size() int

func (*CacheInfo) XXX_Unmarshal

func (m *CacheInfo) XXX_Unmarshal(b []byte) error

type CacheInfoRequest

type CacheInfoRequest struct {
	TaskIdentification   *TaskIdentification `protobuf:"bytes,1,opt,name=task_identification,json=taskIdentification,proto3" json:"task_identification,omitempty"`
	CacheKey             string              `protobuf:"bytes,2,opt,name=cache_key,json=cacheKey,proto3" json:"cache_key,omitempty"`
	XXX_NoUnkeyedLiteral struct{}            `json:"-"`
	XXX_unrecognized     []byte              `json:"-"`
	XXX_sizecache        int32               `json:"-"`
}

func (*CacheInfoRequest) Descriptor

func (*CacheInfoRequest) Descriptor() ([]byte, []int)

func (*CacheInfoRequest) GetCacheKey

func (m *CacheInfoRequest) GetCacheKey() string

func (*CacheInfoRequest) GetTaskIdentification

func (m *CacheInfoRequest) GetTaskIdentification() *TaskIdentification

func (*CacheInfoRequest) ProtoMessage

func (*CacheInfoRequest) ProtoMessage()

func (*CacheInfoRequest) Reset

func (m *CacheInfoRequest) Reset()

func (*CacheInfoRequest) String

func (m *CacheInfoRequest) String() string

func (*CacheInfoRequest) XXX_DiscardUnknown

func (m *CacheInfoRequest) XXX_DiscardUnknown()

func (*CacheInfoRequest) XXX_Marshal

func (m *CacheInfoRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CacheInfoRequest) XXX_Merge

func (m *CacheInfoRequest) XXX_Merge(src proto.Message)

func (*CacheInfoRequest) XXX_Size

func (m *CacheInfoRequest) XXX_Size() int

func (*CacheInfoRequest) XXX_Unmarshal

func (m *CacheInfoRequest) XXX_Unmarshal(b []byte) error

type CacheInfoResponse

type CacheInfoResponse struct {
	Info                 *CacheInfo `protobuf:"bytes,1,opt,name=info,proto3" json:"info,omitempty"`
	XXX_NoUnkeyedLiteral struct{}   `json:"-"`
	XXX_unrecognized     []byte     `json:"-"`
	XXX_sizecache        int32      `json:"-"`
}

func (*CacheInfoResponse) Descriptor

func (*CacheInfoResponse) Descriptor() ([]byte, []int)

func (*CacheInfoResponse) GetInfo

func (m *CacheInfoResponse) GetInfo() *CacheInfo

func (*CacheInfoResponse) ProtoMessage

func (*CacheInfoResponse) ProtoMessage()

func (*CacheInfoResponse) Reset

func (m *CacheInfoResponse) Reset()

func (*CacheInfoResponse) String

func (m *CacheInfoResponse) String() string

func (*CacheInfoResponse) XXX_DiscardUnknown

func (m *CacheInfoResponse) XXX_DiscardUnknown()

func (*CacheInfoResponse) XXX_Marshal

func (m *CacheInfoResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CacheInfoResponse) XXX_Merge

func (m *CacheInfoResponse) XXX_Merge(src proto.Message)

func (*CacheInfoResponse) XXX_Size

func (m *CacheInfoResponse) XXX_Size() int

func (*CacheInfoResponse) XXX_Unmarshal

func (m *CacheInfoResponse) XXX_Unmarshal(b []byte) error

type CacheInstruction

type CacheInstruction struct {
	Folder               string   `protobuf:"bytes,1,opt,name=folder,proto3" json:"folder,omitempty"`
	FingerprintScripts   []string `protobuf:"bytes,2,rep,name=fingerprint_scripts,json=fingerprintScripts,proto3" json:"fingerprint_scripts,omitempty"`
	PopulateScripts      []string `protobuf:"bytes,3,rep,name=populate_scripts,json=populateScripts,proto3" json:"populate_scripts,omitempty"`
	ReuploadOnChanges    bool     `protobuf:"varint,4,opt,name=reupload_on_changes,json=reuploadOnChanges,proto3" json:"reupload_on_changes,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*CacheInstruction) Descriptor

func (*CacheInstruction) Descriptor() ([]byte, []int)

func (*CacheInstruction) GetFingerprintScripts

func (m *CacheInstruction) GetFingerprintScripts() []string

func (*CacheInstruction) GetFolder

func (m *CacheInstruction) GetFolder() string

func (*CacheInstruction) GetPopulateScripts

func (m *CacheInstruction) GetPopulateScripts() []string

func (*CacheInstruction) GetReuploadOnChanges

func (m *CacheInstruction) GetReuploadOnChanges() bool

func (*CacheInstruction) ProtoMessage

func (*CacheInstruction) ProtoMessage()

func (*CacheInstruction) Reset

func (m *CacheInstruction) Reset()

func (*CacheInstruction) String

func (m *CacheInstruction) String() string

func (*CacheInstruction) XXX_DiscardUnknown

func (m *CacheInstruction) XXX_DiscardUnknown()

func (*CacheInstruction) XXX_Marshal

func (m *CacheInstruction) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CacheInstruction) XXX_Merge

func (m *CacheInstruction) XXX_Merge(src proto.Message)

func (*CacheInstruction) XXX_Size

func (m *CacheInstruction) XXX_Size() int

func (*CacheInstruction) XXX_Unmarshal

func (m *CacheInstruction) XXX_Unmarshal(b []byte) error

type CirrusCIServiceClient

type CirrusCIServiceClient interface {
	InitialCommands(ctx context.Context, in *InitialCommandsRequest, opts ...grpc.CallOption) (*CommandsResponse, error)
	ReportSingleCommand(ctx context.Context, in *ReportSingleCommandRequest, opts ...grpc.CallOption) (*ReportSingleCommandResponse, error)
	ReportAnnotations(ctx context.Context, in *ReportAnnotationsCommandRequest, opts ...grpc.CallOption) (*empty.Empty, error)
	StreamLogs(ctx context.Context, opts ...grpc.CallOption) (CirrusCIService_StreamLogsClient, error)
	SaveLogs(ctx context.Context, opts ...grpc.CallOption) (CirrusCIService_SaveLogsClient, error)
	UploadCache(ctx context.Context, opts ...grpc.CallOption) (CirrusCIService_UploadCacheClient, error)
	UploadArtifacts(ctx context.Context, opts ...grpc.CallOption) (CirrusCIService_UploadArtifactsClient, error)
	DownloadCache(ctx context.Context, in *DownloadCacheRequest, opts ...grpc.CallOption) (CirrusCIService_DownloadCacheClient, error)
	CacheInfo(ctx context.Context, in *CacheInfoRequest, opts ...grpc.CallOption) (*CacheInfoResponse, error)
	Ping(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*empty.Empty, error)
	Heartbeat(ctx context.Context, in *HeartbeatRequest, opts ...grpc.CallOption) (*HeartbeatResponse, error)
	ReportStopHook(ctx context.Context, in *ReportStopHookRequest, opts ...grpc.CallOption) (*empty.Empty, error)
	ReportAgentError(ctx context.Context, in *ReportAgentProblemRequest, opts ...grpc.CallOption) (*empty.Empty, error)
	ReportAgentWarning(ctx context.Context, in *ReportAgentProblemRequest, opts ...grpc.CallOption) (*empty.Empty, error)
	ReportAgentSignal(ctx context.Context, in *ReportAgentSignalRequest, opts ...grpc.CallOption) (*empty.Empty, error)
	ReportAgentLogs(ctx context.Context, in *ReportAgentLogsRequest, opts ...grpc.CallOption) (*empty.Empty, error)
	ParseConfig(ctx context.Context, in *ParseConfigRequest, opts ...grpc.CallOption) (*ParseConfigResponse, error)
}

CirrusCIServiceClient is the client API for CirrusCIService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

type CirrusCIService_DownloadCacheClient

type CirrusCIService_DownloadCacheClient interface {
	Recv() (*DataChunk, error)
	grpc.ClientStream
}

type CirrusCIService_DownloadCacheServer

type CirrusCIService_DownloadCacheServer interface {
	Send(*DataChunk) error
	grpc.ServerStream
}

type CirrusCIService_SaveLogsClient

type CirrusCIService_SaveLogsClient interface {
	Send(*LogEntry) error
	CloseAndRecv() (*UploadLogsResponse, error)
	grpc.ClientStream
}

type CirrusCIService_SaveLogsServer

type CirrusCIService_SaveLogsServer interface {
	SendAndClose(*UploadLogsResponse) error
	Recv() (*LogEntry, error)
	grpc.ServerStream
}

type CirrusCIService_StreamLogsClient

type CirrusCIService_StreamLogsClient interface {
	Send(*LogEntry) error
	CloseAndRecv() (*UploadLogsResponse, error)
	grpc.ClientStream
}

type CirrusCIService_StreamLogsServer

type CirrusCIService_StreamLogsServer interface {
	SendAndClose(*UploadLogsResponse) error
	Recv() (*LogEntry, error)
	grpc.ServerStream
}

type CirrusCIService_UploadArtifactsClient

type CirrusCIService_UploadArtifactsClient interface {
	Send(*ArtifactEntry) error
	CloseAndRecv() (*UploadArtifactsResponse, error)
	grpc.ClientStream
}

type CirrusCIService_UploadArtifactsServer

type CirrusCIService_UploadArtifactsServer interface {
	SendAndClose(*UploadArtifactsResponse) error
	Recv() (*ArtifactEntry, error)
	grpc.ServerStream
}

type CirrusCIService_UploadCacheClient

type CirrusCIService_UploadCacheClient interface {
	Send(*CacheEntry) error
	CloseAndRecv() (*UploadCacheResponse, error)
	grpc.ClientStream
}

type CirrusCIService_UploadCacheServer

type CirrusCIService_UploadCacheServer interface {
	SendAndClose(*UploadCacheResponse) error
	Recv() (*CacheEntry, error)
	grpc.ServerStream
}

type CloneInstruction

type CloneInstruction struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*CloneInstruction) Descriptor

func (*CloneInstruction) Descriptor() ([]byte, []int)

func (*CloneInstruction) ProtoMessage

func (*CloneInstruction) ProtoMessage()

func (*CloneInstruction) Reset

func (m *CloneInstruction) Reset()

func (*CloneInstruction) String

func (m *CloneInstruction) String() string

func (*CloneInstruction) XXX_DiscardUnknown

func (m *CloneInstruction) XXX_DiscardUnknown()

func (*CloneInstruction) XXX_Marshal

func (m *CloneInstruction) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CloneInstruction) XXX_Merge

func (m *CloneInstruction) XXX_Merge(src proto.Message)

func (*CloneInstruction) XXX_Size

func (m *CloneInstruction) XXX_Size() int

func (*CloneInstruction) XXX_Unmarshal

func (m *CloneInstruction) XXX_Unmarshal(b []byte) error

type Command

type Command struct {
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// Types that are valid to be assigned to Instruction:
	//	*Command_ExitInstruction
	//	*Command_ScriptInstruction
	//	*Command_BackgroundScriptInstruction
	//	*Command_CacheInstruction
	//	*Command_UploadCacheInstruction
	//	*Command_CloneInstruction
	//	*Command_FileInstruction
	//	*Command_ArtifactsInstruction
	Instruction          isCommand_Instruction `protobuf_oneof:"instruction"`
	XXX_NoUnkeyedLiteral struct{}              `json:"-"`
	XXX_unrecognized     []byte                `json:"-"`
	XXX_sizecache        int32                 `json:"-"`
}

func (*Command) Descriptor

func (*Command) Descriptor() ([]byte, []int)

func (*Command) GetArtifactsInstruction

func (m *Command) GetArtifactsInstruction() *ArtifactsInstruction

func (*Command) GetBackgroundScriptInstruction

func (m *Command) GetBackgroundScriptInstruction() *BackgroundScriptInstruction

func (*Command) GetCacheInstruction

func (m *Command) GetCacheInstruction() *CacheInstruction

func (*Command) GetCloneInstruction

func (m *Command) GetCloneInstruction() *CloneInstruction

func (*Command) GetExitInstruction

func (m *Command) GetExitInstruction() *ExitInstruction

func (*Command) GetFileInstruction

func (m *Command) GetFileInstruction() *FileInstruction

func (*Command) GetInstruction

func (m *Command) GetInstruction() isCommand_Instruction

func (*Command) GetName

func (m *Command) GetName() string

func (*Command) GetScriptInstruction

func (m *Command) GetScriptInstruction() *ScriptInstruction

func (*Command) GetUploadCacheInstruction

func (m *Command) GetUploadCacheInstruction() *UploadCacheInstruction

func (*Command) ProtoMessage

func (*Command) ProtoMessage()

func (*Command) Reset

func (m *Command) Reset()

func (*Command) String

func (m *Command) String() string

func (*Command) XXX_DiscardUnknown

func (m *Command) XXX_DiscardUnknown()

func (*Command) XXX_Marshal

func (m *Command) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Command) XXX_Merge

func (m *Command) XXX_Merge(src proto.Message)

func (*Command) XXX_OneofWrappers

func (*Command) XXX_OneofWrappers() []interface{}

XXX_OneofWrappers is for the internal use of the proto package.

func (*Command) XXX_Size

func (m *Command) XXX_Size() int

func (*Command) XXX_Unmarshal

func (m *Command) XXX_Unmarshal(b []byte) error

type Command_ArtifactsInstruction

type Command_ArtifactsInstruction struct {
	ArtifactsInstruction *ArtifactsInstruction `protobuf:"bytes,9,opt,name=artifacts_instruction,json=artifactsInstruction,proto3,oneof"`
}

type Command_BackgroundScriptInstruction

type Command_BackgroundScriptInstruction struct {
	BackgroundScriptInstruction *BackgroundScriptInstruction `protobuf:"bytes,4,opt,name=background_script_instruction,json=backgroundScriptInstruction,proto3,oneof"`
}

type Command_CacheInstruction

type Command_CacheInstruction struct {
	CacheInstruction *CacheInstruction `protobuf:"bytes,5,opt,name=cache_instruction,json=cacheInstruction,proto3,oneof"`
}

type Command_CloneInstruction

type Command_CloneInstruction struct {
	CloneInstruction *CloneInstruction `protobuf:"bytes,7,opt,name=clone_instruction,json=cloneInstruction,proto3,oneof"`
}

type Command_ExitInstruction

type Command_ExitInstruction struct {
	ExitInstruction *ExitInstruction `protobuf:"bytes,2,opt,name=exit_instruction,json=exitInstruction,proto3,oneof"`
}

type Command_FileInstruction

type Command_FileInstruction struct {
	FileInstruction *FileInstruction `protobuf:"bytes,8,opt,name=file_instruction,json=fileInstruction,proto3,oneof"`
}

type Command_ScriptInstruction

type Command_ScriptInstruction struct {
	ScriptInstruction *ScriptInstruction `protobuf:"bytes,3,opt,name=script_instruction,json=scriptInstruction,proto3,oneof"`
}

type Command_UploadCacheInstruction

type Command_UploadCacheInstruction struct {
	UploadCacheInstruction *UploadCacheInstruction `protobuf:"bytes,6,opt,name=upload_cache_instruction,json=uploadCacheInstruction,proto3,oneof"`
}

type CommandsResponse

type CommandsResponse struct {
	Environment          map[string]string `` /* 163-byte string literal not displayed */
	Commands             []*Command        `protobuf:"bytes,2,rep,name=commands,proto3" json:"commands,omitempty"`
	ServerToken          string            `protobuf:"bytes,3,opt,name=serverToken,proto3" json:"serverToken,omitempty"`
	TimeoutInSeconds     int64             `protobuf:"varint,4,opt,name=timeout_in_seconds,json=timeoutInSeconds,proto3" json:"timeout_in_seconds,omitempty"`
	SecretsToMask        []string          `protobuf:"bytes,5,rep,name=secrets_to_mask,json=secretsToMask,proto3" json:"secrets_to_mask,omitempty"`
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_unrecognized     []byte            `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

func (*CommandsResponse) Descriptor

func (*CommandsResponse) Descriptor() ([]byte, []int)

func (*CommandsResponse) GetCommands

func (m *CommandsResponse) GetCommands() []*Command

func (*CommandsResponse) GetEnvironment

func (m *CommandsResponse) GetEnvironment() map[string]string

func (*CommandsResponse) GetSecretsToMask

func (m *CommandsResponse) GetSecretsToMask() []string

func (*CommandsResponse) GetServerToken

func (m *CommandsResponse) GetServerToken() string

func (*CommandsResponse) GetTimeoutInSeconds

func (m *CommandsResponse) GetTimeoutInSeconds() int64

func (*CommandsResponse) ProtoMessage

func (*CommandsResponse) ProtoMessage()

func (*CommandsResponse) Reset

func (m *CommandsResponse) Reset()

func (*CommandsResponse) String

func (m *CommandsResponse) String() string

func (*CommandsResponse) XXX_DiscardUnknown

func (m *CommandsResponse) XXX_DiscardUnknown()

func (*CommandsResponse) XXX_Marshal

func (m *CommandsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CommandsResponse) XXX_Merge

func (m *CommandsResponse) XXX_Merge(src proto.Message)

func (*CommandsResponse) XXX_Size

func (m *CommandsResponse) XXX_Size() int

func (*CommandsResponse) XXX_Unmarshal

func (m *CommandsResponse) XXX_Unmarshal(b []byte) error

type ContainerInstance

type ContainerInstance struct {
	Image                  string                 `protobuf:"bytes,1,opt,name=image,proto3" json:"image,omitempty"`
	Cpu                    float32                `protobuf:"fixed32,2,opt,name=cpu,proto3" json:"cpu,omitempty"`
	Memory                 uint32                 `protobuf:"varint,3,opt,name=memory,proto3" json:"memory,omitempty"`
	AdditionalContainers   []*AdditionalContainer `protobuf:"bytes,4,rep,name=additional_containers,json=additionalContainers,proto3" json:"additional_containers,omitempty"`
	Platform               Platform               `protobuf:"varint,5,opt,name=platform,proto3,enum=org.cirruslabs.ci.services.cirruscigrpc.Platform" json:"platform,omitempty"`
	DockerfilePath         string                 `protobuf:"bytes,6,opt,name=dockerfile_path,json=dockerfilePath,proto3" json:"dockerfile_path,omitempty"`
	OperationSystemVersion string                 `` /* 129-byte string literal not displayed */
	DockerArguments        map[string]string      `` /* 194-byte string literal not displayed */
	XXX_NoUnkeyedLiteral   struct{}               `json:"-"`
	XXX_unrecognized       []byte                 `json:"-"`
	XXX_sizecache          int32                  `json:"-"`
}

func (*ContainerInstance) Descriptor

func (*ContainerInstance) Descriptor() ([]byte, []int)

func (*ContainerInstance) GetAdditionalContainers

func (m *ContainerInstance) GetAdditionalContainers() []*AdditionalContainer

func (*ContainerInstance) GetCpu

func (m *ContainerInstance) GetCpu() float32

func (*ContainerInstance) GetDockerArguments

func (m *ContainerInstance) GetDockerArguments() map[string]string

func (*ContainerInstance) GetDockerfilePath

func (m *ContainerInstance) GetDockerfilePath() string

func (*ContainerInstance) GetImage

func (m *ContainerInstance) GetImage() string

func (*ContainerInstance) GetMemory

func (m *ContainerInstance) GetMemory() uint32

func (*ContainerInstance) GetOperationSystemVersion

func (m *ContainerInstance) GetOperationSystemVersion() string

func (*ContainerInstance) GetPlatform

func (m *ContainerInstance) GetPlatform() Platform

func (*ContainerInstance) ProtoMessage

func (*ContainerInstance) ProtoMessage()

func (*ContainerInstance) Reset

func (m *ContainerInstance) Reset()

func (*ContainerInstance) String

func (m *ContainerInstance) String() string

func (*ContainerInstance) XXX_DiscardUnknown

func (m *ContainerInstance) XXX_DiscardUnknown()

func (*ContainerInstance) XXX_Marshal

func (m *ContainerInstance) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ContainerInstance) XXX_Merge

func (m *ContainerInstance) XXX_Merge(src proto.Message)

func (*ContainerInstance) XXX_Size

func (m *ContainerInstance) XXX_Size() int

func (*ContainerInstance) XXX_Unmarshal

func (m *ContainerInstance) XXX_Unmarshal(b []byte) error

type DataChunk

type DataChunk struct {
	Data                 []byte   `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DataChunk) Descriptor

func (*DataChunk) Descriptor() ([]byte, []int)

func (*DataChunk) GetData

func (m *DataChunk) GetData() []byte

func (*DataChunk) ProtoMessage

func (*DataChunk) ProtoMessage()

func (*DataChunk) Reset

func (m *DataChunk) Reset()

func (*DataChunk) String

func (m *DataChunk) String() string

func (*DataChunk) XXX_DiscardUnknown

func (m *DataChunk) XXX_DiscardUnknown()

func (*DataChunk) XXX_Marshal

func (m *DataChunk) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DataChunk) XXX_Merge

func (m *DataChunk) XXX_Merge(src proto.Message)

func (*DataChunk) XXX_Size

func (m *DataChunk) XXX_Size() int

func (*DataChunk) XXX_Unmarshal

func (m *DataChunk) XXX_Unmarshal(b []byte) error

type DownloadCacheRequest

type DownloadCacheRequest struct {
	TaskIdentification   *TaskIdentification `protobuf:"bytes,1,opt,name=task_identification,json=taskIdentification,proto3" json:"task_identification,omitempty"`
	CacheKey             string              `protobuf:"bytes,2,opt,name=cache_key,json=cacheKey,proto3" json:"cache_key,omitempty"`
	XXX_NoUnkeyedLiteral struct{}            `json:"-"`
	XXX_unrecognized     []byte              `json:"-"`
	XXX_sizecache        int32               `json:"-"`
}

func (*DownloadCacheRequest) Descriptor

func (*DownloadCacheRequest) Descriptor() ([]byte, []int)

func (*DownloadCacheRequest) GetCacheKey

func (m *DownloadCacheRequest) GetCacheKey() string

func (*DownloadCacheRequest) GetTaskIdentification

func (m *DownloadCacheRequest) GetTaskIdentification() *TaskIdentification

func (*DownloadCacheRequest) ProtoMessage

func (*DownloadCacheRequest) ProtoMessage()

func (*DownloadCacheRequest) Reset

func (m *DownloadCacheRequest) Reset()

func (*DownloadCacheRequest) String

func (m *DownloadCacheRequest) String() string

func (*DownloadCacheRequest) XXX_DiscardUnknown

func (m *DownloadCacheRequest) XXX_DiscardUnknown()

func (*DownloadCacheRequest) XXX_Marshal

func (m *DownloadCacheRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DownloadCacheRequest) XXX_Merge

func (m *DownloadCacheRequest) XXX_Merge(src proto.Message)

func (*DownloadCacheRequest) XXX_Size

func (m *DownloadCacheRequest) XXX_Size() int

func (*DownloadCacheRequest) XXX_Unmarshal

func (m *DownloadCacheRequest) XXX_Unmarshal(b []byte) error

type ExitInstruction

type ExitInstruction struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ExitInstruction) Descriptor

func (*ExitInstruction) Descriptor() ([]byte, []int)

func (*ExitInstruction) ProtoMessage

func (*ExitInstruction) ProtoMessage()

func (*ExitInstruction) Reset

func (m *ExitInstruction) Reset()

func (*ExitInstruction) String

func (m *ExitInstruction) String() string

func (*ExitInstruction) XXX_DiscardUnknown

func (m *ExitInstruction) XXX_DiscardUnknown()

func (*ExitInstruction) XXX_Marshal

func (m *ExitInstruction) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ExitInstruction) XXX_Merge

func (m *ExitInstruction) XXX_Merge(src proto.Message)

func (*ExitInstruction) XXX_Size

func (m *ExitInstruction) XXX_Size() int

func (*ExitInstruction) XXX_Unmarshal

func (m *ExitInstruction) XXX_Unmarshal(b []byte) error

type FileInstruction

type FileInstruction struct {
	DestinationPath string `protobuf:"bytes,1,opt,name=destination_path,json=destinationPath,proto3" json:"destination_path,omitempty"`
	// Types that are valid to be assigned to Source:
	//	*FileInstruction_FromEnvironmentVariable
	Source               isFileInstruction_Source `protobuf_oneof:"source"`
	XXX_NoUnkeyedLiteral struct{}                 `json:"-"`
	XXX_unrecognized     []byte                   `json:"-"`
	XXX_sizecache        int32                    `json:"-"`
}

func (*FileInstruction) Descriptor

func (*FileInstruction) Descriptor() ([]byte, []int)

func (*FileInstruction) GetDestinationPath

func (m *FileInstruction) GetDestinationPath() string

func (*FileInstruction) GetFromEnvironmentVariable

func (m *FileInstruction) GetFromEnvironmentVariable() string

func (*FileInstruction) GetSource

func (m *FileInstruction) GetSource() isFileInstruction_Source

func (*FileInstruction) ProtoMessage

func (*FileInstruction) ProtoMessage()

func (*FileInstruction) Reset

func (m *FileInstruction) Reset()

func (*FileInstruction) String

func (m *FileInstruction) String() string

func (*FileInstruction) XXX_DiscardUnknown

func (m *FileInstruction) XXX_DiscardUnknown()

func (*FileInstruction) XXX_Marshal

func (m *FileInstruction) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*FileInstruction) XXX_Merge

func (m *FileInstruction) XXX_Merge(src proto.Message)

func (*FileInstruction) XXX_OneofWrappers

func (*FileInstruction) XXX_OneofWrappers() []interface{}

XXX_OneofWrappers is for the internal use of the proto package.

func (*FileInstruction) XXX_Size

func (m *FileInstruction) XXX_Size() int

func (*FileInstruction) XXX_Unmarshal

func (m *FileInstruction) XXX_Unmarshal(b []byte) error

type FileInstruction_FromEnvironmentVariable

type FileInstruction_FromEnvironmentVariable struct {
	FromEnvironmentVariable string `protobuf:"bytes,2,opt,name=from_environment_variable,json=fromEnvironmentVariable,proto3,oneof"`
}

type HeartbeatRequest

type HeartbeatRequest struct {
	TaskIdentification   *TaskIdentification `protobuf:"bytes,1,opt,name=task_identification,json=taskIdentification,proto3" json:"task_identification,omitempty"`
	XXX_NoUnkeyedLiteral struct{}            `json:"-"`
	XXX_unrecognized     []byte              `json:"-"`
	XXX_sizecache        int32               `json:"-"`
}

func (*HeartbeatRequest) Descriptor

func (*HeartbeatRequest) Descriptor() ([]byte, []int)

func (*HeartbeatRequest) GetTaskIdentification

func (m *HeartbeatRequest) GetTaskIdentification() *TaskIdentification

func (*HeartbeatRequest) ProtoMessage

func (*HeartbeatRequest) ProtoMessage()

func (*HeartbeatRequest) Reset

func (m *HeartbeatRequest) Reset()

func (*HeartbeatRequest) String

func (m *HeartbeatRequest) String() string

func (*HeartbeatRequest) XXX_DiscardUnknown

func (m *HeartbeatRequest) XXX_DiscardUnknown()

func (*HeartbeatRequest) XXX_Marshal

func (m *HeartbeatRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*HeartbeatRequest) XXX_Merge

func (m *HeartbeatRequest) XXX_Merge(src proto.Message)

func (*HeartbeatRequest) XXX_Size

func (m *HeartbeatRequest) XXX_Size() int

func (*HeartbeatRequest) XXX_Unmarshal

func (m *HeartbeatRequest) XXX_Unmarshal(b []byte) error

type HeartbeatResponse

type HeartbeatResponse struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*HeartbeatResponse) Descriptor

func (*HeartbeatResponse) Descriptor() ([]byte, []int)

func (*HeartbeatResponse) ProtoMessage

func (*HeartbeatResponse) ProtoMessage()

func (*HeartbeatResponse) Reset

func (m *HeartbeatResponse) Reset()

func (*HeartbeatResponse) String

func (m *HeartbeatResponse) String() string

func (*HeartbeatResponse) XXX_DiscardUnknown

func (m *HeartbeatResponse) XXX_DiscardUnknown()

func (*HeartbeatResponse) XXX_Marshal

func (m *HeartbeatResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*HeartbeatResponse) XXX_Merge

func (m *HeartbeatResponse) XXX_Merge(src proto.Message)

func (*HeartbeatResponse) XXX_Size

func (m *HeartbeatResponse) XXX_Size() int

func (*HeartbeatResponse) XXX_Unmarshal

func (m *HeartbeatResponse) XXX_Unmarshal(b []byte) error

type InitialCommandsRequest

type InitialCommandsRequest struct {
	TaskIdentification   *TaskIdentification `protobuf:"bytes,1,opt,name=task_identification,json=taskIdentification,proto3" json:"task_identification,omitempty"`
	LocalTimestamp       int64               `protobuf:"varint,2,opt,name=local_timestamp,json=localTimestamp,proto3" json:"local_timestamp,omitempty"`
	ContinueFromCommand  string              `protobuf:"bytes,3,opt,name=continue_from_command,json=continueFromCommand,proto3" json:"continue_from_command,omitempty"`
	XXX_NoUnkeyedLiteral struct{}            `json:"-"`
	XXX_unrecognized     []byte              `json:"-"`
	XXX_sizecache        int32               `json:"-"`
}

func (*InitialCommandsRequest) Descriptor

func (*InitialCommandsRequest) Descriptor() ([]byte, []int)

func (*InitialCommandsRequest) GetContinueFromCommand

func (m *InitialCommandsRequest) GetContinueFromCommand() string

func (*InitialCommandsRequest) GetLocalTimestamp

func (m *InitialCommandsRequest) GetLocalTimestamp() int64

func (*InitialCommandsRequest) GetTaskIdentification

func (m *InitialCommandsRequest) GetTaskIdentification() *TaskIdentification

func (*InitialCommandsRequest) ProtoMessage

func (*InitialCommandsRequest) ProtoMessage()

func (*InitialCommandsRequest) Reset

func (m *InitialCommandsRequest) Reset()

func (*InitialCommandsRequest) String

func (m *InitialCommandsRequest) String() string

func (*InitialCommandsRequest) XXX_DiscardUnknown

func (m *InitialCommandsRequest) XXX_DiscardUnknown()

func (*InitialCommandsRequest) XXX_Marshal

func (m *InitialCommandsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*InitialCommandsRequest) XXX_Merge

func (m *InitialCommandsRequest) XXX_Merge(src proto.Message)

func (*InitialCommandsRequest) XXX_Size

func (m *InitialCommandsRequest) XXX_Size() int

func (*InitialCommandsRequest) XXX_Unmarshal

func (m *InitialCommandsRequest) XXX_Unmarshal(b []byte) error

type LogEntry

type LogEntry struct {
	// Types that are valid to be assigned to Value:
	//	*LogEntry_Key
	//	*LogEntry_Chunk
	Value                isLogEntry_Value `protobuf_oneof:"value"`
	XXX_NoUnkeyedLiteral struct{}         `json:"-"`
	XXX_unrecognized     []byte           `json:"-"`
	XXX_sizecache        int32            `json:"-"`
}

func (*LogEntry) Descriptor

func (*LogEntry) Descriptor() ([]byte, []int)

func (*LogEntry) GetChunk

func (m *LogEntry) GetChunk() *DataChunk

func (*LogEntry) GetKey

func (m *LogEntry) GetKey() *LogEntry_LogKey

func (*LogEntry) GetValue

func (m *LogEntry) GetValue() isLogEntry_Value

func (*LogEntry) ProtoMessage

func (*LogEntry) ProtoMessage()

func (*LogEntry) Reset

func (m *LogEntry) Reset()

func (*LogEntry) String

func (m *LogEntry) String() string

func (*LogEntry) XXX_DiscardUnknown

func (m *LogEntry) XXX_DiscardUnknown()

func (*LogEntry) XXX_Marshal

func (m *LogEntry) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*LogEntry) XXX_Merge

func (m *LogEntry) XXX_Merge(src proto.Message)

func (*LogEntry) XXX_OneofWrappers

func (*LogEntry) XXX_OneofWrappers() []interface{}

XXX_OneofWrappers is for the internal use of the proto package.

func (*LogEntry) XXX_Size

func (m *LogEntry) XXX_Size() int

func (*LogEntry) XXX_Unmarshal

func (m *LogEntry) XXX_Unmarshal(b []byte) error

type LogEntry_Chunk

type LogEntry_Chunk struct {
	Chunk *DataChunk `protobuf:"bytes,2,opt,name=chunk,proto3,oneof"`
}

type LogEntry_Key

type LogEntry_Key struct {
	Key *LogEntry_LogKey `protobuf:"bytes,1,opt,name=key,proto3,oneof"`
}

type LogEntry_LogKey

type LogEntry_LogKey struct {
	TaskIdentification   *TaskIdentification `protobuf:"bytes,1,opt,name=task_identification,json=taskIdentification,proto3" json:"task_identification,omitempty"`
	CommandName          string              `protobuf:"bytes,2,opt,name=command_name,json=commandName,proto3" json:"command_name,omitempty"`
	Raw                  bool                `protobuf:"varint,3,opt,name=raw,proto3" json:"raw,omitempty"`
	XXX_NoUnkeyedLiteral struct{}            `json:"-"`
	XXX_unrecognized     []byte              `json:"-"`
	XXX_sizecache        int32               `json:"-"`
}

func (*LogEntry_LogKey) Descriptor

func (*LogEntry_LogKey) Descriptor() ([]byte, []int)

func (*LogEntry_LogKey) GetCommandName

func (m *LogEntry_LogKey) GetCommandName() string

func (*LogEntry_LogKey) GetRaw

func (m *LogEntry_LogKey) GetRaw() bool

func (*LogEntry_LogKey) GetTaskIdentification

func (m *LogEntry_LogKey) GetTaskIdentification() *TaskIdentification

func (*LogEntry_LogKey) ProtoMessage

func (*LogEntry_LogKey) ProtoMessage()

func (*LogEntry_LogKey) Reset

func (m *LogEntry_LogKey) Reset()

func (*LogEntry_LogKey) String

func (m *LogEntry_LogKey) String() string

func (*LogEntry_LogKey) XXX_DiscardUnknown

func (m *LogEntry_LogKey) XXX_DiscardUnknown()

func (*LogEntry_LogKey) XXX_Marshal

func (m *LogEntry_LogKey) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*LogEntry_LogKey) XXX_Merge

func (m *LogEntry_LogKey) XXX_Merge(src proto.Message)

func (*LogEntry_LogKey) XXX_Size

func (m *LogEntry_LogKey) XXX_Size() int

func (*LogEntry_LogKey) XXX_Unmarshal

func (m *LogEntry_LogKey) XXX_Unmarshal(b []byte) error

type ParseConfigRequest

type ParseConfigRequest struct {
	Config               string            `protobuf:"bytes,1,opt,name=config,proto3" json:"config,omitempty"`
	Environment          map[string]string `` /* 163-byte string literal not displayed */
	AffectedFiles        []string          `protobuf:"bytes,3,rep,name=affectedFiles,proto3" json:"affectedFiles,omitempty"`
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_unrecognized     []byte            `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

func (*ParseConfigRequest) Descriptor

func (*ParseConfigRequest) Descriptor() ([]byte, []int)

func (*ParseConfigRequest) GetAffectedFiles

func (m *ParseConfigRequest) GetAffectedFiles() []string

func (*ParseConfigRequest) GetConfig

func (m *ParseConfigRequest) GetConfig() string

func (*ParseConfigRequest) GetEnvironment

func (m *ParseConfigRequest) GetEnvironment() map[string]string

func (*ParseConfigRequest) ProtoMessage

func (*ParseConfigRequest) ProtoMessage()

func (*ParseConfigRequest) Reset

func (m *ParseConfigRequest) Reset()

func (*ParseConfigRequest) String

func (m *ParseConfigRequest) String() string

func (*ParseConfigRequest) XXX_DiscardUnknown

func (m *ParseConfigRequest) XXX_DiscardUnknown()

func (*ParseConfigRequest) XXX_Marshal

func (m *ParseConfigRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ParseConfigRequest) XXX_Merge

func (m *ParseConfigRequest) XXX_Merge(src proto.Message)

func (*ParseConfigRequest) XXX_Size

func (m *ParseConfigRequest) XXX_Size() int

func (*ParseConfigRequest) XXX_Unmarshal

func (m *ParseConfigRequest) XXX_Unmarshal(b []byte) error

type ParseConfigResponse

type ParseConfigResponse struct {
	Tasks                []*Task  `protobuf:"bytes,1,rep,name=tasks,proto3" json:"tasks,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ParseConfigResponse) Descriptor

func (*ParseConfigResponse) Descriptor() ([]byte, []int)

func (*ParseConfigResponse) GetTasks

func (m *ParseConfigResponse) GetTasks() []*Task

func (*ParseConfigResponse) ProtoMessage

func (*ParseConfigResponse) ProtoMessage()

func (*ParseConfigResponse) Reset

func (m *ParseConfigResponse) Reset()

func (*ParseConfigResponse) String

func (m *ParseConfigResponse) String() string

func (*ParseConfigResponse) XXX_DiscardUnknown

func (m *ParseConfigResponse) XXX_DiscardUnknown()

func (*ParseConfigResponse) XXX_Marshal

func (m *ParseConfigResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ParseConfigResponse) XXX_Merge

func (m *ParseConfigResponse) XXX_Merge(src proto.Message)

func (*ParseConfigResponse) XXX_Size

func (m *ParseConfigResponse) XXX_Size() int

func (*ParseConfigResponse) XXX_Unmarshal

func (m *ParseConfigResponse) XXX_Unmarshal(b []byte) error

type Platform

type Platform int32
const (
	Platform_LINUX   Platform = 0
	Platform_WINDOWS Platform = 1
)

func (Platform) EnumDescriptor

func (Platform) EnumDescriptor() ([]byte, []int)

func (Platform) String

func (x Platform) String() string

type ReportAgentLogsRequest

type ReportAgentLogsRequest struct {
	TaskIdentification   *TaskIdentification `protobuf:"bytes,1,opt,name=task_identification,json=taskIdentification,proto3" json:"task_identification,omitempty"`
	Logs                 string              `protobuf:"bytes,2,opt,name=logs,proto3" json:"logs,omitempty"`
	XXX_NoUnkeyedLiteral struct{}            `json:"-"`
	XXX_unrecognized     []byte              `json:"-"`
	XXX_sizecache        int32               `json:"-"`
}

func (*ReportAgentLogsRequest) Descriptor

func (*ReportAgentLogsRequest) Descriptor() ([]byte, []int)

func (*ReportAgentLogsRequest) GetLogs

func (m *ReportAgentLogsRequest) GetLogs() string

func (*ReportAgentLogsRequest) GetTaskIdentification

func (m *ReportAgentLogsRequest) GetTaskIdentification() *TaskIdentification

func (*ReportAgentLogsRequest) ProtoMessage

func (*ReportAgentLogsRequest) ProtoMessage()

func (*ReportAgentLogsRequest) Reset

func (m *ReportAgentLogsRequest) Reset()

func (*ReportAgentLogsRequest) String

func (m *ReportAgentLogsRequest) String() string

func (*ReportAgentLogsRequest) XXX_DiscardUnknown

func (m *ReportAgentLogsRequest) XXX_DiscardUnknown()

func (*ReportAgentLogsRequest) XXX_Marshal

func (m *ReportAgentLogsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReportAgentLogsRequest) XXX_Merge

func (m *ReportAgentLogsRequest) XXX_Merge(src proto.Message)

func (*ReportAgentLogsRequest) XXX_Size

func (m *ReportAgentLogsRequest) XXX_Size() int

func (*ReportAgentLogsRequest) XXX_Unmarshal

func (m *ReportAgentLogsRequest) XXX_Unmarshal(b []byte) error

type ReportAgentProblemRequest

type ReportAgentProblemRequest struct {
	TaskIdentification   *TaskIdentification `protobuf:"bytes,1,opt,name=task_identification,json=taskIdentification,proto3" json:"task_identification,omitempty"`
	Message              string              `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
	Stack                string              `protobuf:"bytes,3,opt,name=stack,proto3" json:"stack,omitempty"`
	XXX_NoUnkeyedLiteral struct{}            `json:"-"`
	XXX_unrecognized     []byte              `json:"-"`
	XXX_sizecache        int32               `json:"-"`
}

func (*ReportAgentProblemRequest) Descriptor

func (*ReportAgentProblemRequest) Descriptor() ([]byte, []int)

func (*ReportAgentProblemRequest) GetMessage

func (m *ReportAgentProblemRequest) GetMessage() string

func (*ReportAgentProblemRequest) GetStack

func (m *ReportAgentProblemRequest) GetStack() string

func (*ReportAgentProblemRequest) GetTaskIdentification

func (m *ReportAgentProblemRequest) GetTaskIdentification() *TaskIdentification

func (*ReportAgentProblemRequest) ProtoMessage

func (*ReportAgentProblemRequest) ProtoMessage()

func (*ReportAgentProblemRequest) Reset

func (m *ReportAgentProblemRequest) Reset()

func (*ReportAgentProblemRequest) String

func (m *ReportAgentProblemRequest) String() string

func (*ReportAgentProblemRequest) XXX_DiscardUnknown

func (m *ReportAgentProblemRequest) XXX_DiscardUnknown()

func (*ReportAgentProblemRequest) XXX_Marshal

func (m *ReportAgentProblemRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReportAgentProblemRequest) XXX_Merge

func (m *ReportAgentProblemRequest) XXX_Merge(src proto.Message)

func (*ReportAgentProblemRequest) XXX_Size

func (m *ReportAgentProblemRequest) XXX_Size() int

func (*ReportAgentProblemRequest) XXX_Unmarshal

func (m *ReportAgentProblemRequest) XXX_Unmarshal(b []byte) error

type ReportAgentSignalRequest

type ReportAgentSignalRequest struct {
	TaskIdentification   *TaskIdentification `protobuf:"bytes,1,opt,name=task_identification,json=taskIdentification,proto3" json:"task_identification,omitempty"`
	Signal               string              `protobuf:"bytes,2,opt,name=signal,proto3" json:"signal,omitempty"`
	XXX_NoUnkeyedLiteral struct{}            `json:"-"`
	XXX_unrecognized     []byte              `json:"-"`
	XXX_sizecache        int32               `json:"-"`
}

func (*ReportAgentSignalRequest) Descriptor

func (*ReportAgentSignalRequest) Descriptor() ([]byte, []int)

func (*ReportAgentSignalRequest) GetSignal

func (m *ReportAgentSignalRequest) GetSignal() string

func (*ReportAgentSignalRequest) GetTaskIdentification

func (m *ReportAgentSignalRequest) GetTaskIdentification() *TaskIdentification

func (*ReportAgentSignalRequest) ProtoMessage

func (*ReportAgentSignalRequest) ProtoMessage()

func (*ReportAgentSignalRequest) Reset

func (m *ReportAgentSignalRequest) Reset()

func (*ReportAgentSignalRequest) String

func (m *ReportAgentSignalRequest) String() string

func (*ReportAgentSignalRequest) XXX_DiscardUnknown

func (m *ReportAgentSignalRequest) XXX_DiscardUnknown()

func (*ReportAgentSignalRequest) XXX_Marshal

func (m *ReportAgentSignalRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReportAgentSignalRequest) XXX_Merge

func (m *ReportAgentSignalRequest) XXX_Merge(src proto.Message)

func (*ReportAgentSignalRequest) XXX_Size

func (m *ReportAgentSignalRequest) XXX_Size() int

func (*ReportAgentSignalRequest) XXX_Unmarshal

func (m *ReportAgentSignalRequest) XXX_Unmarshal(b []byte) error

type ReportAnnotationsCommandRequest

type ReportAnnotationsCommandRequest struct {
	TaskIdentification   *TaskIdentification `protobuf:"bytes,1,opt,name=task_identification,json=taskIdentification,proto3" json:"task_identification,omitempty"`
	Annotations          []*Annotation       `protobuf:"bytes,2,rep,name=annotations,proto3" json:"annotations,omitempty"`
	XXX_NoUnkeyedLiteral struct{}            `json:"-"`
	XXX_unrecognized     []byte              `json:"-"`
	XXX_sizecache        int32               `json:"-"`
}

func (*ReportAnnotationsCommandRequest) Descriptor

func (*ReportAnnotationsCommandRequest) Descriptor() ([]byte, []int)

func (*ReportAnnotationsCommandRequest) GetAnnotations

func (m *ReportAnnotationsCommandRequest) GetAnnotations() []*Annotation

func (*ReportAnnotationsCommandRequest) GetTaskIdentification

func (m *ReportAnnotationsCommandRequest) GetTaskIdentification() *TaskIdentification

func (*ReportAnnotationsCommandRequest) ProtoMessage

func (*ReportAnnotationsCommandRequest) ProtoMessage()

func (*ReportAnnotationsCommandRequest) Reset

func (*ReportAnnotationsCommandRequest) String

func (*ReportAnnotationsCommandRequest) XXX_DiscardUnknown

func (m *ReportAnnotationsCommandRequest) XXX_DiscardUnknown()

func (*ReportAnnotationsCommandRequest) XXX_Marshal

func (m *ReportAnnotationsCommandRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReportAnnotationsCommandRequest) XXX_Merge

func (m *ReportAnnotationsCommandRequest) XXX_Merge(src proto.Message)

func (*ReportAnnotationsCommandRequest) XXX_Size

func (m *ReportAnnotationsCommandRequest) XXX_Size() int

func (*ReportAnnotationsCommandRequest) XXX_Unmarshal

func (m *ReportAnnotationsCommandRequest) XXX_Unmarshal(b []byte) error

type ReportSingleCommandRequest

type ReportSingleCommandRequest struct {
	TaskIdentification   *TaskIdentification `protobuf:"bytes,1,opt,name=task_identification,json=taskIdentification,proto3" json:"task_identification,omitempty"`
	CommandName          string              `protobuf:"bytes,2,opt,name=command_name,json=commandName,proto3" json:"command_name,omitempty"`
	Succeded             bool                `protobuf:"varint,3,opt,name=succeded,proto3" json:"succeded,omitempty"`
	DurationInSeconds    int64               `protobuf:"varint,4,opt,name=duration_in_seconds,json=durationInSeconds,proto3" json:"duration_in_seconds,omitempty"`
	SignaledToExit       bool                `protobuf:"varint,5,opt,name=signaled_to_exit,json=signaledToExit,proto3" json:"signaled_to_exit,omitempty"`
	LocalTimestamp       int64               `protobuf:"varint,6,opt,name=local_timestamp,json=localTimestamp,proto3" json:"local_timestamp,omitempty"`
	XXX_NoUnkeyedLiteral struct{}            `json:"-"`
	XXX_unrecognized     []byte              `json:"-"`
	XXX_sizecache        int32               `json:"-"`
}

func (*ReportSingleCommandRequest) Descriptor

func (*ReportSingleCommandRequest) Descriptor() ([]byte, []int)

func (*ReportSingleCommandRequest) GetCommandName

func (m *ReportSingleCommandRequest) GetCommandName() string

func (*ReportSingleCommandRequest) GetDurationInSeconds

func (m *ReportSingleCommandRequest) GetDurationInSeconds() int64

func (*ReportSingleCommandRequest) GetLocalTimestamp

func (m *ReportSingleCommandRequest) GetLocalTimestamp() int64

func (*ReportSingleCommandRequest) GetSignaledToExit

func (m *ReportSingleCommandRequest) GetSignaledToExit() bool

func (*ReportSingleCommandRequest) GetSucceded

func (m *ReportSingleCommandRequest) GetSucceded() bool

func (*ReportSingleCommandRequest) GetTaskIdentification

func (m *ReportSingleCommandRequest) GetTaskIdentification() *TaskIdentification

func (*ReportSingleCommandRequest) ProtoMessage

func (*ReportSingleCommandRequest) ProtoMessage()

func (*ReportSingleCommandRequest) Reset

func (m *ReportSingleCommandRequest) Reset()

func (*ReportSingleCommandRequest) String

func (m *ReportSingleCommandRequest) String() string

func (*ReportSingleCommandRequest) XXX_DiscardUnknown

func (m *ReportSingleCommandRequest) XXX_DiscardUnknown()

func (*ReportSingleCommandRequest) XXX_Marshal

func (m *ReportSingleCommandRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReportSingleCommandRequest) XXX_Merge

func (m *ReportSingleCommandRequest) XXX_Merge(src proto.Message)

func (*ReportSingleCommandRequest) XXX_Size

func (m *ReportSingleCommandRequest) XXX_Size() int

func (*ReportSingleCommandRequest) XXX_Unmarshal

func (m *ReportSingleCommandRequest) XXX_Unmarshal(b []byte) error

type ReportSingleCommandResponse

type ReportSingleCommandResponse struct {
	NextCommandName       string            `protobuf:"bytes,1,opt,name=next_command_name,json=nextCommandName,proto3" json:"next_command_name,omitempty"`
	AdditionalEnvironment map[string]string `` /* 212-byte string literal not displayed */
	XXX_NoUnkeyedLiteral  struct{}          `json:"-"`
	XXX_unrecognized      []byte            `json:"-"`
	XXX_sizecache         int32             `json:"-"`
}

func (*ReportSingleCommandResponse) Descriptor

func (*ReportSingleCommandResponse) Descriptor() ([]byte, []int)

func (*ReportSingleCommandResponse) GetAdditionalEnvironment

func (m *ReportSingleCommandResponse) GetAdditionalEnvironment() map[string]string

func (*ReportSingleCommandResponse) GetNextCommandName

func (m *ReportSingleCommandResponse) GetNextCommandName() string

func (*ReportSingleCommandResponse) ProtoMessage

func (*ReportSingleCommandResponse) ProtoMessage()

func (*ReportSingleCommandResponse) Reset

func (m *ReportSingleCommandResponse) Reset()

func (*ReportSingleCommandResponse) String

func (m *ReportSingleCommandResponse) String() string

func (*ReportSingleCommandResponse) XXX_DiscardUnknown

func (m *ReportSingleCommandResponse) XXX_DiscardUnknown()

func (*ReportSingleCommandResponse) XXX_Marshal

func (m *ReportSingleCommandResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReportSingleCommandResponse) XXX_Merge

func (m *ReportSingleCommandResponse) XXX_Merge(src proto.Message)

func (*ReportSingleCommandResponse) XXX_Size

func (m *ReportSingleCommandResponse) XXX_Size() int

func (*ReportSingleCommandResponse) XXX_Unmarshal

func (m *ReportSingleCommandResponse) XXX_Unmarshal(b []byte) error

type ReportStopHookRequest

type ReportStopHookRequest struct {
	TaskIdentification   *TaskIdentification `protobuf:"bytes,1,opt,name=task_identification,json=taskIdentification,proto3" json:"task_identification,omitempty"`
	XXX_NoUnkeyedLiteral struct{}            `json:"-"`
	XXX_unrecognized     []byte              `json:"-"`
	XXX_sizecache        int32               `json:"-"`
}

func (*ReportStopHookRequest) Descriptor

func (*ReportStopHookRequest) Descriptor() ([]byte, []int)

func (*ReportStopHookRequest) GetTaskIdentification

func (m *ReportStopHookRequest) GetTaskIdentification() *TaskIdentification

func (*ReportStopHookRequest) ProtoMessage

func (*ReportStopHookRequest) ProtoMessage()

func (*ReportStopHookRequest) Reset

func (m *ReportStopHookRequest) Reset()

func (*ReportStopHookRequest) String

func (m *ReportStopHookRequest) String() string

func (*ReportStopHookRequest) XXX_DiscardUnknown

func (m *ReportStopHookRequest) XXX_DiscardUnknown()

func (*ReportStopHookRequest) XXX_Marshal

func (m *ReportStopHookRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReportStopHookRequest) XXX_Merge

func (m *ReportStopHookRequest) XXX_Merge(src proto.Message)

func (*ReportStopHookRequest) XXX_Size

func (m *ReportStopHookRequest) XXX_Size() int

func (*ReportStopHookRequest) XXX_Unmarshal

func (m *ReportStopHookRequest) XXX_Unmarshal(b []byte) error

type ScriptInstruction

type ScriptInstruction struct {
	Scripts              []string `protobuf:"bytes,1,rep,name=scripts,proto3" json:"scripts,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ScriptInstruction) Descriptor

func (*ScriptInstruction) Descriptor() ([]byte, []int)

func (*ScriptInstruction) GetScripts

func (m *ScriptInstruction) GetScripts() []string

func (*ScriptInstruction) ProtoMessage

func (*ScriptInstruction) ProtoMessage()

func (*ScriptInstruction) Reset

func (m *ScriptInstruction) Reset()

func (*ScriptInstruction) String

func (m *ScriptInstruction) String() string

func (*ScriptInstruction) XXX_DiscardUnknown

func (m *ScriptInstruction) XXX_DiscardUnknown()

func (*ScriptInstruction) XXX_Marshal

func (m *ScriptInstruction) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ScriptInstruction) XXX_Merge

func (m *ScriptInstruction) XXX_Merge(src proto.Message)

func (*ScriptInstruction) XXX_Size

func (m *ScriptInstruction) XXX_Size() int

func (*ScriptInstruction) XXX_Unmarshal

func (m *ScriptInstruction) XXX_Unmarshal(b []byte) error

type Task

type Task struct {
	LocalGroupId         int64             `protobuf:"varint,1,opt,name=local_group_id,json=localGroupId,proto3" json:"local_group_id,omitempty"`
	RequiredGroups       []int64           `protobuf:"varint,2,rep,packed,name=required_groups,json=requiredGroups,proto3" json:"required_groups,omitempty"`
	Name                 string            `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
	Status               Task_Status       `protobuf:"varint,4,opt,name=status,proto3,enum=org.cirruslabs.ci.services.cirruscigrpc.Task_Status" json:"status,omitempty"`
	Environment          map[string]string `` /* 163-byte string literal not displayed */
	Metadata             *Task_Metadata    `protobuf:"bytes,6,opt,name=metadata,proto3" json:"metadata,omitempty"`
	Instance             *Task_Instance    `protobuf:"bytes,7,opt,name=instance,proto3" json:"instance,omitempty"`
	Commands             []*Command        `protobuf:"bytes,8,rep,name=commands,proto3" json:"commands,omitempty"`
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_unrecognized     []byte            `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

func (*Task) Descriptor

func (*Task) Descriptor() ([]byte, []int)

func (*Task) GetCommands

func (m *Task) GetCommands() []*Command

func (*Task) GetEnvironment

func (m *Task) GetEnvironment() map[string]string

func (*Task) GetInstance

func (m *Task) GetInstance() *Task_Instance

func (*Task) GetLocalGroupId

func (m *Task) GetLocalGroupId() int64

func (*Task) GetMetadata

func (m *Task) GetMetadata() *Task_Metadata

func (*Task) GetName

func (m *Task) GetName() string

func (*Task) GetRequiredGroups

func (m *Task) GetRequiredGroups() []int64

func (*Task) GetStatus

func (m *Task) GetStatus() Task_Status

func (*Task) ProtoMessage

func (*Task) ProtoMessage()

func (*Task) Reset

func (m *Task) Reset()

func (*Task) String

func (m *Task) String() string

func (*Task) XXX_DiscardUnknown

func (m *Task) XXX_DiscardUnknown()

func (*Task) XXX_Marshal

func (m *Task) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Task) XXX_Merge

func (m *Task) XXX_Merge(src proto.Message)

func (*Task) XXX_Size

func (m *Task) XXX_Size() int

func (*Task) XXX_Unmarshal

func (m *Task) XXX_Unmarshal(b []byte) error

type TaskIdentification

type TaskIdentification struct {
	TaskId               int64    `protobuf:"varint,1,opt,name=task_id,json=taskId,proto3" json:"task_id,omitempty"`
	Secret               string   `protobuf:"bytes,2,opt,name=secret,proto3" json:"secret,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*TaskIdentification) Descriptor

func (*TaskIdentification) Descriptor() ([]byte, []int)

func (*TaskIdentification) GetSecret

func (m *TaskIdentification) GetSecret() string

func (*TaskIdentification) GetTaskId

func (m *TaskIdentification) GetTaskId() int64

func (*TaskIdentification) ProtoMessage

func (*TaskIdentification) ProtoMessage()

func (*TaskIdentification) Reset

func (m *TaskIdentification) Reset()

func (*TaskIdentification) String

func (m *TaskIdentification) String() string

func (*TaskIdentification) XXX_DiscardUnknown

func (m *TaskIdentification) XXX_DiscardUnknown()

func (*TaskIdentification) XXX_Marshal

func (m *TaskIdentification) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TaskIdentification) XXX_Merge

func (m *TaskIdentification) XXX_Merge(src proto.Message)

func (*TaskIdentification) XXX_Size

func (m *TaskIdentification) XXX_Size() int

func (*TaskIdentification) XXX_Unmarshal

func (m *TaskIdentification) XXX_Unmarshal(b []byte) error

type Task_Instance

type Task_Instance struct {
	Type                 string   `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"`
	Payload              []byte   `protobuf:"bytes,2,opt,name=payload,proto3" json:"payload,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*Task_Instance) Descriptor

func (*Task_Instance) Descriptor() ([]byte, []int)

func (*Task_Instance) GetPayload

func (m *Task_Instance) GetPayload() []byte

func (*Task_Instance) GetType

func (m *Task_Instance) GetType() string

func (*Task_Instance) ProtoMessage

func (*Task_Instance) ProtoMessage()

func (*Task_Instance) Reset

func (m *Task_Instance) Reset()

func (*Task_Instance) String

func (m *Task_Instance) String() string

func (*Task_Instance) XXX_DiscardUnknown

func (m *Task_Instance) XXX_DiscardUnknown()

func (*Task_Instance) XXX_Marshal

func (m *Task_Instance) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Task_Instance) XXX_Merge

func (m *Task_Instance) XXX_Merge(src proto.Message)

func (*Task_Instance) XXX_Size

func (m *Task_Instance) XXX_Size() int

func (*Task_Instance) XXX_Unmarshal

func (m *Task_Instance) XXX_Unmarshal(b []byte) error

type Task_Metadata

type Task_Metadata struct {
	UniqueLabels         []string          `protobuf:"bytes,1,rep,name=unique_labels,json=uniqueLabels,proto3" json:"unique_labels,omitempty"`
	Properties           map[string]string `` /* 161-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_unrecognized     []byte            `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

func (*Task_Metadata) Descriptor

func (*Task_Metadata) Descriptor() ([]byte, []int)

func (*Task_Metadata) GetProperties

func (m *Task_Metadata) GetProperties() map[string]string

func (*Task_Metadata) GetUniqueLabels

func (m *Task_Metadata) GetUniqueLabels() []string

func (*Task_Metadata) ProtoMessage

func (*Task_Metadata) ProtoMessage()

func (*Task_Metadata) Reset

func (m *Task_Metadata) Reset()

func (*Task_Metadata) String

func (m *Task_Metadata) String() string

func (*Task_Metadata) XXX_DiscardUnknown

func (m *Task_Metadata) XXX_DiscardUnknown()

func (*Task_Metadata) XXX_Marshal

func (m *Task_Metadata) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Task_Metadata) XXX_Merge

func (m *Task_Metadata) XXX_Merge(src proto.Message)

func (*Task_Metadata) XXX_Size

func (m *Task_Metadata) XXX_Size() int

func (*Task_Metadata) XXX_Unmarshal

func (m *Task_Metadata) XXX_Unmarshal(b []byte) error

type Task_Status

type Task_Status int32
const (
	Task_CREATED   Task_Status = 0
	Task_TRIGGERED Task_Status = 1
	Task_SCHEDULED Task_Status = 2
	Task_EXECUTING Task_Status = 3
	Task_ABORTED   Task_Status = 4
	Task_FAILED    Task_Status = 5
	Task_COMPLETED Task_Status = 6
	Task_SKIPPED   Task_Status = 7
)

func (Task_Status) EnumDescriptor

func (Task_Status) EnumDescriptor() ([]byte, []int)

func (Task_Status) String

func (x Task_Status) String() string

type UnimplementedCirrusCIServiceServer

type UnimplementedCirrusCIServiceServer struct {
}

UnimplementedCirrusCIServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedCirrusCIServiceServer) CacheInfo

func (*UnimplementedCirrusCIServiceServer) DownloadCache

func (*UnimplementedCirrusCIServiceServer) Heartbeat

func (*UnimplementedCirrusCIServiceServer) InitialCommands

func (*UnimplementedCirrusCIServiceServer) ParseConfig

func (*UnimplementedCirrusCIServiceServer) Ping

func (*UnimplementedCirrusCIServiceServer) ReportAgentError

func (*UnimplementedCirrusCIServiceServer) ReportAgentLogs

func (*UnimplementedCirrusCIServiceServer) ReportAgentSignal

func (*UnimplementedCirrusCIServiceServer) ReportAgentWarning

func (*UnimplementedCirrusCIServiceServer) ReportAnnotations

func (*UnimplementedCirrusCIServiceServer) ReportSingleCommand

func (*UnimplementedCirrusCIServiceServer) ReportStopHook

func (*UnimplementedCirrusCIServiceServer) SaveLogs

func (*UnimplementedCirrusCIServiceServer) StreamLogs

func (*UnimplementedCirrusCIServiceServer) UploadArtifacts

func (*UnimplementedCirrusCIServiceServer) UploadCache

type UploadArtifactsResponse

type UploadArtifactsResponse struct {
	BytesSaved           int64    `protobuf:"varint,1,opt,name=bytes_saved,json=bytesSaved,proto3" json:"bytes_saved,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*UploadArtifactsResponse) Descriptor

func (*UploadArtifactsResponse) Descriptor() ([]byte, []int)

func (*UploadArtifactsResponse) GetBytesSaved

func (m *UploadArtifactsResponse) GetBytesSaved() int64

func (*UploadArtifactsResponse) ProtoMessage

func (*UploadArtifactsResponse) ProtoMessage()

func (*UploadArtifactsResponse) Reset

func (m *UploadArtifactsResponse) Reset()

func (*UploadArtifactsResponse) String

func (m *UploadArtifactsResponse) String() string

func (*UploadArtifactsResponse) XXX_DiscardUnknown

func (m *UploadArtifactsResponse) XXX_DiscardUnknown()

func (*UploadArtifactsResponse) XXX_Marshal

func (m *UploadArtifactsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UploadArtifactsResponse) XXX_Merge

func (m *UploadArtifactsResponse) XXX_Merge(src proto.Message)

func (*UploadArtifactsResponse) XXX_Size

func (m *UploadArtifactsResponse) XXX_Size() int

func (*UploadArtifactsResponse) XXX_Unmarshal

func (m *UploadArtifactsResponse) XXX_Unmarshal(b []byte) error

type UploadCacheInstruction

type UploadCacheInstruction struct {
	CacheName            string   `protobuf:"bytes,1,opt,name=cache_name,json=cacheName,proto3" json:"cache_name,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*UploadCacheInstruction) Descriptor

func (*UploadCacheInstruction) Descriptor() ([]byte, []int)

func (*UploadCacheInstruction) GetCacheName

func (m *UploadCacheInstruction) GetCacheName() string

func (*UploadCacheInstruction) ProtoMessage

func (*UploadCacheInstruction) ProtoMessage()

func (*UploadCacheInstruction) Reset

func (m *UploadCacheInstruction) Reset()

func (*UploadCacheInstruction) String

func (m *UploadCacheInstruction) String() string

func (*UploadCacheInstruction) XXX_DiscardUnknown

func (m *UploadCacheInstruction) XXX_DiscardUnknown()

func (*UploadCacheInstruction) XXX_Marshal

func (m *UploadCacheInstruction) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UploadCacheInstruction) XXX_Merge

func (m *UploadCacheInstruction) XXX_Merge(src proto.Message)

func (*UploadCacheInstruction) XXX_Size

func (m *UploadCacheInstruction) XXX_Size() int

func (*UploadCacheInstruction) XXX_Unmarshal

func (m *UploadCacheInstruction) XXX_Unmarshal(b []byte) error

type UploadCacheResponse

type UploadCacheResponse struct {
	BytesSaved           int64    `protobuf:"varint,1,opt,name=bytes_saved,json=bytesSaved,proto3" json:"bytes_saved,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*UploadCacheResponse) Descriptor

func (*UploadCacheResponse) Descriptor() ([]byte, []int)

func (*UploadCacheResponse) GetBytesSaved

func (m *UploadCacheResponse) GetBytesSaved() int64

func (*UploadCacheResponse) ProtoMessage

func (*UploadCacheResponse) ProtoMessage()

func (*UploadCacheResponse) Reset

func (m *UploadCacheResponse) Reset()

func (*UploadCacheResponse) String

func (m *UploadCacheResponse) String() string

func (*UploadCacheResponse) XXX_DiscardUnknown

func (m *UploadCacheResponse) XXX_DiscardUnknown()

func (*UploadCacheResponse) XXX_Marshal

func (m *UploadCacheResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UploadCacheResponse) XXX_Merge

func (m *UploadCacheResponse) XXX_Merge(src proto.Message)

func (*UploadCacheResponse) XXX_Size

func (m *UploadCacheResponse) XXX_Size() int

func (*UploadCacheResponse) XXX_Unmarshal

func (m *UploadCacheResponse) XXX_Unmarshal(b []byte) error

type UploadLogsResponse

type UploadLogsResponse struct {
	BytesLogged          int64    `protobuf:"varint,1,opt,name=bytes_logged,json=bytesLogged,proto3" json:"bytes_logged,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*UploadLogsResponse) Descriptor

func (*UploadLogsResponse) Descriptor() ([]byte, []int)

func (*UploadLogsResponse) GetBytesLogged

func (m *UploadLogsResponse) GetBytesLogged() int64

func (*UploadLogsResponse) ProtoMessage

func (*UploadLogsResponse) ProtoMessage()

func (*UploadLogsResponse) Reset

func (m *UploadLogsResponse) Reset()

func (*UploadLogsResponse) String

func (m *UploadLogsResponse) String() string

func (*UploadLogsResponse) XXX_DiscardUnknown

func (m *UploadLogsResponse) XXX_DiscardUnknown()

func (*UploadLogsResponse) XXX_Marshal

func (m *UploadLogsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UploadLogsResponse) XXX_Merge

func (m *UploadLogsResponse) XXX_Merge(src proto.Message)

func (*UploadLogsResponse) XXX_Size

func (m *UploadLogsResponse) XXX_Size() int

func (*UploadLogsResponse) XXX_Unmarshal

func (m *UploadLogsResponse) XXX_Unmarshal(b []byte) error

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL