pb

package
v1.12.0 Latest Latest
Warning

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

Go to latest
Published: Apr 17, 2024 License: LGPL-3.0 Imports: 8 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	ServiceVolumeStatus_name = map[int32]string{
		0: "READY",
		1: "NOT_READY",
	}
	ServiceVolumeStatus_value = map[string]int32{
		"READY":     0,
		"NOT_READY": 1,
	}
)

Enum value maps for ServiceVolumeStatus.

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",
	}
	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,
	}
)

Enum value maps for PodStatus_Type.

View Source
var (
	AppStatus_Status_name = map[int32]string{
		0: "NIL",
		1: "RUNNING",
		2: "CLOSED",
		3: "ABNORMAL",
		4: "STARTING",
		5: "STOPPING",
	}
	AppStatus_Status_value = map[string]int32{
		"NIL":      0,
		"RUNNING":  1,
		"CLOSED":   2,
		"ABNORMAL": 3,
		"STARTING": 4,
		"STOPPING": 5,
	}
)

Enum value maps for AppStatus_Status.

View Source
var File_worker_server_pb_app_runtime_server_proto protoreflect.FileDescriptor

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"`
	// contains filtered or unexported fields
}

func (*AddThirdPartyEndpointsReq) Descriptor deprecated

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

Deprecated: Use AddThirdPartyEndpointsReq.ProtoReflect.Descriptor instead.

func (*AddThirdPartyEndpointsReq) GetIp

func (x *AddThirdPartyEndpointsReq) GetIp() string

func (*AddThirdPartyEndpointsReq) GetIsOnline

func (x *AddThirdPartyEndpointsReq) GetIsOnline() bool

func (*AddThirdPartyEndpointsReq) GetPort

func (x *AddThirdPartyEndpointsReq) GetPort() int32

func (*AddThirdPartyEndpointsReq) GetSid

func (x *AddThirdPartyEndpointsReq) GetSid() string

func (*AddThirdPartyEndpointsReq) GetUuid

func (x *AddThirdPartyEndpointsReq) GetUuid() string

func (*AddThirdPartyEndpointsReq) ProtoMessage

func (*AddThirdPartyEndpointsReq) ProtoMessage()

func (*AddThirdPartyEndpointsReq) ProtoReflect

func (*AddThirdPartyEndpointsReq) Reset

func (x *AddThirdPartyEndpointsReq) Reset()

func (*AddThirdPartyEndpointsReq) String

func (x *AddThirdPartyEndpointsReq) String() string

type AppReq

type AppReq struct {
	AppId string `protobuf:"bytes,1,opt,name=app_id,json=appId,proto3" json:"app_id,omitempty"`
	// contains filtered or unexported fields
}

func (*AppReq) Descriptor deprecated

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

Deprecated: Use AppReq.ProtoReflect.Descriptor instead.

func (*AppReq) GetAppId

func (x *AppReq) GetAppId() string

func (*AppReq) ProtoMessage

func (*AppReq) ProtoMessage()

func (*AppReq) ProtoReflect

func (x *AppReq) ProtoReflect() protoreflect.Message

func (*AppReq) Reset

func (x *AppReq) Reset()

func (*AppReq) String

func (x *AppReq) String() string

type AppRuntimeSyncClient

type AppRuntimeSyncClient interface {
	// Deprecated: -
	GetAppStatusDeprecated(ctx context.Context, in *ServicesRequest, opts ...grpc.CallOption) (*StatusMessage, error)
	GetAppStatus(ctx context.Context, in *AppStatusReq, opts ...grpc.CallOption) (*AppStatus, error)
	GetAppPods(ctx context.Context, in *ServiceRequest, opts ...grpc.CallOption) (*ServiceAppPodList, error)
	GetMultiAppPods(ctx context.Context, in *ServicesRequest, opts ...grpc.CallOption) (*MultiServiceAppPodList, error)
	GetComponentPodNums(ctx context.Context, in *ServicesRequest, opts ...grpc.CallOption) (*ComponentPodNums, error)
	GetDeployInfo(ctx context.Context, in *ServiceRequest, opts ...grpc.CallOption) (*DeployInfo, error)
	GetTenantEnvResource(ctx context.Context, in *TenantEnvRequest, opts ...grpc.CallOption) (*TenantEnvResource, error)
	GetTenantEnvResources(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*TenantEnvResourceList, 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)
	ListAppServices(ctx context.Context, in *AppReq, opts ...grpc.CallOption) (*AppServices, error)
	ListHelmAppRelease(ctx context.Context, in *AppReq, opts ...grpc.CallOption) (*HelmAppReleases, error)
	ListAppStatuses(ctx context.Context, in *AppStatusesReq, opts ...grpc.CallOption) (*AppStatuses, 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.

type AppRuntimeSyncServer

type AppRuntimeSyncServer interface {
	// Deprecated: -
	GetAppStatusDeprecated(context.Context, *ServicesRequest) (*StatusMessage, error)
	GetAppStatus(context.Context, *AppStatusReq) (*AppStatus, error)
	GetAppPods(context.Context, *ServiceRequest) (*ServiceAppPodList, error)
	GetMultiAppPods(context.Context, *ServicesRequest) (*MultiServiceAppPodList, error)
	GetComponentPodNums(context.Context, *ServicesRequest) (*ComponentPodNums, error)
	GetDeployInfo(context.Context, *ServiceRequest) (*DeployInfo, error)
	GetTenantEnvResource(context.Context, *TenantEnvRequest) (*TenantEnvResource, error)
	GetTenantEnvResources(context.Context, *Empty) (*TenantEnvResourceList, 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)
	ListAppServices(context.Context, *AppReq) (*AppServices, error)
	ListHelmAppRelease(context.Context, *AppReq) (*HelmAppReleases, error)
	ListAppStatuses(context.Context, *AppStatusesReq) (*AppStatuses, error)
}

AppRuntimeSyncServer is the server API for AppRuntimeSync service.

type AppService

type AppService struct {
	Name    string             `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Address string             `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"`
	Ports   []*AppService_Port `protobuf:"bytes,3,rep,name=ports,proto3" json:"ports,omitempty"`
	Pods    []*AppService_Pod  `protobuf:"bytes,4,rep,name=pods,proto3" json:"pods,omitempty"`
	OldPods []*AppService_Pod  `protobuf:"bytes,5,rep,name=oldPods,proto3" json:"oldPods,omitempty"`
	// contains filtered or unexported fields
}

func (*AppService) Descriptor deprecated

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

Deprecated: Use AppService.ProtoReflect.Descriptor instead.

func (*AppService) GetAddress

func (x *AppService) GetAddress() string

func (*AppService) GetName

func (x *AppService) GetName() string

func (*AppService) GetOldPods

func (x *AppService) GetOldPods() []*AppService_Pod

func (*AppService) GetPods

func (x *AppService) GetPods() []*AppService_Pod

func (*AppService) GetPorts

func (x *AppService) GetPorts() []*AppService_Port

func (*AppService) ProtoMessage

func (*AppService) ProtoMessage()

func (*AppService) ProtoReflect

func (x *AppService) ProtoReflect() protoreflect.Message

func (*AppService) Reset

func (x *AppService) Reset()

func (*AppService) String

func (x *AppService) String() string

type AppService_Pod

type AppService_Pod struct {
	Name   string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Status string `protobuf:"bytes,2,opt,name=status,proto3" json:"status,omitempty"`
	// contains filtered or unexported fields
}

func (*AppService_Pod) Descriptor deprecated

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

Deprecated: Use AppService_Pod.ProtoReflect.Descriptor instead.

func (*AppService_Pod) GetName

func (x *AppService_Pod) GetName() string

func (*AppService_Pod) GetStatus

func (x *AppService_Pod) GetStatus() string

func (*AppService_Pod) ProtoMessage

func (*AppService_Pod) ProtoMessage()

func (*AppService_Pod) ProtoReflect

func (x *AppService_Pod) ProtoReflect() protoreflect.Message

func (*AppService_Pod) Reset

func (x *AppService_Pod) Reset()

func (*AppService_Pod) String

func (x *AppService_Pod) String() string

type AppService_Port

type AppService_Port struct {
	Port     int32  `protobuf:"varint,1,opt,name=port,proto3" json:"port,omitempty"`
	Protocol string `protobuf:"bytes,2,opt,name=protocol,proto3" json:"protocol,omitempty"`
	// contains filtered or unexported fields
}

func (*AppService_Port) Descriptor deprecated

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

Deprecated: Use AppService_Port.ProtoReflect.Descriptor instead.

func (*AppService_Port) GetPort

func (x *AppService_Port) GetPort() int32

func (*AppService_Port) GetProtocol

func (x *AppService_Port) GetProtocol() string

func (*AppService_Port) ProtoMessage

func (*AppService_Port) ProtoMessage()

func (*AppService_Port) ProtoReflect

func (x *AppService_Port) ProtoReflect() protoreflect.Message

func (*AppService_Port) Reset

func (x *AppService_Port) Reset()

func (*AppService_Port) String

func (x *AppService_Port) String() string

type AppServices

type AppServices struct {
	Services []*AppService `protobuf:"bytes,1,rep,name=services,proto3" json:"services,omitempty"`
	// contains filtered or unexported fields
}

func (*AppServices) Descriptor deprecated

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

Deprecated: Use AppServices.ProtoReflect.Descriptor instead.

func (*AppServices) GetServices

func (x *AppServices) GetServices() []*AppService

func (*AppServices) ProtoMessage

func (*AppServices) ProtoMessage()

func (*AppServices) ProtoReflect

func (x *AppServices) ProtoReflect() protoreflect.Message

func (*AppServices) Reset

func (x *AppServices) Reset()

func (*AppServices) String

func (x *AppServices) String() string

type AppStatus

type AppStatus struct {
	Status     string                `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	Cpu        int64                 `protobuf:"varint,2,opt,name=cpu,proto3" json:"cpu,omitempty"`
	Memory     int64                 `protobuf:"varint,3,opt,name=memory,proto3" json:"memory,omitempty"`
	SetCPU     bool                  `protobuf:"varint,4,opt,name=setCPU,proto3" json:"setCPU,omitempty"`
	SetMemory  bool                  `protobuf:"varint,5,opt,name=setMemory,proto3" json:"setMemory,omitempty"`
	Phase      string                `protobuf:"bytes,6,opt,name=phase,proto3" json:"phase,omitempty"`
	Overrides  []string              `protobuf:"bytes,7,rep,name=overrides,proto3" json:"overrides,omitempty"`
	Version    string                `protobuf:"bytes,8,opt,name=version,proto3" json:"version,omitempty"`
	Conditions []*AppStatusCondition `protobuf:"bytes,9,rep,name=conditions,proto3" json:"conditions,omitempty"`
	Gpu        int64                 `protobuf:"varint,10,opt,name=gpu,proto3" json:"gpu,omitempty"`
	AppId      string                `protobuf:"bytes,11,opt,name=app_id,json=appId,proto3" json:"app_id,omitempty"`
	AppName    string                `protobuf:"bytes,12,opt,name=app_name,json=appName,proto3" json:"app_name,omitempty"`
	// contains filtered or unexported fields
}

func (*AppStatus) Descriptor deprecated

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

Deprecated: Use AppStatus.ProtoReflect.Descriptor instead.

func (*AppStatus) GetAppId

func (x *AppStatus) GetAppId() string

func (*AppStatus) GetAppName

func (x *AppStatus) GetAppName() string

func (*AppStatus) GetConditions

func (x *AppStatus) GetConditions() []*AppStatusCondition

func (*AppStatus) GetCpu

func (x *AppStatus) GetCpu() int64

func (*AppStatus) GetGpu

func (x *AppStatus) GetGpu() int64

func (*AppStatus) GetMemory

func (x *AppStatus) GetMemory() int64

func (*AppStatus) GetOverrides

func (x *AppStatus) GetOverrides() []string

func (*AppStatus) GetPhase

func (x *AppStatus) GetPhase() string

func (*AppStatus) GetSetCPU

func (x *AppStatus) GetSetCPU() bool

func (*AppStatus) GetSetMemory

func (x *AppStatus) GetSetMemory() bool

func (*AppStatus) GetStatus

func (x *AppStatus) GetStatus() string

func (*AppStatus) GetVersion

func (x *AppStatus) GetVersion() string

func (*AppStatus) ProtoMessage

func (*AppStatus) ProtoMessage()

func (*AppStatus) ProtoReflect

func (x *AppStatus) ProtoReflect() protoreflect.Message

func (*AppStatus) Reset

func (x *AppStatus) Reset()

func (*AppStatus) String

func (x *AppStatus) String() string

type AppStatusCondition

type AppStatusCondition struct {
	Type    string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"`
	Status  bool   `protobuf:"varint,2,opt,name=status,proto3" json:"status,omitempty"`
	Reason  string `protobuf:"bytes,3,opt,name=reason,proto3" json:"reason,omitempty"`
	Message string `protobuf:"bytes,4,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*AppStatusCondition) Descriptor deprecated

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

Deprecated: Use AppStatusCondition.ProtoReflect.Descriptor instead.

func (*AppStatusCondition) GetMessage

func (x *AppStatusCondition) GetMessage() string

func (*AppStatusCondition) GetReason

func (x *AppStatusCondition) GetReason() string

func (*AppStatusCondition) GetStatus

func (x *AppStatusCondition) GetStatus() bool

func (*AppStatusCondition) GetType

func (x *AppStatusCondition) GetType() string

func (*AppStatusCondition) ProtoMessage

func (*AppStatusCondition) ProtoMessage()

func (*AppStatusCondition) ProtoReflect

func (x *AppStatusCondition) ProtoReflect() protoreflect.Message

func (*AppStatusCondition) Reset

func (x *AppStatusCondition) Reset()

func (*AppStatusCondition) String

func (x *AppStatusCondition) String() string

type AppStatusReq

type AppStatusReq struct {
	AppId string `protobuf:"bytes,1,opt,name=app_id,json=appId,proto3" json:"app_id,omitempty"`
	// contains filtered or unexported fields
}

func (*AppStatusReq) Descriptor deprecated

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

Deprecated: Use AppStatusReq.ProtoReflect.Descriptor instead.

func (*AppStatusReq) GetAppId

func (x *AppStatusReq) GetAppId() string

func (*AppStatusReq) ProtoMessage

func (*AppStatusReq) ProtoMessage()

func (*AppStatusReq) ProtoReflect

func (x *AppStatusReq) ProtoReflect() protoreflect.Message

func (*AppStatusReq) Reset

func (x *AppStatusReq) Reset()

func (*AppStatusReq) String

func (x *AppStatusReq) String() string

type AppStatus_Status

type AppStatus_Status int32
const (
	AppStatus_NIL      AppStatus_Status = 0
	AppStatus_RUNNING  AppStatus_Status = 1
	AppStatus_CLOSED   AppStatus_Status = 2
	AppStatus_ABNORMAL AppStatus_Status = 3
	AppStatus_STARTING AppStatus_Status = 4
	AppStatus_STOPPING AppStatus_Status = 5
)

func (AppStatus_Status) Descriptor

func (AppStatus_Status) Enum

func (AppStatus_Status) EnumDescriptor deprecated

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

Deprecated: Use AppStatus_Status.Descriptor instead.

func (AppStatus_Status) Number

func (AppStatus_Status) String

func (x AppStatus_Status) String() string

func (AppStatus_Status) Type

type AppStatuses

type AppStatuses struct {
	AppStatuses []*AppStatus `protobuf:"bytes,1,rep,name=app_statuses,json=appStatuses,proto3" json:"app_statuses,omitempty"`
	// contains filtered or unexported fields
}

func (*AppStatuses) Descriptor deprecated

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

Deprecated: Use AppStatuses.ProtoReflect.Descriptor instead.

func (*AppStatuses) GetAppStatuses

func (x *AppStatuses) GetAppStatuses() []*AppStatus

func (*AppStatuses) ProtoMessage

func (*AppStatuses) ProtoMessage()

func (*AppStatuses) ProtoReflect

func (x *AppStatuses) ProtoReflect() protoreflect.Message

func (*AppStatuses) Reset

func (x *AppStatuses) Reset()

func (*AppStatuses) String

func (x *AppStatuses) String() string

type AppStatusesReq

type AppStatusesReq struct {
	AppIds []string `protobuf:"bytes,1,rep,name=app_ids,json=appIds,proto3" json:"app_ids,omitempty"`
	// contains filtered or unexported fields
}

func (*AppStatusesReq) Descriptor deprecated

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

Deprecated: Use AppStatusesReq.ProtoReflect.Descriptor instead.

func (*AppStatusesReq) GetAppIds

func (x *AppStatusesReq) GetAppIds() []string

func (*AppStatusesReq) ProtoMessage

func (*AppStatusesReq) ProtoMessage()

func (*AppStatusesReq) ProtoReflect

func (x *AppStatusesReq) ProtoReflect() protoreflect.Message

func (*AppStatusesReq) Reset

func (x *AppStatusesReq) Reset()

func (*AppStatusesReq) String

func (x *AppStatusesReq) String() string

type ComponentPodNums

type ComponentPodNums struct {
	PodNums map[string]int32 `` /* 156-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*ComponentPodNums) Descriptor deprecated

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

Deprecated: Use ComponentPodNums.ProtoReflect.Descriptor instead.

func (*ComponentPodNums) GetPodNums

func (x *ComponentPodNums) GetPodNums() map[string]int32

func (*ComponentPodNums) ProtoMessage

func (*ComponentPodNums) ProtoMessage()

func (*ComponentPodNums) ProtoReflect

func (x *ComponentPodNums) ProtoReflect() protoreflect.Message

func (*ComponentPodNums) Reset

func (x *ComponentPodNums) Reset()

func (*ComponentPodNums) String

func (x *ComponentPodNums) String() string

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"`
	CpuRequest    int64  `protobuf:"varint,3,opt,name=cpu_request,json=cpuRequest,proto3" json:"cpu_request,omitempty"`
	MemoryRequest int64  `protobuf:"varint,4,opt,name=memory_request,json=memoryRequest,proto3" json:"memory_request,omitempty"`
	// contains filtered or unexported fields
}

func (*Container) Descriptor deprecated

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

Deprecated: Use Container.ProtoReflect.Descriptor instead.

func (*Container) GetContainerName

func (x *Container) GetContainerName() string

func (*Container) GetCpuRequest

func (x *Container) GetCpuRequest() int64

func (*Container) GetMemoryLimit

func (x *Container) GetMemoryLimit() int64

func (*Container) GetMemoryRequest

func (x *Container) GetMemoryRequest() int64

func (*Container) ProtoMessage

func (*Container) ProtoMessage()

func (*Container) ProtoReflect

func (x *Container) ProtoReflect() protoreflect.Message

func (*Container) Reset

func (x *Container) Reset()

func (*Container) String

func (x *Container) String() string

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"`
	// contains filtered or unexported fields
}

func (*DelThirdPartyEndpointsReq) Descriptor deprecated

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

Deprecated: Use DelThirdPartyEndpointsReq.ProtoReflect.Descriptor instead.

func (*DelThirdPartyEndpointsReq) GetIp

func (x *DelThirdPartyEndpointsReq) GetIp() string

func (*DelThirdPartyEndpointsReq) GetPort

func (x *DelThirdPartyEndpointsReq) GetPort() int32

func (*DelThirdPartyEndpointsReq) GetSid

func (x *DelThirdPartyEndpointsReq) GetSid() string

func (*DelThirdPartyEndpointsReq) GetUuid

func (x *DelThirdPartyEndpointsReq) GetUuid() string

func (*DelThirdPartyEndpointsReq) ProtoMessage

func (*DelThirdPartyEndpointsReq) ProtoMessage()

func (*DelThirdPartyEndpointsReq) ProtoReflect

func (*DelThirdPartyEndpointsReq) Reset

func (x *DelThirdPartyEndpointsReq) Reset()

func (*DelThirdPartyEndpointsReq) String

func (x *DelThirdPartyEndpointsReq) String() string

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"`
	// contains filtered or unexported fields
}

func (*DeployInfo) Descriptor deprecated

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

Deprecated: Use DeployInfo.ProtoReflect.Descriptor instead.

func (*DeployInfo) GetDeployment

func (x *DeployInfo) GetDeployment() string

func (*DeployInfo) GetEndpoints

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

func (*DeployInfo) GetIngresses

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

func (*DeployInfo) GetNamespace

func (x *DeployInfo) GetNamespace() string

func (*DeployInfo) GetPods

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

func (*DeployInfo) GetReplicatset

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

func (*DeployInfo) GetSecrets

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

func (*DeployInfo) GetServices

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

func (*DeployInfo) GetStartTime

func (x *DeployInfo) GetStartTime() string

func (*DeployInfo) GetStatefuleset

func (x *DeployInfo) GetStatefuleset() string

func (*DeployInfo) GetStatus

func (x *DeployInfo) GetStatus() string

func (*DeployInfo) ProtoMessage

func (*DeployInfo) ProtoMessage()

func (*DeployInfo) ProtoReflect

func (x *DeployInfo) ProtoReflect() protoreflect.Message

func (*DeployInfo) Reset

func (x *DeployInfo) Reset()

func (*DeployInfo) String

func (x *DeployInfo) String() string

type DiskMessage

type DiskMessage struct {
	Disks map[string]float64 `` /* 153-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*DiskMessage) Descriptor deprecated

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

Deprecated: Use DiskMessage.ProtoReflect.Descriptor instead.

func (*DiskMessage) GetDisks

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

func (*DiskMessage) ProtoMessage

func (*DiskMessage) ProtoMessage()

func (*DiskMessage) ProtoReflect

func (x *DiskMessage) ProtoReflect() protoreflect.Message

func (*DiskMessage) Reset

func (x *DiskMessage) Reset()

func (*DiskMessage) String

func (x *DiskMessage) String() string

type Empty

type Empty struct {
	// contains filtered or unexported fields
}

func (*Empty) Descriptor deprecated

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

Deprecated: Use Empty.ProtoReflect.Descriptor instead.

func (*Empty) ProtoMessage

func (*Empty) ProtoMessage()

func (*Empty) ProtoReflect

func (x *Empty) ProtoReflect() protoreflect.Message

func (*Empty) Reset

func (x *Empty) Reset()

func (*Empty) String

func (x *Empty) String() string

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"`
	// contains filtered or unexported fields
}

func (*GetPodDetailReq) Descriptor deprecated

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

Deprecated: Use GetPodDetailReq.ProtoReflect.Descriptor instead.

func (*GetPodDetailReq) GetPodName

func (x *GetPodDetailReq) GetPodName() string

func (*GetPodDetailReq) GetSid

func (x *GetPodDetailReq) GetSid() string

func (*GetPodDetailReq) ProtoMessage

func (*GetPodDetailReq) ProtoMessage()

func (*GetPodDetailReq) ProtoReflect

func (x *GetPodDetailReq) ProtoReflect() protoreflect.Message

func (*GetPodDetailReq) Reset

func (x *GetPodDetailReq) Reset()

func (*GetPodDetailReq) String

func (x *GetPodDetailReq) String() string

type HelmAppRelease

type HelmAppRelease struct {
	Revision    int32  `protobuf:"varint,1,opt,name=revision,proto3" json:"revision,omitempty"`
	Updated     string `protobuf:"bytes,2,opt,name=updated,proto3" json:"updated,omitempty"`
	Status      string `protobuf:"bytes,3,opt,name=status,proto3" json:"status,omitempty"`
	Chart       string `protobuf:"bytes,4,opt,name=chart,proto3" json:"chart,omitempty"`
	AppVersion  string `protobuf:"bytes,5,opt,name=appVersion,proto3" json:"appVersion,omitempty"`
	Description string `protobuf:"bytes,6,opt,name=description,proto3" json:"description,omitempty"`
	// contains filtered or unexported fields
}

func (*HelmAppRelease) Descriptor deprecated

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

Deprecated: Use HelmAppRelease.ProtoReflect.Descriptor instead.

func (*HelmAppRelease) GetAppVersion

func (x *HelmAppRelease) GetAppVersion() string

func (*HelmAppRelease) GetChart

func (x *HelmAppRelease) GetChart() string

func (*HelmAppRelease) GetDescription

func (x *HelmAppRelease) GetDescription() string

func (*HelmAppRelease) GetRevision

func (x *HelmAppRelease) GetRevision() int32

func (*HelmAppRelease) GetStatus

func (x *HelmAppRelease) GetStatus() string

func (*HelmAppRelease) GetUpdated

func (x *HelmAppRelease) GetUpdated() string

func (*HelmAppRelease) ProtoMessage

func (*HelmAppRelease) ProtoMessage()

func (*HelmAppRelease) ProtoReflect

func (x *HelmAppRelease) ProtoReflect() protoreflect.Message

func (*HelmAppRelease) Reset

func (x *HelmAppRelease) Reset()

func (*HelmAppRelease) String

func (x *HelmAppRelease) String() string

type HelmAppReleases

type HelmAppReleases struct {
	HelmAppRelease []*HelmAppRelease `protobuf:"bytes,1,rep,name=helmAppRelease,proto3" json:"helmAppRelease,omitempty"`
	// contains filtered or unexported fields
}

func (*HelmAppReleases) Descriptor deprecated

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

Deprecated: Use HelmAppReleases.ProtoReflect.Descriptor instead.

func (*HelmAppReleases) GetHelmAppRelease

func (x *HelmAppReleases) GetHelmAppRelease() []*HelmAppRelease

func (*HelmAppReleases) ProtoMessage

func (*HelmAppReleases) ProtoMessage()

func (*HelmAppReleases) ProtoReflect

func (x *HelmAppReleases) ProtoReflect() protoreflect.Message

func (*HelmAppReleases) Reset

func (x *HelmAppReleases) Reset()

func (*HelmAppReleases) String

func (x *HelmAppReleases) String() string

type ListPodsBySIDReq

type ListPodsBySIDReq struct {
	Sid string `protobuf:"bytes,1,opt,name=sid,proto3" json:"sid,omitempty"`
	// contains filtered or unexported fields
}

func (*ListPodsBySIDReq) Descriptor deprecated

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

Deprecated: Use ListPodsBySIDReq.ProtoReflect.Descriptor instead.

func (*ListPodsBySIDReq) GetSid

func (x *ListPodsBySIDReq) GetSid() string

func (*ListPodsBySIDReq) ProtoMessage

func (*ListPodsBySIDReq) ProtoMessage()

func (*ListPodsBySIDReq) ProtoReflect

func (x *ListPodsBySIDReq) ProtoReflect() protoreflect.Message

func (*ListPodsBySIDReq) Reset

func (x *ListPodsBySIDReq) Reset()

func (*ListPodsBySIDReq) String

func (x *ListPodsBySIDReq) String() string

type MultiServiceAppPodList

type MultiServiceAppPodList struct {
	ServicePods map[string]*ServiceAppPodList `` /* 163-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*MultiServiceAppPodList) Descriptor deprecated

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

Deprecated: Use MultiServiceAppPodList.ProtoReflect.Descriptor instead.

func (*MultiServiceAppPodList) GetServicePods

func (x *MultiServiceAppPodList) GetServicePods() map[string]*ServiceAppPodList

func (*MultiServiceAppPodList) ProtoMessage

func (*MultiServiceAppPodList) ProtoMessage()

func (*MultiServiceAppPodList) ProtoReflect

func (x *MultiServiceAppPodList) ProtoReflect() protoreflect.Message

func (*MultiServiceAppPodList) Reset

func (x *MultiServiceAppPodList) Reset()

func (*MultiServiceAppPodList) String

func (x *MultiServiceAppPodList) String() string

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"`
	// contains filtered or unexported fields
}

func (*PodContainer) Descriptor deprecated

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

Deprecated: Use PodContainer.ProtoReflect.Descriptor instead.

func (*PodContainer) GetImage

func (x *PodContainer) GetImage() string

func (*PodContainer) GetLimitCpu

func (x *PodContainer) GetLimitCpu() string

func (*PodContainer) GetLimitMemory

func (x *PodContainer) GetLimitMemory() string

func (*PodContainer) GetReason

func (x *PodContainer) GetReason() string

func (*PodContainer) GetRequestCpu

func (x *PodContainer) GetRequestCpu() string

func (*PodContainer) GetRequestMemory

func (x *PodContainer) GetRequestMemory() string

func (*PodContainer) GetStarted

func (x *PodContainer) GetStarted() string

func (*PodContainer) GetState

func (x *PodContainer) GetState() string

func (*PodContainer) ProtoMessage

func (*PodContainer) ProtoMessage()

func (*PodContainer) ProtoReflect

func (x *PodContainer) ProtoReflect() protoreflect.Message

func (*PodContainer) Reset

func (x *PodContainer) Reset()

func (*PodContainer) String

func (x *PodContainer) String() string

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"`
	Namespace      string          `protobuf:"bytes,11,opt,name=namespace,proto3" json:"namespace,omitempty"`
	// contains filtered or unexported fields
}

func (*PodDetail) Descriptor deprecated

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

Deprecated: Use PodDetail.ProtoReflect.Descriptor instead.

func (*PodDetail) GetContainers

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

func (*PodDetail) GetEvents

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

func (*PodDetail) GetInitContainers

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

func (*PodDetail) GetIp

func (x *PodDetail) GetIp() string

func (*PodDetail) GetName

func (x *PodDetail) GetName() string

func (*PodDetail) GetNamespace

func (x *PodDetail) GetNamespace() string

func (*PodDetail) GetNode

func (x *PodDetail) GetNode() string

func (*PodDetail) GetNodeIp

func (x *PodDetail) GetNodeIp() string

func (*PodDetail) GetStartTime

func (x *PodDetail) GetStartTime() string

func (*PodDetail) GetStatus

func (x *PodDetail) GetStatus() *PodStatus

func (*PodDetail) GetVersion

func (x *PodDetail) GetVersion() string

func (*PodDetail) ProtoMessage

func (*PodDetail) ProtoMessage()

func (*PodDetail) ProtoReflect

func (x *PodDetail) ProtoReflect() protoreflect.Message

func (*PodDetail) Reset

func (x *PodDetail) Reset()

func (*PodDetail) String

func (x *PodDetail) String() string

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"`
	// contains filtered or unexported fields
}

func (*PodEvent) Descriptor deprecated

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

Deprecated: Use PodEvent.ProtoReflect.Descriptor instead.

func (*PodEvent) GetAge

func (x *PodEvent) GetAge() string

func (*PodEvent) GetMessage

func (x *PodEvent) GetMessage() string

func (*PodEvent) GetReason

func (x *PodEvent) GetReason() string

func (*PodEvent) GetType

func (x *PodEvent) GetType() string

func (*PodEvent) ProtoMessage

func (*PodEvent) ProtoMessage()

func (*PodEvent) ProtoReflect

func (x *PodEvent) ProtoReflect() protoreflect.Message

func (*PodEvent) Reset

func (x *PodEvent) Reset()

func (*PodEvent) String

func (x *PodEvent) String() string

type PodStatus

type PodStatus struct {
	Type    PodStatus_Type `protobuf:"varint,1,opt,name=type,proto3,enum=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"`
	// contains filtered or unexported fields
}

func (*PodStatus) Descriptor deprecated

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

Deprecated: Use PodStatus.ProtoReflect.Descriptor instead.

func (*PodStatus) GetAdvice

func (x *PodStatus) GetAdvice() string

func (*PodStatus) GetMessage

func (x *PodStatus) GetMessage() string

func (*PodStatus) GetReason

func (x *PodStatus) GetReason() string

func (*PodStatus) GetType

func (x *PodStatus) GetType() PodStatus_Type

func (*PodStatus) GetTypeStr

func (x *PodStatus) GetTypeStr() string

func (*PodStatus) ProtoMessage

func (*PodStatus) ProtoMessage()

func (*PodStatus) ProtoReflect

func (x *PodStatus) ProtoReflect() protoreflect.Message

func (*PodStatus) Reset

func (x *PodStatus) Reset()

func (*PodStatus) String

func (x *PodStatus) String() string

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) Descriptor

func (PodStatus_Type) Enum

func (x PodStatus_Type) Enum() *PodStatus_Type

func (PodStatus_Type) EnumDescriptor deprecated

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

Deprecated: Use PodStatus_Type.Descriptor instead.

func (PodStatus_Type) Number

func (PodStatus_Type) String

func (x PodStatus_Type) String() string

func (PodStatus_Type) Type

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"`
	// contains filtered or unexported fields
}

func (*ServiceAppPod) Descriptor deprecated

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

Deprecated: Use ServiceAppPod.ProtoReflect.Descriptor instead.

func (*ServiceAppPod) GetContainers

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

func (*ServiceAppPod) GetDeployId

func (x *ServiceAppPod) GetDeployId() string

func (*ServiceAppPod) GetDeployType

func (x *ServiceAppPod) GetDeployType() string

func (*ServiceAppPod) GetPodIp

func (x *ServiceAppPod) GetPodIp() string

func (*ServiceAppPod) GetPodName

func (x *ServiceAppPod) GetPodName() string

func (*ServiceAppPod) GetPodStatus

func (x *ServiceAppPod) GetPodStatus() string

func (*ServiceAppPod) GetPodVolumes

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

func (*ServiceAppPod) GetServiceId

func (x *ServiceAppPod) GetServiceId() string

func (*ServiceAppPod) ProtoMessage

func (*ServiceAppPod) ProtoMessage()

func (*ServiceAppPod) ProtoReflect

func (x *ServiceAppPod) ProtoReflect() protoreflect.Message

func (*ServiceAppPod) Reset

func (x *ServiceAppPod) Reset()

func (*ServiceAppPod) String

func (x *ServiceAppPod) String() string

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"`
	// contains filtered or unexported fields
}

func (*ServiceAppPodList) Descriptor deprecated

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

Deprecated: Use ServiceAppPodList.ProtoReflect.Descriptor instead.

func (*ServiceAppPodList) GetNewPods

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

func (*ServiceAppPodList) GetOldPods

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

func (*ServiceAppPodList) ProtoMessage

func (*ServiceAppPodList) ProtoMessage()

func (*ServiceAppPodList) ProtoReflect

func (x *ServiceAppPodList) ProtoReflect() protoreflect.Message

func (*ServiceAppPodList) Reset

func (x *ServiceAppPodList) Reset()

func (*ServiceAppPodList) String

func (x *ServiceAppPodList) String() string

type ServiceRequest

type ServiceRequest struct {
	ServiceId string `protobuf:"bytes,1,opt,name=service_id,json=serviceId,proto3" json:"service_id,omitempty"`
	// contains filtered or unexported fields
}

func (*ServiceRequest) Descriptor deprecated

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

Deprecated: Use ServiceRequest.ProtoReflect.Descriptor instead.

func (*ServiceRequest) GetServiceId

func (x *ServiceRequest) GetServiceId() string

func (*ServiceRequest) ProtoMessage

func (*ServiceRequest) ProtoMessage()

func (*ServiceRequest) ProtoReflect

func (x *ServiceRequest) ProtoReflect() protoreflect.Message

func (*ServiceRequest) Reset

func (x *ServiceRequest) Reset()

func (*ServiceRequest) String

func (x *ServiceRequest) String() string

type ServiceVolumeStatus

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

func (ServiceVolumeStatus) Descriptor

func (ServiceVolumeStatus) Enum

func (ServiceVolumeStatus) EnumDescriptor deprecated

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

Deprecated: Use ServiceVolumeStatus.Descriptor instead.

func (ServiceVolumeStatus) Number

func (ServiceVolumeStatus) String

func (x ServiceVolumeStatus) String() string

func (ServiceVolumeStatus) Type

type ServiceVolumeStatusMessage

type ServiceVolumeStatusMessage struct {
	Status map[string]ServiceVolumeStatus `` /* 179-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*ServiceVolumeStatusMessage) Descriptor deprecated

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

Deprecated: Use ServiceVolumeStatusMessage.ProtoReflect.Descriptor instead.

func (*ServiceVolumeStatusMessage) GetStatus

func (*ServiceVolumeStatusMessage) ProtoMessage

func (*ServiceVolumeStatusMessage) ProtoMessage()

func (*ServiceVolumeStatusMessage) ProtoReflect

func (*ServiceVolumeStatusMessage) Reset

func (x *ServiceVolumeStatusMessage) Reset()

func (*ServiceVolumeStatusMessage) String

func (x *ServiceVolumeStatusMessage) String() string

type ServicesRequest

type ServicesRequest struct {
	ServiceIds string `protobuf:"bytes,1,opt,name=service_ids,json=serviceIds,proto3" json:"service_ids,omitempty"`
	// contains filtered or unexported fields
}

func (*ServicesRequest) Descriptor deprecated

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

Deprecated: Use ServicesRequest.ProtoReflect.Descriptor instead.

func (*ServicesRequest) GetServiceIds

func (x *ServicesRequest) GetServiceIds() string

func (*ServicesRequest) ProtoMessage

func (*ServicesRequest) ProtoMessage()

func (*ServicesRequest) ProtoReflect

func (x *ServicesRequest) ProtoReflect() protoreflect.Message

func (*ServicesRequest) Reset

func (x *ServicesRequest) Reset()

func (*ServicesRequest) String

func (x *ServicesRequest) String() string

type StatusMessage

type StatusMessage struct {
	Status map[string]string `` /* 153-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*StatusMessage) Descriptor deprecated

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

Deprecated: Use StatusMessage.ProtoReflect.Descriptor instead.

func (*StatusMessage) GetStatus

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

func (*StatusMessage) ProtoMessage

func (*StatusMessage) ProtoMessage()

func (*StatusMessage) ProtoReflect

func (x *StatusMessage) ProtoReflect() protoreflect.Message

func (*StatusMessage) Reset

func (x *StatusMessage) Reset()

func (*StatusMessage) String

func (x *StatusMessage) String() string

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"`
	// contains filtered or unexported fields
}

func (*StorageClassDetail) Descriptor deprecated

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

Deprecated: Use StorageClassDetail.ProtoReflect.Descriptor instead.

func (*StorageClassDetail) GetAllowVolumeExpansion

func (x *StorageClassDetail) GetAllowVolumeExpansion() bool

func (*StorageClassDetail) GetAllowedTopologies

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

func (*StorageClassDetail) GetName

func (x *StorageClassDetail) GetName() string

func (*StorageClassDetail) GetParameters

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

func (*StorageClassDetail) GetProvisioner

func (x *StorageClassDetail) GetProvisioner() string

func (*StorageClassDetail) GetReclaimPolicy

func (x *StorageClassDetail) GetReclaimPolicy() string

func (*StorageClassDetail) GetVolumeBindingMode

func (x *StorageClassDetail) GetVolumeBindingMode() string

func (*StorageClassDetail) ProtoMessage

func (*StorageClassDetail) ProtoMessage()

func (*StorageClassDetail) ProtoReflect

func (x *StorageClassDetail) ProtoReflect() protoreflect.Message

func (*StorageClassDetail) Reset

func (x *StorageClassDetail) Reset()

func (*StorageClassDetail) String

func (x *StorageClassDetail) String() string

type StorageClasses

type StorageClasses struct {
	List []*StorageClassDetail `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
	// contains filtered or unexported fields
}

func (*StorageClasses) Descriptor deprecated

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

Deprecated: Use StorageClasses.ProtoReflect.Descriptor instead.

func (*StorageClasses) GetList

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

func (*StorageClasses) ProtoMessage

func (*StorageClasses) ProtoMessage()

func (*StorageClasses) ProtoReflect

func (x *StorageClasses) ProtoReflect() protoreflect.Message

func (*StorageClasses) Reset

func (x *StorageClasses) Reset()

func (*StorageClasses) String

func (x *StorageClasses) String() string

type TenantEnvRequest added in v1.1.0

type TenantEnvRequest struct {
	TenantEnvId string `protobuf:"bytes,1,opt,name=tenant_env_id,json=tenantEnvId,proto3" json:"tenant_env_id,omitempty"`
	// contains filtered or unexported fields
}

func (*TenantEnvRequest) Descriptor deprecated added in v1.1.0

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

Deprecated: Use TenantEnvRequest.ProtoReflect.Descriptor instead.

func (*TenantEnvRequest) GetTenantEnvId added in v1.1.0

func (x *TenantEnvRequest) GetTenantEnvId() string

func (*TenantEnvRequest) ProtoMessage added in v1.1.0

func (*TenantEnvRequest) ProtoMessage()

func (*TenantEnvRequest) ProtoReflect added in v1.1.0

func (x *TenantEnvRequest) ProtoReflect() protoreflect.Message

func (*TenantEnvRequest) Reset added in v1.1.0

func (x *TenantEnvRequest) Reset()

func (*TenantEnvRequest) String added in v1.1.0

func (x *TenantEnvRequest) String() string

type TenantEnvResource added in v1.1.0

type TenantEnvResource 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"`
	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 */
	// contains filtered or unexported fields
}

func (*TenantEnvResource) Descriptor deprecated added in v1.1.0

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

Deprecated: Use TenantEnvResource.ProtoReflect.Descriptor instead.

func (*TenantEnvResource) GetCpuLimit added in v1.1.0

func (x *TenantEnvResource) GetCpuLimit() int64

func (*TenantEnvResource) GetCpuRequest added in v1.1.0

func (x *TenantEnvResource) GetCpuRequest() int64

func (*TenantEnvResource) GetMemoryLimit added in v1.1.0

func (x *TenantEnvResource) GetMemoryLimit() int64

func (*TenantEnvResource) GetMemoryRequest added in v1.1.0

func (x *TenantEnvResource) GetMemoryRequest() int64

func (*TenantEnvResource) GetRunningAppInternalNum added in v1.1.0

func (x *TenantEnvResource) GetRunningAppInternalNum() int64

func (*TenantEnvResource) GetRunningAppNum added in v1.1.0

func (x *TenantEnvResource) GetRunningAppNum() int64

func (*TenantEnvResource) GetRunningAppThirdNum added in v1.1.0

func (x *TenantEnvResource) GetRunningAppThirdNum() int64

func (*TenantEnvResource) ProtoMessage added in v1.1.0

func (*TenantEnvResource) ProtoMessage()

func (*TenantEnvResource) ProtoReflect added in v1.1.0

func (x *TenantEnvResource) ProtoReflect() protoreflect.Message

func (*TenantEnvResource) Reset added in v1.1.0

func (x *TenantEnvResource) Reset()

func (*TenantEnvResource) String added in v1.1.0

func (x *TenantEnvResource) String() string

type TenantEnvResourceList added in v1.1.0

type TenantEnvResourceList struct {
	Resources map[string]*TenantEnvResource `` /* 159-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*TenantEnvResourceList) Descriptor deprecated added in v1.1.0

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

Deprecated: Use TenantEnvResourceList.ProtoReflect.Descriptor instead.

func (*TenantEnvResourceList) GetResources added in v1.1.0

func (x *TenantEnvResourceList) GetResources() map[string]*TenantEnvResource

func (*TenantEnvResourceList) ProtoMessage added in v1.1.0

func (*TenantEnvResourceList) ProtoMessage()

func (*TenantEnvResourceList) ProtoReflect added in v1.1.0

func (x *TenantEnvResourceList) ProtoReflect() protoreflect.Message

func (*TenantEnvResourceList) Reset added in v1.1.0

func (x *TenantEnvResourceList) Reset()

func (*TenantEnvResourceList) String added in v1.1.0

func (x *TenantEnvResourceList) String() string

type ThirdPartyEndpoint

type ThirdPartyEndpoint struct {
	Name        string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	ComponentID string `protobuf:"bytes,2,opt,name=componentID,proto3" json:"componentID,omitempty"`
	Address     string `protobuf:"bytes,3,opt,name=address,proto3" json:"address,omitempty"`
	Status      string `protobuf:"bytes,4,opt,name=status,proto3" json:"status,omitempty"`
	// contains filtered or unexported fields
}

func (*ThirdPartyEndpoint) Descriptor deprecated

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

Deprecated: Use ThirdPartyEndpoint.ProtoReflect.Descriptor instead.

func (*ThirdPartyEndpoint) GetAddress

func (x *ThirdPartyEndpoint) GetAddress() string

func (*ThirdPartyEndpoint) GetComponentID

func (x *ThirdPartyEndpoint) GetComponentID() string

func (*ThirdPartyEndpoint) GetName

func (x *ThirdPartyEndpoint) GetName() string

func (*ThirdPartyEndpoint) GetStatus

func (x *ThirdPartyEndpoint) GetStatus() string

func (*ThirdPartyEndpoint) ProtoMessage

func (*ThirdPartyEndpoint) ProtoMessage()

func (*ThirdPartyEndpoint) ProtoReflect

func (x *ThirdPartyEndpoint) ProtoReflect() protoreflect.Message

func (*ThirdPartyEndpoint) Reset

func (x *ThirdPartyEndpoint) Reset()

func (*ThirdPartyEndpoint) String

func (x *ThirdPartyEndpoint) String() string

type ThirdPartyEndpoints

type ThirdPartyEndpoints struct {
	Items []*ThirdPartyEndpoint `protobuf:"bytes,1,rep,name=items,proto3" json:"items,omitempty"`
	// contains filtered or unexported fields
}

func (*ThirdPartyEndpoints) Descriptor deprecated

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

Deprecated: Use ThirdPartyEndpoints.ProtoReflect.Descriptor instead.

func (*ThirdPartyEndpoints) GetItems

func (x *ThirdPartyEndpoints) GetItems() []*ThirdPartyEndpoint

func (*ThirdPartyEndpoints) ProtoMessage

func (*ThirdPartyEndpoints) ProtoMessage()

func (*ThirdPartyEndpoints) ProtoReflect

func (x *ThirdPartyEndpoints) ProtoReflect() protoreflect.Message

func (*ThirdPartyEndpoints) Reset

func (x *ThirdPartyEndpoints) Reset()

func (*ThirdPartyEndpoints) String

func (x *ThirdPartyEndpoints) String() string

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"`
	// contains filtered or unexported fields
}

func (*TopologySelectorLabelRequirement) Descriptor deprecated

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

Deprecated: Use TopologySelectorLabelRequirement.ProtoReflect.Descriptor instead.

func (*TopologySelectorLabelRequirement) GetKey

func (*TopologySelectorLabelRequirement) GetValues

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

func (*TopologySelectorLabelRequirement) ProtoMessage

func (*TopologySelectorLabelRequirement) ProtoMessage()

func (*TopologySelectorLabelRequirement) ProtoReflect

func (*TopologySelectorLabelRequirement) Reset

func (*TopologySelectorLabelRequirement) String

type TopologySelectorTerm

type TopologySelectorTerm struct {
	MatchLabelExpressions []*TopologySelectorLabelRequirement `` /* 126-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*TopologySelectorTerm) Descriptor deprecated

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

Deprecated: Use TopologySelectorTerm.ProtoReflect.Descriptor instead.

func (*TopologySelectorTerm) GetMatchLabelExpressions

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

func (*TopologySelectorTerm) ProtoMessage

func (*TopologySelectorTerm) ProtoMessage()

func (*TopologySelectorTerm) ProtoReflect

func (x *TopologySelectorTerm) ProtoReflect() protoreflect.Message

func (*TopologySelectorTerm) Reset

func (x *TopologySelectorTerm) Reset()

func (*TopologySelectorTerm) String

func (x *TopologySelectorTerm) String() string

type UnimplementedAppRuntimeSyncServer

type UnimplementedAppRuntimeSyncServer struct {
}

UnimplementedAppRuntimeSyncServer can be embedded to have forward compatible implementations.

func (*UnimplementedAppRuntimeSyncServer) AddThirdPartyEndpoint

func (*UnimplementedAppRuntimeSyncServer) DelThirdPartyEndpoint

func (*UnimplementedAppRuntimeSyncServer) GetAppPods

func (*UnimplementedAppRuntimeSyncServer) GetAppStatus

func (*UnimplementedAppRuntimeSyncServer) GetAppStatusDeprecated

func (*UnimplementedAppRuntimeSyncServer) GetAppVolumeStatus

func (*UnimplementedAppRuntimeSyncServer) GetComponentPodNums

func (*UnimplementedAppRuntimeSyncServer) GetDeployInfo

func (*UnimplementedAppRuntimeSyncServer) GetMultiAppPods

func (*UnimplementedAppRuntimeSyncServer) GetPodDetail

func (*UnimplementedAppRuntimeSyncServer) GetStorageClasses

func (*UnimplementedAppRuntimeSyncServer) GetTenantEnvResource added in v1.1.0

func (*UnimplementedAppRuntimeSyncServer) GetTenantEnvResources added in v1.1.0

func (*UnimplementedAppRuntimeSyncServer) ListAppServices

func (*UnimplementedAppRuntimeSyncServer) ListAppStatuses

func (*UnimplementedAppRuntimeSyncServer) ListHelmAppRelease

func (*UnimplementedAppRuntimeSyncServer) ListThirdPartyEndpoints

func (*UnimplementedAppRuntimeSyncServer) UpdThirdPartyEndpoint

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"`
	// contains filtered or unexported fields
}

func (*UpdThirdPartyEndpointsReq) Descriptor deprecated

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

Deprecated: Use UpdThirdPartyEndpointsReq.ProtoReflect.Descriptor instead.

func (*UpdThirdPartyEndpointsReq) GetIp

func (x *UpdThirdPartyEndpointsReq) GetIp() string

func (*UpdThirdPartyEndpointsReq) GetIsOnline

func (x *UpdThirdPartyEndpointsReq) GetIsOnline() bool

func (*UpdThirdPartyEndpointsReq) GetPort

func (x *UpdThirdPartyEndpointsReq) GetPort() int32

func (*UpdThirdPartyEndpointsReq) GetSid

func (x *UpdThirdPartyEndpointsReq) GetSid() string

func (*UpdThirdPartyEndpointsReq) GetUuid

func (x *UpdThirdPartyEndpointsReq) GetUuid() string

func (*UpdThirdPartyEndpointsReq) ProtoMessage

func (*UpdThirdPartyEndpointsReq) ProtoMessage()

func (*UpdThirdPartyEndpointsReq) ProtoReflect

func (*UpdThirdPartyEndpointsReq) Reset

func (x *UpdThirdPartyEndpointsReq) Reset()

func (*UpdThirdPartyEndpointsReq) String

func (x *UpdThirdPartyEndpointsReq) String() string

Jump to

Keyboard shortcuts

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