v1alpha

package
v0.0.0-...-445c7d5 Latest Latest
Warning

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

Go to latest
Published: Nov 28, 2018 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Kind the name of the object kind (singular).
	Kind = "Core"
	// KindPlural the name of the object kind (plural).
	KindPlural = "Core"
	// APIVersion of the API.
	APIVersion = "v1alpha"
)

Variables

This section is empty.

Functions

This section is empty.

Types

type Condition

type Condition struct {
	Condition            string   `protobuf:"bytes,1,opt,name=condition,proto3" json:"condition,omitempty"`
	Retry                *Retry   `protobuf:"bytes,2,opt,name=retry,proto3" json:"retry,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*Condition) Descriptor

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

func (*Condition) GetCondition

func (m *Condition) GetCondition() string

func (*Condition) GetRetry

func (m *Condition) GetRetry() *Retry

func (*Condition) ProtoMessage

func (*Condition) ProtoMessage()

func (*Condition) Reset

func (m *Condition) Reset()

func (*Condition) String

func (m *Condition) String() string

func (*Condition) XXX_DiscardUnknown

func (m *Condition) XXX_DiscardUnknown()

func (*Condition) XXX_Marshal

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

func (*Condition) XXX_Merge

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

func (*Condition) XXX_Size

func (m *Condition) XXX_Size() int

func (*Condition) XXX_Unmarshal

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

type Conditions

type Conditions struct {
	// `when` condition.
	When *Condition `protobuf:"bytes,1,opt,name=when,proto3" json:"when,omitempty"`
	// `success` condition.
	Success              *Condition `protobuf:"bytes,2,opt,name=success,proto3" json:"success,omitempty"`
	XXX_NoUnkeyedLiteral struct{}   `json:"-"`
	XXX_unrecognized     []byte     `json:"-"`
	XXX_sizecache        int32      `json:"-"`
}

func (*Conditions) Descriptor

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

func (*Conditions) GetSuccess

func (m *Conditions) GetSuccess() *Condition

func (*Conditions) GetWhen

func (m *Conditions) GetWhen() *Condition

func (*Conditions) ProtoMessage

func (*Conditions) ProtoMessage()

func (*Conditions) Reset

func (m *Conditions) Reset()

func (*Conditions) String

func (m *Conditions) String() string

func (*Conditions) XXX_DiscardUnknown

func (m *Conditions) XXX_DiscardUnknown()

func (*Conditions) XXX_Marshal

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

func (*Conditions) XXX_Merge

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

func (*Conditions) XXX_Size

func (m *Conditions) XXX_Size() int

func (*Conditions) XXX_Unmarshal

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

type Error

type Error struct {
	// Code status code.
	Code int64 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
	// Message error message (can be empty).
	Message              string   `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*Error) Descriptor

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

func (*Error) GetCode

func (m *Error) GetCode() int64

func (*Error) GetMessage

func (m *Error) GetMessage() string

func (*Error) ProtoMessage

func (*Error) ProtoMessage()

func (*Error) Reset

func (m *Error) Reset()

func (*Error) String

func (m *Error) String() string

func (*Error) XXX_DiscardUnknown

func (m *Error) XXX_DiscardUnknown()

func (*Error) XXX_Marshal

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

func (*Error) XXX_Merge

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

func (*Error) XXX_Size

func (m *Error) XXX_Size() int

func (*Error) XXX_Unmarshal

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

type GetOptions

type GetOptions struct {
	// Name used for listing.
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// Label selector in string form.
	LabelSelectors       []string `protobuf:"bytes,2,rep,name=labelSelectors,proto3" json:"labelSelectors,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetOptions) Descriptor

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

func (*GetOptions) GetLabelSelectors

func (m *GetOptions) GetLabelSelectors() []string

func (*GetOptions) GetName

func (m *GetOptions) GetName() string

func (*GetOptions) ProtoMessage

func (*GetOptions) ProtoMessage()

func (*GetOptions) Reset

func (m *GetOptions) Reset()

func (*GetOptions) String

func (m *GetOptions) String() string

func (*GetOptions) XXX_DiscardUnknown

func (m *GetOptions) XXX_DiscardUnknown()

func (*GetOptions) XXX_Marshal

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

func (*GetOptions) XXX_Merge

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

func (*GetOptions) XXX_Size

func (m *GetOptions) XXX_Size() int

func (*GetOptions) XXX_Unmarshal

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

type Include

type Include struct {
	// Name of include (if no paths are given, will be used as file name/path).
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// List of paths.
	Paths                []string `protobuf:"bytes,2,rep,name=paths,proto3" json:"paths,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*Include) Descriptor

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

func (*Include) GetName

func (m *Include) GetName() string

func (*Include) GetPaths

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

func (*Include) ProtoMessage

func (*Include) ProtoMessage()

func (*Include) Reset

func (m *Include) Reset()

func (*Include) String

func (m *Include) String() string

func (*Include) XXX_DiscardUnknown

func (m *Include) XXX_DiscardUnknown()

func (*Include) XXX_Marshal

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

func (*Include) XXX_Merge

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

func (*Include) XXX_Size

func (m *Include) XXX_Size() int

func (*Include) XXX_Unmarshal

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

type ListOptions

type ListOptions struct {
	// Label selector in string form.
	LabelSelectors       []string `protobuf:"bytes,2,rep,name=labelSelectors,proto3" json:"labelSelectors,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ListOptions) Descriptor

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

func (*ListOptions) GetLabelSelectors

func (m *ListOptions) GetLabelSelectors() []string

func (*ListOptions) ProtoMessage

func (*ListOptions) ProtoMessage()

func (*ListOptions) Reset

func (m *ListOptions) Reset()

func (*ListOptions) String

func (m *ListOptions) String() string

func (*ListOptions) XXX_DiscardUnknown

func (m *ListOptions) XXX_DiscardUnknown()

func (*ListOptions) XXX_Marshal

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

func (*ListOptions) XXX_Merge

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

func (*ListOptions) XXX_Size

func (m *ListOptions) XXX_Size() int

func (*ListOptions) XXX_Unmarshal

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

type ObjectMetadata

type ObjectMetadata struct {
	// APIVersion of object.
	ApiVersion string `protobuf:"bytes,1,opt,name=apiVersion,proto3" json:"apiVersion,omitempty"`
	// Kind of object.
	Kind string `protobuf:"bytes,2,opt,name=kind,proto3" json:"kind,omitempty"`
	// UUID of object.
	Uuid string `protobuf:"bytes,3,opt,name=uuid,proto3" json:"uuid,omitempty"`
	// Name of object.
	Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty"`
	// Labels of object.
	Labels map[string]string `` /* 153-byte string literal not displayed */
	// Annotations of object.
	Annotations          map[string]string `` /* 163-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_unrecognized     []byte            `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

func (*ObjectMetadata) Descriptor

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

func (*ObjectMetadata) GetAnnotations

func (m *ObjectMetadata) GetAnnotations() map[string]string

func (*ObjectMetadata) GetApiVersion

func (m *ObjectMetadata) GetApiVersion() string

func (*ObjectMetadata) GetKind

func (m *ObjectMetadata) GetKind() string

func (*ObjectMetadata) GetLabels

func (m *ObjectMetadata) GetLabels() map[string]string

func (*ObjectMetadata) GetName

func (m *ObjectMetadata) GetName() string

func (*ObjectMetadata) GetUuid

func (m *ObjectMetadata) GetUuid() string

func (*ObjectMetadata) ProtoMessage

func (*ObjectMetadata) ProtoMessage()

func (*ObjectMetadata) Reset

func (m *ObjectMetadata) Reset()

func (*ObjectMetadata) String

func (m *ObjectMetadata) String() string

func (*ObjectMetadata) XXX_DiscardUnknown

func (m *ObjectMetadata) XXX_DiscardUnknown()

func (*ObjectMetadata) XXX_Marshal

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

func (*ObjectMetadata) XXX_Merge

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

func (*ObjectMetadata) XXX_Size

func (m *ObjectMetadata) XXX_Size() int

func (*ObjectMetadata) XXX_Unmarshal

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

type Retry

type Retry struct {
	Interval             *duration.Duration `protobuf:"bytes,1,opt,name=interval,proto3" json:"interval,omitempty"`
	Limit                int64              `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
	XXX_NoUnkeyedLiteral struct{}           `json:"-"`
	XXX_unrecognized     []byte             `json:"-"`
	XXX_sizecache        int32              `json:"-"`
}

func (*Retry) Descriptor

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

func (*Retry) GetInterval

func (m *Retry) GetInterval() *duration.Duration

func (*Retry) GetLimit

func (m *Retry) GetLimit() int64

func (*Retry) ProtoMessage

func (*Retry) ProtoMessage()

func (*Retry) Reset

func (m *Retry) Reset()

func (*Retry) String

func (m *Retry) String() string

func (*Retry) XXX_DiscardUnknown

func (m *Retry) XXX_DiscardUnknown()

func (*Retry) XXX_Marshal

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

func (*Retry) XXX_Merge

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

func (*Retry) XXX_Size

func (m *Retry) XXX_Size() int

func (*Retry) XXX_Unmarshal

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

type VersionRequest

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

func (*VersionRequest) Descriptor

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

func (*VersionRequest) ProtoMessage

func (*VersionRequest) ProtoMessage()

func (*VersionRequest) Reset

func (m *VersionRequest) Reset()

func (*VersionRequest) String

func (m *VersionRequest) String() string

func (*VersionRequest) XXX_DiscardUnknown

func (m *VersionRequest) XXX_DiscardUnknown()

func (*VersionRequest) XXX_Marshal

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

func (*VersionRequest) XXX_Merge

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

func (*VersionRequest) XXX_Size

func (m *VersionRequest) XXX_Size() int

func (*VersionRequest) XXX_Unmarshal

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

type VersionResponse

type VersionResponse struct {
	// Semversion compatible version number.
	Version string `protobuf:"bytes,1,opt,name=version,proto3" json:"version,omitempty"`
	// Semversion major number.
	Major int64 `protobuf:"varint,2,opt,name=major,proto3" json:"major,omitempty"`
	// Semversion minor number.
	Minor int64 `protobuf:"varint,3,opt,name=minor,proto3" json:"minor,omitempty"`
	// Semversion patch number.
	Patch int64 `protobuf:"varint,4,opt,name=patch,proto3" json:"patch,omitempty"`
	// API state (e.g., alpha, beta, stable).
	State                string   `protobuf:"bytes,5,opt,name=state,proto3" json:"state,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*VersionResponse) Descriptor

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

func (*VersionResponse) GetMajor

func (m *VersionResponse) GetMajor() int64

func (*VersionResponse) GetMinor

func (m *VersionResponse) GetMinor() int64

func (*VersionResponse) GetPatch

func (m *VersionResponse) GetPatch() int64

func (*VersionResponse) GetState

func (m *VersionResponse) GetState() string

func (*VersionResponse) GetVersion

func (m *VersionResponse) GetVersion() string

func (*VersionResponse) ProtoMessage

func (*VersionResponse) ProtoMessage()

func (*VersionResponse) Reset

func (m *VersionResponse) Reset()

func (*VersionResponse) String

func (m *VersionResponse) String() string

func (*VersionResponse) XXX_DiscardUnknown

func (m *VersionResponse) XXX_DiscardUnknown()

func (*VersionResponse) XXX_Marshal

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

func (*VersionResponse) XXX_Merge

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

func (*VersionResponse) XXX_Size

func (m *VersionResponse) XXX_Size() int

func (*VersionResponse) XXX_Unmarshal

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

type WatchOptions

type WatchOptions struct {
	// Name used for listing.
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// Label selector in string form.
	LabelSelectors []string `protobuf:"bytes,2,rep,name=labelSelectors,proto3" json:"labelSelectors,omitempty"`
	// Conditions to look for when watching Events on an object.
	Conitions            []string `protobuf:"bytes,3,rep,name=conitions,proto3" json:"conitions,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*WatchOptions) Descriptor

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

func (*WatchOptions) GetConitions

func (m *WatchOptions) GetConitions() []string

func (*WatchOptions) GetLabelSelectors

func (m *WatchOptions) GetLabelSelectors() []string

func (*WatchOptions) GetName

func (m *WatchOptions) GetName() string

func (*WatchOptions) ProtoMessage

func (*WatchOptions) ProtoMessage()

func (*WatchOptions) Reset

func (m *WatchOptions) Reset()

func (*WatchOptions) String

func (m *WatchOptions) String() string

func (*WatchOptions) XXX_DiscardUnknown

func (m *WatchOptions) XXX_DiscardUnknown()

func (*WatchOptions) XXX_Marshal

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

func (*WatchOptions) XXX_Merge

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

func (*WatchOptions) XXX_Size

func (m *WatchOptions) XXX_Size() int

func (*WatchOptions) XXX_Unmarshal

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

Jump to

Keyboard shortcuts

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