pb

package
v5.2.0-release+incompa... Latest Latest
Warning

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

Go to latest
Published: Apr 16, 2020 License: LGPL-3.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var PodStatus_Type_name = map[int32]string{
	0:  "PENDING",
	1:  "RUNNING",
	2:  "SUCCEEDED",
	3:  "FAILED",
	4:  "UNKNOWN",
	5:  "TEMINATING",
	6:  "ABNORMAL",
	7:  "INITIATING",
	8:  "SCHEDULING",
	9:  "NOTREADY",
	10: "UNHEALTHY",
}
View Source
var PodStatus_Type_value = map[string]int32{
	"PENDING":    0,
	"RUNNING":    1,
	"SUCCEEDED":  2,
	"FAILED":     3,
	"UNKNOWN":    4,
	"TEMINATING": 5,
	"ABNORMAL":   6,
	"INITIATING": 7,
	"SCHEDULING": 8,
	"NOTREADY":   9,
	"UNHEALTHY":  10,
}
View Source
var ServiceVolumeStatus_name = map[int32]string{
	0: "READY",
	1: "NOT_READY",
}
View Source
var ServiceVolumeStatus_value = map[string]int32{
	"READY":     0,
	"NOT_READY": 1,
}

Functions

func RegisterAppRuntimeSyncServer

func RegisterAppRuntimeSyncServer(s *grpc.Server, srv AppRuntimeSyncServer)

Types

type AddThirdPartyEndpointsReq

type AddThirdPartyEndpointsReq struct {
	Uuid                 string   `protobuf:"bytes,1,opt,name=uuid,proto3" json:"uuid,omitempty"`
	Sid                  string   `protobuf:"bytes,2,opt,name=sid,proto3" json:"sid,omitempty"`
	Ip                   string   `protobuf:"bytes,3,opt,name=ip,proto3" json:"ip,omitempty"`
	Port                 int32    `protobuf:"varint,4,opt,name=port,proto3" json:"port,omitempty"`
	IsOnline             bool     `protobuf:"varint,5,opt,name=is_online,json=isOnline,proto3" json:"is_online,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*AddThirdPartyEndpointsReq) Descriptor

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

func (*AddThirdPartyEndpointsReq) GetIp

func (m *AddThirdPartyEndpointsReq) GetIp() string

func (*AddThirdPartyEndpointsReq) GetIsOnline

func (m *AddThirdPartyEndpointsReq) GetIsOnline() bool

func (*AddThirdPartyEndpointsReq) GetPort

func (m *AddThirdPartyEndpointsReq) GetPort() int32

func (*AddThirdPartyEndpointsReq) GetSid

func (m *AddThirdPartyEndpointsReq) GetSid() string

func (*AddThirdPartyEndpointsReq) GetUuid

func (m *AddThirdPartyEndpointsReq) GetUuid() string

func (*AddThirdPartyEndpointsReq) ProtoMessage

func (*AddThirdPartyEndpointsReq) ProtoMessage()

func (*AddThirdPartyEndpointsReq) Reset

func (m *AddThirdPartyEndpointsReq) Reset()

func (*AddThirdPartyEndpointsReq) String

func (m *AddThirdPartyEndpointsReq) String() string

func (*AddThirdPartyEndpointsReq) XXX_DiscardUnknown

func (m *AddThirdPartyEndpointsReq) XXX_DiscardUnknown()

func (*AddThirdPartyEndpointsReq) XXX_Marshal

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

func (*AddThirdPartyEndpointsReq) XXX_Merge

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

func (*AddThirdPartyEndpointsReq) XXX_Size

func (m *AddThirdPartyEndpointsReq) XXX_Size() int

func (*AddThirdPartyEndpointsReq) XXX_Unmarshal

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

type AppRuntimeSyncClient

type AppRuntimeSyncClient interface {
	GetAppStatus(ctx context.Context, in *ServicesRequest, opts ...grpc.CallOption) (*StatusMessage, error)
	GetAppPods(ctx context.Context, in *ServiceRequest, opts ...grpc.CallOption) (*ServiceAppPodList, error)
	GetDeployInfo(ctx context.Context, in *ServiceRequest, opts ...grpc.CallOption) (*DeployInfo, error)
	GetTenantResource(ctx context.Context, in *TenantRequest, opts ...grpc.CallOption) (*TenantResource, error)
	ListThirdPartyEndpoints(ctx context.Context, in *ServiceRequest, opts ...grpc.CallOption) (*ThirdPartyEndpoints, error)
	AddThirdPartyEndpoint(ctx context.Context, in *AddThirdPartyEndpointsReq, opts ...grpc.CallOption) (*Empty, error)
	UpdThirdPartyEndpoint(ctx context.Context, in *UpdThirdPartyEndpointsReq, opts ...grpc.CallOption) (*Empty, error)
	DelThirdPartyEndpoint(ctx context.Context, in *DelThirdPartyEndpointsReq, opts ...grpc.CallOption) (*Empty, error)
	GetPodDetail(ctx context.Context, in *GetPodDetailReq, opts ...grpc.CallOption) (*PodDetail, error)
	GetStorageClasses(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*StorageClasses, error)
	GetAppVolumeStatus(ctx context.Context, in *ServiceRequest, opts ...grpc.CallOption) (*ServiceVolumeStatusMessage, error)
}

AppRuntimeSyncClient is the client API for AppRuntimeSync service.

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

func NewAppRuntimeSyncClient

func NewAppRuntimeSyncClient(cc *grpc.ClientConn) AppRuntimeSyncClient

type AppRuntimeSyncServer

type AppRuntimeSyncServer interface {
	GetAppStatus(context.Context, *ServicesRequest) (*StatusMessage, error)
	GetAppPods(context.Context, *ServiceRequest) (*ServiceAppPodList, error)
	GetDeployInfo(context.Context, *ServiceRequest) (*DeployInfo, error)
	GetTenantResource(context.Context, *TenantRequest) (*TenantResource, error)
	ListThirdPartyEndpoints(context.Context, *ServiceRequest) (*ThirdPartyEndpoints, error)
	AddThirdPartyEndpoint(context.Context, *AddThirdPartyEndpointsReq) (*Empty, error)
	UpdThirdPartyEndpoint(context.Context, *UpdThirdPartyEndpointsReq) (*Empty, error)
	DelThirdPartyEndpoint(context.Context, *DelThirdPartyEndpointsReq) (*Empty, error)
	GetPodDetail(context.Context, *GetPodDetailReq) (*PodDetail, error)
	GetStorageClasses(context.Context, *Empty) (*StorageClasses, error)
	GetAppVolumeStatus(context.Context, *ServiceRequest) (*ServiceVolumeStatusMessage, error)
}

AppRuntimeSyncServer is the server API for AppRuntimeSync service.

type Container

type Container struct {
	ContainerName        string   `protobuf:"bytes,1,opt,name=container_name,json=containerName,proto3" json:"container_name,omitempty"`
	MemoryLimit          int64    `protobuf:"varint,2,opt,name=memory_limit,json=memoryLimit,proto3" json:"memory_limit,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*Container) Descriptor

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

func (*Container) GetContainerName

func (m *Container) GetContainerName() string

func (*Container) GetMemoryLimit

func (m *Container) GetMemoryLimit() int64

func (*Container) ProtoMessage

func (*Container) ProtoMessage()

func (*Container) Reset

func (m *Container) Reset()

func (*Container) String

func (m *Container) String() string

func (*Container) XXX_DiscardUnknown

func (m *Container) XXX_DiscardUnknown()

func (*Container) XXX_Marshal

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

func (*Container) XXX_Merge

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

func (*Container) XXX_Size

func (m *Container) XXX_Size() int

func (*Container) XXX_Unmarshal

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

type DelThirdPartyEndpointsReq

type DelThirdPartyEndpointsReq struct {
	Uuid                 string   `protobuf:"bytes,1,opt,name=uuid,proto3" json:"uuid,omitempty"`
	Sid                  string   `protobuf:"bytes,2,opt,name=sid,proto3" json:"sid,omitempty"`
	Ip                   string   `protobuf:"bytes,3,opt,name=ip,proto3" json:"ip,omitempty"`
	Port                 int32    `protobuf:"varint,4,opt,name=port,proto3" json:"port,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DelThirdPartyEndpointsReq) Descriptor

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

func (*DelThirdPartyEndpointsReq) GetIp

func (m *DelThirdPartyEndpointsReq) GetIp() string

func (*DelThirdPartyEndpointsReq) GetPort

func (m *DelThirdPartyEndpointsReq) GetPort() int32

func (*DelThirdPartyEndpointsReq) GetSid

func (m *DelThirdPartyEndpointsReq) GetSid() string

func (*DelThirdPartyEndpointsReq) GetUuid

func (m *DelThirdPartyEndpointsReq) GetUuid() string

func (*DelThirdPartyEndpointsReq) ProtoMessage

func (*DelThirdPartyEndpointsReq) ProtoMessage()

func (*DelThirdPartyEndpointsReq) Reset

func (m *DelThirdPartyEndpointsReq) Reset()

func (*DelThirdPartyEndpointsReq) String

func (m *DelThirdPartyEndpointsReq) String() string

func (*DelThirdPartyEndpointsReq) XXX_DiscardUnknown

func (m *DelThirdPartyEndpointsReq) XXX_DiscardUnknown()

func (*DelThirdPartyEndpointsReq) XXX_Marshal

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

func (*DelThirdPartyEndpointsReq) XXX_Merge

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

func (*DelThirdPartyEndpointsReq) XXX_Size

func (m *DelThirdPartyEndpointsReq) XXX_Size() int

func (*DelThirdPartyEndpointsReq) XXX_Unmarshal

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

type DeployInfo

type DeployInfo struct {
	Namespace            string            `protobuf:"bytes,1,opt,name=namespace,proto3" json:"namespace,omitempty"`
	Statefuleset         string            `protobuf:"bytes,2,opt,name=statefuleset,proto3" json:"statefuleset,omitempty"`
	Deployment           string            `protobuf:"bytes,3,opt,name=deployment,proto3" json:"deployment,omitempty"`
	StartTime            string            `protobuf:"bytes,4,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"`
	Pods                 map[string]string `` /* 149-byte string literal not displayed */
	Services             map[string]string `` /* 157-byte string literal not displayed */
	Endpoints            map[string]string `` /* 159-byte string literal not displayed */
	Secrets              map[string]string `` /* 155-byte string literal not displayed */
	Ingresses            map[string]string `` /* 159-byte string literal not displayed */
	Replicatset          map[string]string `` /* 164-byte string literal not displayed */
	Status               string            `protobuf:"bytes,11,opt,name=status,proto3" json:"status,omitempty"`
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_unrecognized     []byte            `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

func (*DeployInfo) Descriptor

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

func (*DeployInfo) GetDeployment

func (m *DeployInfo) GetDeployment() string

func (*DeployInfo) GetEndpoints

func (m *DeployInfo) GetEndpoints() map[string]string

func (*DeployInfo) GetIngresses

func (m *DeployInfo) GetIngresses() map[string]string

func (*DeployInfo) GetNamespace

func (m *DeployInfo) GetNamespace() string

func (*DeployInfo) GetPods

func (m *DeployInfo) GetPods() map[string]string

func (*DeployInfo) GetReplicatset

func (m *DeployInfo) GetReplicatset() map[string]string

func (*DeployInfo) GetSecrets

func (m *DeployInfo) GetSecrets() map[string]string

func (*DeployInfo) GetServices

func (m *DeployInfo) GetServices() map[string]string

func (*DeployInfo) GetStartTime

func (m *DeployInfo) GetStartTime() string

func (*DeployInfo) GetStatefuleset

func (m *DeployInfo) GetStatefuleset() string

func (*DeployInfo) GetStatus

func (m *DeployInfo) GetStatus() string

func (*DeployInfo) ProtoMessage

func (*DeployInfo) ProtoMessage()

func (*DeployInfo) Reset

func (m *DeployInfo) Reset()

func (*DeployInfo) String

func (m *DeployInfo) String() string

func (*DeployInfo) XXX_DiscardUnknown

func (m *DeployInfo) XXX_DiscardUnknown()

func (*DeployInfo) XXX_Marshal

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

func (*DeployInfo) XXX_Merge

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

func (*DeployInfo) XXX_Size

func (m *DeployInfo) XXX_Size() int

func (*DeployInfo) XXX_Unmarshal

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

type DiskMessage

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

func (*DiskMessage) Descriptor

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

func (*DiskMessage) GetDisks

func (m *DiskMessage) GetDisks() map[string]float64

func (*DiskMessage) ProtoMessage

func (*DiskMessage) ProtoMessage()

func (*DiskMessage) Reset

func (m *DiskMessage) Reset()

func (*DiskMessage) String

func (m *DiskMessage) String() string

func (*DiskMessage) XXX_DiscardUnknown

func (m *DiskMessage) XXX_DiscardUnknown()

func (*DiskMessage) XXX_Marshal

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

func (*DiskMessage) XXX_Merge

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

func (*DiskMessage) XXX_Size

func (m *DiskMessage) XXX_Size() int

func (*DiskMessage) XXX_Unmarshal

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

type Empty

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

func (*Empty) Descriptor

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

func (*Empty) ProtoMessage

func (*Empty) ProtoMessage()

func (*Empty) Reset

func (m *Empty) Reset()

func (*Empty) String

func (m *Empty) String() string

func (*Empty) XXX_DiscardUnknown

func (m *Empty) XXX_DiscardUnknown()

func (*Empty) XXX_Marshal

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

func (*Empty) XXX_Merge

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

func (*Empty) XXX_Size

func (m *Empty) XXX_Size() int

func (*Empty) XXX_Unmarshal

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

type GetPodDetailReq

type GetPodDetailReq struct {
	Sid                  string   `protobuf:"bytes,1,opt,name=sid,proto3" json:"sid,omitempty"`
	PodName              string   `protobuf:"bytes,2,opt,name=pod_name,json=podName,proto3" json:"pod_name,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetPodDetailReq) Descriptor

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

func (*GetPodDetailReq) GetPodName

func (m *GetPodDetailReq) GetPodName() string

func (*GetPodDetailReq) GetSid

func (m *GetPodDetailReq) GetSid() string

func (*GetPodDetailReq) ProtoMessage

func (*GetPodDetailReq) ProtoMessage()

func (*GetPodDetailReq) Reset

func (m *GetPodDetailReq) Reset()

func (*GetPodDetailReq) String

func (m *GetPodDetailReq) String() string

func (*GetPodDetailReq) XXX_DiscardUnknown

func (m *GetPodDetailReq) XXX_DiscardUnknown()

func (*GetPodDetailReq) XXX_Marshal

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

func (*GetPodDetailReq) XXX_Merge

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

func (*GetPodDetailReq) XXX_Size

func (m *GetPodDetailReq) XXX_Size() int

func (*GetPodDetailReq) XXX_Unmarshal

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

type ListPodsBySIDReq

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

func (*ListPodsBySIDReq) Descriptor

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

func (*ListPodsBySIDReq) GetSid

func (m *ListPodsBySIDReq) GetSid() string

func (*ListPodsBySIDReq) ProtoMessage

func (*ListPodsBySIDReq) ProtoMessage()

func (*ListPodsBySIDReq) Reset

func (m *ListPodsBySIDReq) Reset()

func (*ListPodsBySIDReq) String

func (m *ListPodsBySIDReq) String() string

func (*ListPodsBySIDReq) XXX_DiscardUnknown

func (m *ListPodsBySIDReq) XXX_DiscardUnknown()

func (*ListPodsBySIDReq) XXX_Marshal

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

func (*ListPodsBySIDReq) XXX_Merge

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

func (*ListPodsBySIDReq) XXX_Size

func (m *ListPodsBySIDReq) XXX_Size() int

func (*ListPodsBySIDReq) XXX_Unmarshal

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

type PodContainer

type PodContainer struct {
	Image                string   `protobuf:"bytes,1,opt,name=image,proto3" json:"image,omitempty"`
	State                string   `protobuf:"bytes,2,opt,name=state,proto3" json:"state,omitempty"`
	Reason               string   `protobuf:"bytes,3,opt,name=reason,proto3" json:"reason,omitempty"`
	Started              string   `protobuf:"bytes,4,opt,name=started,proto3" json:"started,omitempty"`
	LimitMemory          string   `protobuf:"bytes,5,opt,name=limit_memory,json=limitMemory,proto3" json:"limit_memory,omitempty"`
	LimitCpu             string   `protobuf:"bytes,6,opt,name=limit_cpu,json=limitCpu,proto3" json:"limit_cpu,omitempty"`
	RequestMemory        string   `protobuf:"bytes,7,opt,name=request_memory,json=requestMemory,proto3" json:"request_memory,omitempty"`
	RequestCpu           string   `protobuf:"bytes,8,opt,name=request_cpu,json=requestCpu,proto3" json:"request_cpu,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PodContainer) Descriptor

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

func (*PodContainer) GetImage

func (m *PodContainer) GetImage() string

func (*PodContainer) GetLimitCpu

func (m *PodContainer) GetLimitCpu() string

func (*PodContainer) GetLimitMemory

func (m *PodContainer) GetLimitMemory() string

func (*PodContainer) GetReason

func (m *PodContainer) GetReason() string

func (*PodContainer) GetRequestCpu

func (m *PodContainer) GetRequestCpu() string

func (*PodContainer) GetRequestMemory

func (m *PodContainer) GetRequestMemory() string

func (*PodContainer) GetStarted

func (m *PodContainer) GetStarted() string

func (*PodContainer) GetState

func (m *PodContainer) GetState() string

func (*PodContainer) ProtoMessage

func (*PodContainer) ProtoMessage()

func (*PodContainer) Reset

func (m *PodContainer) Reset()

func (*PodContainer) String

func (m *PodContainer) String() string

func (*PodContainer) XXX_DiscardUnknown

func (m *PodContainer) XXX_DiscardUnknown()

func (*PodContainer) XXX_Marshal

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

func (*PodContainer) XXX_Merge

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

func (*PodContainer) XXX_Size

func (m *PodContainer) XXX_Size() int

func (*PodContainer) XXX_Unmarshal

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

type PodDetail

type PodDetail struct {
	Name                 string          `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Node                 string          `protobuf:"bytes,2,opt,name=node,proto3" json:"node,omitempty"`
	StartTime            string          `protobuf:"bytes,3,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"`
	Status               *PodStatus      `protobuf:"bytes,4,opt,name=status,proto3" json:"status,omitempty"`
	Ip                   string          `protobuf:"bytes,5,opt,name=ip,proto3" json:"ip,omitempty"`
	NodeIp               string          `protobuf:"bytes,6,opt,name=node_ip,json=nodeIp,proto3" json:"node_ip,omitempty"`
	Version              string          `protobuf:"bytes,7,opt,name=version,proto3" json:"version,omitempty"`
	InitContainers       []*PodContainer `protobuf:"bytes,8,rep,name=init_containers,json=initContainers,proto3" json:"init_containers,omitempty"`
	Containers           []*PodContainer `protobuf:"bytes,9,rep,name=containers,proto3" json:"containers,omitempty"`
	Events               []*PodEvent     `protobuf:"bytes,10,rep,name=events,proto3" json:"events,omitempty"`
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
}

func (*PodDetail) Descriptor

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

func (*PodDetail) GetContainers

func (m *PodDetail) GetContainers() []*PodContainer

func (*PodDetail) GetEvents

func (m *PodDetail) GetEvents() []*PodEvent

func (*PodDetail) GetInitContainers

func (m *PodDetail) GetInitContainers() []*PodContainer

func (*PodDetail) GetIp

func (m *PodDetail) GetIp() string

func (*PodDetail) GetName

func (m *PodDetail) GetName() string

func (*PodDetail) GetNode

func (m *PodDetail) GetNode() string

func (*PodDetail) GetNodeIp

func (m *PodDetail) GetNodeIp() string

func (*PodDetail) GetStartTime

func (m *PodDetail) GetStartTime() string

func (*PodDetail) GetStatus

func (m *PodDetail) GetStatus() *PodStatus

func (*PodDetail) GetVersion

func (m *PodDetail) GetVersion() string

func (*PodDetail) ProtoMessage

func (*PodDetail) ProtoMessage()

func (*PodDetail) Reset

func (m *PodDetail) Reset()

func (*PodDetail) String

func (m *PodDetail) String() string

func (*PodDetail) XXX_DiscardUnknown

func (m *PodDetail) XXX_DiscardUnknown()

func (*PodDetail) XXX_Marshal

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

func (*PodDetail) XXX_Merge

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

func (*PodDetail) XXX_Size

func (m *PodDetail) XXX_Size() int

func (*PodDetail) XXX_Unmarshal

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

type PodEvent

type PodEvent struct {
	Type                 string   `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"`
	Reason               string   `protobuf:"bytes,2,opt,name=reason,proto3" json:"reason,omitempty"`
	Age                  string   `protobuf:"bytes,3,opt,name=age,proto3" json:"age,omitempty"`
	Message              string   `protobuf:"bytes,5,opt,name=message,proto3" json:"message,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PodEvent) Descriptor

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

func (*PodEvent) GetAge

func (m *PodEvent) GetAge() string

func (*PodEvent) GetMessage

func (m *PodEvent) GetMessage() string

func (*PodEvent) GetReason

func (m *PodEvent) GetReason() string

func (*PodEvent) GetType

func (m *PodEvent) GetType() string

func (*PodEvent) ProtoMessage

func (*PodEvent) ProtoMessage()

func (*PodEvent) Reset

func (m *PodEvent) Reset()

func (*PodEvent) String

func (m *PodEvent) String() string

func (*PodEvent) XXX_DiscardUnknown

func (m *PodEvent) XXX_DiscardUnknown()

func (*PodEvent) XXX_Marshal

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

func (*PodEvent) XXX_Merge

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

func (*PodEvent) XXX_Size

func (m *PodEvent) XXX_Size() int

func (*PodEvent) XXX_Unmarshal

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

type PodStatus

type PodStatus struct {
	Type                 PodStatus_Type `protobuf:"varint,1,opt,name=type,proto3,enum=pb.PodStatus_Type" json:"type,omitempty"`
	Reason               string         `protobuf:"bytes,2,opt,name=reason,proto3" json:"reason,omitempty"`
	Message              string         `protobuf:"bytes,3,opt,name=message,proto3" json:"message,omitempty"`
	Advice               string         `protobuf:"bytes,4,opt,name=advice,proto3" json:"advice,omitempty"`
	TypeStr              string         `protobuf:"bytes,5,opt,name=type_str,json=typeStr,proto3" json:"type_str,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*PodStatus) Descriptor

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

func (*PodStatus) GetAdvice

func (m *PodStatus) GetAdvice() string

func (*PodStatus) GetMessage

func (m *PodStatus) GetMessage() string

func (*PodStatus) GetReason

func (m *PodStatus) GetReason() string

func (*PodStatus) GetType

func (m *PodStatus) GetType() PodStatus_Type

func (*PodStatus) GetTypeStr

func (m *PodStatus) GetTypeStr() string

func (*PodStatus) ProtoMessage

func (*PodStatus) ProtoMessage()

func (*PodStatus) Reset

func (m *PodStatus) Reset()

func (*PodStatus) String

func (m *PodStatus) String() string

func (*PodStatus) XXX_DiscardUnknown

func (m *PodStatus) XXX_DiscardUnknown()

func (*PodStatus) XXX_Marshal

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

func (*PodStatus) XXX_Merge

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

func (*PodStatus) XXX_Size

func (m *PodStatus) XXX_Size() int

func (*PodStatus) XXX_Unmarshal

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

type PodStatus_Type

type PodStatus_Type int32
const (
	// PENDING means the pod has been accepted by the system, but one or more of the containers
	// has not been started. This includes time before being bound to a node, as well as time spent
	// pulling images onto the host.
	PodStatus_PENDING PodStatus_Type = 0
	// RUNNING means the pod has been bound to a node and all of the containers have been started.
	// At least one container is still running or is in the process of being restarted.
	PodStatus_RUNNING PodStatus_Type = 1
	// SUCCEEDED means that all containers in the pod have voluntarily terminated
	// with a container exit code of 0, and the system is not going to restart any of these containers.
	PodStatus_SUCCEEDED PodStatus_Type = 2
	// FAILED means that all containers in the pod have terminated, and at least one container has
	// terminated in a failure (exited with a non-zero exit code or was stopped by the system).
	PodStatus_FAILED PodStatus_Type = 3
	// UNKNOWN means that for some reason the state of the pod could not be obtained, typically due
	// to an error in communicating with the host of the pod.
	PodStatus_UNKNOWN    PodStatus_Type = 4
	PodStatus_TEMINATING PodStatus_Type = 5
	PodStatus_ABNORMAL   PodStatus_Type = 6
	PodStatus_INITIATING PodStatus_Type = 7
	PodStatus_SCHEDULING PodStatus_Type = 8
	PodStatus_NOTREADY   PodStatus_Type = 9
	PodStatus_UNHEALTHY  PodStatus_Type = 10
)

func (PodStatus_Type) EnumDescriptor

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

func (PodStatus_Type) String

func (x PodStatus_Type) String() string

type ServiceAppPod

type ServiceAppPod struct {
	ServiceId            string                `protobuf:"bytes,1,opt,name=service_id,json=serviceId,proto3" json:"service_id,omitempty"`
	DeployId             string                `protobuf:"bytes,2,opt,name=deploy_id,json=deployId,proto3" json:"deploy_id,omitempty"`
	DeployType           string                `protobuf:"bytes,3,opt,name=deploy_type,json=deployType,proto3" json:"deploy_type,omitempty"`
	PodName              string                `protobuf:"bytes,4,opt,name=pod_name,json=podName,proto3" json:"pod_name,omitempty"`
	PodIp                string                `protobuf:"bytes,5,opt,name=pod_ip,json=podIp,proto3" json:"pod_ip,omitempty"`
	PodStatus            string                `protobuf:"bytes,6,opt,name=pod_status,json=podStatus,proto3" json:"pod_status,omitempty"`
	Containers           map[string]*Container `` /* 161-byte string literal not displayed */
	PodVolumes           []string              `protobuf:"bytes,8,rep,name=pod_volumes,json=podVolumes,proto3" json:"pod_volumes,omitempty"`
	XXX_NoUnkeyedLiteral struct{}              `json:"-"`
	XXX_unrecognized     []byte                `json:"-"`
	XXX_sizecache        int32                 `json:"-"`
}

func (*ServiceAppPod) Descriptor

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

func (*ServiceAppPod) GetContainers

func (m *ServiceAppPod) GetContainers() map[string]*Container

func (*ServiceAppPod) GetDeployId

func (m *ServiceAppPod) GetDeployId() string

func (*ServiceAppPod) GetDeployType

func (m *ServiceAppPod) GetDeployType() string

func (*ServiceAppPod) GetPodIp

func (m *ServiceAppPod) GetPodIp() string

func (*ServiceAppPod) GetPodName

func (m *ServiceAppPod) GetPodName() string

func (*ServiceAppPod) GetPodStatus

func (m *ServiceAppPod) GetPodStatus() string

func (*ServiceAppPod) GetPodVolumes

func (m *ServiceAppPod) GetPodVolumes() []string

func (*ServiceAppPod) GetServiceId

func (m *ServiceAppPod) GetServiceId() string

func (*ServiceAppPod) ProtoMessage

func (*ServiceAppPod) ProtoMessage()

func (*ServiceAppPod) Reset

func (m *ServiceAppPod) Reset()

func (*ServiceAppPod) String

func (m *ServiceAppPod) String() string

func (*ServiceAppPod) XXX_DiscardUnknown

func (m *ServiceAppPod) XXX_DiscardUnknown()

func (*ServiceAppPod) XXX_Marshal

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

func (*ServiceAppPod) XXX_Merge

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

func (*ServiceAppPod) XXX_Size

func (m *ServiceAppPod) XXX_Size() int

func (*ServiceAppPod) XXX_Unmarshal

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

type ServiceAppPodList

type ServiceAppPodList struct {
	OldPods              []*ServiceAppPod `protobuf:"bytes,1,rep,name=oldPods,proto3" json:"oldPods,omitempty"`
	NewPods              []*ServiceAppPod `protobuf:"bytes,2,rep,name=newPods,proto3" json:"newPods,omitempty"`
	XXX_NoUnkeyedLiteral struct{}         `json:"-"`
	XXX_unrecognized     []byte           `json:"-"`
	XXX_sizecache        int32            `json:"-"`
}

func (*ServiceAppPodList) Descriptor

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

func (*ServiceAppPodList) GetNewPods

func (m *ServiceAppPodList) GetNewPods() []*ServiceAppPod

func (*ServiceAppPodList) GetOldPods

func (m *ServiceAppPodList) GetOldPods() []*ServiceAppPod

func (*ServiceAppPodList) ProtoMessage

func (*ServiceAppPodList) ProtoMessage()

func (*ServiceAppPodList) Reset

func (m *ServiceAppPodList) Reset()

func (*ServiceAppPodList) String

func (m *ServiceAppPodList) String() string

func (*ServiceAppPodList) XXX_DiscardUnknown

func (m *ServiceAppPodList) XXX_DiscardUnknown()

func (*ServiceAppPodList) XXX_Marshal

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

func (*ServiceAppPodList) XXX_Merge

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

func (*ServiceAppPodList) XXX_Size

func (m *ServiceAppPodList) XXX_Size() int

func (*ServiceAppPodList) XXX_Unmarshal

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

type ServiceRequest

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

func (*ServiceRequest) Descriptor

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

func (*ServiceRequest) GetServiceId

func (m *ServiceRequest) GetServiceId() string

func (*ServiceRequest) ProtoMessage

func (*ServiceRequest) ProtoMessage()

func (*ServiceRequest) Reset

func (m *ServiceRequest) Reset()

func (*ServiceRequest) String

func (m *ServiceRequest) String() string

func (*ServiceRequest) XXX_DiscardUnknown

func (m *ServiceRequest) XXX_DiscardUnknown()

func (*ServiceRequest) XXX_Marshal

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

func (*ServiceRequest) XXX_Merge

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

func (*ServiceRequest) XXX_Size

func (m *ServiceRequest) XXX_Size() int

func (*ServiceRequest) XXX_Unmarshal

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

type ServiceVolumeStatus

type ServiceVolumeStatus int32
const (
	ServiceVolumeStatus_READY     ServiceVolumeStatus = 0
	ServiceVolumeStatus_NOT_READY ServiceVolumeStatus = 1
)

func (ServiceVolumeStatus) EnumDescriptor

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

func (ServiceVolumeStatus) String

func (x ServiceVolumeStatus) String() string

type ServiceVolumeStatusMessage

type ServiceVolumeStatusMessage struct {
	Status               map[string]ServiceVolumeStatus `` /* 182-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}                       `json:"-"`
	XXX_unrecognized     []byte                         `json:"-"`
	XXX_sizecache        int32                          `json:"-"`
}

func (*ServiceVolumeStatusMessage) Descriptor

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

func (*ServiceVolumeStatusMessage) GetStatus

func (*ServiceVolumeStatusMessage) ProtoMessage

func (*ServiceVolumeStatusMessage) ProtoMessage()

func (*ServiceVolumeStatusMessage) Reset

func (m *ServiceVolumeStatusMessage) Reset()

func (*ServiceVolumeStatusMessage) String

func (m *ServiceVolumeStatusMessage) String() string

func (*ServiceVolumeStatusMessage) XXX_DiscardUnknown

func (m *ServiceVolumeStatusMessage) XXX_DiscardUnknown()

func (*ServiceVolumeStatusMessage) XXX_Marshal

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

func (*ServiceVolumeStatusMessage) XXX_Merge

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

func (*ServiceVolumeStatusMessage) XXX_Size

func (m *ServiceVolumeStatusMessage) XXX_Size() int

func (*ServiceVolumeStatusMessage) XXX_Unmarshal

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

type ServicesRequest

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

func (*ServicesRequest) Descriptor

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

func (*ServicesRequest) GetServiceIds

func (m *ServicesRequest) GetServiceIds() string

func (*ServicesRequest) ProtoMessage

func (*ServicesRequest) ProtoMessage()

func (*ServicesRequest) Reset

func (m *ServicesRequest) Reset()

func (*ServicesRequest) String

func (m *ServicesRequest) String() string

func (*ServicesRequest) XXX_DiscardUnknown

func (m *ServicesRequest) XXX_DiscardUnknown()

func (*ServicesRequest) XXX_Marshal

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

func (*ServicesRequest) XXX_Merge

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

func (*ServicesRequest) XXX_Size

func (m *ServicesRequest) XXX_Size() int

func (*ServicesRequest) XXX_Unmarshal

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

type StatusMessage

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

func (*StatusMessage) Descriptor

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

func (*StatusMessage) GetStatus

func (m *StatusMessage) GetStatus() map[string]string

func (*StatusMessage) ProtoMessage

func (*StatusMessage) ProtoMessage()

func (*StatusMessage) Reset

func (m *StatusMessage) Reset()

func (*StatusMessage) String

func (m *StatusMessage) String() string

func (*StatusMessage) XXX_DiscardUnknown

func (m *StatusMessage) XXX_DiscardUnknown()

func (*StatusMessage) XXX_Marshal

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

func (*StatusMessage) XXX_Merge

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

func (*StatusMessage) XXX_Size

func (m *StatusMessage) XXX_Size() int

func (*StatusMessage) XXX_Unmarshal

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

type StorageClassDetail

type StorageClassDetail struct {
	Name                 string                  `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Provisioner          string                  `protobuf:"bytes,2,opt,name=provisioner,proto3" json:"provisioner,omitempty"`
	Parameters           map[string]string       `` /* 161-byte string literal not displayed */
	ReclaimPolicy        string                  `protobuf:"bytes,4,opt,name=reclaim_policy,json=reclaimPolicy,proto3" json:"reclaim_policy,omitempty"`
	AllowVolumeExpansion bool                    `protobuf:"varint,5,opt,name=allow_volume_expansion,json=allowVolumeExpansion,proto3" json:"allow_volume_expansion,omitempty"`
	VolumeBindingMode    string                  `protobuf:"bytes,6,opt,name=volume_binding_mode,json=volumeBindingMode,proto3" json:"volume_binding_mode,omitempty"`
	AllowedTopologies    []*TopologySelectorTerm `protobuf:"bytes,7,rep,name=allowed_topologies,json=allowedTopologies,proto3" json:"allowed_topologies,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                `json:"-"`
	XXX_unrecognized     []byte                  `json:"-"`
	XXX_sizecache        int32                   `json:"-"`
}

func (*StorageClassDetail) Descriptor

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

func (*StorageClassDetail) GetAllowVolumeExpansion

func (m *StorageClassDetail) GetAllowVolumeExpansion() bool

func (*StorageClassDetail) GetAllowedTopologies

func (m *StorageClassDetail) GetAllowedTopologies() []*TopologySelectorTerm

func (*StorageClassDetail) GetName

func (m *StorageClassDetail) GetName() string

func (*StorageClassDetail) GetParameters

func (m *StorageClassDetail) GetParameters() map[string]string

func (*StorageClassDetail) GetProvisioner

func (m *StorageClassDetail) GetProvisioner() string

func (*StorageClassDetail) GetReclaimPolicy

func (m *StorageClassDetail) GetReclaimPolicy() string

func (*StorageClassDetail) GetVolumeBindingMode

func (m *StorageClassDetail) GetVolumeBindingMode() string

func (*StorageClassDetail) ProtoMessage

func (*StorageClassDetail) ProtoMessage()

func (*StorageClassDetail) Reset

func (m *StorageClassDetail) Reset()

func (*StorageClassDetail) String

func (m *StorageClassDetail) String() string

func (*StorageClassDetail) XXX_DiscardUnknown

func (m *StorageClassDetail) XXX_DiscardUnknown()

func (*StorageClassDetail) XXX_Marshal

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

func (*StorageClassDetail) XXX_Merge

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

func (*StorageClassDetail) XXX_Size

func (m *StorageClassDetail) XXX_Size() int

func (*StorageClassDetail) XXX_Unmarshal

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

type StorageClasses

type StorageClasses struct {
	List                 []*StorageClassDetail `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
	XXX_NoUnkeyedLiteral struct{}              `json:"-"`
	XXX_unrecognized     []byte                `json:"-"`
	XXX_sizecache        int32                 `json:"-"`
}

func (*StorageClasses) Descriptor

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

func (*StorageClasses) GetList

func (m *StorageClasses) GetList() []*StorageClassDetail

func (*StorageClasses) ProtoMessage

func (*StorageClasses) ProtoMessage()

func (*StorageClasses) Reset

func (m *StorageClasses) Reset()

func (*StorageClasses) String

func (m *StorageClasses) String() string

func (*StorageClasses) XXX_DiscardUnknown

func (m *StorageClasses) XXX_DiscardUnknown()

func (*StorageClasses) XXX_Marshal

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

func (*StorageClasses) XXX_Merge

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

func (*StorageClasses) XXX_Size

func (m *StorageClasses) XXX_Size() int

func (*StorageClasses) XXX_Unmarshal

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

type TenantRequest

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

func (*TenantRequest) Descriptor

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

func (*TenantRequest) GetTenantId

func (m *TenantRequest) GetTenantId() string

func (*TenantRequest) ProtoMessage

func (*TenantRequest) ProtoMessage()

func (*TenantRequest) Reset

func (m *TenantRequest) Reset()

func (*TenantRequest) String

func (m *TenantRequest) String() string

func (*TenantRequest) XXX_DiscardUnknown

func (m *TenantRequest) XXX_DiscardUnknown()

func (*TenantRequest) XXX_Marshal

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

func (*TenantRequest) XXX_Merge

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

func (*TenantRequest) XXX_Size

func (m *TenantRequest) XXX_Size() int

func (*TenantRequest) XXX_Unmarshal

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

type TenantResource

type TenantResource struct {
	CpuRequest            int64    `protobuf:"varint,1,opt,name=cpu_request,json=cpuRequest,proto3" json:"cpu_request,omitempty"`
	CpuLimit              int64    `protobuf:"varint,2,opt,name=cpu_limit,json=cpuLimit,proto3" json:"cpu_limit,omitempty"`
	MemoryRequest         int64    `protobuf:"varint,3,opt,name=memory_request,json=memoryRequest,proto3" json:"memory_request,omitempty"`
	MemoryLimit           int64    `protobuf:"varint,4,opt,name=memory_limit,json=memoryLimit,proto3" json:"memory_limit,omitempty"`
	RunningAppNum         int64    `protobuf:"varint,5,opt,name=running_app_num,json=runningAppNum,proto3" json:"running_app_num,omitempty"`
	UnscdCpuReq           int64    `protobuf:"varint,6,opt,name=unscd_cpu_req,json=unscdCpuReq,proto3" json:"unscd_cpu_req,omitempty"`
	UnscdCpuLimit         int64    `protobuf:"varint,7,opt,name=unscd_cpu_limit,json=unscdCpuLimit,proto3" json:"unscd_cpu_limit,omitempty"`
	UnscdMemoryReq        int64    `protobuf:"varint,8,opt,name=unscd_memory_req,json=unscdMemoryReq,proto3" json:"unscd_memory_req,omitempty"`
	UnscdMemoryLimit      int64    `protobuf:"varint,9,opt,name=unscd_memory_limit,json=unscdMemoryLimit,proto3" json:"unscd_memory_limit,omitempty"`
	RunningAppThirdNum    int64    `protobuf:"varint,10,opt,name=running_app_third_num,json=runningAppThirdNum,proto3" json:"running_app_third_num,omitempty"`
	RunningAppInternalNum int64    `` /* 130-byte string literal not displayed */
	XXX_NoUnkeyedLiteral  struct{} `json:"-"`
	XXX_unrecognized      []byte   `json:"-"`
	XXX_sizecache         int32    `json:"-"`
}

func (*TenantResource) Descriptor

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

func (*TenantResource) GetCpuLimit

func (m *TenantResource) GetCpuLimit() int64

func (*TenantResource) GetCpuRequest

func (m *TenantResource) GetCpuRequest() int64

func (*TenantResource) GetMemoryLimit

func (m *TenantResource) GetMemoryLimit() int64

func (*TenantResource) GetMemoryRequest

func (m *TenantResource) GetMemoryRequest() int64

func (*TenantResource) GetRunningAppInternalNum

func (m *TenantResource) GetRunningAppInternalNum() int64

func (*TenantResource) GetRunningAppNum

func (m *TenantResource) GetRunningAppNum() int64

func (*TenantResource) GetRunningAppThirdNum

func (m *TenantResource) GetRunningAppThirdNum() int64

func (*TenantResource) GetUnscdCpuLimit

func (m *TenantResource) GetUnscdCpuLimit() int64

func (*TenantResource) GetUnscdCpuReq

func (m *TenantResource) GetUnscdCpuReq() int64

func (*TenantResource) GetUnscdMemoryLimit

func (m *TenantResource) GetUnscdMemoryLimit() int64

func (*TenantResource) GetUnscdMemoryReq

func (m *TenantResource) GetUnscdMemoryReq() int64

func (*TenantResource) ProtoMessage

func (*TenantResource) ProtoMessage()

func (*TenantResource) Reset

func (m *TenantResource) Reset()

func (*TenantResource) String

func (m *TenantResource) String() string

func (*TenantResource) XXX_DiscardUnknown

func (m *TenantResource) XXX_DiscardUnknown()

func (*TenantResource) XXX_Marshal

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

func (*TenantResource) XXX_Merge

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

func (*TenantResource) XXX_Size

func (m *TenantResource) XXX_Size() int

func (*TenantResource) XXX_Unmarshal

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

type ThirdPartyEndpoint

type ThirdPartyEndpoint struct {
	Uuid                 string   `protobuf:"bytes,1,opt,name=uuid,proto3" json:"uuid,omitempty"`
	Sid                  string   `protobuf:"bytes,2,opt,name=sid,proto3" json:"sid,omitempty"`
	Ip                   string   `protobuf:"bytes,3,opt,name=ip,proto3" json:"ip,omitempty"`
	Port                 int32    `protobuf:"varint,4,opt,name=port,proto3" json:"port,omitempty"`
	Status               string   `protobuf:"bytes,5,opt,name=status,proto3" json:"status,omitempty"`
	IsOnline             bool     `protobuf:"varint,6,opt,name=is_online,json=isOnline,proto3" json:"is_online,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ThirdPartyEndpoint) Descriptor

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

func (*ThirdPartyEndpoint) GetIp

func (m *ThirdPartyEndpoint) GetIp() string

func (*ThirdPartyEndpoint) GetIsOnline

func (m *ThirdPartyEndpoint) GetIsOnline() bool

func (*ThirdPartyEndpoint) GetPort

func (m *ThirdPartyEndpoint) GetPort() int32

func (*ThirdPartyEndpoint) GetSid

func (m *ThirdPartyEndpoint) GetSid() string

func (*ThirdPartyEndpoint) GetStatus

func (m *ThirdPartyEndpoint) GetStatus() string

func (*ThirdPartyEndpoint) GetUuid

func (m *ThirdPartyEndpoint) GetUuid() string

func (*ThirdPartyEndpoint) ProtoMessage

func (*ThirdPartyEndpoint) ProtoMessage()

func (*ThirdPartyEndpoint) Reset

func (m *ThirdPartyEndpoint) Reset()

func (*ThirdPartyEndpoint) String

func (m *ThirdPartyEndpoint) String() string

func (*ThirdPartyEndpoint) XXX_DiscardUnknown

func (m *ThirdPartyEndpoint) XXX_DiscardUnknown()

func (*ThirdPartyEndpoint) XXX_Marshal

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

func (*ThirdPartyEndpoint) XXX_Merge

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

func (*ThirdPartyEndpoint) XXX_Size

func (m *ThirdPartyEndpoint) XXX_Size() int

func (*ThirdPartyEndpoint) XXX_Unmarshal

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

type ThirdPartyEndpoints

type ThirdPartyEndpoints struct {
	Obj                  []*ThirdPartyEndpoint `protobuf:"bytes,1,rep,name=obj,proto3" json:"obj,omitempty"`
	XXX_NoUnkeyedLiteral struct{}              `json:"-"`
	XXX_unrecognized     []byte                `json:"-"`
	XXX_sizecache        int32                 `json:"-"`
}

func (*ThirdPartyEndpoints) Descriptor

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

func (*ThirdPartyEndpoints) GetObj

func (m *ThirdPartyEndpoints) GetObj() []*ThirdPartyEndpoint

func (*ThirdPartyEndpoints) ProtoMessage

func (*ThirdPartyEndpoints) ProtoMessage()

func (*ThirdPartyEndpoints) Reset

func (m *ThirdPartyEndpoints) Reset()

func (*ThirdPartyEndpoints) String

func (m *ThirdPartyEndpoints) String() string

func (*ThirdPartyEndpoints) XXX_DiscardUnknown

func (m *ThirdPartyEndpoints) XXX_DiscardUnknown()

func (*ThirdPartyEndpoints) XXX_Marshal

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

func (*ThirdPartyEndpoints) XXX_Merge

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

func (*ThirdPartyEndpoints) XXX_Size

func (m *ThirdPartyEndpoints) XXX_Size() int

func (*ThirdPartyEndpoints) XXX_Unmarshal

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

type TopologySelectorLabelRequirement

type TopologySelectorLabelRequirement struct {
	Key                  string   `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	Values               []string `protobuf:"bytes,2,rep,name=values,proto3" json:"values,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*TopologySelectorLabelRequirement) Descriptor

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

func (*TopologySelectorLabelRequirement) GetKey

func (*TopologySelectorLabelRequirement) GetValues

func (m *TopologySelectorLabelRequirement) GetValues() []string

func (*TopologySelectorLabelRequirement) ProtoMessage

func (*TopologySelectorLabelRequirement) ProtoMessage()

func (*TopologySelectorLabelRequirement) Reset

func (*TopologySelectorLabelRequirement) String

func (*TopologySelectorLabelRequirement) XXX_DiscardUnknown

func (m *TopologySelectorLabelRequirement) XXX_DiscardUnknown()

func (*TopologySelectorLabelRequirement) XXX_Marshal

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

func (*TopologySelectorLabelRequirement) XXX_Merge

func (*TopologySelectorLabelRequirement) XXX_Size

func (m *TopologySelectorLabelRequirement) XXX_Size() int

func (*TopologySelectorLabelRequirement) XXX_Unmarshal

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

type TopologySelectorTerm

type TopologySelectorTerm struct {
	MatchLabelExpressions []*TopologySelectorLabelRequirement `` /* 126-byte string literal not displayed */
	XXX_NoUnkeyedLiteral  struct{}                            `json:"-"`
	XXX_unrecognized      []byte                              `json:"-"`
	XXX_sizecache         int32                               `json:"-"`
}

func (*TopologySelectorTerm) Descriptor

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

func (*TopologySelectorTerm) GetMatchLabelExpressions

func (m *TopologySelectorTerm) GetMatchLabelExpressions() []*TopologySelectorLabelRequirement

func (*TopologySelectorTerm) ProtoMessage

func (*TopologySelectorTerm) ProtoMessage()

func (*TopologySelectorTerm) Reset

func (m *TopologySelectorTerm) Reset()

func (*TopologySelectorTerm) String

func (m *TopologySelectorTerm) String() string

func (*TopologySelectorTerm) XXX_DiscardUnknown

func (m *TopologySelectorTerm) XXX_DiscardUnknown()

func (*TopologySelectorTerm) XXX_Marshal

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

func (*TopologySelectorTerm) XXX_Merge

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

func (*TopologySelectorTerm) XXX_Size

func (m *TopologySelectorTerm) XXX_Size() int

func (*TopologySelectorTerm) XXX_Unmarshal

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

type UpdThirdPartyEndpointsReq

type UpdThirdPartyEndpointsReq struct {
	Uuid                 string   `protobuf:"bytes,1,opt,name=uuid,proto3" json:"uuid,omitempty"`
	Sid                  string   `protobuf:"bytes,2,opt,name=sid,proto3" json:"sid,omitempty"`
	Ip                   string   `protobuf:"bytes,3,opt,name=ip,proto3" json:"ip,omitempty"`
	Port                 int32    `protobuf:"varint,4,opt,name=port,proto3" json:"port,omitempty"`
	IsOnline             bool     `protobuf:"varint,5,opt,name=is_online,json=isOnline,proto3" json:"is_online,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*UpdThirdPartyEndpointsReq) Descriptor

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

func (*UpdThirdPartyEndpointsReq) GetIp

func (m *UpdThirdPartyEndpointsReq) GetIp() string

func (*UpdThirdPartyEndpointsReq) GetIsOnline

func (m *UpdThirdPartyEndpointsReq) GetIsOnline() bool

func (*UpdThirdPartyEndpointsReq) GetPort

func (m *UpdThirdPartyEndpointsReq) GetPort() int32

func (*UpdThirdPartyEndpointsReq) GetSid

func (m *UpdThirdPartyEndpointsReq) GetSid() string

func (*UpdThirdPartyEndpointsReq) GetUuid

func (m *UpdThirdPartyEndpointsReq) GetUuid() string

func (*UpdThirdPartyEndpointsReq) ProtoMessage

func (*UpdThirdPartyEndpointsReq) ProtoMessage()

func (*UpdThirdPartyEndpointsReq) Reset

func (m *UpdThirdPartyEndpointsReq) Reset()

func (*UpdThirdPartyEndpointsReq) String

func (m *UpdThirdPartyEndpointsReq) String() string

func (*UpdThirdPartyEndpointsReq) XXX_DiscardUnknown

func (m *UpdThirdPartyEndpointsReq) XXX_DiscardUnknown()

func (*UpdThirdPartyEndpointsReq) XXX_Marshal

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

func (*UpdThirdPartyEndpointsReq) XXX_Merge

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

func (*UpdThirdPartyEndpointsReq) XXX_Size

func (m *UpdThirdPartyEndpointsReq) XXX_Size() int

func (*UpdThirdPartyEndpointsReq) XXX_Unmarshal

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

Jump to

Keyboard shortcuts

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