types

package
v0.2.2 Latest Latest
Warning

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

Go to latest
Published: Apr 9, 2021 License: Apache-2.0 Imports: 27 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	// TODO be able to build "the perfect" Dockerfile
	// using debian images and not alpine to avoid unnecessary issues
	// ---
	// cannot use a map here cuz protobuf does not allow a map of maps -.-
	LanguagesOptions = []*Language{
		{

			Language: BuildConfig_GOLANG,
			Image:    "golang",
			VersionsTags: map[string]string{
				"1.14": "1.14-buster",
				"1.13": "1.13-buster",
				"1.12": "1.12-buster",
			},
		},
		{

			Language: BuildConfig_NODEJS,
			Image:    "node",
			VersionsTags: map[string]string{
				"14": "14-buster",
				"13": "13-buster",
				"12": "12-buster",
				"10": "10-buster",
			},
		},
		{

			Language: BuildConfig_PYTHON,
			Image:    "python",
			VersionsTags: map[string]string{
				"3.9": "3.9-rc-buster",
				"3.8": "3.8-buster",
				"3.7": "3.7-buster",
				"3.6": "3.6-buster",
			},
		},
		{

			Language: BuildConfig_JAVA,
			Image:    "openjdk",
			VersionsTags: map[string]string{
				"15": "15-buster",
				"14": "14-buster",
				"11": "11-buster",
				"8":  "8-buster",
			},
		},
		{

			Language: BuildConfig_RUBY,
			Image:    "ruby",
			VersionsTags: map[string]string{
				"2.7": "2.7-buster",
				"2.6": "2.6-buster",
				"2.5": "2.5-buster",
			},
		},
		{

			Language: BuildConfig_PHP,
			Image:    "php",
			VersionsTags: map[string]string{
				"7.4": "7.4-cli-buster",
				"7.3": "7.3-cli-buster",
				"7.2": "7.2-cli-buster",
			},
		},
		{

			Language: BuildConfig_RUST,
			Image:    "rust",
			VersionsTags: map[string]string{
				"1": "1-buster",
			},
		},
		{

			Language: BuildConfig_ELIXIR,
			Image:    "elixir",
			VersionsTags: map[string]string{
				"1.10": "1.10",
				"1.9":  "1.9",
				"1.8":  "1.8",
				"1.7":  "1.7",
			},
		},
	}
	MemoryOpts = &MemoryOptions{
		DefaultValue: 256,
		Values:       []int32{32, 64, 128, 194, 256, 384, 512, 768, 1024, 1536, 2048, 4096, 5120, 6144, 7168, 8192},
	}
	CPUOpts = &CPUOptions{
		DefaultValue: -1,
		Values: []float32{
			0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1,
			1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9, 2,
			2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 3,
			3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4},
	}
	AutoScalingOpts = &AutoScalingOptions{
		DefaultMinValue: 1,
		DefaultMaxValue: 2,
		Values:          []int32{1, 2, 3, 4, 5, 6, 7, 8, 9, 10},
	}
	TimeoutOpts = &TimeoutOptions{
		DefaultValue: 60,
		Values: []int32{
			30, 60, 90, 120, 150, 180, 210, 240, 270, 300,
			330, 360, 390, 420, 450, 480, 510, 540, 570, 600,
			660, 720, 780, 840, 900, 960, 1020, 1080, 1140, 1200},
	}
	JobTimeoutOpts = &TimeoutOptions{
		DefaultValue: 300,
		Values: []int32{
			300, 600, 900, 1800, 3600, 7200, 10800, 14400, 18000},
	}
)
View Source
var BlockInstance_State_name = map[int32]string{
	0: "NOT_SET",
	1: "RUNNING",
	2: "COMPLETED",
	3: "ERROR",
	4: "OOM_KILLED",
}
View Source
var BlockInstance_State_value = map[string]int32{
	"NOT_SET":    0,
	"RUNNING":    1,
	"COMPLETED":  2,
	"ERROR":      3,
	"OOM_KILLED": 4,
}
View Source
var BlockStatus_State_name = map[int32]string{
	0: "NOT_SET",
	1: "HEALTHY",
	2: "UNHEALTHY",
	3: "SUSPENDED",
	4: "SLEEPING",
}
View Source
var BlockStatus_State_value = map[string]int32{
	"NOT_SET":   0,
	"HEALTHY":   1,
	"UNHEALTHY": 2,
	"SUSPENDED": 3,
	"SLEEPING":  4,
}
View Source
var Block_Type_name = map[int32]string{
	0: "NOT_SET",
	1: "BACKEND_API",
	2: "STATIC_SITE",
	3: "WEB_APP",
	4: "JAMSTACK",
	5: "JOB",
	6: "CRON_JOB",
	7: "WORKER",
	8: "CATALOG",
	9: "HELM",
}
View Source
var Block_Type_value = map[string]int32{
	"NOT_SET":     0,
	"BACKEND_API": 1,
	"STATIC_SITE": 2,
	"WEB_APP":     3,
	"JAMSTACK":    4,
	"JOB":         5,
	"CRON_JOB":    6,
	"WORKER":      7,
	"CATALOG":     8,
	"HELM":        9,
}
View Source
var BuildConfig_Language_name = map[int32]string{
	0: "NOT_SET",
	1: "DOCKERFILE",
	2: "GOLANG",
	3: "NODEJS",
	4: "PYTHON",
	5: "JAVA",
	6: "RUBY",
	7: "PHP",
	8: "RUST",
	9: "ELIXIR",
}
View Source
var BuildConfig_Language_value = map[string]int32{
	"NOT_SET":    0,
	"DOCKERFILE": 1,
	"GOLANG":     2,
	"NODEJS":     3,
	"PYTHON":     4,
	"JAVA":       5,
	"RUBY":       6,
	"PHP":        7,
	"RUST":       8,
	"ELIXIR":     9,
}
View Source
var BuildStatus_State_name = map[int32]string{
	0: "NOT_SET",
	1: "UNKNOWN",
	2: "QUEUED",
	3: "WORKING",
	4: "SUCCESS",
	5: "FAILURE",
	6: "INTERNAL_ERROR",
	7: "TIMEOUT",
	8: "CANCELLED",
	9: "EXPIRED",
}
View Source
var BuildStatus_State_value = map[string]int32{
	"NOT_SET":        0,
	"UNKNOWN":        1,
	"QUEUED":         2,
	"WORKING":        3,
	"SUCCESS":        4,
	"FAILURE":        5,
	"INTERNAL_ERROR": 6,
	"TIMEOUT":        7,
	"CANCELLED":      8,
	"EXPIRED":        9,
}
View Source
var JobStatus_State_name = map[int32]string{
	0: "NOT_SET",
	1: "PENDING",
	2: "RUNNING",
	3: "COMPLETED",
	4: "DELETED",
	5: "ERROR",
	6: "OOM_KILLED",
}
View Source
var JobStatus_State_value = map[string]int32{
	"NOT_SET":    0,
	"PENDING":    1,
	"RUNNING":    2,
	"COMPLETED":  3,
	"DELETED":    4,
	"ERROR":      5,
	"OOM_KILLED": 6,
}
View Source
var Release_Type_name = map[int32]string{
	0: "NOT_SET",
	1: "DEPLOY",
	2: "UNDEPLOY",
	3: "SUSPEND",
	4: "ROLLBACK",
}
View Source
var Release_Type_value = map[string]int32{
	"NOT_SET":  0,
	"DEPLOY":   1,
	"UNDEPLOY": 2,
	"SUSPEND":  3,
	"ROLLBACK": 4,
}
View Source
var RunConfig_Protocol_name = map[int32]string{
	0: "NOT_SET",
	1: "HTTP",
	2: "GRPC",
}
View Source
var RunConfig_Protocol_value = map[string]int32{
	"NOT_SET": 0,
	"HTTP":    1,
	"GRPC":    2,
}
View Source
var Status_State_name = map[int32]string{
	0: "NOT_SET",
	1: "FAIL",
	2: "SUCCESS",
	3: "RUNNING",
	4: "PENDING",
	5: "ABORTED",
	6: "REVIEW_DEPLOY",
}
View Source
var Status_State_value = map[string]int32{
	"NOT_SET":       0,
	"FAIL":          1,
	"SUCCESS":       2,
	"RUNNING":       3,
	"PENDING":       4,
	"ABORTED":       5,
	"REVIEW_DEPLOY": 6,
}

Functions

func BlockToConfigMap

func BlockToConfigMap(block *Block) (*corev1.ConfigMap, error)

func GenBlockConfigMapName

func GenBlockConfigMapName(blockName string) string

func GenerateID

func GenerateID() string

this code is the same as mongo's "NewObjectID()" id format will be like: '5fd0b16a1487ddd302b69d3a'

func GetImageAndTag

func GetImageAndTag(language BuildConfig_Language, languageVersion string) (string, string, error)

func RegisterKintoCoreServiceServer

func RegisterKintoCoreServiceServer(s *grpc.Server, srv KintoCoreServiceServer)

func RegisterWorkflowAPIServiceServer

func RegisterWorkflowAPIServiceServer(s *grpc.Server, srv WorkflowAPIServiceServer)

Types

type AbortBlockReleaseRequest

type AbortBlockReleaseRequest struct {
	BlockName            string   `protobuf:"bytes,1,opt,name=blockName,proto3" json:"blockName,omitempty"`
	ReleaseId            string   `protobuf:"bytes,2,opt,name=releaseId,proto3" json:"releaseId,omitempty"`
	EnvId                string   `protobuf:"bytes,3,opt,name=envId,proto3" json:"envId,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*AbortBlockReleaseRequest) Descriptor

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

func (*AbortBlockReleaseRequest) GetBlockName

func (m *AbortBlockReleaseRequest) GetBlockName() string

func (*AbortBlockReleaseRequest) GetEnvId

func (m *AbortBlockReleaseRequest) GetEnvId() string

func (*AbortBlockReleaseRequest) GetReleaseId

func (m *AbortBlockReleaseRequest) GetReleaseId() string

func (*AbortBlockReleaseRequest) ProtoMessage

func (*AbortBlockReleaseRequest) ProtoMessage()

func (*AbortBlockReleaseRequest) Reset

func (m *AbortBlockReleaseRequest) Reset()

func (*AbortBlockReleaseRequest) String

func (m *AbortBlockReleaseRequest) String() string

func (AbortBlockReleaseRequest) Validate

func (req AbortBlockReleaseRequest) Validate() error

func (*AbortBlockReleaseRequest) XXX_DiscardUnknown

func (m *AbortBlockReleaseRequest) XXX_DiscardUnknown()

func (*AbortBlockReleaseRequest) XXX_Marshal

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

func (*AbortBlockReleaseRequest) XXX_Merge

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

func (*AbortBlockReleaseRequest) XXX_Size

func (m *AbortBlockReleaseRequest) XXX_Size() int

func (*AbortBlockReleaseRequest) XXX_Unmarshal

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

type AbortReleaseRequest

type AbortReleaseRequest struct {
	BuildId              string   `protobuf:"bytes,1,opt,name=buildId,proto3" json:"buildId,omitempty"`
	EnvId                string   `protobuf:"bytes,2,opt,name=envId,proto3" json:"envId,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*AbortReleaseRequest) Descriptor

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

func (*AbortReleaseRequest) GetBuildId

func (m *AbortReleaseRequest) GetBuildId() string

func (*AbortReleaseRequest) GetEnvId

func (m *AbortReleaseRequest) GetEnvId() string

func (*AbortReleaseRequest) ProtoMessage

func (*AbortReleaseRequest) ProtoMessage()

func (*AbortReleaseRequest) Reset

func (m *AbortReleaseRequest) Reset()

func (*AbortReleaseRequest) String

func (m *AbortReleaseRequest) String() string

func (AbortReleaseRequest) Validate

func (req AbortReleaseRequest) Validate() error

func (*AbortReleaseRequest) XXX_DiscardUnknown

func (m *AbortReleaseRequest) XXX_DiscardUnknown()

func (*AbortReleaseRequest) XXX_Marshal

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

func (*AbortReleaseRequest) XXX_Merge

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

func (*AbortReleaseRequest) XXX_Size

func (m *AbortReleaseRequest) XXX_Size() int

func (*AbortReleaseRequest) XXX_Unmarshal

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

type AutoScaling

type AutoScaling struct {
	Min                  int32    `protobuf:"varint,1,opt,name=min,proto3" json:"min,omitempty"`
	Max                  int32    `protobuf:"varint,2,opt,name=max,proto3" json:"max,omitempty"`
	CpuPercent           int32    `protobuf:"varint,3,opt,name=cpuPercent,proto3" json:"cpuPercent,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*AutoScaling) Descriptor

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

func (*AutoScaling) GetCpuPercent

func (m *AutoScaling) GetCpuPercent() int32

func (*AutoScaling) GetMax

func (m *AutoScaling) GetMax() int32

func (*AutoScaling) GetMin

func (m *AutoScaling) GetMin() int32

func (*AutoScaling) ProtoMessage

func (*AutoScaling) ProtoMessage()

func (*AutoScaling) Reset

func (m *AutoScaling) Reset()

func (*AutoScaling) String

func (m *AutoScaling) String() string

func (AutoScaling) Validate

func (a AutoScaling) Validate() error

func (*AutoScaling) XXX_DiscardUnknown

func (m *AutoScaling) XXX_DiscardUnknown()

func (*AutoScaling) XXX_Marshal

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

func (*AutoScaling) XXX_Merge

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

func (*AutoScaling) XXX_Size

func (m *AutoScaling) XXX_Size() int

func (*AutoScaling) XXX_Unmarshal

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

type AutoScalingOptions

type AutoScalingOptions struct {
	DefaultMinValue      int32    `protobuf:"varint,1,opt,name=defaultMinValue,proto3" json:"defaultMinValue,omitempty"`
	DefaultMaxValue      int32    `protobuf:"varint,2,opt,name=defaultMaxValue,proto3" json:"defaultMaxValue,omitempty"`
	Values               []int32  `protobuf:"varint,3,rep,packed,name=values,proto3" json:"values,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*AutoScalingOptions) Descriptor

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

func (*AutoScalingOptions) GetDefaultMaxValue

func (m *AutoScalingOptions) GetDefaultMaxValue() int32

func (*AutoScalingOptions) GetDefaultMinValue

func (m *AutoScalingOptions) GetDefaultMinValue() int32

func (*AutoScalingOptions) GetValues

func (m *AutoScalingOptions) GetValues() []int32

func (*AutoScalingOptions) ProtoMessage

func (*AutoScalingOptions) ProtoMessage()

func (*AutoScalingOptions) Reset

func (m *AutoScalingOptions) Reset()

func (*AutoScalingOptions) String

func (m *AutoScalingOptions) String() string

func (*AutoScalingOptions) XXX_DiscardUnknown

func (m *AutoScalingOptions) XXX_DiscardUnknown()

func (*AutoScalingOptions) XXX_Marshal

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

func (*AutoScalingOptions) XXX_Merge

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

func (*AutoScalingOptions) XXX_Size

func (m *AutoScalingOptions) XXX_Size() int

func (*AutoScalingOptions) XXX_Unmarshal

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

type Block

type Block struct {
	Id                   string              `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Name                 string              `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	EnvId                string              `protobuf:"bytes,3,opt,name=envId,proto3" json:"envId,omitempty"`
	DisplayName          string              `protobuf:"bytes,4,opt,name=displayName,proto3" json:"displayName,omitempty"`
	Releases             map[string]*Release `` /* 157-byte string literal not displayed */
	CustomDomains        []string            `protobuf:"bytes,6,rep,name=customDomains,proto3" json:"customDomains,omitempty"`
	IsPublicURL          bool                `protobuf:"varint,7,opt,name=isPublicURL,proto3" json:"isPublicURL,omitempty"`
	ParentBlockName      string              `protobuf:"bytes,8,opt,name=parentBlockName,proto3" json:"parentBlockName,omitempty"`
	ParentBlockEnvId     string              `protobuf:"bytes,9,opt,name=parentBlockEnvId,proto3" json:"parentBlockEnvId,omitempty"`
	XXX_NoUnkeyedLiteral struct{}            `json:"-"`
	XXX_unrecognized     []byte              `json:"-"`
	XXX_sizecache        int32               `json:"-"`
}

func ConfigMapToBlock

func ConfigMapToBlock(configMap *corev1.ConfigMap) (*Block, error)

func (*Block) Descriptor

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

func (*Block) GetCustomDomains

func (m *Block) GetCustomDomains() []string

func (*Block) GetDisplayName

func (m *Block) GetDisplayName() string

func (*Block) GetEnvId

func (m *Block) GetEnvId() string

func (*Block) GetId

func (m *Block) GetId() string

func (*Block) GetIsPublicURL

func (m *Block) GetIsPublicURL() bool

func (*Block) GetName

func (m *Block) GetName() string

func (*Block) GetParentBlockEnvId

func (m *Block) GetParentBlockEnvId() string

func (*Block) GetParentBlockName

func (m *Block) GetParentBlockName() string

func (*Block) GetReleases

func (m *Block) GetReleases() map[string]*Release

func (*Block) ProtoMessage

func (*Block) ProtoMessage()

func (*Block) Reset

func (m *Block) Reset()

func (*Block) String

func (m *Block) String() string

func (*Block) XXX_DiscardUnknown

func (m *Block) XXX_DiscardUnknown()

func (*Block) XXX_Marshal

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

func (*Block) XXX_Merge

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

func (*Block) XXX_Size

func (m *Block) XXX_Size() int

func (*Block) XXX_Unmarshal

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

type BlockInstance

type BlockInstance struct {
	Name                 string              `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	ReleaseId            string              `protobuf:"bytes,2,opt,name=releaseId,proto3" json:"releaseId,omitempty"`
	CpuRequests          int64               `protobuf:"varint,3,opt,name=cpuRequests,proto3" json:"cpuRequests,omitempty"`
	CpuUsage             int64               `protobuf:"varint,4,opt,name=cpuUsage,proto3" json:"cpuUsage,omitempty"`
	MemRequests          int64               `protobuf:"varint,5,opt,name=memRequests,proto3" json:"memRequests,omitempty"`
	MemUsage             int64               `protobuf:"varint,6,opt,name=memUsage,proto3" json:"memUsage,omitempty"`
	Restarts             int32               `protobuf:"varint,7,opt,name=restarts,proto3" json:"restarts,omitempty"`
	State                BlockInstance_State `protobuf:"varint,8,opt,name=state,proto3,enum=BlockInstance_State" json:"state,omitempty"`
	XXX_NoUnkeyedLiteral struct{}            `json:"-"`
	XXX_unrecognized     []byte              `json:"-"`
	XXX_sizecache        int32               `json:"-"`
}

func (*BlockInstance) Descriptor

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

func (*BlockInstance) GetCpuRequests

func (m *BlockInstance) GetCpuRequests() int64

func (*BlockInstance) GetCpuUsage

func (m *BlockInstance) GetCpuUsage() int64

func (*BlockInstance) GetMemRequests

func (m *BlockInstance) GetMemRequests() int64

func (*BlockInstance) GetMemUsage

func (m *BlockInstance) GetMemUsage() int64

func (*BlockInstance) GetName

func (m *BlockInstance) GetName() string

func (*BlockInstance) GetReleaseId

func (m *BlockInstance) GetReleaseId() string

func (*BlockInstance) GetRestarts

func (m *BlockInstance) GetRestarts() int32

func (*BlockInstance) GetState

func (m *BlockInstance) GetState() BlockInstance_State

func (*BlockInstance) ProtoMessage

func (*BlockInstance) ProtoMessage()

func (*BlockInstance) Reset

func (m *BlockInstance) Reset()

func (*BlockInstance) String

func (m *BlockInstance) String() string

func (*BlockInstance) XXX_DiscardUnknown

func (m *BlockInstance) XXX_DiscardUnknown()

func (*BlockInstance) XXX_Marshal

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

func (*BlockInstance) XXX_Merge

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

func (*BlockInstance) XXX_Size

func (m *BlockInstance) XXX_Size() int

func (*BlockInstance) XXX_Unmarshal

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

type BlockInstance_State

type BlockInstance_State int32
const (
	BlockInstance_NOT_SET    BlockInstance_State = 0
	BlockInstance_RUNNING    BlockInstance_State = 1
	BlockInstance_COMPLETED  BlockInstance_State = 2
	BlockInstance_ERROR      BlockInstance_State = 3
	BlockInstance_OOM_KILLED BlockInstance_State = 4
)

func (BlockInstance_State) EnumDescriptor

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

func (BlockInstance_State) String

func (x BlockInstance_State) String() string

type BlockMetrics

type BlockMetrics struct {
	BlockName            string                    `protobuf:"bytes,1,opt,name=blockName,proto3" json:"blockName,omitempty"`
	EnvId                string                    `protobuf:"bytes,2,opt,name=envId,proto3" json:"envId,omitempty"`
	Instances            map[string]*BlockInstance `` /* 159-byte string literal not displayed */
	Storages             map[string]*BlockStorage  `` /* 157-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}                  `json:"-"`
	XXX_unrecognized     []byte                    `json:"-"`
	XXX_sizecache        int32                     `json:"-"`
}

func (*BlockMetrics) Descriptor

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

func (*BlockMetrics) GetBlockName

func (m *BlockMetrics) GetBlockName() string

func (*BlockMetrics) GetEnvId

func (m *BlockMetrics) GetEnvId() string

func (*BlockMetrics) GetInstances

func (m *BlockMetrics) GetInstances() map[string]*BlockInstance

func (*BlockMetrics) GetStorages

func (m *BlockMetrics) GetStorages() map[string]*BlockStorage

func (*BlockMetrics) ProtoMessage

func (*BlockMetrics) ProtoMessage()

func (*BlockMetrics) Reset

func (m *BlockMetrics) Reset()

func (*BlockMetrics) String

func (m *BlockMetrics) String() string

func (*BlockMetrics) XXX_DiscardUnknown

func (m *BlockMetrics) XXX_DiscardUnknown()

func (*BlockMetrics) XXX_Marshal

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

func (*BlockMetrics) XXX_Merge

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

func (*BlockMetrics) XXX_Size

func (m *BlockMetrics) XXX_Size() int

func (*BlockMetrics) XXX_Unmarshal

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

type BlockQueryRequest

type BlockQueryRequest struct {
	EnvId                string   `protobuf:"bytes,1,opt,name=envId,proto3" json:"envId,omitempty"`
	Name                 string   `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*BlockQueryRequest) Descriptor

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

func (*BlockQueryRequest) GetEnvId

func (m *BlockQueryRequest) GetEnvId() string

func (*BlockQueryRequest) GetName

func (m *BlockQueryRequest) GetName() string

func (*BlockQueryRequest) ProtoMessage

func (*BlockQueryRequest) ProtoMessage()

func (*BlockQueryRequest) Reset

func (m *BlockQueryRequest) Reset()

func (*BlockQueryRequest) String

func (m *BlockQueryRequest) String() string

func (BlockQueryRequest) Validate

func (s BlockQueryRequest) Validate() error

func (*BlockQueryRequest) XXX_DiscardUnknown

func (m *BlockQueryRequest) XXX_DiscardUnknown()

func (*BlockQueryRequest) XXX_Marshal

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

func (*BlockQueryRequest) XXX_Merge

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

func (*BlockQueryRequest) XXX_Size

func (m *BlockQueryRequest) XXX_Size() int

func (*BlockQueryRequest) XXX_Unmarshal

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

type BlockStatus

type BlockStatus struct {
	BlockName            string            `protobuf:"bytes,1,opt,name=blockName,proto3" json:"blockName,omitempty"`
	EnvId                string            `protobuf:"bytes,2,opt,name=envId,proto3" json:"envId,omitempty"`
	ReleaseId            string            `protobuf:"bytes,3,opt,name=releaseId,proto3" json:"releaseId,omitempty"`
	State                BlockStatus_State `protobuf:"varint,7,opt,name=state,proto3,enum=BlockStatus_State" json:"state,omitempty"`
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_unrecognized     []byte            `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

func (*BlockStatus) Descriptor

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

func (*BlockStatus) GetBlockName

func (m *BlockStatus) GetBlockName() string

func (*BlockStatus) GetEnvId

func (m *BlockStatus) GetEnvId() string

func (*BlockStatus) GetReleaseId

func (m *BlockStatus) GetReleaseId() string

func (*BlockStatus) GetState

func (m *BlockStatus) GetState() BlockStatus_State

func (*BlockStatus) ProtoMessage

func (*BlockStatus) ProtoMessage()

func (*BlockStatus) Reset

func (m *BlockStatus) Reset()

func (*BlockStatus) String

func (m *BlockStatus) String() string

func (*BlockStatus) XXX_DiscardUnknown

func (m *BlockStatus) XXX_DiscardUnknown()

func (*BlockStatus) XXX_Marshal

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

func (*BlockStatus) XXX_Merge

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

func (*BlockStatus) XXX_Size

func (m *BlockStatus) XXX_Size() int

func (*BlockStatus) XXX_Unmarshal

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

type BlockStatus_State

type BlockStatus_State int32
const (
	BlockStatus_NOT_SET   BlockStatus_State = 0
	BlockStatus_HEALTHY   BlockStatus_State = 1
	BlockStatus_UNHEALTHY BlockStatus_State = 2
	BlockStatus_SUSPENDED BlockStatus_State = 3
	BlockStatus_SLEEPING  BlockStatus_State = 4
)

func (BlockStatus_State) EnumDescriptor

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

func (BlockStatus_State) String

func (x BlockStatus_State) String() string

type BlockStatuses

type BlockStatuses struct {
	BlockStatuses        []*BlockStatus `protobuf:"bytes,1,rep,name=blockStatuses,proto3" json:"blockStatuses,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*BlockStatuses) Descriptor

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

func (*BlockStatuses) GetBlockStatuses

func (m *BlockStatuses) GetBlockStatuses() []*BlockStatus

func (*BlockStatuses) ProtoMessage

func (*BlockStatuses) ProtoMessage()

func (*BlockStatuses) Reset

func (m *BlockStatuses) Reset()

func (*BlockStatuses) String

func (m *BlockStatuses) String() string

func (*BlockStatuses) XXX_DiscardUnknown

func (m *BlockStatuses) XXX_DiscardUnknown()

func (*BlockStatuses) XXX_Marshal

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

func (*BlockStatuses) XXX_Merge

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

func (*BlockStatuses) XXX_Size

func (m *BlockStatuses) XXX_Size() int

func (*BlockStatuses) XXX_Unmarshal

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

type BlockStorage

type BlockStorage struct {
	Name                   string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	CapacityInBytes        int64    `protobuf:"varint,2,opt,name=capacityInBytes,proto3" json:"capacityInBytes,omitempty"`
	UsagePercent           string   `protobuf:"bytes,3,opt,name=usagePercent,proto3" json:"usagePercent,omitempty"`
	MountPath              string   `protobuf:"bytes,4,opt,name=mountPath,proto3" json:"mountPath,omitempty"`
	InstanceId             string   `protobuf:"bytes,5,opt,name=instanceId,proto3" json:"instanceId,omitempty"`
	MountedUsageInBytes    int64    `protobuf:"varint,6,opt,name=mountedUsageInBytes,proto3" json:"mountedUsageInBytes,omitempty"`
	MountedCapacityInBytes int64    `protobuf:"varint,7,opt,name=mountedCapacityInBytes,proto3" json:"mountedCapacityInBytes,omitempty"`
	XXX_NoUnkeyedLiteral   struct{} `json:"-"`
	XXX_unrecognized       []byte   `json:"-"`
	XXX_sizecache          int32    `json:"-"`
}

the main difference between mountedCapacityInBytes and capacityInBytes is capacityInBytes will return a neat figure (coz it is the k8s PVC request) while mountedCapacityInBytes will be in bytes format at os level (so it will never be 1GB but sth like 0.98 GB)

func (*BlockStorage) Descriptor

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

func (*BlockStorage) GetCapacityInBytes

func (m *BlockStorage) GetCapacityInBytes() int64

func (*BlockStorage) GetInstanceId

func (m *BlockStorage) GetInstanceId() string

func (*BlockStorage) GetMountPath

func (m *BlockStorage) GetMountPath() string

func (*BlockStorage) GetMountedCapacityInBytes

func (m *BlockStorage) GetMountedCapacityInBytes() int64

func (*BlockStorage) GetMountedUsageInBytes

func (m *BlockStorage) GetMountedUsageInBytes() int64

func (*BlockStorage) GetName

func (m *BlockStorage) GetName() string

func (*BlockStorage) GetUsagePercent

func (m *BlockStorage) GetUsagePercent() string

func (*BlockStorage) ProtoMessage

func (*BlockStorage) ProtoMessage()

func (*BlockStorage) Reset

func (m *BlockStorage) Reset()

func (*BlockStorage) String

func (m *BlockStorage) String() string

func (*BlockStorage) XXX_DiscardUnknown

func (m *BlockStorage) XXX_DiscardUnknown()

func (*BlockStorage) XXX_Marshal

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

func (*BlockStorage) XXX_Merge

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

func (*BlockStorage) XXX_Size

func (m *BlockStorage) XXX_Size() int

func (*BlockStorage) XXX_Unmarshal

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

type BlockUpdateResponse

type BlockUpdateResponse struct {
	Name                 string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	ReleaseId            string   `protobuf:"bytes,2,opt,name=releaseId,proto3" json:"releaseId,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*BlockUpdateResponse) Descriptor

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

func (*BlockUpdateResponse) GetName

func (m *BlockUpdateResponse) GetName() string

func (*BlockUpdateResponse) GetReleaseId

func (m *BlockUpdateResponse) GetReleaseId() string

func (*BlockUpdateResponse) ProtoMessage

func (*BlockUpdateResponse) ProtoMessage()

func (*BlockUpdateResponse) Reset

func (m *BlockUpdateResponse) Reset()

func (*BlockUpdateResponse) String

func (m *BlockUpdateResponse) String() string

func (*BlockUpdateResponse) XXX_DiscardUnknown

func (m *BlockUpdateResponse) XXX_DiscardUnknown()

func (*BlockUpdateResponse) XXX_Marshal

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

func (*BlockUpdateResponse) XXX_Merge

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

func (*BlockUpdateResponse) XXX_Size

func (m *BlockUpdateResponse) XXX_Size() int

func (*BlockUpdateResponse) XXX_Unmarshal

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

type Block_Type

type Block_Type int32
const (
	Block_NOT_SET     Block_Type = 0
	Block_BACKEND_API Block_Type = 1
	Block_STATIC_SITE Block_Type = 2
	Block_WEB_APP     Block_Type = 3
	Block_JAMSTACK    Block_Type = 4
	Block_JOB         Block_Type = 5
	Block_CRON_JOB    Block_Type = 6
	Block_WORKER      Block_Type = 7
	Block_CATALOG     Block_Type = 8
	Block_HELM        Block_Type = 9
)

func (Block_Type) EnumDescriptor

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

func (Block_Type) String

func (x Block_Type) String() string

type Blocks

type Blocks struct {
	Items                []*Block `protobuf:"bytes,1,rep,name=items,proto3" json:"items,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*Blocks) Descriptor

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

func (*Blocks) GetItems

func (m *Blocks) GetItems() []*Block

func (*Blocks) ProtoMessage

func (*Blocks) ProtoMessage()

func (*Blocks) Reset

func (m *Blocks) Reset()

func (*Blocks) String

func (m *Blocks) String() string

func (*Blocks) XXX_DiscardUnknown

func (m *Blocks) XXX_DiscardUnknown()

func (*Blocks) XXX_Marshal

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

func (*Blocks) XXX_Merge

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

func (*Blocks) XXX_Size

func (m *Blocks) XXX_Size() int

func (*Blocks) XXX_Unmarshal

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

type BlocksMetrics

type BlocksMetrics struct {
	Blocks               map[string]*BlockMetrics `` /* 153-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}                 `json:"-"`
	XXX_unrecognized     []byte                   `json:"-"`
	XXX_sizecache        int32                    `json:"-"`
}

func (*BlocksMetrics) Descriptor

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

func (*BlocksMetrics) GetBlocks

func (m *BlocksMetrics) GetBlocks() map[string]*BlockMetrics

func (*BlocksMetrics) ProtoMessage

func (*BlocksMetrics) ProtoMessage()

func (*BlocksMetrics) Reset

func (m *BlocksMetrics) Reset()

func (*BlocksMetrics) String

func (m *BlocksMetrics) String() string

func (*BlocksMetrics) XXX_DiscardUnknown

func (m *BlocksMetrics) XXX_DiscardUnknown()

func (*BlocksMetrics) XXX_Marshal

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

func (*BlocksMetrics) XXX_Merge

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

func (*BlocksMetrics) XXX_Size

func (m *BlocksMetrics) XXX_Size() int

func (*BlocksMetrics) XXX_Unmarshal

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

type Build

type Build struct {
	Language         string `yaml:"language"`
	LanguageVersion  string `yaml:"languageVersion"`
	BuildCommand     string `yaml:"buildCommand"`
	RunCommand       string `yaml:"startCommand"`
	SubfolderPath    string `yaml:"subfolderPath"`
	PublicOutputPath string `yaml:"publicOutputPath"`
	DockerfileName   string `yaml:"dockerfileName"`
}

func (Build) Validate

func (b Build) Validate() error

type BuildAndDeployRequest

type BuildAndDeployRequest struct {
	BuildConfig          *BuildConfig `protobuf:"bytes,1,opt,name=buildConfig,proto3" json:"buildConfig,omitempty"`
	BlockName            string       `protobuf:"bytes,2,opt,name=blockName,proto3" json:"blockName,omitempty"`
	ReleaseId            string       `protobuf:"bytes,3,opt,name=releaseId,proto3" json:"releaseId,omitempty"`
	Namespace            string       `protobuf:"bytes,4,opt,name=namespace,proto3" json:"namespace,omitempty"`
	IsStaticBuild        bool         `protobuf:"varint,5,opt,name=isStaticBuild,proto3" json:"isStaticBuild,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*BuildAndDeployRequest) Descriptor

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

func (*BuildAndDeployRequest) GetBlockName

func (m *BuildAndDeployRequest) GetBlockName() string

func (*BuildAndDeployRequest) GetBuildConfig

func (m *BuildAndDeployRequest) GetBuildConfig() *BuildConfig

func (*BuildAndDeployRequest) GetIsStaticBuild

func (m *BuildAndDeployRequest) GetIsStaticBuild() bool

func (*BuildAndDeployRequest) GetNamespace

func (m *BuildAndDeployRequest) GetNamespace() string

func (*BuildAndDeployRequest) GetReleaseId

func (m *BuildAndDeployRequest) GetReleaseId() string

func (*BuildAndDeployRequest) ProtoMessage

func (*BuildAndDeployRequest) ProtoMessage()

func (*BuildAndDeployRequest) Reset

func (m *BuildAndDeployRequest) Reset()

func (*BuildAndDeployRequest) String

func (m *BuildAndDeployRequest) String() string

func (BuildAndDeployRequest) Validate

func (req BuildAndDeployRequest) Validate() error

func (*BuildAndDeployRequest) XXX_DiscardUnknown

func (m *BuildAndDeployRequest) XXX_DiscardUnknown()

func (*BuildAndDeployRequest) XXX_Marshal

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

func (*BuildAndDeployRequest) XXX_Merge

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

func (*BuildAndDeployRequest) XXX_Size

func (m *BuildAndDeployRequest) XXX_Size() int

func (*BuildAndDeployRequest) XXX_Unmarshal

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

type BuildConfig

type BuildConfig struct {
	Id                   string               `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Image                string               `protobuf:"bytes,2,opt,name=image,proto3" json:"image,omitempty"`
	Language             BuildConfig_Language `protobuf:"varint,3,opt,name=language,proto3,enum=BuildConfig_Language" json:"language,omitempty"`
	LanguageVersion      string               `protobuf:"bytes,4,opt,name=languageVersion,proto3" json:"languageVersion,omitempty"`
	BuildCommand         string               `protobuf:"bytes,5,opt,name=buildCommand,proto3" json:"buildCommand,omitempty"`
	RunCommand           string               `protobuf:"bytes,6,opt,name=runCommand,proto3" json:"runCommand,omitempty"`
	PathToCode           string               `protobuf:"bytes,7,opt,name=pathToCode,proto3" json:"pathToCode,omitempty"`
	PathToStaticOutput   string               `protobuf:"bytes,11,opt,name=pathToStaticOutput,proto3" json:"pathToStaticOutput,omitempty"`
	DockerfileFileName   string               `protobuf:"bytes,8,opt,name=dockerfileFileName,proto3" json:"dockerfileFileName,omitempty"`
	BuildArgs            map[string]string    `` /* 159-byte string literal not displayed */
	Repository           *Repository          `protobuf:"bytes,10,opt,name=repository,proto3" json:"repository,omitempty"`
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

func (*BuildConfig) Descriptor

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

func (*BuildConfig) GetBuildArgs

func (m *BuildConfig) GetBuildArgs() map[string]string

func (*BuildConfig) GetBuildCommand

func (m *BuildConfig) GetBuildCommand() string

func (*BuildConfig) GetDockerfileFileName

func (m *BuildConfig) GetDockerfileFileName() string

func (*BuildConfig) GetId

func (m *BuildConfig) GetId() string

func (*BuildConfig) GetImage

func (m *BuildConfig) GetImage() string

func (*BuildConfig) GetLanguage

func (m *BuildConfig) GetLanguage() BuildConfig_Language

func (*BuildConfig) GetLanguageVersion

func (m *BuildConfig) GetLanguageVersion() string

func (*BuildConfig) GetPathToCode

func (m *BuildConfig) GetPathToCode() string

func (*BuildConfig) GetPathToStaticOutput

func (m *BuildConfig) GetPathToStaticOutput() string

func (*BuildConfig) GetRepository

func (m *BuildConfig) GetRepository() *Repository

func (*BuildConfig) GetRunCommand

func (m *BuildConfig) GetRunCommand() string

func (*BuildConfig) ProtoMessage

func (*BuildConfig) ProtoMessage()

func (*BuildConfig) Reset

func (m *BuildConfig) Reset()

func (*BuildConfig) String

func (m *BuildConfig) String() string

func (BuildConfig) Validate

func (b BuildConfig) Validate() error

func (*BuildConfig) XXX_DiscardUnknown

func (m *BuildConfig) XXX_DiscardUnknown()

func (*BuildConfig) XXX_Marshal

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

func (*BuildConfig) XXX_Merge

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

func (*BuildConfig) XXX_Size

func (m *BuildConfig) XXX_Size() int

func (*BuildConfig) XXX_Unmarshal

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

type BuildConfig_Language

type BuildConfig_Language int32
const (
	BuildConfig_NOT_SET    BuildConfig_Language = 0
	BuildConfig_DOCKERFILE BuildConfig_Language = 1
	BuildConfig_GOLANG     BuildConfig_Language = 2
	BuildConfig_NODEJS     BuildConfig_Language = 3
	BuildConfig_PYTHON     BuildConfig_Language = 4
	BuildConfig_JAVA       BuildConfig_Language = 5
	BuildConfig_RUBY       BuildConfig_Language = 6
	BuildConfig_PHP        BuildConfig_Language = 7
	BuildConfig_RUST       BuildConfig_Language = 8
	BuildConfig_ELIXIR     BuildConfig_Language = 9
)

func (BuildConfig_Language) EnumDescriptor

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

func (BuildConfig_Language) String

func (x BuildConfig_Language) String() string

type BuildStatus

type BuildStatus struct {
	State                BuildStatus_State    `protobuf:"varint,1,opt,name=state,proto3,enum=BuildStatus_State" json:"state,omitempty"`
	StartTime            *timestamp.Timestamp `protobuf:"bytes,2,opt,name=startTime,proto3" json:"startTime,omitempty"`
	FinishTime           *timestamp.Timestamp `protobuf:"bytes,3,opt,name=finishTime,proto3" json:"finishTime,omitempty"`
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

func (*BuildStatus) Descriptor

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

func (*BuildStatus) GetFinishTime

func (m *BuildStatus) GetFinishTime() *timestamp.Timestamp

func (*BuildStatus) GetStartTime

func (m *BuildStatus) GetStartTime() *timestamp.Timestamp

func (*BuildStatus) GetState

func (m *BuildStatus) GetState() BuildStatus_State

func (*BuildStatus) ProtoMessage

func (*BuildStatus) ProtoMessage()

func (*BuildStatus) Reset

func (m *BuildStatus) Reset()

func (*BuildStatus) String

func (m *BuildStatus) String() string

func (BuildStatus) Validate

func (b BuildStatus) Validate() error

func (*BuildStatus) XXX_DiscardUnknown

func (m *BuildStatus) XXX_DiscardUnknown()

func (*BuildStatus) XXX_Marshal

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

func (*BuildStatus) XXX_Merge

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

func (*BuildStatus) XXX_Size

func (m *BuildStatus) XXX_Size() int

func (*BuildStatus) XXX_Unmarshal

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

type BuildStatus_State

type BuildStatus_State int32
const (
	BuildStatus_NOT_SET        BuildStatus_State = 0
	BuildStatus_UNKNOWN        BuildStatus_State = 1
	BuildStatus_QUEUED         BuildStatus_State = 2
	BuildStatus_WORKING        BuildStatus_State = 3
	BuildStatus_SUCCESS        BuildStatus_State = 4
	BuildStatus_FAILURE        BuildStatus_State = 5
	BuildStatus_INTERNAL_ERROR BuildStatus_State = 6
	BuildStatus_TIMEOUT        BuildStatus_State = 7
	BuildStatus_CANCELLED      BuildStatus_State = 8
	BuildStatus_EXPIRED        BuildStatus_State = 9
)

func (BuildStatus_State) EnumDescriptor

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

func (BuildStatus_State) String

func (x BuildStatus_State) String() string

type CPUOptions

type CPUOptions struct {
	DefaultValue         float32   `protobuf:"fixed32,1,opt,name=defaultValue,proto3" json:"defaultValue,omitempty"`
	Values               []float32 `protobuf:"fixed32,2,rep,packed,name=values,proto3" json:"values,omitempty"`
	XXX_NoUnkeyedLiteral struct{}  `json:"-"`
	XXX_unrecognized     []byte    `json:"-"`
	XXX_sizecache        int32     `json:"-"`
}

func (*CPUOptions) Descriptor

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

func (*CPUOptions) GetDefaultValue

func (m *CPUOptions) GetDefaultValue() float32

func (*CPUOptions) GetValues

func (m *CPUOptions) GetValues() []float32

func (*CPUOptions) ProtoMessage

func (*CPUOptions) ProtoMessage()

func (*CPUOptions) Reset

func (m *CPUOptions) Reset()

func (*CPUOptions) String

func (m *CPUOptions) String() string

func (*CPUOptions) XXX_DiscardUnknown

func (m *CPUOptions) XXX_DiscardUnknown()

func (*CPUOptions) XXX_Marshal

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

func (*CPUOptions) XXX_Merge

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

func (*CPUOptions) XXX_Size

func (m *CPUOptions) XXX_Size() int

func (*CPUOptions) XXX_Unmarshal

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

type CheckCustomDomainNameResponse

type CheckCustomDomainNameResponse struct {
	IsCNAMEOK            bool     `protobuf:"varint,1,opt,name=isCNAMEOK,proto3" json:"isCNAMEOK,omitempty"`
	CNAMEWanted          string   `protobuf:"bytes,2,opt,name=CNAMEWanted,proto3" json:"CNAMEWanted,omitempty"`
	CNAMEFound           string   `protobuf:"bytes,3,opt,name=CNAMEFound,proto3" json:"CNAMEFound,omitempty"`
	IsCertificateReady   bool     `protobuf:"varint,4,opt,name=isCertificateReady,proto3" json:"isCertificateReady,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*CheckCustomDomainNameResponse) Descriptor

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

func (*CheckCustomDomainNameResponse) GetCNAMEFound

func (m *CheckCustomDomainNameResponse) GetCNAMEFound() string

func (*CheckCustomDomainNameResponse) GetCNAMEWanted

func (m *CheckCustomDomainNameResponse) GetCNAMEWanted() string

func (*CheckCustomDomainNameResponse) GetIsCNAMEOK

func (m *CheckCustomDomainNameResponse) GetIsCNAMEOK() bool

func (*CheckCustomDomainNameResponse) GetIsCertificateReady

func (m *CheckCustomDomainNameResponse) GetIsCertificateReady() bool

func (*CheckCustomDomainNameResponse) ProtoMessage

func (*CheckCustomDomainNameResponse) ProtoMessage()

func (*CheckCustomDomainNameResponse) Reset

func (m *CheckCustomDomainNameResponse) Reset()

func (*CheckCustomDomainNameResponse) String

func (*CheckCustomDomainNameResponse) XXX_DiscardUnknown

func (m *CheckCustomDomainNameResponse) XXX_DiscardUnknown()

func (*CheckCustomDomainNameResponse) XXX_Marshal

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

func (*CheckCustomDomainNameResponse) XXX_Merge

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

func (*CheckCustomDomainNameResponse) XXX_Size

func (m *CheckCustomDomainNameResponse) XXX_Size() int

func (*CheckCustomDomainNameResponse) XXX_Unmarshal

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

type ConsoleLog

type ConsoleLog struct {
	InstanceName         string   `protobuf:"bytes,1,opt,name=instanceName,proto3" json:"instanceName,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 (*ConsoleLog) Descriptor

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

func (*ConsoleLog) GetData

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

func (*ConsoleLog) GetInstanceName

func (m *ConsoleLog) GetInstanceName() string

func (*ConsoleLog) ProtoMessage

func (*ConsoleLog) ProtoMessage()

func (*ConsoleLog) Reset

func (m *ConsoleLog) Reset()

func (*ConsoleLog) String

func (m *ConsoleLog) String() string

func (*ConsoleLog) XXX_DiscardUnknown

func (m *ConsoleLog) XXX_DiscardUnknown()

func (*ConsoleLog) XXX_Marshal

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

func (*ConsoleLog) XXX_Merge

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

func (*ConsoleLog) XXX_Size

func (m *ConsoleLog) XXX_Size() int

func (*ConsoleLog) XXX_Unmarshal

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

type CreateBlockRequest

type CreateBlockRequest struct {
	EnvId                string       `protobuf:"bytes,1,opt,name=envId,proto3" json:"envId,omitempty"`
	Name                 string       `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	RunConfig            *RunConfig   `protobuf:"bytes,3,opt,name=runConfig,proto3" json:"runConfig,omitempty"`
	BuildConfig          *BuildConfig `protobuf:"bytes,4,opt,name=buildConfig,proto3" json:"buildConfig,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*CreateBlockRequest) Descriptor

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

func (*CreateBlockRequest) GetBuildConfig

func (m *CreateBlockRequest) GetBuildConfig() *BuildConfig

func (*CreateBlockRequest) GetEnvId

func (m *CreateBlockRequest) GetEnvId() string

func (*CreateBlockRequest) GetName

func (m *CreateBlockRequest) GetName() string

func (*CreateBlockRequest) GetRunConfig

func (m *CreateBlockRequest) GetRunConfig() *RunConfig

func (*CreateBlockRequest) ProtoMessage

func (*CreateBlockRequest) ProtoMessage()

func (*CreateBlockRequest) Reset

func (m *CreateBlockRequest) Reset()

func (*CreateBlockRequest) String

func (m *CreateBlockRequest) String() string

func (CreateBlockRequest) Validate

func (c CreateBlockRequest) Validate() error

func (*CreateBlockRequest) XXX_DiscardUnknown

func (m *CreateBlockRequest) XXX_DiscardUnknown()

func (*CreateBlockRequest) XXX_Marshal

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

func (*CreateBlockRequest) XXX_Merge

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

func (*CreateBlockRequest) XXX_Size

func (m *CreateBlockRequest) XXX_Size() int

func (*CreateBlockRequest) XXX_Unmarshal

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

type CreateEnvironmentRequest

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

func (*CreateEnvironmentRequest) Descriptor

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

func (*CreateEnvironmentRequest) GetName

func (m *CreateEnvironmentRequest) GetName() string

func (*CreateEnvironmentRequest) ProtoMessage

func (*CreateEnvironmentRequest) ProtoMessage()

func (*CreateEnvironmentRequest) Reset

func (m *CreateEnvironmentRequest) Reset()

func (*CreateEnvironmentRequest) String

func (m *CreateEnvironmentRequest) String() string

func (CreateEnvironmentRequest) Validate

func (d CreateEnvironmentRequest) Validate() error

func (*CreateEnvironmentRequest) XXX_DiscardUnknown

func (m *CreateEnvironmentRequest) XXX_DiscardUnknown()

func (*CreateEnvironmentRequest) XXX_Marshal

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

func (*CreateEnvironmentRequest) XXX_Merge

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

func (*CreateEnvironmentRequest) XXX_Size

func (m *CreateEnvironmentRequest) XXX_Size() int

func (*CreateEnvironmentRequest) XXX_Unmarshal

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

type CustomDomainNameRequest

type CustomDomainNameRequest struct {
	EnvId                string             `protobuf:"bytes,1,opt,name=envId,proto3" json:"envId,omitempty"`
	BlockName            string             `protobuf:"bytes,2,opt,name=blockName,proto3" json:"blockName,omitempty"`
	CustomDomainName     string             `protobuf:"bytes,3,opt,name=customDomainName,proto3" json:"customDomainName,omitempty"`
	CNAME                string             `protobuf:"bytes,4,opt,name=CNAME,proto3" json:"CNAME,omitempty"`
	Protocol             RunConfig_Protocol `protobuf:"varint,5,opt,name=protocol,proto3,enum=RunConfig_Protocol" json:"protocol,omitempty"`
	XXX_NoUnkeyedLiteral struct{}           `json:"-"`
	XXX_unrecognized     []byte             `json:"-"`
	XXX_sizecache        int32              `json:"-"`
}

func (*CustomDomainNameRequest) Descriptor

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

func (*CustomDomainNameRequest) GetBlockName

func (m *CustomDomainNameRequest) GetBlockName() string

func (*CustomDomainNameRequest) GetCNAME

func (m *CustomDomainNameRequest) GetCNAME() string

func (*CustomDomainNameRequest) GetCustomDomainName

func (m *CustomDomainNameRequest) GetCustomDomainName() string

func (*CustomDomainNameRequest) GetEnvId

func (m *CustomDomainNameRequest) GetEnvId() string

func (*CustomDomainNameRequest) GetProtocol

func (*CustomDomainNameRequest) ProtoMessage

func (*CustomDomainNameRequest) ProtoMessage()

func (*CustomDomainNameRequest) Reset

func (m *CustomDomainNameRequest) Reset()

func (*CustomDomainNameRequest) String

func (m *CustomDomainNameRequest) String() string

func (CustomDomainNameRequest) Validate

func (req CustomDomainNameRequest) Validate() error

func (*CustomDomainNameRequest) XXX_DiscardUnknown

func (m *CustomDomainNameRequest) XXX_DiscardUnknown()

func (*CustomDomainNameRequest) XXX_Marshal

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

func (*CustomDomainNameRequest) XXX_Merge

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

func (*CustomDomainNameRequest) XXX_Size

func (m *CustomDomainNameRequest) XXX_Size() int

func (*CustomDomainNameRequest) XXX_Unmarshal

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

type DeleteBlockRequest

type DeleteBlockRequest struct {
	EnvId                string   `protobuf:"bytes,1,opt,name=envId,proto3" json:"envId,omitempty"`
	Name                 string   `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DeleteBlockRequest) Descriptor

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

func (*DeleteBlockRequest) GetEnvId

func (m *DeleteBlockRequest) GetEnvId() string

func (*DeleteBlockRequest) GetName

func (m *DeleteBlockRequest) GetName() string

func (*DeleteBlockRequest) ProtoMessage

func (*DeleteBlockRequest) ProtoMessage()

func (*DeleteBlockRequest) Reset

func (m *DeleteBlockRequest) Reset()

func (*DeleteBlockRequest) String

func (m *DeleteBlockRequest) String() string

func (DeleteBlockRequest) Validate

func (d DeleteBlockRequest) Validate() error

func (*DeleteBlockRequest) XXX_DiscardUnknown

func (m *DeleteBlockRequest) XXX_DiscardUnknown()

func (*DeleteBlockRequest) XXX_Marshal

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

func (*DeleteBlockRequest) XXX_Merge

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

func (*DeleteBlockRequest) XXX_Size

func (m *DeleteBlockRequest) XXX_Size() int

func (*DeleteBlockRequest) XXX_Unmarshal

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

type DeleteEnvironmentRequest

type DeleteEnvironmentRequest struct {
	Id                   string   `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DeleteEnvironmentRequest) Descriptor

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

func (*DeleteEnvironmentRequest) GetId

func (m *DeleteEnvironmentRequest) GetId() string

func (*DeleteEnvironmentRequest) ProtoMessage

func (*DeleteEnvironmentRequest) ProtoMessage()

func (*DeleteEnvironmentRequest) Reset

func (m *DeleteEnvironmentRequest) Reset()

func (*DeleteEnvironmentRequest) String

func (m *DeleteEnvironmentRequest) String() string

func (DeleteEnvironmentRequest) Validate

func (d DeleteEnvironmentRequest) Validate() error

func (*DeleteEnvironmentRequest) XXX_DiscardUnknown

func (m *DeleteEnvironmentRequest) XXX_DiscardUnknown()

func (*DeleteEnvironmentRequest) XXX_Marshal

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

func (*DeleteEnvironmentRequest) XXX_Merge

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

func (*DeleteEnvironmentRequest) XXX_Size

func (m *DeleteEnvironmentRequest) XXX_Size() int

func (*DeleteEnvironmentRequest) XXX_Unmarshal

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

type Deploy

type Deploy struct {
	CostOptimization     string            `yaml:"costOptimization"` // can't use bool cuz of an ozzo validation issue when `false`
	SleepMode            string            `yaml:"sleepMode"`        // can't use bool cuz of an ozzo validation issue when `false`
	SleepTTLSeconds      int32             `yaml:"sleepTTLSeconds"`  // TODO not supported yet
	Protocol             string            `yaml:"protocol"`         // TODO not supported yet
	Port                 string            `yaml:"port"`
	MemoryMB             int32             `yaml:"memoryMB"`
	CPUCores             float32           `yaml:"cpuCores"`
	Environment          map[string]string `yaml:"environment"`
	DeployTimeoutSeconds int32             `yaml:"deployTimeoutSeconds"`
	Autoscaling          *struct {
		Min int32 `yaml:"min"`
		Max int32 `yaml:"max"`
	}
	Job *struct {
		TimeoutSeconds int32  `yaml:"timeoutSeconds"`
		CronPattern    string `yaml:"cronPattern"`
	}
}

func (Deploy) Validate

func (d Deploy) Validate() error

type DeployBlockRequest

type DeployBlockRequest struct {
	EnvId                string       `protobuf:"bytes,1,opt,name=envId,proto3" json:"envId,omitempty"`
	Name                 string       `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	RunConfig            *RunConfig   `protobuf:"bytes,3,opt,name=runConfig,proto3" json:"runConfig,omitempty"`
	BuildConfig          *BuildConfig `protobuf:"bytes,4,opt,name=buildConfig,proto3" json:"buildConfig,omitempty"`
	BaseReleaseId        string       `protobuf:"bytes,5,opt,name=baseReleaseId,proto3" json:"baseReleaseId,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*DeployBlockRequest) Descriptor

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

func (*DeployBlockRequest) GetBaseReleaseId

func (m *DeployBlockRequest) GetBaseReleaseId() string

func (*DeployBlockRequest) GetBuildConfig

func (m *DeployBlockRequest) GetBuildConfig() *BuildConfig

func (*DeployBlockRequest) GetEnvId

func (m *DeployBlockRequest) GetEnvId() string

func (*DeployBlockRequest) GetName

func (m *DeployBlockRequest) GetName() string

func (*DeployBlockRequest) GetRunConfig

func (m *DeployBlockRequest) GetRunConfig() *RunConfig

func (*DeployBlockRequest) ProtoMessage

func (*DeployBlockRequest) ProtoMessage()

func (*DeployBlockRequest) Reset

func (m *DeployBlockRequest) Reset()

func (*DeployBlockRequest) String

func (m *DeployBlockRequest) String() string

func (DeployBlockRequest) Validate

func (d DeployBlockRequest) Validate() error

func (*DeployBlockRequest) XXX_DiscardUnknown

func (m *DeployBlockRequest) XXX_DiscardUnknown()

func (*DeployBlockRequest) XXX_Marshal

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

func (*DeployBlockRequest) XXX_Merge

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

func (*DeployBlockRequest) XXX_Size

func (m *DeployBlockRequest) XXX_Size() int

func (*DeployBlockRequest) XXX_Unmarshal

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

type DeployCatalogRequest

type DeployCatalogRequest struct {
	BlockName            string      `protobuf:"bytes,1,opt,name=blockName,proto3" json:"blockName,omitempty"`
	ReleaseId            string      `protobuf:"bytes,2,opt,name=releaseId,proto3" json:"releaseId,omitempty"`
	Namespace            string      `protobuf:"bytes,3,opt,name=namespace,proto3" json:"namespace,omitempty"`
	Repo                 *Repository `protobuf:"bytes,4,opt,name=repo,proto3" json:"repo,omitempty"`
	XXX_NoUnkeyedLiteral struct{}    `json:"-"`
	XXX_unrecognized     []byte      `json:"-"`
	XXX_sizecache        int32       `json:"-"`
}

func (*DeployCatalogRequest) Descriptor

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

func (*DeployCatalogRequest) GetBlockName

func (m *DeployCatalogRequest) GetBlockName() string

func (*DeployCatalogRequest) GetNamespace

func (m *DeployCatalogRequest) GetNamespace() string

func (*DeployCatalogRequest) GetReleaseId

func (m *DeployCatalogRequest) GetReleaseId() string

func (*DeployCatalogRequest) GetRepo

func (m *DeployCatalogRequest) GetRepo() *Repository

func (*DeployCatalogRequest) ProtoMessage

func (*DeployCatalogRequest) ProtoMessage()

func (*DeployCatalogRequest) Reset

func (m *DeployCatalogRequest) Reset()

func (*DeployCatalogRequest) String

func (m *DeployCatalogRequest) String() string

func (DeployCatalogRequest) Validate

func (req DeployCatalogRequest) Validate() error

func (*DeployCatalogRequest) XXX_DiscardUnknown

func (m *DeployCatalogRequest) XXX_DiscardUnknown()

func (*DeployCatalogRequest) XXX_Marshal

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

func (*DeployCatalogRequest) XXX_Merge

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

func (*DeployCatalogRequest) XXX_Size

func (m *DeployCatalogRequest) XXX_Size() int

func (*DeployCatalogRequest) XXX_Unmarshal

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

type DeployRequest

type DeployRequest struct {
	BlockName            string   `protobuf:"bytes,1,opt,name=blockName,proto3" json:"blockName,omitempty"`
	ReleaseId            string   `protobuf:"bytes,2,opt,name=releaseId,proto3" json:"releaseId,omitempty"`
	Namespace            string   `protobuf:"bytes,3,opt,name=namespace,proto3" json:"namespace,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DeployRequest) Descriptor

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

func (*DeployRequest) GetBlockName

func (m *DeployRequest) GetBlockName() string

func (*DeployRequest) GetNamespace

func (m *DeployRequest) GetNamespace() string

func (*DeployRequest) GetReleaseId

func (m *DeployRequest) GetReleaseId() string

func (*DeployRequest) ProtoMessage

func (*DeployRequest) ProtoMessage()

func (*DeployRequest) Reset

func (m *DeployRequest) Reset()

func (*DeployRequest) String

func (m *DeployRequest) String() string

func (DeployRequest) Validate

func (req DeployRequest) Validate() error

func (*DeployRequest) XXX_DiscardUnknown

func (m *DeployRequest) XXX_DiscardUnknown()

func (*DeployRequest) XXX_Marshal

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

func (*DeployRequest) XXX_Merge

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

func (*DeployRequest) XXX_Size

func (m *DeployRequest) XXX_Size() int

func (*DeployRequest) XXX_Unmarshal

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

type DisablePublicURLRequest

type DisablePublicURLRequest struct {
	BlockName            string   `protobuf:"bytes,1,opt,name=blockName,proto3" json:"blockName,omitempty"`
	EnvId                string   `protobuf:"bytes,2,opt,name=envId,proto3" json:"envId,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DisablePublicURLRequest) Descriptor

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

func (*DisablePublicURLRequest) GetBlockName

func (m *DisablePublicURLRequest) GetBlockName() string

func (*DisablePublicURLRequest) GetEnvId

func (m *DisablePublicURLRequest) GetEnvId() string

func (*DisablePublicURLRequest) ProtoMessage

func (*DisablePublicURLRequest) ProtoMessage()

func (*DisablePublicURLRequest) Reset

func (m *DisablePublicURLRequest) Reset()

func (*DisablePublicURLRequest) String

func (m *DisablePublicURLRequest) String() string

func (DisablePublicURLRequest) Validate

func (req DisablePublicURLRequest) Validate() error

func (*DisablePublicURLRequest) XXX_DiscardUnknown

func (m *DisablePublicURLRequest) XXX_DiscardUnknown()

func (*DisablePublicURLRequest) XXX_Marshal

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

func (*DisablePublicURLRequest) XXX_Merge

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

func (*DisablePublicURLRequest) XXX_Size

func (m *DisablePublicURLRequest) XXX_Size() int

func (*DisablePublicURLRequest) XXX_Unmarshal

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

type EnablePublicURLRequest

type EnablePublicURLRequest struct {
	BlockName            string   `protobuf:"bytes,1,opt,name=blockName,proto3" json:"blockName,omitempty"`
	EnvId                string   `protobuf:"bytes,2,opt,name=envId,proto3" json:"envId,omitempty"`
	ReleaseId            string   `protobuf:"bytes,3,opt,name=releaseId,proto3" json:"releaseId,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*EnablePublicURLRequest) Descriptor

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

func (*EnablePublicURLRequest) GetBlockName

func (m *EnablePublicURLRequest) GetBlockName() string

func (*EnablePublicURLRequest) GetEnvId

func (m *EnablePublicURLRequest) GetEnvId() string

func (*EnablePublicURLRequest) GetReleaseId

func (m *EnablePublicURLRequest) GetReleaseId() string

func (*EnablePublicURLRequest) ProtoMessage

func (*EnablePublicURLRequest) ProtoMessage()

func (*EnablePublicURLRequest) Reset

func (m *EnablePublicURLRequest) Reset()

func (*EnablePublicURLRequest) String

func (m *EnablePublicURLRequest) String() string

func (EnablePublicURLRequest) Validate

func (req EnablePublicURLRequest) Validate() error

func (*EnablePublicURLRequest) XXX_DiscardUnknown

func (m *EnablePublicURLRequest) XXX_DiscardUnknown()

func (*EnablePublicURLRequest) XXX_Marshal

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

func (*EnablePublicURLRequest) XXX_Merge

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

func (*EnablePublicURLRequest) XXX_Size

func (m *EnablePublicURLRequest) XXX_Size() int

func (*EnablePublicURLRequest) XXX_Unmarshal

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

type Environment

type Environment struct {
	Id                   string   `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Name                 string   `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*Environment) Descriptor

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

func (*Environment) GetId

func (m *Environment) GetId() string

func (*Environment) GetName

func (m *Environment) GetName() string

func (*Environment) ProtoMessage

func (*Environment) ProtoMessage()

func (*Environment) Reset

func (m *Environment) Reset()

func (*Environment) String

func (m *Environment) String() string

func (*Environment) XXX_DiscardUnknown

func (m *Environment) XXX_DiscardUnknown()

func (*Environment) XXX_Marshal

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

func (*Environment) XXX_Merge

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

func (*Environment) XXX_Size

func (m *Environment) XXX_Size() int

func (*Environment) XXX_Unmarshal

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

type EnvironmentQueryRequest

type EnvironmentQueryRequest struct {
	Id                   string   `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*EnvironmentQueryRequest) Descriptor

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

func (*EnvironmentQueryRequest) GetId

func (m *EnvironmentQueryRequest) GetId() string

func (*EnvironmentQueryRequest) ProtoMessage

func (*EnvironmentQueryRequest) ProtoMessage()

func (*EnvironmentQueryRequest) Reset

func (m *EnvironmentQueryRequest) Reset()

func (*EnvironmentQueryRequest) String

func (m *EnvironmentQueryRequest) String() string

func (EnvironmentQueryRequest) Validate

func (e EnvironmentQueryRequest) Validate() error

func (*EnvironmentQueryRequest) XXX_DiscardUnknown

func (m *EnvironmentQueryRequest) XXX_DiscardUnknown()

func (*EnvironmentQueryRequest) XXX_Marshal

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

func (*EnvironmentQueryRequest) XXX_Merge

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

func (*EnvironmentQueryRequest) XXX_Size

func (m *EnvironmentQueryRequest) XXX_Size() int

func (*EnvironmentQueryRequest) XXX_Unmarshal

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

type Environments

type Environments struct {
	Items                []*Environment `protobuf:"bytes,1,rep,name=items,proto3" json:"items,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*Environments) Descriptor

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

func (*Environments) GetItems

func (m *Environments) GetItems() []*Environment

func (*Environments) ProtoMessage

func (*Environments) ProtoMessage()

func (*Environments) Reset

func (m *Environments) Reset()

func (*Environments) String

func (m *Environments) String() string

func (*Environments) XXX_DiscardUnknown

func (m *Environments) XXX_DiscardUnknown()

func (*Environments) XXX_Marshal

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

func (*Environments) XXX_Merge

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

func (*Environments) XXX_Size

func (m *Environments) XXX_Size() int

func (*Environments) XXX_Unmarshal

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

type GenReleaseConfigFromKintoFileRepoRequest

type GenReleaseConfigFromKintoFileRepoRequest struct {
	BlockType            Block_Type `protobuf:"varint,1,opt,name=blockType,proto3,enum=Block_Type" json:"blockType,omitempty"`
	Org                  string     `protobuf:"bytes,2,opt,name=org,proto3" json:"org,omitempty"`
	Repo                 string     `protobuf:"bytes,3,opt,name=repo,proto3" json:"repo,omitempty"`
	Branch               string     `protobuf:"bytes,4,opt,name=branch,proto3" json:"branch,omitempty"`
	EnvId                string     `protobuf:"bytes,5,opt,name=envId,proto3" json:"envId,omitempty"`
	GithubUserToken      string     `protobuf:"bytes,6,opt,name=githubUserToken,proto3" json:"githubUserToken,omitempty"`
	XXX_NoUnkeyedLiteral struct{}   `json:"-"`
	XXX_unrecognized     []byte     `json:"-"`
	XXX_sizecache        int32      `json:"-"`
}

func (*GenReleaseConfigFromKintoFileRepoRequest) Descriptor

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

func (*GenReleaseConfigFromKintoFileRepoRequest) GetBlockType

func (*GenReleaseConfigFromKintoFileRepoRequest) GetBranch

func (*GenReleaseConfigFromKintoFileRepoRequest) GetEnvId

func (*GenReleaseConfigFromKintoFileRepoRequest) GetGithubUserToken

func (m *GenReleaseConfigFromKintoFileRepoRequest) GetGithubUserToken() string

func (*GenReleaseConfigFromKintoFileRepoRequest) GetOrg

func (*GenReleaseConfigFromKintoFileRepoRequest) GetRepo

func (*GenReleaseConfigFromKintoFileRepoRequest) ProtoMessage

func (*GenReleaseConfigFromKintoFileRepoRequest) Reset

func (*GenReleaseConfigFromKintoFileRepoRequest) String

func (GenReleaseConfigFromKintoFileRepoRequest) Validate

func (*GenReleaseConfigFromKintoFileRepoRequest) XXX_DiscardUnknown

func (m *GenReleaseConfigFromKintoFileRepoRequest) XXX_DiscardUnknown()

func (*GenReleaseConfigFromKintoFileRepoRequest) XXX_Marshal

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

func (*GenReleaseConfigFromKintoFileRepoRequest) XXX_Merge

func (*GenReleaseConfigFromKintoFileRepoRequest) XXX_Size

func (*GenReleaseConfigFromKintoFileRepoRequest) XXX_Unmarshal

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

type JobSpec

type JobSpec struct {
	CronPattern          string   `protobuf:"bytes,1,opt,name=cronPattern,proto3" json:"cronPattern,omitempty"`
	TimeoutInSec         int32    `protobuf:"varint,2,opt,name=timeoutInSec,proto3" json:"timeoutInSec,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*JobSpec) Descriptor

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

func (*JobSpec) GetCronPattern

func (m *JobSpec) GetCronPattern() string

func (*JobSpec) GetTimeoutInSec

func (m *JobSpec) GetTimeoutInSec() int32

func (*JobSpec) ProtoMessage

func (*JobSpec) ProtoMessage()

func (*JobSpec) Reset

func (m *JobSpec) Reset()

func (*JobSpec) String

func (m *JobSpec) String() string

func (JobSpec) Validate

func (j JobSpec) Validate() error

func (*JobSpec) XXX_DiscardUnknown

func (m *JobSpec) XXX_DiscardUnknown()

func (*JobSpec) XXX_Marshal

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

func (*JobSpec) XXX_Merge

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

func (*JobSpec) XXX_Size

func (m *JobSpec) XXX_Size() int

func (*JobSpec) XXX_Unmarshal

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

type JobStatus

type JobStatus struct {
	InstanceName         string          `protobuf:"bytes,1,opt,name=instanceName,proto3" json:"instanceName,omitempty"`
	State                JobStatus_State `protobuf:"varint,2,opt,name=state,proto3,enum=JobStatus_State" json:"state,omitempty"`
	StartTimestamp       int64           `protobuf:"varint,3,opt,name=startTimestamp,proto3" json:"startTimestamp,omitempty"`
	EndTimestamp         int64           `protobuf:"varint,4,opt,name=endTimestamp,proto3" json:"endTimestamp,omitempty"`
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
}

func (*JobStatus) Descriptor

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

func (*JobStatus) GetEndTimestamp

func (m *JobStatus) GetEndTimestamp() int64

func (*JobStatus) GetInstanceName

func (m *JobStatus) GetInstanceName() string

func (*JobStatus) GetStartTimestamp

func (m *JobStatus) GetStartTimestamp() int64

func (*JobStatus) GetState

func (m *JobStatus) GetState() JobStatus_State

func (*JobStatus) ProtoMessage

func (*JobStatus) ProtoMessage()

func (*JobStatus) Reset

func (m *JobStatus) Reset()

func (*JobStatus) String

func (m *JobStatus) String() string

func (*JobStatus) XXX_DiscardUnknown

func (m *JobStatus) XXX_DiscardUnknown()

func (*JobStatus) XXX_Marshal

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

func (*JobStatus) XXX_Merge

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

func (*JobStatus) XXX_Size

func (m *JobStatus) XXX_Size() int

func (*JobStatus) XXX_Unmarshal

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

type JobStatus_State

type JobStatus_State int32
const (
	JobStatus_NOT_SET    JobStatus_State = 0
	JobStatus_PENDING    JobStatus_State = 1
	JobStatus_RUNNING    JobStatus_State = 2
	JobStatus_COMPLETED  JobStatus_State = 3
	JobStatus_DELETED    JobStatus_State = 4
	JobStatus_ERROR      JobStatus_State = 5
	JobStatus_OOM_KILLED JobStatus_State = 6
)

func (JobStatus_State) EnumDescriptor

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

func (JobStatus_State) String

func (x JobStatus_State) String() string

type KillBlockInstanceRequest

type KillBlockInstanceRequest struct {
	Id                   string   `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	EnvId                string   `protobuf:"bytes,2,opt,name=envId,proto3" json:"envId,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*KillBlockInstanceRequest) Descriptor

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

func (*KillBlockInstanceRequest) GetEnvId

func (m *KillBlockInstanceRequest) GetEnvId() string

func (*KillBlockInstanceRequest) GetId

func (m *KillBlockInstanceRequest) GetId() string

func (*KillBlockInstanceRequest) ProtoMessage

func (*KillBlockInstanceRequest) ProtoMessage()

func (*KillBlockInstanceRequest) Reset

func (m *KillBlockInstanceRequest) Reset()

func (*KillBlockInstanceRequest) String

func (m *KillBlockInstanceRequest) String() string

func (KillBlockInstanceRequest) Validate

func (req KillBlockInstanceRequest) Validate() error

func (*KillBlockInstanceRequest) XXX_DiscardUnknown

func (m *KillBlockInstanceRequest) XXX_DiscardUnknown()

func (*KillBlockInstanceRequest) XXX_Marshal

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

func (*KillBlockInstanceRequest) XXX_Merge

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

func (*KillBlockInstanceRequest) XXX_Size

func (m *KillBlockInstanceRequest) XXX_Size() int

func (*KillBlockInstanceRequest) XXX_Unmarshal

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

type Kinto

type Kinto struct {
	BlockType string `yaml:"type"` // TODO not supported yet
	Build     Build  `yaml:"build"`
	Deploy    Deploy `yaml:"deploy"`
}

func (Kinto) Validate

func (k Kinto) Validate() error

type KintoConfiguration

type KintoConfiguration struct {
	Languages            []*Language         `protobuf:"bytes,1,rep,name=languages,proto3" json:"languages,omitempty"`
	MemoryOptions        *MemoryOptions      `protobuf:"bytes,2,opt,name=memoryOptions,proto3" json:"memoryOptions,omitempty"`
	CpuOptions           *CPUOptions         `protobuf:"bytes,3,opt,name=cpuOptions,proto3" json:"cpuOptions,omitempty"`
	TimeoutOptions       *TimeoutOptions     `protobuf:"bytes,4,opt,name=timeoutOptions,proto3" json:"timeoutOptions,omitempty"`
	AutoScalingOptions   *AutoScalingOptions `protobuf:"bytes,5,opt,name=autoScalingOptions,proto3" json:"autoScalingOptions,omitempty"`
	JobTimeoutOptions    *TimeoutOptions     `protobuf:"bytes,6,opt,name=jobTimeoutOptions,proto3" json:"jobTimeoutOptions,omitempty"`
	XXX_NoUnkeyedLiteral struct{}            `json:"-"`
	XXX_unrecognized     []byte              `json:"-"`
	XXX_sizecache        int32               `json:"-"`
}

func (*KintoConfiguration) Descriptor

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

func (*KintoConfiguration) GetAutoScalingOptions

func (m *KintoConfiguration) GetAutoScalingOptions() *AutoScalingOptions

func (*KintoConfiguration) GetCpuOptions

func (m *KintoConfiguration) GetCpuOptions() *CPUOptions

func (*KintoConfiguration) GetJobTimeoutOptions

func (m *KintoConfiguration) GetJobTimeoutOptions() *TimeoutOptions

func (*KintoConfiguration) GetLanguages

func (m *KintoConfiguration) GetLanguages() []*Language

func (*KintoConfiguration) GetMemoryOptions

func (m *KintoConfiguration) GetMemoryOptions() *MemoryOptions

func (*KintoConfiguration) GetTimeoutOptions

func (m *KintoConfiguration) GetTimeoutOptions() *TimeoutOptions

func (*KintoConfiguration) ProtoMessage

func (*KintoConfiguration) ProtoMessage()

func (*KintoConfiguration) Reset

func (m *KintoConfiguration) Reset()

func (*KintoConfiguration) String

func (m *KintoConfiguration) String() string

func (*KintoConfiguration) XXX_DiscardUnknown

func (m *KintoConfiguration) XXX_DiscardUnknown()

func (*KintoConfiguration) XXX_Marshal

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

func (*KintoConfiguration) XXX_Merge

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

func (*KintoConfiguration) XXX_Size

func (m *KintoConfiguration) XXX_Size() int

func (*KintoConfiguration) XXX_Unmarshal

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

type KintoCoreServiceClient

type KintoCoreServiceClient interface {
	GetEnvironment(ctx context.Context, in *EnvironmentQueryRequest, opts ...grpc.CallOption) (*Environment, error)
	GetEnvironments(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*Environments, error)
	CreateEnvironment(ctx context.Context, in *CreateEnvironmentRequest, opts ...grpc.CallOption) (*Environment, error)
	UpdateEnvironment(ctx context.Context, in *UpdateEnvironmentRequest, opts ...grpc.CallOption) (*Environment, error)
	DeleteEnvironment(ctx context.Context, in *DeleteEnvironmentRequest, opts ...grpc.CallOption) (*empty.Empty, error)
	CreateBlock(ctx context.Context, in *CreateBlockRequest, opts ...grpc.CallOption) (*BlockUpdateResponse, error)
	DeployBlockUpdate(ctx context.Context, in *DeployBlockRequest, opts ...grpc.CallOption) (*BlockUpdateResponse, error)
	TriggerDeploy(ctx context.Context, in *TriggerDeployRequest, opts ...grpc.CallOption) (*BlockUpdateResponse, error)
	RollbackBlock(ctx context.Context, in *RollbackBlockRequest, opts ...grpc.CallOption) (*BlockUpdateResponse, error)
	GetBlocks(ctx context.Context, in *BlockQueryRequest, opts ...grpc.CallOption) (*Blocks, error)
	GetBlock(ctx context.Context, in *BlockQueryRequest, opts ...grpc.CallOption) (*Block, error)
	DeleteBlock(ctx context.Context, in *DeleteBlockRequest, opts ...grpc.CallOption) (*empty.Empty, error)
	SuspendBlock(ctx context.Context, in *SuspendBlockRequest, opts ...grpc.CallOption) (*BlockUpdateResponse, error)
	WatchReleasesStatus(ctx context.Context, in *BlockQueryRequest, opts ...grpc.CallOption) (KintoCoreService_WatchReleasesStatusClient, error)
	KillBlockInstance(ctx context.Context, in *KillBlockInstanceRequest, opts ...grpc.CallOption) (*empty.Empty, error)
	AbortRelease(ctx context.Context, in *AbortBlockReleaseRequest, opts ...grpc.CallOption) (*empty.Empty, error)
	TagRelease(ctx context.Context, in *TagReleaseRequest, opts ...grpc.CallOption) (*empty.Empty, error)
	PromoteRelease(ctx context.Context, in *PromoteReleaseRequest, opts ...grpc.CallOption) (*empty.Empty, error)
	GenReleaseConfigFromKintoFile(ctx context.Context, in *GenReleaseConfigFromKintoFileRepoRequest, opts ...grpc.CallOption) (*ReleaseConfig, error)
	WatchBuildLogs(ctx context.Context, in *WatchBuildLogsRequest, opts ...grpc.CallOption) (KintoCoreService_WatchBuildLogsClient, error)
	UpdateBuildStatus(ctx context.Context, in *UpdateBuildStatusRequest, opts ...grpc.CallOption) (*UpdateBuildStatusResponse, error)
	UpdateBuildCommitSha(ctx context.Context, in *UpdateBuildCommitShaRequest, opts ...grpc.CallOption) (*empty.Empty, error)
	WatchBlocksHealthStatuses(ctx context.Context, in *EnvironmentQueryRequest, opts ...grpc.CallOption) (KintoCoreService_WatchBlocksHealthStatusesClient, error)
	WatchJobsStatus(ctx context.Context, in *BlockQueryRequest, opts ...grpc.CallOption) (KintoCoreService_WatchJobsStatusClient, error)
	WatchBlocksMetrics(ctx context.Context, in *BlockQueryRequest, opts ...grpc.CallOption) (KintoCoreService_WatchBlocksMetricsClient, error)
	WatchConsoleLogs(ctx context.Context, in *WatchConsoleLogsRequest, opts ...grpc.CallOption) (KintoCoreService_WatchConsoleLogsClient, error)
	GetKintoConfiguration(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*KintoConfiguration, error)
	CreateCustomDomainName(ctx context.Context, in *CustomDomainNameRequest, opts ...grpc.CallOption) (*empty.Empty, error)
	DeleteCustomDomainName(ctx context.Context, in *CustomDomainNameRequest, opts ...grpc.CallOption) (*empty.Empty, error)
	CheckCustomDomainName(ctx context.Context, in *CustomDomainNameRequest, opts ...grpc.CallOption) (*CheckCustomDomainNameResponse, error)
	EnablePublicURL(ctx context.Context, in *EnablePublicURLRequest, opts ...grpc.CallOption) (*empty.Empty, error)
	DisablePublicURL(ctx context.Context, in *DisablePublicURLRequest, opts ...grpc.CallOption) (*empty.Empty, error)
	StartTeleport(ctx context.Context, in *TeleportRequest, opts ...grpc.CallOption) (KintoCoreService_StartTeleportClient, error)
	SyncTime(ctx context.Context, in *SyncTimeRequest, opts ...grpc.CallOption) (*SyncTimeResponse, error)
}

KintoCoreServiceClient is the client API for KintoCoreService service.

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

type KintoCoreServiceServer

type KintoCoreServiceServer interface {
	GetEnvironment(context.Context, *EnvironmentQueryRequest) (*Environment, error)
	GetEnvironments(context.Context, *empty.Empty) (*Environments, error)
	CreateEnvironment(context.Context, *CreateEnvironmentRequest) (*Environment, error)
	UpdateEnvironment(context.Context, *UpdateEnvironmentRequest) (*Environment, error)
	DeleteEnvironment(context.Context, *DeleteEnvironmentRequest) (*empty.Empty, error)
	CreateBlock(context.Context, *CreateBlockRequest) (*BlockUpdateResponse, error)
	DeployBlockUpdate(context.Context, *DeployBlockRequest) (*BlockUpdateResponse, error)
	TriggerDeploy(context.Context, *TriggerDeployRequest) (*BlockUpdateResponse, error)
	RollbackBlock(context.Context, *RollbackBlockRequest) (*BlockUpdateResponse, error)
	GetBlocks(context.Context, *BlockQueryRequest) (*Blocks, error)
	GetBlock(context.Context, *BlockQueryRequest) (*Block, error)
	DeleteBlock(context.Context, *DeleteBlockRequest) (*empty.Empty, error)
	SuspendBlock(context.Context, *SuspendBlockRequest) (*BlockUpdateResponse, error)
	WatchReleasesStatus(*BlockQueryRequest, KintoCoreService_WatchReleasesStatusServer) error
	KillBlockInstance(context.Context, *KillBlockInstanceRequest) (*empty.Empty, error)
	AbortRelease(context.Context, *AbortBlockReleaseRequest) (*empty.Empty, error)
	TagRelease(context.Context, *TagReleaseRequest) (*empty.Empty, error)
	PromoteRelease(context.Context, *PromoteReleaseRequest) (*empty.Empty, error)
	GenReleaseConfigFromKintoFile(context.Context, *GenReleaseConfigFromKintoFileRepoRequest) (*ReleaseConfig, error)
	WatchBuildLogs(*WatchBuildLogsRequest, KintoCoreService_WatchBuildLogsServer) error
	UpdateBuildStatus(context.Context, *UpdateBuildStatusRequest) (*UpdateBuildStatusResponse, error)
	UpdateBuildCommitSha(context.Context, *UpdateBuildCommitShaRequest) (*empty.Empty, error)
	WatchBlocksHealthStatuses(*EnvironmentQueryRequest, KintoCoreService_WatchBlocksHealthStatusesServer) error
	WatchJobsStatus(*BlockQueryRequest, KintoCoreService_WatchJobsStatusServer) error
	WatchBlocksMetrics(*BlockQueryRequest, KintoCoreService_WatchBlocksMetricsServer) error
	WatchConsoleLogs(*WatchConsoleLogsRequest, KintoCoreService_WatchConsoleLogsServer) error
	GetKintoConfiguration(context.Context, *empty.Empty) (*KintoConfiguration, error)
	CreateCustomDomainName(context.Context, *CustomDomainNameRequest) (*empty.Empty, error)
	DeleteCustomDomainName(context.Context, *CustomDomainNameRequest) (*empty.Empty, error)
	CheckCustomDomainName(context.Context, *CustomDomainNameRequest) (*CheckCustomDomainNameResponse, error)
	EnablePublicURL(context.Context, *EnablePublicURLRequest) (*empty.Empty, error)
	DisablePublicURL(context.Context, *DisablePublicURLRequest) (*empty.Empty, error)
	StartTeleport(*TeleportRequest, KintoCoreService_StartTeleportServer) error
	SyncTime(context.Context, *SyncTimeRequest) (*SyncTimeResponse, error)
}

KintoCoreServiceServer is the server API for KintoCoreService service.

type KintoCoreService_StartTeleportClient

type KintoCoreService_StartTeleportClient interface {
	Recv() (*TeleportResponse, error)
	grpc.ClientStream
}

type KintoCoreService_StartTeleportServer

type KintoCoreService_StartTeleportServer interface {
	Send(*TeleportResponse) error
	grpc.ServerStream
}

type KintoCoreService_WatchBlocksHealthStatusesClient

type KintoCoreService_WatchBlocksHealthStatusesClient interface {
	Recv() (*BlockStatuses, error)
	grpc.ClientStream
}

type KintoCoreService_WatchBlocksHealthStatusesServer

type KintoCoreService_WatchBlocksHealthStatusesServer interface {
	Send(*BlockStatuses) error
	grpc.ServerStream
}

type KintoCoreService_WatchBlocksMetricsClient

type KintoCoreService_WatchBlocksMetricsClient interface {
	Recv() (*BlocksMetrics, error)
	grpc.ClientStream
}

type KintoCoreService_WatchBlocksMetricsServer

type KintoCoreService_WatchBlocksMetricsServer interface {
	Send(*BlocksMetrics) error
	grpc.ServerStream
}

type KintoCoreService_WatchBuildLogsClient

type KintoCoreService_WatchBuildLogsClient interface {
	Recv() (*Logs, error)
	grpc.ClientStream
}

type KintoCoreService_WatchBuildLogsServer

type KintoCoreService_WatchBuildLogsServer interface {
	Send(*Logs) error
	grpc.ServerStream
}

type KintoCoreService_WatchConsoleLogsClient

type KintoCoreService_WatchConsoleLogsClient interface {
	Recv() (*ConsoleLog, error)
	grpc.ClientStream
}

type KintoCoreService_WatchConsoleLogsServer

type KintoCoreService_WatchConsoleLogsServer interface {
	Send(*ConsoleLog) error
	grpc.ServerStream
}

type KintoCoreService_WatchJobsStatusClient

type KintoCoreService_WatchJobsStatusClient interface {
	Recv() (*JobStatus, error)
	grpc.ClientStream
}

type KintoCoreService_WatchJobsStatusServer

type KintoCoreService_WatchJobsStatusServer interface {
	Send(*JobStatus) error
	grpc.ServerStream
}

type KintoCoreService_WatchReleasesStatusClient

type KintoCoreService_WatchReleasesStatusClient interface {
	Recv() (*ReleasesStatus, error)
	grpc.ClientStream
}

type KintoCoreService_WatchReleasesStatusServer

type KintoCoreService_WatchReleasesStatusServer interface {
	Send(*ReleasesStatus) error
	grpc.ServerStream
}

type KintoYaml

type KintoYaml struct {
	Version string `yaml:"version"`
	Kinto   Kinto  `yaml:"kinto"`
}

func (KintoYaml) Validate

func (k KintoYaml) Validate() error

type Language

type Language struct {
	Language             BuildConfig_Language `protobuf:"varint,1,opt,name=language,proto3,enum=BuildConfig_Language" json:"language,omitempty"`
	Image                string               `protobuf:"bytes,2,opt,name=image,proto3" json:"image,omitempty"`
	VersionsTags         map[string]string    `` /* 165-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

func (*Language) Descriptor

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

func (*Language) GetImage

func (m *Language) GetImage() string

func (*Language) GetLanguage

func (m *Language) GetLanguage() BuildConfig_Language

func (*Language) GetVersionsTags

func (m *Language) GetVersionsTags() map[string]string

func (*Language) ProtoMessage

func (*Language) ProtoMessage()

func (*Language) Reset

func (m *Language) Reset()

func (*Language) String

func (m *Language) String() string

func (*Language) XXX_DiscardUnknown

func (m *Language) XXX_DiscardUnknown()

func (*Language) XXX_Marshal

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

func (*Language) XXX_Merge

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

func (*Language) XXX_Size

func (m *Language) XXX_Size() int

func (*Language) XXX_Unmarshal

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

type Logs

type Logs 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 (*Logs) Descriptor

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

func (*Logs) GetData

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

func (*Logs) ProtoMessage

func (*Logs) ProtoMessage()

func (*Logs) Reset

func (m *Logs) Reset()

func (*Logs) String

func (m *Logs) String() string

func (*Logs) XXX_DiscardUnknown

func (m *Logs) XXX_DiscardUnknown()

func (*Logs) XXX_Marshal

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

func (*Logs) XXX_Merge

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

func (*Logs) XXX_Size

func (m *Logs) XXX_Size() int

func (*Logs) XXX_Unmarshal

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

type MemoryOptions

type MemoryOptions struct {
	DefaultValue         int32    `protobuf:"varint,1,opt,name=defaultValue,proto3" json:"defaultValue,omitempty"`
	Values               []int32  `protobuf:"varint,2,rep,packed,name=values,proto3" json:"values,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*MemoryOptions) Descriptor

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

func (*MemoryOptions) GetDefaultValue

func (m *MemoryOptions) GetDefaultValue() int32

func (*MemoryOptions) GetValues

func (m *MemoryOptions) GetValues() []int32

func (*MemoryOptions) ProtoMessage

func (*MemoryOptions) ProtoMessage()

func (*MemoryOptions) Reset

func (m *MemoryOptions) Reset()

func (*MemoryOptions) String

func (m *MemoryOptions) String() string

func (*MemoryOptions) XXX_DiscardUnknown

func (m *MemoryOptions) XXX_DiscardUnknown()

func (*MemoryOptions) XXX_Marshal

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

func (*MemoryOptions) XXX_Merge

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

func (*MemoryOptions) XXX_Size

func (m *MemoryOptions) XXX_Size() int

func (*MemoryOptions) XXX_Unmarshal

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

type PromoteReleaseRequest

type PromoteReleaseRequest struct {
	EnvId                string   `protobuf:"bytes,1,opt,name=envId,proto3" json:"envId,omitempty"`
	BlockName            string   `protobuf:"bytes,2,opt,name=blockName,proto3" json:"blockName,omitempty"`
	Tag                  string   `protobuf:"bytes,3,opt,name=tag,proto3" json:"tag,omitempty"`
	ReleaseId            string   `protobuf:"bytes,4,opt,name=releaseId,proto3" json:"releaseId,omitempty"`
	TargetEnvId          string   `protobuf:"bytes,5,opt,name=targetEnvId,proto3" json:"targetEnvId,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PromoteReleaseRequest) Descriptor

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

func (*PromoteReleaseRequest) GetBlockName

func (m *PromoteReleaseRequest) GetBlockName() string

func (*PromoteReleaseRequest) GetEnvId

func (m *PromoteReleaseRequest) GetEnvId() string

func (*PromoteReleaseRequest) GetReleaseId

func (m *PromoteReleaseRequest) GetReleaseId() string

func (*PromoteReleaseRequest) GetTag

func (m *PromoteReleaseRequest) GetTag() string

func (*PromoteReleaseRequest) GetTargetEnvId

func (m *PromoteReleaseRequest) GetTargetEnvId() string

func (*PromoteReleaseRequest) ProtoMessage

func (*PromoteReleaseRequest) ProtoMessage()

func (*PromoteReleaseRequest) Reset

func (m *PromoteReleaseRequest) Reset()

func (*PromoteReleaseRequest) String

func (m *PromoteReleaseRequest) String() string

func (PromoteReleaseRequest) Validate

func (req PromoteReleaseRequest) Validate() error

func (*PromoteReleaseRequest) XXX_DiscardUnknown

func (m *PromoteReleaseRequest) XXX_DiscardUnknown()

func (*PromoteReleaseRequest) XXX_Marshal

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

func (*PromoteReleaseRequest) XXX_Merge

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

func (*PromoteReleaseRequest) XXX_Size

func (m *PromoteReleaseRequest) XXX_Size() int

func (*PromoteReleaseRequest) XXX_Unmarshal

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

type Release

type Release struct {
	Id                   string               `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	CreatedAt            *timestamp.Timestamp `protobuf:"bytes,2,opt,name=createdAt,proto3" json:"createdAt,omitempty"`
	BuildConfig          *BuildConfig         `protobuf:"bytes,3,opt,name=buildConfig,proto3" json:"buildConfig,omitempty"`
	RunConfig            *RunConfig           `protobuf:"bytes,4,opt,name=runConfig,proto3" json:"runConfig,omitempty"`
	Status               *Status              `protobuf:"bytes,5,opt,name=status,proto3" json:"status,omitempty"`
	StartedAt            *timestamp.Timestamp `protobuf:"bytes,6,opt,name=startedAt,proto3" json:"startedAt,omitempty"`
	EndedAt              *timestamp.Timestamp `protobuf:"bytes,7,opt,name=endedAt,proto3" json:"endedAt,omitempty"`
	Type                 Release_Type         `protobuf:"varint,8,opt,name=type,proto3,enum=Release_Type" json:"type,omitempty"`
	Tags                 []string             `protobuf:"bytes,9,rep,name=tags,proto3" json:"tags,omitempty"`
	CommitSha            string               `protobuf:"bytes,10,opt,name=commitSha,proto3" json:"commitSha,omitempty"`
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

func GetLatestSuccessfulRelease

func GetLatestSuccessfulRelease(releases map[string]*Release) *Release

func (*Release) Descriptor

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

func (*Release) GetBuildConfig

func (m *Release) GetBuildConfig() *BuildConfig

func (*Release) GetCommitSha

func (m *Release) GetCommitSha() string

func (*Release) GetCreatedAt

func (m *Release) GetCreatedAt() *timestamp.Timestamp

func (*Release) GetEndedAt

func (m *Release) GetEndedAt() *timestamp.Timestamp

func (*Release) GetId

func (m *Release) GetId() string

func (*Release) GetRunConfig

func (m *Release) GetRunConfig() *RunConfig

func (*Release) GetStartedAt

func (m *Release) GetStartedAt() *timestamp.Timestamp

func (*Release) GetStatus

func (m *Release) GetStatus() *Status

func (*Release) GetTags

func (m *Release) GetTags() []string

func (*Release) GetType

func (m *Release) GetType() Release_Type

func (*Release) ProtoMessage

func (*Release) ProtoMessage()

func (*Release) Reset

func (m *Release) Reset()

func (*Release) String

func (m *Release) String() string

func (*Release) XXX_DiscardUnknown

func (m *Release) XXX_DiscardUnknown()

func (*Release) XXX_Marshal

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

func (*Release) XXX_Merge

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

func (*Release) XXX_Size

func (m *Release) XXX_Size() int

func (*Release) XXX_Unmarshal

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

type ReleaseConfig

type ReleaseConfig struct {
	BuildConfig          *BuildConfig `protobuf:"bytes,1,opt,name=buildConfig,proto3" json:"buildConfig,omitempty"`
	RunConfig            *RunConfig   `protobuf:"bytes,2,opt,name=runConfig,proto3" json:"runConfig,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func ConvertYamlToReleaseConfig

func ConvertYamlToReleaseConfig(content string, blockType Block_Type) (*ReleaseConfig, error)

func (*ReleaseConfig) Descriptor

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

func (*ReleaseConfig) GetBuildConfig

func (m *ReleaseConfig) GetBuildConfig() *BuildConfig

func (*ReleaseConfig) GetRunConfig

func (m *ReleaseConfig) GetRunConfig() *RunConfig

func (*ReleaseConfig) ProtoMessage

func (*ReleaseConfig) ProtoMessage()

func (*ReleaseConfig) Reset

func (m *ReleaseConfig) Reset()

func (*ReleaseConfig) String

func (m *ReleaseConfig) String() string

func (*ReleaseConfig) XXX_DiscardUnknown

func (m *ReleaseConfig) XXX_DiscardUnknown()

func (*ReleaseConfig) XXX_Marshal

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

func (*ReleaseConfig) XXX_Merge

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

func (*ReleaseConfig) XXX_Size

func (m *ReleaseConfig) XXX_Size() int

func (*ReleaseConfig) XXX_Unmarshal

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

type Release_Type

type Release_Type int32
const (
	Release_NOT_SET  Release_Type = 0
	Release_DEPLOY   Release_Type = 1
	Release_UNDEPLOY Release_Type = 2
	Release_SUSPEND  Release_Type = 3
	Release_ROLLBACK Release_Type = 4
)

func (Release_Type) EnumDescriptor

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

func (Release_Type) String

func (x Release_Type) String() string

type ReleasesStatus

type ReleasesStatus struct {
	BlockName            string             `protobuf:"bytes,1,opt,name=blockName,proto3" json:"blockName,omitempty"`
	EnvId                string             `protobuf:"bytes,2,opt,name=envId,proto3" json:"envId,omitempty"`
	Releases             map[string]*Status `` /* 157-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}           `json:"-"`
	XXX_unrecognized     []byte             `json:"-"`
	XXX_sizecache        int32              `json:"-"`
}

func (*ReleasesStatus) Descriptor

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

func (*ReleasesStatus) GetBlockName

func (m *ReleasesStatus) GetBlockName() string

func (*ReleasesStatus) GetEnvId

func (m *ReleasesStatus) GetEnvId() string

func (*ReleasesStatus) GetReleases

func (m *ReleasesStatus) GetReleases() map[string]*Status

func (*ReleasesStatus) ProtoMessage

func (*ReleasesStatus) ProtoMessage()

func (*ReleasesStatus) Reset

func (m *ReleasesStatus) Reset()

func (*ReleasesStatus) String

func (m *ReleasesStatus) String() string

func (*ReleasesStatus) XXX_DiscardUnknown

func (m *ReleasesStatus) XXX_DiscardUnknown()

func (*ReleasesStatus) XXX_Marshal

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

func (*ReleasesStatus) XXX_Merge

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

func (*ReleasesStatus) XXX_Size

func (m *ReleasesStatus) XXX_Size() int

func (*ReleasesStatus) XXX_Unmarshal

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

type Repository

type Repository struct {
	Url                  string   `protobuf:"bytes,1,opt,name=url,proto3" json:"url,omitempty"`
	AccessToken          string   `protobuf:"bytes,2,opt,name=accessToken,proto3" json:"accessToken,omitempty"`
	Branch               string   `protobuf:"bytes,3,opt,name=branch,proto3" json:"branch,omitempty"`
	GithubInstallationId string   `protobuf:"bytes,4,opt,name=githubInstallationId,proto3" json:"githubInstallationId,omitempty"` // Deprecated: Do not use.
	GithubUserToken      string   `protobuf:"bytes,5,opt,name=githubUserToken,proto3" json:"githubUserToken,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*Repository) Descriptor

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

func (*Repository) GetAccessToken

func (m *Repository) GetAccessToken() string

func (*Repository) GetBranch

func (m *Repository) GetBranch() string

func (*Repository) GetGithubInstallationId deprecated

func (m *Repository) GetGithubInstallationId() string

Deprecated: Do not use.

func (*Repository) GetGithubUserToken

func (m *Repository) GetGithubUserToken() string

func (*Repository) GetUrl

func (m *Repository) GetUrl() string

func (*Repository) ProtoMessage

func (*Repository) ProtoMessage()

func (*Repository) Reset

func (m *Repository) Reset()

func (*Repository) String

func (m *Repository) String() string

func (Repository) Validate

func (r Repository) Validate() error

func (*Repository) XXX_DiscardUnknown

func (m *Repository) XXX_DiscardUnknown()

func (*Repository) XXX_Marshal

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

func (*Repository) XXX_Merge

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

func (*Repository) XXX_Size

func (m *Repository) XXX_Size() int

func (*Repository) XXX_Unmarshal

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

type Resources

type Resources struct {
	MemoryInMB           int32    `protobuf:"varint,1,opt,name=memoryInMB,proto3" json:"memoryInMB,omitempty"`
	CpuInCore            float32  `protobuf:"fixed32,2,opt,name=cpuInCore,proto3" json:"cpuInCore,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*Resources) Descriptor

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

func (*Resources) GetCpuInCore

func (m *Resources) GetCpuInCore() float32

func (*Resources) GetMemoryInMB

func (m *Resources) GetMemoryInMB() int32

func (*Resources) ProtoMessage

func (*Resources) ProtoMessage()

func (*Resources) Reset

func (m *Resources) Reset()

func (*Resources) String

func (m *Resources) String() string

func (Resources) Validate

func (r Resources) Validate() error

func (*Resources) XXX_DiscardUnknown

func (m *Resources) XXX_DiscardUnknown()

func (*Resources) XXX_Marshal

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

func (*Resources) XXX_Merge

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

func (*Resources) XXX_Size

func (m *Resources) XXX_Size() int

func (*Resources) XXX_Unmarshal

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

type RollbackBlockRequest

type RollbackBlockRequest struct {
	Name                 string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	EnvId                string   `protobuf:"bytes,2,opt,name=envId,proto3" json:"envId,omitempty"`
	ReleaseId            string   `protobuf:"bytes,3,opt,name=releaseId,proto3" json:"releaseId,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*RollbackBlockRequest) Descriptor

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

func (*RollbackBlockRequest) GetEnvId

func (m *RollbackBlockRequest) GetEnvId() string

func (*RollbackBlockRequest) GetName

func (m *RollbackBlockRequest) GetName() string

func (*RollbackBlockRequest) GetReleaseId

func (m *RollbackBlockRequest) GetReleaseId() string

func (*RollbackBlockRequest) ProtoMessage

func (*RollbackBlockRequest) ProtoMessage()

func (*RollbackBlockRequest) Reset

func (m *RollbackBlockRequest) Reset()

func (*RollbackBlockRequest) String

func (m *RollbackBlockRequest) String() string

func (RollbackBlockRequest) Validate

func (req RollbackBlockRequest) Validate() error

func (*RollbackBlockRequest) XXX_DiscardUnknown

func (m *RollbackBlockRequest) XXX_DiscardUnknown()

func (*RollbackBlockRequest) XXX_Marshal

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

func (*RollbackBlockRequest) XXX_Merge

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

func (*RollbackBlockRequest) XXX_Size

func (m *RollbackBlockRequest) XXX_Size() int

func (*RollbackBlockRequest) XXX_Unmarshal

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

type RunConfig

type RunConfig struct {
	Type                    Block_Type         `protobuf:"varint,1,opt,name=type,proto3,enum=Block_Type" json:"type,omitempty"`
	Port                    string             `protobuf:"bytes,2,opt,name=port,proto3" json:"port,omitempty"`
	AutoScaling             *AutoScaling       `protobuf:"bytes,3,opt,name=autoScaling,proto3" json:"autoScaling,omitempty"`
	EnvVars                 map[string]string  `` /* 155-byte string literal not displayed */
	Resources               *Resources         `protobuf:"bytes,5,opt,name=resources,proto3" json:"resources,omitempty"`
	TimeoutInSec            int32              `protobuf:"varint,6,opt,name=timeoutInSec,proto3" json:"timeoutInSec,omitempty"`
	JobSpec                 *JobSpec           `protobuf:"bytes,7,opt,name=jobSpec,proto3" json:"jobSpec,omitempty"`
	Host                    string             `protobuf:"bytes,8,opt,name=host,proto3" json:"host,omitempty"`
	CostOptimizationEnabled bool               `protobuf:"varint,9,opt,name=costOptimizationEnabled,proto3" json:"costOptimizationEnabled,omitempty"`
	SleepModeEnabled        bool               `protobuf:"varint,10,opt,name=sleepModeEnabled,proto3" json:"sleepModeEnabled,omitempty"`
	Protocol                RunConfig_Protocol `protobuf:"varint,11,opt,name=protocol,proto3,enum=RunConfig_Protocol" json:"protocol,omitempty"`
	SleepModeTTLSeconds     int32              `protobuf:"varint,12,opt,name=sleepModeTTLSeconds,proto3" json:"sleepModeTTLSeconds,omitempty"`
	XXX_NoUnkeyedLiteral    struct{}           `json:"-"`
	XXX_unrecognized        []byte             `json:"-"`
	XXX_sizecache           int32              `json:"-"`
}

func (*RunConfig) Descriptor

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

func (*RunConfig) GetAutoScaling

func (m *RunConfig) GetAutoScaling() *AutoScaling

func (*RunConfig) GetCostOptimizationEnabled

func (m *RunConfig) GetCostOptimizationEnabled() bool

func (*RunConfig) GetEnvVars

func (m *RunConfig) GetEnvVars() map[string]string

func (*RunConfig) GetHost

func (m *RunConfig) GetHost() string

func (*RunConfig) GetJobSpec

func (m *RunConfig) GetJobSpec() *JobSpec

func (*RunConfig) GetPort

func (m *RunConfig) GetPort() string

func (*RunConfig) GetProtocol

func (m *RunConfig) GetProtocol() RunConfig_Protocol

func (*RunConfig) GetResources

func (m *RunConfig) GetResources() *Resources

func (*RunConfig) GetSleepModeEnabled

func (m *RunConfig) GetSleepModeEnabled() bool

func (*RunConfig) GetSleepModeTTLSeconds

func (m *RunConfig) GetSleepModeTTLSeconds() int32

func (*RunConfig) GetTimeoutInSec

func (m *RunConfig) GetTimeoutInSec() int32

func (*RunConfig) GetType

func (m *RunConfig) GetType() Block_Type

func (*RunConfig) ProtoMessage

func (*RunConfig) ProtoMessage()

func (*RunConfig) Reset

func (m *RunConfig) Reset()

func (*RunConfig) String

func (m *RunConfig) String() string

func (RunConfig) Validate

func (r RunConfig) Validate() error

func (*RunConfig) XXX_DiscardUnknown

func (m *RunConfig) XXX_DiscardUnknown()

func (*RunConfig) XXX_Marshal

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

func (*RunConfig) XXX_Merge

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

func (*RunConfig) XXX_Size

func (m *RunConfig) XXX_Size() int

func (*RunConfig) XXX_Unmarshal

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

type RunConfig_Protocol

type RunConfig_Protocol int32
const (
	RunConfig_NOT_SET RunConfig_Protocol = 0
	RunConfig_HTTP    RunConfig_Protocol = 1
	RunConfig_GRPC    RunConfig_Protocol = 2
)

func (RunConfig_Protocol) EnumDescriptor

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

func (RunConfig_Protocol) String

func (x RunConfig_Protocol) String() string

type Status

type Status struct {
	State                Status_State `protobuf:"varint,2,opt,name=state,proto3,enum=Status_State" json:"state,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*Status) Descriptor

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

func (*Status) GetState

func (m *Status) GetState() Status_State

func (*Status) ProtoMessage

func (*Status) ProtoMessage()

func (*Status) Reset

func (m *Status) Reset()

func (*Status) String

func (m *Status) String() string

func (*Status) XXX_DiscardUnknown

func (m *Status) XXX_DiscardUnknown()

func (*Status) XXX_Marshal

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

func (*Status) XXX_Merge

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

func (*Status) XXX_Size

func (m *Status) XXX_Size() int

func (*Status) XXX_Unmarshal

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

type Status_State

type Status_State int32
const (
	Status_NOT_SET       Status_State = 0
	Status_FAIL          Status_State = 1
	Status_SUCCESS       Status_State = 2
	Status_RUNNING       Status_State = 3
	Status_PENDING       Status_State = 4
	Status_ABORTED       Status_State = 5
	Status_REVIEW_DEPLOY Status_State = 6
)

func (Status_State) EnumDescriptor

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

func (Status_State) String

func (x Status_State) String() string

type SuspendBlockRequest

type SuspendBlockRequest struct {
	EnvId                string   `protobuf:"bytes,1,opt,name=envId,proto3" json:"envId,omitempty"`
	Name                 string   `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*SuspendBlockRequest) Descriptor

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

func (*SuspendBlockRequest) GetEnvId

func (m *SuspendBlockRequest) GetEnvId() string

func (*SuspendBlockRequest) GetName

func (m *SuspendBlockRequest) GetName() string

func (*SuspendBlockRequest) ProtoMessage

func (*SuspendBlockRequest) ProtoMessage()

func (*SuspendBlockRequest) Reset

func (m *SuspendBlockRequest) Reset()

func (*SuspendBlockRequest) String

func (m *SuspendBlockRequest) String() string

func (SuspendBlockRequest) Validate

func (req SuspendBlockRequest) Validate() error

func (*SuspendBlockRequest) XXX_DiscardUnknown

func (m *SuspendBlockRequest) XXX_DiscardUnknown()

func (*SuspendBlockRequest) XXX_Marshal

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

func (*SuspendBlockRequest) XXX_Merge

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

func (*SuspendBlockRequest) XXX_Size

func (m *SuspendBlockRequest) XXX_Size() int

func (*SuspendBlockRequest) XXX_Unmarshal

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

type SuspendRequest

type SuspendRequest struct {
	BlockName            string   `protobuf:"bytes,1,opt,name=blockName,proto3" json:"blockName,omitempty"`
	Namespace            string   `protobuf:"bytes,2,opt,name=namespace,proto3" json:"namespace,omitempty"`
	ReleaseId            string   `protobuf:"bytes,3,opt,name=releaseId,proto3" json:"releaseId,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*SuspendRequest) Descriptor

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

func (*SuspendRequest) GetBlockName

func (m *SuspendRequest) GetBlockName() string

func (*SuspendRequest) GetNamespace

func (m *SuspendRequest) GetNamespace() string

func (*SuspendRequest) GetReleaseId

func (m *SuspendRequest) GetReleaseId() string

func (*SuspendRequest) ProtoMessage

func (*SuspendRequest) ProtoMessage()

func (*SuspendRequest) Reset

func (m *SuspendRequest) Reset()

func (*SuspendRequest) String

func (m *SuspendRequest) String() string

func (SuspendRequest) Validate

func (req SuspendRequest) Validate() error

func (*SuspendRequest) XXX_DiscardUnknown

func (m *SuspendRequest) XXX_DiscardUnknown()

func (*SuspendRequest) XXX_Marshal

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

func (*SuspendRequest) XXX_Merge

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

func (*SuspendRequest) XXX_Size

func (m *SuspendRequest) XXX_Size() int

func (*SuspendRequest) XXX_Unmarshal

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

type SyncTimeRequest

type SyncTimeRequest struct {
	SendTimeMs           int64    `protobuf:"varint,1,opt,name=sendTimeMs,proto3" json:"sendTimeMs,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*SyncTimeRequest) Descriptor

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

func (*SyncTimeRequest) GetSendTimeMs

func (m *SyncTimeRequest) GetSendTimeMs() int64

func (*SyncTimeRequest) ProtoMessage

func (*SyncTimeRequest) ProtoMessage()

func (*SyncTimeRequest) Reset

func (m *SyncTimeRequest) Reset()

func (*SyncTimeRequest) String

func (m *SyncTimeRequest) String() string

func (*SyncTimeRequest) XXX_DiscardUnknown

func (m *SyncTimeRequest) XXX_DiscardUnknown()

func (*SyncTimeRequest) XXX_Marshal

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

func (*SyncTimeRequest) XXX_Merge

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

func (*SyncTimeRequest) XXX_Size

func (m *SyncTimeRequest) XXX_Size() int

func (*SyncTimeRequest) XXX_Unmarshal

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

type SyncTimeResponse

type SyncTimeResponse struct {
	ClientTimestampMs    int64    `protobuf:"varint,1,opt,name=clientTimestampMs,proto3" json:"clientTimestampMs,omitempty"`
	ServerTimestampMs    int64    `protobuf:"varint,2,opt,name=serverTimestampMs,proto3" json:"serverTimestampMs,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*SyncTimeResponse) Descriptor

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

func (*SyncTimeResponse) GetClientTimestampMs

func (m *SyncTimeResponse) GetClientTimestampMs() int64

func (*SyncTimeResponse) GetServerTimestampMs

func (m *SyncTimeResponse) GetServerTimestampMs() int64

func (*SyncTimeResponse) ProtoMessage

func (*SyncTimeResponse) ProtoMessage()

func (*SyncTimeResponse) Reset

func (m *SyncTimeResponse) Reset()

func (*SyncTimeResponse) String

func (m *SyncTimeResponse) String() string

func (*SyncTimeResponse) XXX_DiscardUnknown

func (m *SyncTimeResponse) XXX_DiscardUnknown()

func (*SyncTimeResponse) XXX_Marshal

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

func (*SyncTimeResponse) XXX_Merge

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

func (*SyncTimeResponse) XXX_Size

func (m *SyncTimeResponse) XXX_Size() int

func (*SyncTimeResponse) XXX_Unmarshal

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

type TagReleaseRequest

type TagReleaseRequest struct {
	BlockName            string   `protobuf:"bytes,1,opt,name=blockName,proto3" json:"blockName,omitempty"`
	ReleaseId            string   `protobuf:"bytes,2,opt,name=releaseId,proto3" json:"releaseId,omitempty"`
	EnvId                string   `protobuf:"bytes,3,opt,name=envId,proto3" json:"envId,omitempty"`
	Tag                  string   `protobuf:"bytes,4,opt,name=tag,proto3" json:"tag,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*TagReleaseRequest) Descriptor

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

func (*TagReleaseRequest) GetBlockName

func (m *TagReleaseRequest) GetBlockName() string

func (*TagReleaseRequest) GetEnvId

func (m *TagReleaseRequest) GetEnvId() string

func (*TagReleaseRequest) GetReleaseId

func (m *TagReleaseRequest) GetReleaseId() string

func (*TagReleaseRequest) GetTag

func (m *TagReleaseRequest) GetTag() string

func (*TagReleaseRequest) ProtoMessage

func (*TagReleaseRequest) ProtoMessage()

func (*TagReleaseRequest) Reset

func (m *TagReleaseRequest) Reset()

func (*TagReleaseRequest) String

func (m *TagReleaseRequest) String() string

func (TagReleaseRequest) Validate

func (req TagReleaseRequest) Validate() error

func (*TagReleaseRequest) XXX_DiscardUnknown

func (m *TagReleaseRequest) XXX_DiscardUnknown()

func (*TagReleaseRequest) XXX_Marshal

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

func (*TagReleaseRequest) XXX_Merge

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

func (*TagReleaseRequest) XXX_Size

func (m *TagReleaseRequest) XXX_Size() int

func (*TagReleaseRequest) XXX_Unmarshal

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

type TeleportRequest

type TeleportRequest struct {
	EnvId                string   `protobuf:"bytes,1,opt,name=envId,proto3" json:"envId,omitempty"`
	BlockName            string   `protobuf:"bytes,2,opt,name=blockName,proto3" json:"blockName,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*TeleportRequest) Descriptor

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

func (*TeleportRequest) GetBlockName

func (m *TeleportRequest) GetBlockName() string

func (*TeleportRequest) GetEnvId

func (m *TeleportRequest) GetEnvId() string

func (*TeleportRequest) ProtoMessage

func (*TeleportRequest) ProtoMessage()

func (*TeleportRequest) Reset

func (m *TeleportRequest) Reset()

func (*TeleportRequest) String

func (m *TeleportRequest) String() string

func (TeleportRequest) Validate

func (req TeleportRequest) Validate() error

func (*TeleportRequest) XXX_DiscardUnknown

func (m *TeleportRequest) XXX_DiscardUnknown()

func (*TeleportRequest) XXX_Marshal

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

func (*TeleportRequest) XXX_Merge

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

func (*TeleportRequest) XXX_Size

func (m *TeleportRequest) XXX_Size() int

func (*TeleportRequest) XXX_Unmarshal

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

type TeleportResponse

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

func (*TeleportResponse) Descriptor

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

func (*TeleportResponse) GetData

func (m *TeleportResponse) GetData() *TeleportServiceData

func (*TeleportResponse) ProtoMessage

func (*TeleportResponse) ProtoMessage()

func (*TeleportResponse) Reset

func (m *TeleportResponse) Reset()

func (*TeleportResponse) String

func (m *TeleportResponse) String() string

func (*TeleportResponse) XXX_DiscardUnknown

func (m *TeleportResponse) XXX_DiscardUnknown()

func (*TeleportResponse) XXX_Marshal

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

func (*TeleportResponse) XXX_Merge

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

func (*TeleportResponse) XXX_Size

func (m *TeleportResponse) XXX_Size() int

func (*TeleportResponse) XXX_Unmarshal

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

type TeleportServiceData

type TeleportServiceData struct {
	Host                 string   `protobuf:"bytes,1,opt,name=host,proto3" json:"host,omitempty"`
	Credentials          string   `protobuf:"bytes,2,opt,name=credentials,proto3" json:"credentials,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*TeleportServiceData) Descriptor

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

func (*TeleportServiceData) GetCredentials

func (m *TeleportServiceData) GetCredentials() string

func (*TeleportServiceData) GetHost

func (m *TeleportServiceData) GetHost() string

func (*TeleportServiceData) ProtoMessage

func (*TeleportServiceData) ProtoMessage()

func (*TeleportServiceData) Reset

func (m *TeleportServiceData) Reset()

func (*TeleportServiceData) String

func (m *TeleportServiceData) String() string

func (*TeleportServiceData) XXX_DiscardUnknown

func (m *TeleportServiceData) XXX_DiscardUnknown()

func (*TeleportServiceData) XXX_Marshal

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

func (*TeleportServiceData) XXX_Merge

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

func (*TeleportServiceData) XXX_Size

func (m *TeleportServiceData) XXX_Size() int

func (*TeleportServiceData) XXX_Unmarshal

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

type TimeoutOptions

type TimeoutOptions struct {
	DefaultValue         int32    `protobuf:"varint,1,opt,name=defaultValue,proto3" json:"defaultValue,omitempty"`
	Values               []int32  `protobuf:"varint,2,rep,packed,name=values,proto3" json:"values,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*TimeoutOptions) Descriptor

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

func (*TimeoutOptions) GetDefaultValue

func (m *TimeoutOptions) GetDefaultValue() int32

func (*TimeoutOptions) GetValues

func (m *TimeoutOptions) GetValues() []int32

func (*TimeoutOptions) ProtoMessage

func (*TimeoutOptions) ProtoMessage()

func (*TimeoutOptions) Reset

func (m *TimeoutOptions) Reset()

func (*TimeoutOptions) String

func (m *TimeoutOptions) String() string

func (*TimeoutOptions) XXX_DiscardUnknown

func (m *TimeoutOptions) XXX_DiscardUnknown()

func (*TimeoutOptions) XXX_Marshal

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

func (*TimeoutOptions) XXX_Merge

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

func (*TimeoutOptions) XXX_Size

func (m *TimeoutOptions) XXX_Size() int

func (*TimeoutOptions) XXX_Unmarshal

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

type TriggerDeployRequest

type TriggerDeployRequest struct {
	EnvId                string   `protobuf:"bytes,1,opt,name=envId,proto3" json:"envId,omitempty"`
	Name                 string   `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*TriggerDeployRequest) Descriptor

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

func (*TriggerDeployRequest) GetEnvId

func (m *TriggerDeployRequest) GetEnvId() string

func (*TriggerDeployRequest) GetName

func (m *TriggerDeployRequest) GetName() string

func (*TriggerDeployRequest) ProtoMessage

func (*TriggerDeployRequest) ProtoMessage()

func (*TriggerDeployRequest) Reset

func (m *TriggerDeployRequest) Reset()

func (*TriggerDeployRequest) String

func (m *TriggerDeployRequest) String() string

func (TriggerDeployRequest) Validate

func (c TriggerDeployRequest) Validate() error

func (*TriggerDeployRequest) XXX_DiscardUnknown

func (m *TriggerDeployRequest) XXX_DiscardUnknown()

func (*TriggerDeployRequest) XXX_Marshal

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

func (*TriggerDeployRequest) XXX_Merge

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

func (*TriggerDeployRequest) XXX_Size

func (m *TriggerDeployRequest) XXX_Size() int

func (*TriggerDeployRequest) XXX_Unmarshal

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

type UndeployRequest

type UndeployRequest struct {
	BlockName            string   `protobuf:"bytes,1,opt,name=blockName,proto3" json:"blockName,omitempty"`
	Namespace            string   `protobuf:"bytes,2,opt,name=namespace,proto3" json:"namespace,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*UndeployRequest) Descriptor

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

func (*UndeployRequest) GetBlockName

func (m *UndeployRequest) GetBlockName() string

func (*UndeployRequest) GetNamespace

func (m *UndeployRequest) GetNamespace() string

func (*UndeployRequest) ProtoMessage

func (*UndeployRequest) ProtoMessage()

func (*UndeployRequest) Reset

func (m *UndeployRequest) Reset()

func (*UndeployRequest) String

func (m *UndeployRequest) String() string

func (UndeployRequest) Validate

func (req UndeployRequest) Validate() error

func (*UndeployRequest) XXX_DiscardUnknown

func (m *UndeployRequest) XXX_DiscardUnknown()

func (*UndeployRequest) XXX_Marshal

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

func (*UndeployRequest) XXX_Merge

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

func (*UndeployRequest) XXX_Size

func (m *UndeployRequest) XXX_Size() int

func (*UndeployRequest) XXX_Unmarshal

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

type UnimplementedKintoCoreServiceServer

type UnimplementedKintoCoreServiceServer struct {
}

UnimplementedKintoCoreServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedKintoCoreServiceServer) AbortRelease

func (*UnimplementedKintoCoreServiceServer) CheckCustomDomainName

func (*UnimplementedKintoCoreServiceServer) CreateBlock

func (*UnimplementedKintoCoreServiceServer) CreateCustomDomainName

func (*UnimplementedKintoCoreServiceServer) CreateEnvironment

func (*UnimplementedKintoCoreServiceServer) DeleteBlock

func (*UnimplementedKintoCoreServiceServer) DeleteCustomDomainName

func (*UnimplementedKintoCoreServiceServer) DeleteEnvironment

func (*UnimplementedKintoCoreServiceServer) DeployBlockUpdate

func (*UnimplementedKintoCoreServiceServer) DisablePublicURL

func (*UnimplementedKintoCoreServiceServer) EnablePublicURL

func (*UnimplementedKintoCoreServiceServer) GenReleaseConfigFromKintoFile

func (*UnimplementedKintoCoreServiceServer) GetBlock

func (*UnimplementedKintoCoreServiceServer) GetBlocks

func (*UnimplementedKintoCoreServiceServer) GetEnvironment

func (*UnimplementedKintoCoreServiceServer) GetEnvironments

func (*UnimplementedKintoCoreServiceServer) GetKintoConfiguration

func (*UnimplementedKintoCoreServiceServer) KillBlockInstance

func (*UnimplementedKintoCoreServiceServer) PromoteRelease

func (*UnimplementedKintoCoreServiceServer) RollbackBlock

func (*UnimplementedKintoCoreServiceServer) StartTeleport

func (*UnimplementedKintoCoreServiceServer) SuspendBlock

func (*UnimplementedKintoCoreServiceServer) SyncTime

func (*UnimplementedKintoCoreServiceServer) TagRelease

func (*UnimplementedKintoCoreServiceServer) TriggerDeploy

func (*UnimplementedKintoCoreServiceServer) UpdateBuildCommitSha

func (*UnimplementedKintoCoreServiceServer) UpdateBuildStatus

func (*UnimplementedKintoCoreServiceServer) UpdateEnvironment

func (*UnimplementedKintoCoreServiceServer) WatchBlocksHealthStatuses

func (*UnimplementedKintoCoreServiceServer) WatchBlocksMetrics

func (*UnimplementedKintoCoreServiceServer) WatchBuildLogs

func (*UnimplementedKintoCoreServiceServer) WatchConsoleLogs

func (*UnimplementedKintoCoreServiceServer) WatchJobsStatus

func (*UnimplementedKintoCoreServiceServer) WatchReleasesStatus

type UnimplementedWorkflowAPIServiceServer

type UnimplementedWorkflowAPIServiceServer struct {
}

UnimplementedWorkflowAPIServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedWorkflowAPIServiceServer) AbortRelease

func (*UnimplementedWorkflowAPIServiceServer) BuildAndDeployRelease

func (*UnimplementedWorkflowAPIServiceServer) DeployRelease

func (*UnimplementedWorkflowAPIServiceServer) DeployReleaseFromCatalog

func (*UnimplementedWorkflowAPIServiceServer) GetWorkflowLogs

func (*UnimplementedWorkflowAPIServiceServer) SuspendRelease

func (*UnimplementedWorkflowAPIServiceServer) UndeployRelease

func (*UnimplementedWorkflowAPIServiceServer) WatchWorkflowLogs

type UpdateBuildCommitShaRequest

type UpdateBuildCommitShaRequest struct {
	BlockName            string   `protobuf:"bytes,1,opt,name=blockName,proto3" json:"blockName,omitempty"`
	EnvId                string   `protobuf:"bytes,2,opt,name=envId,proto3" json:"envId,omitempty"`
	ReleaseId            string   `protobuf:"bytes,3,opt,name=releaseId,proto3" json:"releaseId,omitempty"`
	CommitSha            string   `protobuf:"bytes,4,opt,name=commitSha,proto3" json:"commitSha,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*UpdateBuildCommitShaRequest) Descriptor

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

func (*UpdateBuildCommitShaRequest) GetBlockName

func (m *UpdateBuildCommitShaRequest) GetBlockName() string

func (*UpdateBuildCommitShaRequest) GetCommitSha

func (m *UpdateBuildCommitShaRequest) GetCommitSha() string

func (*UpdateBuildCommitShaRequest) GetEnvId

func (m *UpdateBuildCommitShaRequest) GetEnvId() string

func (*UpdateBuildCommitShaRequest) GetReleaseId

func (m *UpdateBuildCommitShaRequest) GetReleaseId() string

func (*UpdateBuildCommitShaRequest) ProtoMessage

func (*UpdateBuildCommitShaRequest) ProtoMessage()

func (*UpdateBuildCommitShaRequest) Reset

func (m *UpdateBuildCommitShaRequest) Reset()

func (*UpdateBuildCommitShaRequest) String

func (m *UpdateBuildCommitShaRequest) String() string

func (UpdateBuildCommitShaRequest) Validate

func (req UpdateBuildCommitShaRequest) Validate() error

func (*UpdateBuildCommitShaRequest) XXX_DiscardUnknown

func (m *UpdateBuildCommitShaRequest) XXX_DiscardUnknown()

func (*UpdateBuildCommitShaRequest) XXX_Marshal

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

func (*UpdateBuildCommitShaRequest) XXX_Merge

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

func (*UpdateBuildCommitShaRequest) XXX_Size

func (m *UpdateBuildCommitShaRequest) XXX_Size() int

func (*UpdateBuildCommitShaRequest) XXX_Unmarshal

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

type UpdateBuildStatusRequest

type UpdateBuildStatusRequest struct {
	BlockName            string       `protobuf:"bytes,1,opt,name=blockName,proto3" json:"blockName,omitempty"`
	EnvId                string       `protobuf:"bytes,2,opt,name=envId,proto3" json:"envId,omitempty"`
	ReleaseId            string       `protobuf:"bytes,3,opt,name=releaseId,proto3" json:"releaseId,omitempty"`
	Status               *BuildStatus `protobuf:"bytes,5,opt,name=status,proto3" json:"status,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*UpdateBuildStatusRequest) Descriptor

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

func (*UpdateBuildStatusRequest) GetBlockName

func (m *UpdateBuildStatusRequest) GetBlockName() string

func (*UpdateBuildStatusRequest) GetEnvId

func (m *UpdateBuildStatusRequest) GetEnvId() string

func (*UpdateBuildStatusRequest) GetReleaseId

func (m *UpdateBuildStatusRequest) GetReleaseId() string

func (*UpdateBuildStatusRequest) GetStatus

func (m *UpdateBuildStatusRequest) GetStatus() *BuildStatus

func (*UpdateBuildStatusRequest) ProtoMessage

func (*UpdateBuildStatusRequest) ProtoMessage()

func (*UpdateBuildStatusRequest) Reset

func (m *UpdateBuildStatusRequest) Reset()

func (*UpdateBuildStatusRequest) String

func (m *UpdateBuildStatusRequest) String() string

func (UpdateBuildStatusRequest) Validate

func (req UpdateBuildStatusRequest) Validate() error

func (*UpdateBuildStatusRequest) XXX_DiscardUnknown

func (m *UpdateBuildStatusRequest) XXX_DiscardUnknown()

func (*UpdateBuildStatusRequest) XXX_Marshal

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

func (*UpdateBuildStatusRequest) XXX_Merge

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

func (*UpdateBuildStatusRequest) XXX_Size

func (m *UpdateBuildStatusRequest) XXX_Size() int

func (*UpdateBuildStatusRequest) XXX_Unmarshal

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

type UpdateBuildStatusResponse

type UpdateBuildStatusResponse struct {
	Id                   string   `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*UpdateBuildStatusResponse) Descriptor

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

func (*UpdateBuildStatusResponse) GetId

func (m *UpdateBuildStatusResponse) GetId() string

func (*UpdateBuildStatusResponse) ProtoMessage

func (*UpdateBuildStatusResponse) ProtoMessage()

func (*UpdateBuildStatusResponse) Reset

func (m *UpdateBuildStatusResponse) Reset()

func (*UpdateBuildStatusResponse) String

func (m *UpdateBuildStatusResponse) String() string

func (*UpdateBuildStatusResponse) XXX_DiscardUnknown

func (m *UpdateBuildStatusResponse) XXX_DiscardUnknown()

func (*UpdateBuildStatusResponse) XXX_Marshal

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

func (*UpdateBuildStatusResponse) XXX_Merge

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

func (*UpdateBuildStatusResponse) XXX_Size

func (m *UpdateBuildStatusResponse) XXX_Size() int

func (*UpdateBuildStatusResponse) XXX_Unmarshal

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

type UpdateBuildStepRequest

type UpdateBuildStepRequest struct {
	Name                 string       `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Status               *BuildStatus `protobuf:"bytes,2,opt,name=status,proto3" json:"status,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*UpdateBuildStepRequest) Descriptor

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

func (*UpdateBuildStepRequest) GetName

func (m *UpdateBuildStepRequest) GetName() string

func (*UpdateBuildStepRequest) GetStatus

func (m *UpdateBuildStepRequest) GetStatus() *BuildStatus

func (*UpdateBuildStepRequest) ProtoMessage

func (*UpdateBuildStepRequest) ProtoMessage()

func (*UpdateBuildStepRequest) Reset

func (m *UpdateBuildStepRequest) Reset()

func (*UpdateBuildStepRequest) String

func (m *UpdateBuildStepRequest) String() string

func (*UpdateBuildStepRequest) XXX_DiscardUnknown

func (m *UpdateBuildStepRequest) XXX_DiscardUnknown()

func (*UpdateBuildStepRequest) XXX_Marshal

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

func (*UpdateBuildStepRequest) XXX_Merge

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

func (*UpdateBuildStepRequest) XXX_Size

func (m *UpdateBuildStepRequest) XXX_Size() int

func (*UpdateBuildStepRequest) XXX_Unmarshal

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

type UpdateEnvironmentRequest

type UpdateEnvironmentRequest struct {
	Id                   string   `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Name                 string   `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*UpdateEnvironmentRequest) Descriptor

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

func (*UpdateEnvironmentRequest) GetId

func (m *UpdateEnvironmentRequest) GetId() string

func (*UpdateEnvironmentRequest) GetName

func (m *UpdateEnvironmentRequest) GetName() string

func (*UpdateEnvironmentRequest) ProtoMessage

func (*UpdateEnvironmentRequest) ProtoMessage()

func (*UpdateEnvironmentRequest) Reset

func (m *UpdateEnvironmentRequest) Reset()

func (*UpdateEnvironmentRequest) String

func (m *UpdateEnvironmentRequest) String() string

func (UpdateEnvironmentRequest) Validate

func (d UpdateEnvironmentRequest) Validate() error

func (*UpdateEnvironmentRequest) XXX_DiscardUnknown

func (m *UpdateEnvironmentRequest) XXX_DiscardUnknown()

func (*UpdateEnvironmentRequest) XXX_Marshal

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

func (*UpdateEnvironmentRequest) XXX_Merge

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

func (*UpdateEnvironmentRequest) XXX_Size

func (m *UpdateEnvironmentRequest) XXX_Size() int

func (*UpdateEnvironmentRequest) XXX_Unmarshal

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

type WatchBuildLogsRequest

type WatchBuildLogsRequest struct {
	ReleaseId            string   `protobuf:"bytes,1,opt,name=releaseId,proto3" json:"releaseId,omitempty"`
	BlockName            string   `protobuf:"bytes,2,opt,name=blockName,proto3" json:"blockName,omitempty"`
	EnvId                string   `protobuf:"bytes,3,opt,name=envId,proto3" json:"envId,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*WatchBuildLogsRequest) Descriptor

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

func (*WatchBuildLogsRequest) GetBlockName

func (m *WatchBuildLogsRequest) GetBlockName() string

func (*WatchBuildLogsRequest) GetEnvId

func (m *WatchBuildLogsRequest) GetEnvId() string

func (*WatchBuildLogsRequest) GetReleaseId

func (m *WatchBuildLogsRequest) GetReleaseId() string

func (*WatchBuildLogsRequest) ProtoMessage

func (*WatchBuildLogsRequest) ProtoMessage()

func (*WatchBuildLogsRequest) Reset

func (m *WatchBuildLogsRequest) Reset()

func (*WatchBuildLogsRequest) String

func (m *WatchBuildLogsRequest) String() string

func (*WatchBuildLogsRequest) XXX_DiscardUnknown

func (m *WatchBuildLogsRequest) XXX_DiscardUnknown()

func (*WatchBuildLogsRequest) XXX_Marshal

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

func (*WatchBuildLogsRequest) XXX_Merge

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

func (*WatchBuildLogsRequest) XXX_Size

func (m *WatchBuildLogsRequest) XXX_Size() int

func (*WatchBuildLogsRequest) XXX_Unmarshal

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

type WatchConsoleLogsRequest

type WatchConsoleLogsRequest struct {
	BlockName            string   `protobuf:"bytes,1,opt,name=blockName,proto3" json:"blockName,omitempty"`
	EnvId                string   `protobuf:"bytes,2,opt,name=envId,proto3" json:"envId,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*WatchConsoleLogsRequest) Descriptor

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

func (*WatchConsoleLogsRequest) GetBlockName

func (m *WatchConsoleLogsRequest) GetBlockName() string

func (*WatchConsoleLogsRequest) GetEnvId

func (m *WatchConsoleLogsRequest) GetEnvId() string

func (*WatchConsoleLogsRequest) ProtoMessage

func (*WatchConsoleLogsRequest) ProtoMessage()

func (*WatchConsoleLogsRequest) Reset

func (m *WatchConsoleLogsRequest) Reset()

func (*WatchConsoleLogsRequest) String

func (m *WatchConsoleLogsRequest) String() string

func (*WatchConsoleLogsRequest) XXX_DiscardUnknown

func (m *WatchConsoleLogsRequest) XXX_DiscardUnknown()

func (*WatchConsoleLogsRequest) XXX_Marshal

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

func (*WatchConsoleLogsRequest) XXX_Merge

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

func (*WatchConsoleLogsRequest) XXX_Size

func (m *WatchConsoleLogsRequest) XXX_Size() int

func (*WatchConsoleLogsRequest) XXX_Unmarshal

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

type WorkflowAPIServiceClient

type WorkflowAPIServiceClient interface {
	BuildAndDeployRelease(ctx context.Context, in *BuildAndDeployRequest, opts ...grpc.CallOption) (*WorkflowResponse, error)
	DeployRelease(ctx context.Context, in *DeployRequest, opts ...grpc.CallOption) (*WorkflowResponse, error)
	DeployReleaseFromCatalog(ctx context.Context, in *DeployCatalogRequest, opts ...grpc.CallOption) (*WorkflowResponse, error)
	UndeployRelease(ctx context.Context, in *UndeployRequest, opts ...grpc.CallOption) (*WorkflowResponse, error)
	SuspendRelease(ctx context.Context, in *SuspendRequest, opts ...grpc.CallOption) (*WorkflowResponse, error)
	AbortRelease(ctx context.Context, in *AbortReleaseRequest, opts ...grpc.CallOption) (*empty.Empty, error)
	GetWorkflowLogs(ctx context.Context, in *WorkflowLogsRequest, opts ...grpc.CallOption) (*Logs, error)
	WatchWorkflowLogs(ctx context.Context, in *WorkflowLogsRequest, opts ...grpc.CallOption) (WorkflowAPIService_WatchWorkflowLogsClient, error)
}

WorkflowAPIServiceClient is the client API for WorkflowAPIService service.

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

type WorkflowAPIServiceServer

WorkflowAPIServiceServer is the server API for WorkflowAPIService service.

type WorkflowAPIService_WatchWorkflowLogsClient

type WorkflowAPIService_WatchWorkflowLogsClient interface {
	Recv() (*Logs, error)
	grpc.ClientStream
}

type WorkflowAPIService_WatchWorkflowLogsServer

type WorkflowAPIService_WatchWorkflowLogsServer interface {
	Send(*Logs) error
	grpc.ServerStream
}

type WorkflowLogsRequest

type WorkflowLogsRequest struct {
	BuildId              string   `protobuf:"bytes,1,opt,name=buildId,proto3" json:"buildId,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*WorkflowLogsRequest) Descriptor

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

func (*WorkflowLogsRequest) GetBuildId

func (m *WorkflowLogsRequest) GetBuildId() string

func (*WorkflowLogsRequest) ProtoMessage

func (*WorkflowLogsRequest) ProtoMessage()

func (*WorkflowLogsRequest) Reset

func (m *WorkflowLogsRequest) Reset()

func (*WorkflowLogsRequest) String

func (m *WorkflowLogsRequest) String() string

func (WorkflowLogsRequest) Validate

func (req WorkflowLogsRequest) Validate() error

func (*WorkflowLogsRequest) XXX_DiscardUnknown

func (m *WorkflowLogsRequest) XXX_DiscardUnknown()

func (*WorkflowLogsRequest) XXX_Marshal

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

func (*WorkflowLogsRequest) XXX_Merge

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

func (*WorkflowLogsRequest) XXX_Size

func (m *WorkflowLogsRequest) XXX_Size() int

func (*WorkflowLogsRequest) XXX_Unmarshal

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

type WorkflowResponse

type WorkflowResponse struct {
	Id                   string   `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*WorkflowResponse) Descriptor

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

func (*WorkflowResponse) GetId

func (m *WorkflowResponse) GetId() string

func (*WorkflowResponse) ProtoMessage

func (*WorkflowResponse) ProtoMessage()

func (*WorkflowResponse) Reset

func (m *WorkflowResponse) Reset()

func (*WorkflowResponse) String

func (m *WorkflowResponse) String() string

func (*WorkflowResponse) XXX_DiscardUnknown

func (m *WorkflowResponse) XXX_DiscardUnknown()

func (*WorkflowResponse) XXX_Marshal

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

func (*WorkflowResponse) XXX_Merge

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

func (*WorkflowResponse) XXX_Size

func (m *WorkflowResponse) XXX_Size() int

func (*WorkflowResponse) XXX_Unmarshal

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

Jump to

Keyboard shortcuts

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