plugin

package
v0.0.0-...-b63aa1a Latest Latest
Warning

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

Go to latest
Published: Dec 18, 2019 License: Apache-2.0 Imports: 10 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func RegisterService

func RegisterService(s giraffe_micro.Server, srv Service)

Types

type Client

Client is the client API for plugin service.

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

func NewClient

func NewClient(c giraffe_micro.Client) Client

type CreatePluginRequest

type CreatePluginRequest struct {
	//
	//名称
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name" form:"name"`
	//
	//备注
	Memo string `protobuf:"bytes,2,opt,name=memo,proto3" json:"memo" form:"memo"`
	//
	//部署路径
	DeployPath           []string `protobuf:"bytes,3,rep,name=deployPath,proto3" json:"deployPath" form:"deployPath"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

CreatePlugin请求

func (*CreatePluginRequest) Descriptor

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

func (*CreatePluginRequest) GetDeployPath

func (m *CreatePluginRequest) GetDeployPath() []string

func (*CreatePluginRequest) GetMemo

func (m *CreatePluginRequest) GetMemo() string

func (*CreatePluginRequest) GetName

func (m *CreatePluginRequest) GetName() string

func (*CreatePluginRequest) ProtoMessage

func (*CreatePluginRequest) ProtoMessage()

func (*CreatePluginRequest) Reset

func (m *CreatePluginRequest) Reset()

func (*CreatePluginRequest) String

func (m *CreatePluginRequest) String() string

func (*CreatePluginRequest) Validate

func (this *CreatePluginRequest) Validate() error

func (*CreatePluginRequest) XXX_DiscardUnknown

func (m *CreatePluginRequest) XXX_DiscardUnknown()

func (*CreatePluginRequest) XXX_Marshal

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

func (*CreatePluginRequest) XXX_Merge

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

func (*CreatePluginRequest) XXX_Size

func (m *CreatePluginRequest) XXX_Size() int

func (*CreatePluginRequest) XXX_Unmarshal

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

type CreatePluginResponse

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

CreatePlugin返回

func (*CreatePluginResponse) Descriptor

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

func (*CreatePluginResponse) GetId

func (m *CreatePluginResponse) GetId() string

func (*CreatePluginResponse) ProtoMessage

func (*CreatePluginResponse) ProtoMessage()

func (*CreatePluginResponse) Reset

func (m *CreatePluginResponse) Reset()

func (*CreatePluginResponse) String

func (m *CreatePluginResponse) String() string

func (*CreatePluginResponse) Validate

func (this *CreatePluginResponse) Validate() error

func (*CreatePluginResponse) XXX_DiscardUnknown

func (m *CreatePluginResponse) XXX_DiscardUnknown()

func (*CreatePluginResponse) XXX_Marshal

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

func (*CreatePluginResponse) XXX_Merge

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

func (*CreatePluginResponse) XXX_Size

func (m *CreatePluginResponse) XXX_Size() int

func (*CreatePluginResponse) XXX_Unmarshal

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

type CreatePluginResponseWrapper

type CreatePluginResponseWrapper struct {
	//
	//返回码
	Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code" form:"code"`
	//
	//返回码解释
	CodeExplain string `protobuf:"bytes,2,opt,name=codeExplain,proto3" json:"codeExplain" form:"codeExplain"`
	//
	//错误详情
	Error string `protobuf:"bytes,3,opt,name=error,proto3" json:"error" form:"error"`
	//
	//返回数据
	Data                 *CreatePluginResponse `protobuf:"bytes,4,opt,name=data,proto3" json:"data" form:"data"`
	XXX_NoUnkeyedLiteral struct{}              `json:"-"`
	XXX_unrecognized     []byte                `json:"-"`
	XXX_sizecache        int32                 `json:"-"`
}

CreatePluginApi返回

func (*CreatePluginResponseWrapper) Descriptor

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

func (*CreatePluginResponseWrapper) GetCode

func (m *CreatePluginResponseWrapper) GetCode() int32

func (*CreatePluginResponseWrapper) GetCodeExplain

func (m *CreatePluginResponseWrapper) GetCodeExplain() string

func (*CreatePluginResponseWrapper) GetData

func (*CreatePluginResponseWrapper) GetError

func (m *CreatePluginResponseWrapper) GetError() string

func (*CreatePluginResponseWrapper) ProtoMessage

func (*CreatePluginResponseWrapper) ProtoMessage()

func (*CreatePluginResponseWrapper) Reset

func (m *CreatePluginResponseWrapper) Reset()

func (*CreatePluginResponseWrapper) String

func (m *CreatePluginResponseWrapper) String() string

func (*CreatePluginResponseWrapper) Validate

func (this *CreatePluginResponseWrapper) Validate() error

func (*CreatePluginResponseWrapper) XXX_DiscardUnknown

func (m *CreatePluginResponseWrapper) XXX_DiscardUnknown()

func (*CreatePluginResponseWrapper) XXX_Marshal

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

func (*CreatePluginResponseWrapper) XXX_Merge

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

func (*CreatePluginResponseWrapper) XXX_Size

func (m *CreatePluginResponseWrapper) XXX_Size() int

func (*CreatePluginResponseWrapper) XXX_Unmarshal

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

type CreatePluginV1Request

type CreatePluginV1Request struct {
	//
	//名称
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name" form:"name"`
	//
	//备注
	Memo string `protobuf:"bytes,2,opt,name=memo,proto3" json:"memo" form:"memo"`
	//
	//部署路径
	DeployPath           []string `protobuf:"bytes,3,rep,name=deployPath,proto3" json:"deployPath" form:"deployPath"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

CreatePluginV1请求

func (*CreatePluginV1Request) Descriptor

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

func (*CreatePluginV1Request) GetDeployPath

func (m *CreatePluginV1Request) GetDeployPath() []string

func (*CreatePluginV1Request) GetMemo

func (m *CreatePluginV1Request) GetMemo() string

func (*CreatePluginV1Request) GetName

func (m *CreatePluginV1Request) GetName() string

func (*CreatePluginV1Request) ProtoMessage

func (*CreatePluginV1Request) ProtoMessage()

func (*CreatePluginV1Request) Reset

func (m *CreatePluginV1Request) Reset()

func (*CreatePluginV1Request) String

func (m *CreatePluginV1Request) String() string

func (*CreatePluginV1Request) Validate

func (this *CreatePluginV1Request) Validate() error

func (*CreatePluginV1Request) XXX_DiscardUnknown

func (m *CreatePluginV1Request) XXX_DiscardUnknown()

func (*CreatePluginV1Request) XXX_Marshal

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

func (*CreatePluginV1Request) XXX_Merge

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

func (*CreatePluginV1Request) XXX_Size

func (m *CreatePluginV1Request) XXX_Size() int

func (*CreatePluginV1Request) XXX_Unmarshal

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

type CreatePluginV1Response

type CreatePluginV1Response struct {
	//
	//插件包的最新版本信息
	LastestVersion []*agent_admin.PluginVersion `protobuf:"bytes,1,rep,name=lastestVersion,proto3" json:"lastestVersion" form:"lastestVersion"`
	//
	//部署的实例个数
	DeployedCount int32 `protobuf:"varint,2,opt,name=deployedCount,proto3" json:"deployedCount" form:"deployedCount"`
	//
	//ID
	Id string `protobuf:"bytes,3,opt,name=id,proto3" json:"id" form:"id"`
	//
	//名称
	Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name" form:"name"`
	//
	//部署路径
	DeployPath []string `protobuf:"bytes,5,rep,name=deployPath,proto3" json:"deployPath" form:"deployPath"`
	//
	//备注
	Memo string `protobuf:"bytes,6,opt,name=memo,proto3" json:"memo" form:"memo"`
	//
	//仓库对应包ID
	RepoPackageId string `protobuf:"bytes,7,opt,name=repoPackageId,proto3" json:"repoPackageId" form:"repoPackageId"`
	//
	//创建者
	Creator string `protobuf:"bytes,8,opt,name=creator,proto3" json:"creator" form:"creator"`
	//
	//创建时间
	Ctime int32 `protobuf:"varint,9,opt,name=ctime,proto3" json:"ctime" form:"ctime"`
	//
	//修改时间
	Mtime int32 `protobuf:"varint,10,opt,name=mtime,proto3" json:"mtime" form:"mtime"`
	//
	//是否锁定
	IsLocked             bool     `protobuf:"varint,11,opt,name=isLocked,proto3" json:"isLocked" form:"isLocked"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

CreatePluginV1返回

func (*CreatePluginV1Response) Descriptor

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

func (*CreatePluginV1Response) GetCreator

func (m *CreatePluginV1Response) GetCreator() string

func (*CreatePluginV1Response) GetCtime

func (m *CreatePluginV1Response) GetCtime() int32

func (*CreatePluginV1Response) GetDeployPath

func (m *CreatePluginV1Response) GetDeployPath() []string

func (*CreatePluginV1Response) GetDeployedCount

func (m *CreatePluginV1Response) GetDeployedCount() int32

func (*CreatePluginV1Response) GetId

func (m *CreatePluginV1Response) GetId() string

func (*CreatePluginV1Response) GetIsLocked

func (m *CreatePluginV1Response) GetIsLocked() bool

func (*CreatePluginV1Response) GetLastestVersion

func (m *CreatePluginV1Response) GetLastestVersion() []*agent_admin.PluginVersion

func (*CreatePluginV1Response) GetMemo

func (m *CreatePluginV1Response) GetMemo() string

func (*CreatePluginV1Response) GetMtime

func (m *CreatePluginV1Response) GetMtime() int32

func (*CreatePluginV1Response) GetName

func (m *CreatePluginV1Response) GetName() string

func (*CreatePluginV1Response) GetRepoPackageId

func (m *CreatePluginV1Response) GetRepoPackageId() string

func (*CreatePluginV1Response) ProtoMessage

func (*CreatePluginV1Response) ProtoMessage()

func (*CreatePluginV1Response) Reset

func (m *CreatePluginV1Response) Reset()

func (*CreatePluginV1Response) String

func (m *CreatePluginV1Response) String() string

func (*CreatePluginV1Response) Validate

func (this *CreatePluginV1Response) Validate() error

func (*CreatePluginV1Response) XXX_DiscardUnknown

func (m *CreatePluginV1Response) XXX_DiscardUnknown()

func (*CreatePluginV1Response) XXX_Marshal

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

func (*CreatePluginV1Response) XXX_Merge

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

func (*CreatePluginV1Response) XXX_Size

func (m *CreatePluginV1Response) XXX_Size() int

func (*CreatePluginV1Response) XXX_Unmarshal

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

type CreatePluginV1ResponseWrapper

type CreatePluginV1ResponseWrapper struct {
	//
	//返回码
	Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code" form:"code"`
	//
	//返回码解释
	CodeExplain string `protobuf:"bytes,2,opt,name=codeExplain,proto3" json:"codeExplain" form:"codeExplain"`
	//
	//错误详情
	Error string `protobuf:"bytes,3,opt,name=error,proto3" json:"error" form:"error"`
	//
	//返回数据
	Data                 *CreatePluginV1Response `protobuf:"bytes,4,opt,name=data,proto3" json:"data" form:"data"`
	XXX_NoUnkeyedLiteral struct{}                `json:"-"`
	XXX_unrecognized     []byte                  `json:"-"`
	XXX_sizecache        int32                   `json:"-"`
}

CreatePluginV1Api返回

func (*CreatePluginV1ResponseWrapper) Descriptor

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

func (*CreatePluginV1ResponseWrapper) GetCode

func (m *CreatePluginV1ResponseWrapper) GetCode() int32

func (*CreatePluginV1ResponseWrapper) GetCodeExplain

func (m *CreatePluginV1ResponseWrapper) GetCodeExplain() string

func (*CreatePluginV1ResponseWrapper) GetData

func (*CreatePluginV1ResponseWrapper) GetError

func (m *CreatePluginV1ResponseWrapper) GetError() string

func (*CreatePluginV1ResponseWrapper) ProtoMessage

func (*CreatePluginV1ResponseWrapper) ProtoMessage()

func (*CreatePluginV1ResponseWrapper) Reset

func (m *CreatePluginV1ResponseWrapper) Reset()

func (*CreatePluginV1ResponseWrapper) String

func (*CreatePluginV1ResponseWrapper) Validate

func (this *CreatePluginV1ResponseWrapper) Validate() error

func (*CreatePluginV1ResponseWrapper) XXX_DiscardUnknown

func (m *CreatePluginV1ResponseWrapper) XXX_DiscardUnknown()

func (*CreatePluginV1ResponseWrapper) XXX_Marshal

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

func (*CreatePluginV1ResponseWrapper) XXX_Merge

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

func (*CreatePluginV1ResponseWrapper) XXX_Size

func (m *CreatePluginV1ResponseWrapper) XXX_Size() int

func (*CreatePluginV1ResponseWrapper) XXX_Unmarshal

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

type DeletePluginRequest

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

DeletePlugin请求

func (*DeletePluginRequest) Descriptor

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

func (*DeletePluginRequest) GetId

func (m *DeletePluginRequest) GetId() string

func (*DeletePluginRequest) ProtoMessage

func (*DeletePluginRequest) ProtoMessage()

func (*DeletePluginRequest) Reset

func (m *DeletePluginRequest) Reset()

func (*DeletePluginRequest) String

func (m *DeletePluginRequest) String() string

func (*DeletePluginRequest) Validate

func (this *DeletePluginRequest) Validate() error

func (*DeletePluginRequest) XXX_DiscardUnknown

func (m *DeletePluginRequest) XXX_DiscardUnknown()

func (*DeletePluginRequest) XXX_Marshal

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

func (*DeletePluginRequest) XXX_Merge

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

func (*DeletePluginRequest) XXX_Size

func (m *DeletePluginRequest) XXX_Size() int

func (*DeletePluginRequest) XXX_Unmarshal

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

type DeletePluginResponse

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

DeletePlugin返回

func (*DeletePluginResponse) Descriptor

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

func (*DeletePluginResponse) GetId

func (m *DeletePluginResponse) GetId() string

func (*DeletePluginResponse) ProtoMessage

func (*DeletePluginResponse) ProtoMessage()

func (*DeletePluginResponse) Reset

func (m *DeletePluginResponse) Reset()

func (*DeletePluginResponse) String

func (m *DeletePluginResponse) String() string

func (*DeletePluginResponse) Validate

func (this *DeletePluginResponse) Validate() error

func (*DeletePluginResponse) XXX_DiscardUnknown

func (m *DeletePluginResponse) XXX_DiscardUnknown()

func (*DeletePluginResponse) XXX_Marshal

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

func (*DeletePluginResponse) XXX_Merge

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

func (*DeletePluginResponse) XXX_Size

func (m *DeletePluginResponse) XXX_Size() int

func (*DeletePluginResponse) XXX_Unmarshal

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

type DeletePluginResponseWrapper

type DeletePluginResponseWrapper struct {
	//
	//返回码
	Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code" form:"code"`
	//
	//返回码解释
	CodeExplain string `protobuf:"bytes,2,opt,name=codeExplain,proto3" json:"codeExplain" form:"codeExplain"`
	//
	//错误详情
	Error string `protobuf:"bytes,3,opt,name=error,proto3" json:"error" form:"error"`
	//
	//返回数据
	Data                 *DeletePluginResponse `protobuf:"bytes,4,opt,name=data,proto3" json:"data" form:"data"`
	XXX_NoUnkeyedLiteral struct{}              `json:"-"`
	XXX_unrecognized     []byte                `json:"-"`
	XXX_sizecache        int32                 `json:"-"`
}

DeletePluginApi返回

func (*DeletePluginResponseWrapper) Descriptor

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

func (*DeletePluginResponseWrapper) GetCode

func (m *DeletePluginResponseWrapper) GetCode() int32

func (*DeletePluginResponseWrapper) GetCodeExplain

func (m *DeletePluginResponseWrapper) GetCodeExplain() string

func (*DeletePluginResponseWrapper) GetData

func (*DeletePluginResponseWrapper) GetError

func (m *DeletePluginResponseWrapper) GetError() string

func (*DeletePluginResponseWrapper) ProtoMessage

func (*DeletePluginResponseWrapper) ProtoMessage()

func (*DeletePluginResponseWrapper) Reset

func (m *DeletePluginResponseWrapper) Reset()

func (*DeletePluginResponseWrapper) String

func (m *DeletePluginResponseWrapper) String() string

func (*DeletePluginResponseWrapper) Validate

func (this *DeletePluginResponseWrapper) Validate() error

func (*DeletePluginResponseWrapper) XXX_DiscardUnknown

func (m *DeletePluginResponseWrapper) XXX_DiscardUnknown()

func (*DeletePluginResponseWrapper) XXX_Marshal

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

func (*DeletePluginResponseWrapper) XXX_Merge

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

func (*DeletePluginResponseWrapper) XXX_Size

func (m *DeletePluginResponseWrapper) XXX_Size() int

func (*DeletePluginResponseWrapper) XXX_Unmarshal

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

type GetPluginRequest

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

GetPlugin请求

func (*GetPluginRequest) Descriptor

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

func (*GetPluginRequest) GetId

func (m *GetPluginRequest) GetId() string

func (*GetPluginRequest) ProtoMessage

func (*GetPluginRequest) ProtoMessage()

func (*GetPluginRequest) Reset

func (m *GetPluginRequest) Reset()

func (*GetPluginRequest) String

func (m *GetPluginRequest) String() string

func (*GetPluginRequest) Validate

func (this *GetPluginRequest) Validate() error

func (*GetPluginRequest) XXX_DiscardUnknown

func (m *GetPluginRequest) XXX_DiscardUnknown()

func (*GetPluginRequest) XXX_Marshal

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

func (*GetPluginRequest) XXX_Merge

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

func (*GetPluginRequest) XXX_Size

func (m *GetPluginRequest) XXX_Size() int

func (*GetPluginRequest) XXX_Unmarshal

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

type GetPluginResponseWrapper

type GetPluginResponseWrapper struct {
	//
	//返回码
	Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code" form:"code"`
	//
	//返回码解释
	CodeExplain string `protobuf:"bytes,2,opt,name=codeExplain,proto3" json:"codeExplain" form:"codeExplain"`
	//
	//错误详情
	Error string `protobuf:"bytes,3,opt,name=error,proto3" json:"error" form:"error"`
	//
	//返回数据
	Data                 *agent_admin.Plugin `protobuf:"bytes,4,opt,name=data,proto3" json:"data" form:"data"`
	XXX_NoUnkeyedLiteral struct{}            `json:"-"`
	XXX_unrecognized     []byte              `json:"-"`
	XXX_sizecache        int32               `json:"-"`
}

GetPluginApi返回

func (*GetPluginResponseWrapper) Descriptor

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

func (*GetPluginResponseWrapper) GetCode

func (m *GetPluginResponseWrapper) GetCode() int32

func (*GetPluginResponseWrapper) GetCodeExplain

func (m *GetPluginResponseWrapper) GetCodeExplain() string

func (*GetPluginResponseWrapper) GetData

func (*GetPluginResponseWrapper) GetError

func (m *GetPluginResponseWrapper) GetError() string

func (*GetPluginResponseWrapper) ProtoMessage

func (*GetPluginResponseWrapper) ProtoMessage()

func (*GetPluginResponseWrapper) Reset

func (m *GetPluginResponseWrapper) Reset()

func (*GetPluginResponseWrapper) String

func (m *GetPluginResponseWrapper) String() string

func (*GetPluginResponseWrapper) Validate

func (this *GetPluginResponseWrapper) Validate() error

func (*GetPluginResponseWrapper) XXX_DiscardUnknown

func (m *GetPluginResponseWrapper) XXX_DiscardUnknown()

func (*GetPluginResponseWrapper) XXX_Marshal

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

func (*GetPluginResponseWrapper) XXX_Merge

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

func (*GetPluginResponseWrapper) XXX_Size

func (m *GetPluginResponseWrapper) XXX_Size() int

func (*GetPluginResponseWrapper) XXX_Unmarshal

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

type GetPluginV1Request

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

GetPluginV1请求

func (*GetPluginV1Request) Descriptor

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

func (*GetPluginV1Request) GetId

func (m *GetPluginV1Request) GetId() string

func (*GetPluginV1Request) ProtoMessage

func (*GetPluginV1Request) ProtoMessage()

func (*GetPluginV1Request) Reset

func (m *GetPluginV1Request) Reset()

func (*GetPluginV1Request) String

func (m *GetPluginV1Request) String() string

func (*GetPluginV1Request) Validate

func (this *GetPluginV1Request) Validate() error

func (*GetPluginV1Request) XXX_DiscardUnknown

func (m *GetPluginV1Request) XXX_DiscardUnknown()

func (*GetPluginV1Request) XXX_Marshal

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

func (*GetPluginV1Request) XXX_Merge

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

func (*GetPluginV1Request) XXX_Size

func (m *GetPluginV1Request) XXX_Size() int

func (*GetPluginV1Request) XXX_Unmarshal

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

type GetPluginV1Response

type GetPluginV1Response struct {
	//
	//插件包的最新版本信息
	LastestVersion []*agent_admin.PluginVersion `protobuf:"bytes,1,rep,name=lastestVersion,proto3" json:"lastestVersion" form:"lastestVersion"`
	//
	//部署的实例个数
	DeployedCount int32 `protobuf:"varint,2,opt,name=deployedCount,proto3" json:"deployedCount" form:"deployedCount"`
	//
	//ID
	Id string `protobuf:"bytes,3,opt,name=id,proto3" json:"id" form:"id"`
	//
	//名称
	Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name" form:"name"`
	//
	//部署路径
	DeployPath []string `protobuf:"bytes,5,rep,name=deployPath,proto3" json:"deployPath" form:"deployPath"`
	//
	//备注
	Memo string `protobuf:"bytes,6,opt,name=memo,proto3" json:"memo" form:"memo"`
	//
	//仓库对应包ID
	RepoPackageId string `protobuf:"bytes,7,opt,name=repoPackageId,proto3" json:"repoPackageId" form:"repoPackageId"`
	//
	//创建者
	Creator string `protobuf:"bytes,8,opt,name=creator,proto3" json:"creator" form:"creator"`
	//
	//创建时间
	Ctime int32 `protobuf:"varint,9,opt,name=ctime,proto3" json:"ctime" form:"ctime"`
	//
	//修改时间
	Mtime int32 `protobuf:"varint,10,opt,name=mtime,proto3" json:"mtime" form:"mtime"`
	//
	//是否锁定
	IsLocked             bool     `protobuf:"varint,11,opt,name=isLocked,proto3" json:"isLocked" form:"isLocked"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

GetPluginV1返回

func (*GetPluginV1Response) Descriptor

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

func (*GetPluginV1Response) GetCreator

func (m *GetPluginV1Response) GetCreator() string

func (*GetPluginV1Response) GetCtime

func (m *GetPluginV1Response) GetCtime() int32

func (*GetPluginV1Response) GetDeployPath

func (m *GetPluginV1Response) GetDeployPath() []string

func (*GetPluginV1Response) GetDeployedCount

func (m *GetPluginV1Response) GetDeployedCount() int32

func (*GetPluginV1Response) GetId

func (m *GetPluginV1Response) GetId() string

func (*GetPluginV1Response) GetIsLocked

func (m *GetPluginV1Response) GetIsLocked() bool

func (*GetPluginV1Response) GetLastestVersion

func (m *GetPluginV1Response) GetLastestVersion() []*agent_admin.PluginVersion

func (*GetPluginV1Response) GetMemo

func (m *GetPluginV1Response) GetMemo() string

func (*GetPluginV1Response) GetMtime

func (m *GetPluginV1Response) GetMtime() int32

func (*GetPluginV1Response) GetName

func (m *GetPluginV1Response) GetName() string

func (*GetPluginV1Response) GetRepoPackageId

func (m *GetPluginV1Response) GetRepoPackageId() string

func (*GetPluginV1Response) ProtoMessage

func (*GetPluginV1Response) ProtoMessage()

func (*GetPluginV1Response) Reset

func (m *GetPluginV1Response) Reset()

func (*GetPluginV1Response) String

func (m *GetPluginV1Response) String() string

func (*GetPluginV1Response) Validate

func (this *GetPluginV1Response) Validate() error

func (*GetPluginV1Response) XXX_DiscardUnknown

func (m *GetPluginV1Response) XXX_DiscardUnknown()

func (*GetPluginV1Response) XXX_Marshal

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

func (*GetPluginV1Response) XXX_Merge

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

func (*GetPluginV1Response) XXX_Size

func (m *GetPluginV1Response) XXX_Size() int

func (*GetPluginV1Response) XXX_Unmarshal

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

type GetPluginV1ResponseWrapper

type GetPluginV1ResponseWrapper struct {
	//
	//返回码
	Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code" form:"code"`
	//
	//返回码解释
	CodeExplain string `protobuf:"bytes,2,opt,name=codeExplain,proto3" json:"codeExplain" form:"codeExplain"`
	//
	//错误详情
	Error string `protobuf:"bytes,3,opt,name=error,proto3" json:"error" form:"error"`
	//
	//返回数据
	Data                 *GetPluginV1Response `protobuf:"bytes,4,opt,name=data,proto3" json:"data" form:"data"`
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

GetPluginV1Api返回

func (*GetPluginV1ResponseWrapper) Descriptor

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

func (*GetPluginV1ResponseWrapper) GetCode

func (m *GetPluginV1ResponseWrapper) GetCode() int32

func (*GetPluginV1ResponseWrapper) GetCodeExplain

func (m *GetPluginV1ResponseWrapper) GetCodeExplain() string

func (*GetPluginV1ResponseWrapper) GetData

func (*GetPluginV1ResponseWrapper) GetError

func (m *GetPluginV1ResponseWrapper) GetError() string

func (*GetPluginV1ResponseWrapper) ProtoMessage

func (*GetPluginV1ResponseWrapper) ProtoMessage()

func (*GetPluginV1ResponseWrapper) Reset

func (m *GetPluginV1ResponseWrapper) Reset()

func (*GetPluginV1ResponseWrapper) String

func (m *GetPluginV1ResponseWrapper) String() string

func (*GetPluginV1ResponseWrapper) Validate

func (this *GetPluginV1ResponseWrapper) Validate() error

func (*GetPluginV1ResponseWrapper) XXX_DiscardUnknown

func (m *GetPluginV1ResponseWrapper) XXX_DiscardUnknown()

func (*GetPluginV1ResponseWrapper) XXX_Marshal

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

func (*GetPluginV1ResponseWrapper) XXX_Merge

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

func (*GetPluginV1ResponseWrapper) XXX_Size

func (m *GetPluginV1ResponseWrapper) XXX_Size() int

func (*GetPluginV1ResponseWrapper) XXX_Unmarshal

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

type ListPluginAgentsRequest

type ListPluginAgentsRequest struct {
	//
	//页码
	Page int32 `protobuf:"varint,1,opt,name=page,proto3" json:"page" form:"page"`
	//
	//每页数据量
	PageSize int32 `protobuf:"varint,2,opt,name=pageSize,proto3" json:"pageSize" form:"pageSize"`
	//
	//ID
	Id                   string   `protobuf:"bytes,3,opt,name=id,proto3" json:"id" form:"id"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

ListPluginAgents请求

func (*ListPluginAgentsRequest) Descriptor

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

func (*ListPluginAgentsRequest) GetId

func (m *ListPluginAgentsRequest) GetId() string

func (*ListPluginAgentsRequest) GetPage

func (m *ListPluginAgentsRequest) GetPage() int32

func (*ListPluginAgentsRequest) GetPageSize

func (m *ListPluginAgentsRequest) GetPageSize() int32

func (*ListPluginAgentsRequest) ProtoMessage

func (*ListPluginAgentsRequest) ProtoMessage()

func (*ListPluginAgentsRequest) Reset

func (m *ListPluginAgentsRequest) Reset()

func (*ListPluginAgentsRequest) String

func (m *ListPluginAgentsRequest) String() string

func (*ListPluginAgentsRequest) Validate

func (this *ListPluginAgentsRequest) Validate() error

func (*ListPluginAgentsRequest) XXX_DiscardUnknown

func (m *ListPluginAgentsRequest) XXX_DiscardUnknown()

func (*ListPluginAgentsRequest) XXX_Marshal

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

func (*ListPluginAgentsRequest) XXX_Merge

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

func (*ListPluginAgentsRequest) XXX_Size

func (m *ListPluginAgentsRequest) XXX_Size() int

func (*ListPluginAgentsRequest) XXX_Unmarshal

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

type ListPluginAgentsResponse

type ListPluginAgentsResponse struct {
	//
	//页数
	Page int32 `protobuf:"varint,1,opt,name=page,proto3" json:"page" form:"page"`
	//
	//页大小
	PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size" form:"page_size"`
	//
	//总数
	Total int32 `protobuf:"varint,3,opt,name=total,proto3" json:"total" form:"total"`
	//
	//数据列表
	List                 []*agent_admin.Agent `protobuf:"bytes,4,rep,name=list,proto3" json:"list" form:"list"`
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

ListPluginAgents返回

func (*ListPluginAgentsResponse) Descriptor

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

func (*ListPluginAgentsResponse) GetList

func (m *ListPluginAgentsResponse) GetList() []*agent_admin.Agent

func (*ListPluginAgentsResponse) GetPage

func (m *ListPluginAgentsResponse) GetPage() int32

func (*ListPluginAgentsResponse) GetPageSize

func (m *ListPluginAgentsResponse) GetPageSize() int32

func (*ListPluginAgentsResponse) GetTotal

func (m *ListPluginAgentsResponse) GetTotal() int32

func (*ListPluginAgentsResponse) ProtoMessage

func (*ListPluginAgentsResponse) ProtoMessage()

func (*ListPluginAgentsResponse) Reset

func (m *ListPluginAgentsResponse) Reset()

func (*ListPluginAgentsResponse) String

func (m *ListPluginAgentsResponse) String() string

func (*ListPluginAgentsResponse) Validate

func (this *ListPluginAgentsResponse) Validate() error

func (*ListPluginAgentsResponse) XXX_DiscardUnknown

func (m *ListPluginAgentsResponse) XXX_DiscardUnknown()

func (*ListPluginAgentsResponse) XXX_Marshal

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

func (*ListPluginAgentsResponse) XXX_Merge

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

func (*ListPluginAgentsResponse) XXX_Size

func (m *ListPluginAgentsResponse) XXX_Size() int

func (*ListPluginAgentsResponse) XXX_Unmarshal

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

type ListPluginAgentsResponseWrapper

type ListPluginAgentsResponseWrapper struct {
	//
	//返回码
	Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code" form:"code"`
	//
	//返回码解释
	CodeExplain string `protobuf:"bytes,2,opt,name=codeExplain,proto3" json:"codeExplain" form:"codeExplain"`
	//
	//错误详情
	Error string `protobuf:"bytes,3,opt,name=error,proto3" json:"error" form:"error"`
	//
	//返回数据
	Data                 *ListPluginAgentsResponse `protobuf:"bytes,4,opt,name=data,proto3" json:"data" form:"data"`
	XXX_NoUnkeyedLiteral struct{}                  `json:"-"`
	XXX_unrecognized     []byte                    `json:"-"`
	XXX_sizecache        int32                     `json:"-"`
}

ListPluginAgentsApi返回

func (*ListPluginAgentsResponseWrapper) Descriptor

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

func (*ListPluginAgentsResponseWrapper) GetCode

func (*ListPluginAgentsResponseWrapper) GetCodeExplain

func (m *ListPluginAgentsResponseWrapper) GetCodeExplain() string

func (*ListPluginAgentsResponseWrapper) GetData

func (*ListPluginAgentsResponseWrapper) GetError

func (*ListPluginAgentsResponseWrapper) ProtoMessage

func (*ListPluginAgentsResponseWrapper) ProtoMessage()

func (*ListPluginAgentsResponseWrapper) Reset

func (*ListPluginAgentsResponseWrapper) String

func (*ListPluginAgentsResponseWrapper) Validate

func (this *ListPluginAgentsResponseWrapper) Validate() error

func (*ListPluginAgentsResponseWrapper) XXX_DiscardUnknown

func (m *ListPluginAgentsResponseWrapper) XXX_DiscardUnknown()

func (*ListPluginAgentsResponseWrapper) XXX_Marshal

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

func (*ListPluginAgentsResponseWrapper) XXX_Merge

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

func (*ListPluginAgentsResponseWrapper) XXX_Size

func (m *ListPluginAgentsResponseWrapper) XXX_Size() int

func (*ListPluginAgentsResponseWrapper) XXX_Unmarshal

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

type ListPluginAgentsV1Request

type ListPluginAgentsV1Request struct {
	//
	//页码
	Page int32 `protobuf:"varint,1,opt,name=page,proto3" json:"page" form:"page"`
	//
	//每页数据量
	PageSize int32 `protobuf:"varint,2,opt,name=pageSize,proto3" json:"pageSize" form:"pageSize"`
	//
	//ID
	Id                   string   `protobuf:"bytes,3,opt,name=id,proto3" json:"id" form:"id"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

ListPluginAgentsV1请求

func (*ListPluginAgentsV1Request) Descriptor

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

func (*ListPluginAgentsV1Request) GetId

func (m *ListPluginAgentsV1Request) GetId() string

func (*ListPluginAgentsV1Request) GetPage

func (m *ListPluginAgentsV1Request) GetPage() int32

func (*ListPluginAgentsV1Request) GetPageSize

func (m *ListPluginAgentsV1Request) GetPageSize() int32

func (*ListPluginAgentsV1Request) ProtoMessage

func (*ListPluginAgentsV1Request) ProtoMessage()

func (*ListPluginAgentsV1Request) Reset

func (m *ListPluginAgentsV1Request) Reset()

func (*ListPluginAgentsV1Request) String

func (m *ListPluginAgentsV1Request) String() string

func (*ListPluginAgentsV1Request) Validate

func (this *ListPluginAgentsV1Request) Validate() error

func (*ListPluginAgentsV1Request) XXX_DiscardUnknown

func (m *ListPluginAgentsV1Request) XXX_DiscardUnknown()

func (*ListPluginAgentsV1Request) XXX_Marshal

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

func (*ListPluginAgentsV1Request) XXX_Merge

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

func (*ListPluginAgentsV1Request) XXX_Size

func (m *ListPluginAgentsV1Request) XXX_Size() int

func (*ListPluginAgentsV1Request) XXX_Unmarshal

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

type ListPluginAgentsV1Response

type ListPluginAgentsV1Response struct {
	//
	//页数
	Page int32 `protobuf:"varint,1,opt,name=page,proto3" json:"page" form:"page"`
	//
	//页大小
	PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size" form:"page_size"`
	//
	//总数
	Total int32 `protobuf:"varint,3,opt,name=total,proto3" json:"total" form:"total"`
	//
	//数据列表
	List                 []*ListPluginAgentsV1Response_List `protobuf:"bytes,4,rep,name=list,proto3" json:"list" form:"list"`
	XXX_NoUnkeyedLiteral struct{}                           `json:"-"`
	XXX_unrecognized     []byte                             `json:"-"`
	XXX_sizecache        int32                              `json:"-"`
}

ListPluginAgentsV1返回

func (*ListPluginAgentsV1Response) Descriptor

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

func (*ListPluginAgentsV1Response) GetList

func (*ListPluginAgentsV1Response) GetPage

func (m *ListPluginAgentsV1Response) GetPage() int32

func (*ListPluginAgentsV1Response) GetPageSize

func (m *ListPluginAgentsV1Response) GetPageSize() int32

func (*ListPluginAgentsV1Response) GetTotal

func (m *ListPluginAgentsV1Response) GetTotal() int32

func (*ListPluginAgentsV1Response) ProtoMessage

func (*ListPluginAgentsV1Response) ProtoMessage()

func (*ListPluginAgentsV1Response) Reset

func (m *ListPluginAgentsV1Response) Reset()

func (*ListPluginAgentsV1Response) String

func (m *ListPluginAgentsV1Response) String() string

func (*ListPluginAgentsV1Response) Validate

func (this *ListPluginAgentsV1Response) Validate() error

func (*ListPluginAgentsV1Response) XXX_DiscardUnknown

func (m *ListPluginAgentsV1Response) XXX_DiscardUnknown()

func (*ListPluginAgentsV1Response) XXX_Marshal

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

func (*ListPluginAgentsV1Response) XXX_Merge

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

func (*ListPluginAgentsV1Response) XXX_Size

func (m *ListPluginAgentsV1Response) XXX_Size() int

func (*ListPluginAgentsV1Response) XXX_Unmarshal

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

type ListPluginAgentsV1ResponseWrapper

type ListPluginAgentsV1ResponseWrapper struct {
	//
	//返回码
	Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code" form:"code"`
	//
	//返回码解释
	CodeExplain string `protobuf:"bytes,2,opt,name=codeExplain,proto3" json:"codeExplain" form:"codeExplain"`
	//
	//错误详情
	Error string `protobuf:"bytes,3,opt,name=error,proto3" json:"error" form:"error"`
	//
	//返回数据
	Data                 *ListPluginAgentsV1Response `protobuf:"bytes,4,opt,name=data,proto3" json:"data" form:"data"`
	XXX_NoUnkeyedLiteral struct{}                    `json:"-"`
	XXX_unrecognized     []byte                      `json:"-"`
	XXX_sizecache        int32                       `json:"-"`
}

ListPluginAgentsV1Api返回

func (*ListPluginAgentsV1ResponseWrapper) Descriptor

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

func (*ListPluginAgentsV1ResponseWrapper) GetCode

func (*ListPluginAgentsV1ResponseWrapper) GetCodeExplain

func (m *ListPluginAgentsV1ResponseWrapper) GetCodeExplain() string

func (*ListPluginAgentsV1ResponseWrapper) GetData

func (*ListPluginAgentsV1ResponseWrapper) GetError

func (*ListPluginAgentsV1ResponseWrapper) ProtoMessage

func (*ListPluginAgentsV1ResponseWrapper) ProtoMessage()

func (*ListPluginAgentsV1ResponseWrapper) Reset

func (*ListPluginAgentsV1ResponseWrapper) String

func (*ListPluginAgentsV1ResponseWrapper) Validate

func (this *ListPluginAgentsV1ResponseWrapper) Validate() error

func (*ListPluginAgentsV1ResponseWrapper) XXX_DiscardUnknown

func (m *ListPluginAgentsV1ResponseWrapper) XXX_DiscardUnknown()

func (*ListPluginAgentsV1ResponseWrapper) XXX_Marshal

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

func (*ListPluginAgentsV1ResponseWrapper) XXX_Merge

func (*ListPluginAgentsV1ResponseWrapper) XXX_Size

func (m *ListPluginAgentsV1ResponseWrapper) XXX_Size() int

func (*ListPluginAgentsV1ResponseWrapper) XXX_Unmarshal

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

type ListPluginAgentsV1Response_List

type ListPluginAgentsV1Response_List struct {
	//
	//Agent的ID
	AgentId string `protobuf:"bytes,1,opt,name=agentId,proto3" json:"agentId" form:"agentId"`
	//
	//Agent的IP
	Ip string `protobuf:"bytes,2,opt,name=ip,proto3" json:"ip" form:"ip"`
	//
	//Agent的状态
	Status string `protobuf:"bytes,3,opt,name=status,proto3" json:"status" form:"status"`
	//
	//插件的部署路径
	DeployPath []string `protobuf:"bytes,4,rep,name=deployPath,proto3" json:"deployPath" form:"deployPath"`
	//
	//部署的插件版本名称
	VersionName          string   `protobuf:"bytes,5,opt,name=versionName,proto3" json:"versionName" form:"versionName"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ListPluginAgentsV1Response_List) Descriptor

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

func (*ListPluginAgentsV1Response_List) GetAgentId

func (m *ListPluginAgentsV1Response_List) GetAgentId() string

func (*ListPluginAgentsV1Response_List) GetDeployPath

func (m *ListPluginAgentsV1Response_List) GetDeployPath() []string

func (*ListPluginAgentsV1Response_List) GetIp

func (*ListPluginAgentsV1Response_List) GetStatus

func (m *ListPluginAgentsV1Response_List) GetStatus() string

func (*ListPluginAgentsV1Response_List) GetVersionName

func (m *ListPluginAgentsV1Response_List) GetVersionName() string

func (*ListPluginAgentsV1Response_List) ProtoMessage

func (*ListPluginAgentsV1Response_List) ProtoMessage()

func (*ListPluginAgentsV1Response_List) Reset

func (*ListPluginAgentsV1Response_List) String

func (*ListPluginAgentsV1Response_List) Validate

func (this *ListPluginAgentsV1Response_List) Validate() error

func (*ListPluginAgentsV1Response_List) XXX_DiscardUnknown

func (m *ListPluginAgentsV1Response_List) XXX_DiscardUnknown()

func (*ListPluginAgentsV1Response_List) XXX_Marshal

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

func (*ListPluginAgentsV1Response_List) XXX_Merge

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

func (*ListPluginAgentsV1Response_List) XXX_Size

func (m *ListPluginAgentsV1Response_List) XXX_Size() int

func (*ListPluginAgentsV1Response_List) XXX_Unmarshal

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

type ListPluginRequest

type ListPluginRequest struct {
	//
	//页码
	Page int32 `protobuf:"varint,1,opt,name=page,proto3" json:"page" form:"page"`
	//
	//每页数据量
	PageSize             int32    `protobuf:"varint,2,opt,name=pageSize,proto3" json:"pageSize" form:"pageSize"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

ListPlugin请求

func (*ListPluginRequest) Descriptor

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

func (*ListPluginRequest) GetPage

func (m *ListPluginRequest) GetPage() int32

func (*ListPluginRequest) GetPageSize

func (m *ListPluginRequest) GetPageSize() int32

func (*ListPluginRequest) ProtoMessage

func (*ListPluginRequest) ProtoMessage()

func (*ListPluginRequest) Reset

func (m *ListPluginRequest) Reset()

func (*ListPluginRequest) String

func (m *ListPluginRequest) String() string

func (*ListPluginRequest) Validate

func (this *ListPluginRequest) Validate() error

func (*ListPluginRequest) XXX_DiscardUnknown

func (m *ListPluginRequest) XXX_DiscardUnknown()

func (*ListPluginRequest) XXX_Marshal

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

func (*ListPluginRequest) XXX_Merge

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

func (*ListPluginRequest) XXX_Size

func (m *ListPluginRequest) XXX_Size() int

func (*ListPluginRequest) XXX_Unmarshal

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

type ListPluginResponse

type ListPluginResponse struct {
	//
	//页数
	Page int32 `protobuf:"varint,1,opt,name=page,proto3" json:"page" form:"page"`
	//
	//页大小
	PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size" form:"page_size"`
	//
	//总数
	Total int32 `protobuf:"varint,3,opt,name=total,proto3" json:"total" form:"total"`
	//
	//数据列表
	List                 []*agent_admin.Plugin `protobuf:"bytes,4,rep,name=list,proto3" json:"list" form:"list"`
	XXX_NoUnkeyedLiteral struct{}              `json:"-"`
	XXX_unrecognized     []byte                `json:"-"`
	XXX_sizecache        int32                 `json:"-"`
}

ListPlugin返回

func (*ListPluginResponse) Descriptor

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

func (*ListPluginResponse) GetList

func (m *ListPluginResponse) GetList() []*agent_admin.Plugin

func (*ListPluginResponse) GetPage

func (m *ListPluginResponse) GetPage() int32

func (*ListPluginResponse) GetPageSize

func (m *ListPluginResponse) GetPageSize() int32

func (*ListPluginResponse) GetTotal

func (m *ListPluginResponse) GetTotal() int32

func (*ListPluginResponse) ProtoMessage

func (*ListPluginResponse) ProtoMessage()

func (*ListPluginResponse) Reset

func (m *ListPluginResponse) Reset()

func (*ListPluginResponse) String

func (m *ListPluginResponse) String() string

func (*ListPluginResponse) Validate

func (this *ListPluginResponse) Validate() error

func (*ListPluginResponse) XXX_DiscardUnknown

func (m *ListPluginResponse) XXX_DiscardUnknown()

func (*ListPluginResponse) XXX_Marshal

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

func (*ListPluginResponse) XXX_Merge

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

func (*ListPluginResponse) XXX_Size

func (m *ListPluginResponse) XXX_Size() int

func (*ListPluginResponse) XXX_Unmarshal

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

type ListPluginResponseWrapper

type ListPluginResponseWrapper struct {
	//
	//返回码
	Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code" form:"code"`
	//
	//返回码解释
	CodeExplain string `protobuf:"bytes,2,opt,name=codeExplain,proto3" json:"codeExplain" form:"codeExplain"`
	//
	//错误详情
	Error string `protobuf:"bytes,3,opt,name=error,proto3" json:"error" form:"error"`
	//
	//返回数据
	Data                 *ListPluginResponse `protobuf:"bytes,4,opt,name=data,proto3" json:"data" form:"data"`
	XXX_NoUnkeyedLiteral struct{}            `json:"-"`
	XXX_unrecognized     []byte              `json:"-"`
	XXX_sizecache        int32               `json:"-"`
}

ListPluginApi返回

func (*ListPluginResponseWrapper) Descriptor

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

func (*ListPluginResponseWrapper) GetCode

func (m *ListPluginResponseWrapper) GetCode() int32

func (*ListPluginResponseWrapper) GetCodeExplain

func (m *ListPluginResponseWrapper) GetCodeExplain() string

func (*ListPluginResponseWrapper) GetData

func (*ListPluginResponseWrapper) GetError

func (m *ListPluginResponseWrapper) GetError() string

func (*ListPluginResponseWrapper) ProtoMessage

func (*ListPluginResponseWrapper) ProtoMessage()

func (*ListPluginResponseWrapper) Reset

func (m *ListPluginResponseWrapper) Reset()

func (*ListPluginResponseWrapper) String

func (m *ListPluginResponseWrapper) String() string

func (*ListPluginResponseWrapper) Validate

func (this *ListPluginResponseWrapper) Validate() error

func (*ListPluginResponseWrapper) XXX_DiscardUnknown

func (m *ListPluginResponseWrapper) XXX_DiscardUnknown()

func (*ListPluginResponseWrapper) XXX_Marshal

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

func (*ListPluginResponseWrapper) XXX_Merge

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

func (*ListPluginResponseWrapper) XXX_Size

func (m *ListPluginResponseWrapper) XXX_Size() int

func (*ListPluginResponseWrapper) XXX_Unmarshal

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

type ListPluginV1Request

type ListPluginV1Request struct {
	//
	//页码
	Page int32 `protobuf:"varint,1,opt,name=page,proto3" json:"page" form:"page"`
	//
	//每页数据量
	PageSize             int32    `protobuf:"varint,2,opt,name=pageSize,proto3" json:"pageSize" form:"pageSize"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

ListPluginV1请求

func (*ListPluginV1Request) Descriptor

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

func (*ListPluginV1Request) GetPage

func (m *ListPluginV1Request) GetPage() int32

func (*ListPluginV1Request) GetPageSize

func (m *ListPluginV1Request) GetPageSize() int32

func (*ListPluginV1Request) ProtoMessage

func (*ListPluginV1Request) ProtoMessage()

func (*ListPluginV1Request) Reset

func (m *ListPluginV1Request) Reset()

func (*ListPluginV1Request) String

func (m *ListPluginV1Request) String() string

func (*ListPluginV1Request) Validate

func (this *ListPluginV1Request) Validate() error

func (*ListPluginV1Request) XXX_DiscardUnknown

func (m *ListPluginV1Request) XXX_DiscardUnknown()

func (*ListPluginV1Request) XXX_Marshal

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

func (*ListPluginV1Request) XXX_Merge

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

func (*ListPluginV1Request) XXX_Size

func (m *ListPluginV1Request) XXX_Size() int

func (*ListPluginV1Request) XXX_Unmarshal

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

type ListPluginV1Response

type ListPluginV1Response struct {
	//
	//页数
	Page int32 `protobuf:"varint,1,opt,name=page,proto3" json:"page" form:"page"`
	//
	//页大小
	PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size" form:"page_size"`
	//
	//总数
	Total int32 `protobuf:"varint,3,opt,name=total,proto3" json:"total" form:"total"`
	//
	//数据列表
	List                 []*ListPluginV1Response_List `protobuf:"bytes,4,rep,name=list,proto3" json:"list" form:"list"`
	XXX_NoUnkeyedLiteral struct{}                     `json:"-"`
	XXX_unrecognized     []byte                       `json:"-"`
	XXX_sizecache        int32                        `json:"-"`
}

ListPluginV1返回

func (*ListPluginV1Response) Descriptor

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

func (*ListPluginV1Response) GetList

func (*ListPluginV1Response) GetPage

func (m *ListPluginV1Response) GetPage() int32

func (*ListPluginV1Response) GetPageSize

func (m *ListPluginV1Response) GetPageSize() int32

func (*ListPluginV1Response) GetTotal

func (m *ListPluginV1Response) GetTotal() int32

func (*ListPluginV1Response) ProtoMessage

func (*ListPluginV1Response) ProtoMessage()

func (*ListPluginV1Response) Reset

func (m *ListPluginV1Response) Reset()

func (*ListPluginV1Response) String

func (m *ListPluginV1Response) String() string

func (*ListPluginV1Response) Validate

func (this *ListPluginV1Response) Validate() error

func (*ListPluginV1Response) XXX_DiscardUnknown

func (m *ListPluginV1Response) XXX_DiscardUnknown()

func (*ListPluginV1Response) XXX_Marshal

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

func (*ListPluginV1Response) XXX_Merge

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

func (*ListPluginV1Response) XXX_Size

func (m *ListPluginV1Response) XXX_Size() int

func (*ListPluginV1Response) XXX_Unmarshal

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

type ListPluginV1ResponseWrapper

type ListPluginV1ResponseWrapper struct {
	//
	//返回码
	Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code" form:"code"`
	//
	//返回码解释
	CodeExplain string `protobuf:"bytes,2,opt,name=codeExplain,proto3" json:"codeExplain" form:"codeExplain"`
	//
	//错误详情
	Error string `protobuf:"bytes,3,opt,name=error,proto3" json:"error" form:"error"`
	//
	//返回数据
	Data                 *ListPluginV1Response `protobuf:"bytes,4,opt,name=data,proto3" json:"data" form:"data"`
	XXX_NoUnkeyedLiteral struct{}              `json:"-"`
	XXX_unrecognized     []byte                `json:"-"`
	XXX_sizecache        int32                 `json:"-"`
}

ListPluginV1Api返回

func (*ListPluginV1ResponseWrapper) Descriptor

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

func (*ListPluginV1ResponseWrapper) GetCode

func (m *ListPluginV1ResponseWrapper) GetCode() int32

func (*ListPluginV1ResponseWrapper) GetCodeExplain

func (m *ListPluginV1ResponseWrapper) GetCodeExplain() string

func (*ListPluginV1ResponseWrapper) GetData

func (*ListPluginV1ResponseWrapper) GetError

func (m *ListPluginV1ResponseWrapper) GetError() string

func (*ListPluginV1ResponseWrapper) ProtoMessage

func (*ListPluginV1ResponseWrapper) ProtoMessage()

func (*ListPluginV1ResponseWrapper) Reset

func (m *ListPluginV1ResponseWrapper) Reset()

func (*ListPluginV1ResponseWrapper) String

func (m *ListPluginV1ResponseWrapper) String() string

func (*ListPluginV1ResponseWrapper) Validate

func (this *ListPluginV1ResponseWrapper) Validate() error

func (*ListPluginV1ResponseWrapper) XXX_DiscardUnknown

func (m *ListPluginV1ResponseWrapper) XXX_DiscardUnknown()

func (*ListPluginV1ResponseWrapper) XXX_Marshal

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

func (*ListPluginV1ResponseWrapper) XXX_Merge

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

func (*ListPluginV1ResponseWrapper) XXX_Size

func (m *ListPluginV1ResponseWrapper) XXX_Size() int

func (*ListPluginV1ResponseWrapper) XXX_Unmarshal

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

type ListPluginV1Response_List

type ListPluginV1Response_List struct {
	//
	//插件包的最新版本信息
	LastestVersion *ListPluginV1Response_List_LastestVersion `protobuf:"bytes,1,opt,name=lastestVersion,proto3" json:"lastestVersion" form:"lastestVersion"`
	//
	//部署的实例个数
	DeployedCount int32 `protobuf:"varint,2,opt,name=deployedCount,proto3" json:"deployedCount" form:"deployedCount"`
	//
	//ID
	Id string `protobuf:"bytes,3,opt,name=id,proto3" json:"id" form:"id"`
	//
	//名称
	Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name" form:"name"`
	//
	//部署路径
	DeployPath []string `protobuf:"bytes,5,rep,name=deployPath,proto3" json:"deployPath" form:"deployPath"`
	//
	//备注
	Memo string `protobuf:"bytes,6,opt,name=memo,proto3" json:"memo" form:"memo"`
	//
	//仓库对应包ID
	RepoPackageId string `protobuf:"bytes,7,opt,name=repoPackageId,proto3" json:"repoPackageId" form:"repoPackageId"`
	//
	//创建者
	Creator string `protobuf:"bytes,8,opt,name=creator,proto3" json:"creator" form:"creator"`
	//
	//创建时间
	Ctime int32 `protobuf:"varint,9,opt,name=ctime,proto3" json:"ctime" form:"ctime"`
	//
	//修改时间
	Mtime int32 `protobuf:"varint,10,opt,name=mtime,proto3" json:"mtime" form:"mtime"`
	//
	//是否锁定
	IsLocked             bool     `protobuf:"varint,11,opt,name=isLocked,proto3" json:"isLocked" form:"isLocked"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ListPluginV1Response_List) Descriptor

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

func (*ListPluginV1Response_List) GetCreator

func (m *ListPluginV1Response_List) GetCreator() string

func (*ListPluginV1Response_List) GetCtime

func (m *ListPluginV1Response_List) GetCtime() int32

func (*ListPluginV1Response_List) GetDeployPath

func (m *ListPluginV1Response_List) GetDeployPath() []string

func (*ListPluginV1Response_List) GetDeployedCount

func (m *ListPluginV1Response_List) GetDeployedCount() int32

func (*ListPluginV1Response_List) GetId

func (m *ListPluginV1Response_List) GetId() string

func (*ListPluginV1Response_List) GetIsLocked

func (m *ListPluginV1Response_List) GetIsLocked() bool

func (*ListPluginV1Response_List) GetLastestVersion

func (*ListPluginV1Response_List) GetMemo

func (m *ListPluginV1Response_List) GetMemo() string

func (*ListPluginV1Response_List) GetMtime

func (m *ListPluginV1Response_List) GetMtime() int32

func (*ListPluginV1Response_List) GetName

func (m *ListPluginV1Response_List) GetName() string

func (*ListPluginV1Response_List) GetRepoPackageId

func (m *ListPluginV1Response_List) GetRepoPackageId() string

func (*ListPluginV1Response_List) ProtoMessage

func (*ListPluginV1Response_List) ProtoMessage()

func (*ListPluginV1Response_List) Reset

func (m *ListPluginV1Response_List) Reset()

func (*ListPluginV1Response_List) String

func (m *ListPluginV1Response_List) String() string

func (*ListPluginV1Response_List) Validate

func (this *ListPluginV1Response_List) Validate() error

func (*ListPluginV1Response_List) XXX_DiscardUnknown

func (m *ListPluginV1Response_List) XXX_DiscardUnknown()

func (*ListPluginV1Response_List) XXX_Marshal

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

func (*ListPluginV1Response_List) XXX_Merge

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

func (*ListPluginV1Response_List) XXX_Size

func (m *ListPluginV1Response_List) XXX_Size() int

func (*ListPluginV1Response_List) XXX_Unmarshal

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

type ListPluginV1Response_List_LastestVersion

type ListPluginV1Response_List_LastestVersion struct {
	//
	//ID
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id" form:"id"`
	//
	//仓库版本ID
	RepoVersionId string `protobuf:"bytes,2,opt,name=repoVersionId,proto3" json:"repoVersionId" form:"repoVersionId"`
	//
	//版本名称
	VersionName string `protobuf:"bytes,3,opt,name=versionName,proto3" json:"versionName" form:"versionName"`
	//
	//备注
	Memo string `protobuf:"bytes,4,opt,name=memo,proto3" json:"memo" form:"memo"`
	//
	//所属插件ID
	PluginId string `protobuf:"bytes,5,opt,name=pluginId,proto3" json:"pluginId" form:"pluginId"`
	//
	//创建者
	Creator string `protobuf:"bytes,6,opt,name=creator,proto3" json:"creator" form:"creator"`
	//
	//创建时间
	Ctime int32 `protobuf:"varint,7,opt,name=ctime,proto3" json:"ctime" form:"ctime"`
	//
	//修改时间
	Mtime                int32    `protobuf:"varint,8,opt,name=mtime,proto3" json:"mtime" form:"mtime"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ListPluginV1Response_List_LastestVersion) Descriptor

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

func (*ListPluginV1Response_List_LastestVersion) GetCreator

func (*ListPluginV1Response_List_LastestVersion) GetCtime

func (*ListPluginV1Response_List_LastestVersion) GetId

func (*ListPluginV1Response_List_LastestVersion) GetMemo

func (*ListPluginV1Response_List_LastestVersion) GetMtime

func (*ListPluginV1Response_List_LastestVersion) GetPluginId

func (*ListPluginV1Response_List_LastestVersion) GetRepoVersionId

func (m *ListPluginV1Response_List_LastestVersion) GetRepoVersionId() string

func (*ListPluginV1Response_List_LastestVersion) GetVersionName

func (*ListPluginV1Response_List_LastestVersion) ProtoMessage

func (*ListPluginV1Response_List_LastestVersion) Reset

func (*ListPluginV1Response_List_LastestVersion) String

func (*ListPluginV1Response_List_LastestVersion) Validate

func (*ListPluginV1Response_List_LastestVersion) XXX_DiscardUnknown

func (m *ListPluginV1Response_List_LastestVersion) XXX_DiscardUnknown()

func (*ListPluginV1Response_List_LastestVersion) XXX_Marshal

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

func (*ListPluginV1Response_List_LastestVersion) XXX_Merge

func (*ListPluginV1Response_List_LastestVersion) XXX_Size

func (*ListPluginV1Response_List_LastestVersion) XXX_Unmarshal

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

type UpdatePluginRequest

type UpdatePluginRequest struct {
	//
	//ID
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id" form:"id"`
	//
	//名称
	Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name" form:"name"`
	//
	//备注
	Memo string `protobuf:"bytes,3,opt,name=memo,proto3" json:"memo" form:"memo"`
	//
	//部署路径
	DeployPath           []string `protobuf:"bytes,4,rep,name=deployPath,proto3" json:"deployPath" form:"deployPath"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

UpdatePlugin请求

func (*UpdatePluginRequest) Descriptor

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

func (*UpdatePluginRequest) GetDeployPath

func (m *UpdatePluginRequest) GetDeployPath() []string

func (*UpdatePluginRequest) GetId

func (m *UpdatePluginRequest) GetId() string

func (*UpdatePluginRequest) GetMemo

func (m *UpdatePluginRequest) GetMemo() string

func (*UpdatePluginRequest) GetName

func (m *UpdatePluginRequest) GetName() string

func (*UpdatePluginRequest) ProtoMessage

func (*UpdatePluginRequest) ProtoMessage()

func (*UpdatePluginRequest) Reset

func (m *UpdatePluginRequest) Reset()

func (*UpdatePluginRequest) String

func (m *UpdatePluginRequest) String() string

func (*UpdatePluginRequest) Validate

func (this *UpdatePluginRequest) Validate() error

func (*UpdatePluginRequest) XXX_DiscardUnknown

func (m *UpdatePluginRequest) XXX_DiscardUnknown()

func (*UpdatePluginRequest) XXX_Marshal

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

func (*UpdatePluginRequest) XXX_Merge

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

func (*UpdatePluginRequest) XXX_Size

func (m *UpdatePluginRequest) XXX_Size() int

func (*UpdatePluginRequest) XXX_Unmarshal

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

type UpdatePluginResponse

type UpdatePluginResponse struct {
	//
	//插件ID
	Id                   string   `protobuf:"bytes,1,opt,name=id,proto3" json:"id" form:"id"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

UpdatePlugin返回

func (*UpdatePluginResponse) Descriptor

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

func (*UpdatePluginResponse) GetId

func (m *UpdatePluginResponse) GetId() string

func (*UpdatePluginResponse) ProtoMessage

func (*UpdatePluginResponse) ProtoMessage()

func (*UpdatePluginResponse) Reset

func (m *UpdatePluginResponse) Reset()

func (*UpdatePluginResponse) String

func (m *UpdatePluginResponse) String() string

func (*UpdatePluginResponse) Validate

func (this *UpdatePluginResponse) Validate() error

func (*UpdatePluginResponse) XXX_DiscardUnknown

func (m *UpdatePluginResponse) XXX_DiscardUnknown()

func (*UpdatePluginResponse) XXX_Marshal

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

func (*UpdatePluginResponse) XXX_Merge

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

func (*UpdatePluginResponse) XXX_Size

func (m *UpdatePluginResponse) XXX_Size() int

func (*UpdatePluginResponse) XXX_Unmarshal

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

type UpdatePluginResponseWrapper

type UpdatePluginResponseWrapper struct {
	//
	//返回码
	Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code" form:"code"`
	//
	//返回码解释
	CodeExplain string `protobuf:"bytes,2,opt,name=codeExplain,proto3" json:"codeExplain" form:"codeExplain"`
	//
	//错误详情
	Error string `protobuf:"bytes,3,opt,name=error,proto3" json:"error" form:"error"`
	//
	//返回数据
	Data                 *UpdatePluginResponse `protobuf:"bytes,4,opt,name=data,proto3" json:"data" form:"data"`
	XXX_NoUnkeyedLiteral struct{}              `json:"-"`
	XXX_unrecognized     []byte                `json:"-"`
	XXX_sizecache        int32                 `json:"-"`
}

UpdatePluginApi返回

func (*UpdatePluginResponseWrapper) Descriptor

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

func (*UpdatePluginResponseWrapper) GetCode

func (m *UpdatePluginResponseWrapper) GetCode() int32

func (*UpdatePluginResponseWrapper) GetCodeExplain

func (m *UpdatePluginResponseWrapper) GetCodeExplain() string

func (*UpdatePluginResponseWrapper) GetData

func (*UpdatePluginResponseWrapper) GetError

func (m *UpdatePluginResponseWrapper) GetError() string

func (*UpdatePluginResponseWrapper) ProtoMessage

func (*UpdatePluginResponseWrapper) ProtoMessage()

func (*UpdatePluginResponseWrapper) Reset

func (m *UpdatePluginResponseWrapper) Reset()

func (*UpdatePluginResponseWrapper) String

func (m *UpdatePluginResponseWrapper) String() string

func (*UpdatePluginResponseWrapper) Validate

func (this *UpdatePluginResponseWrapper) Validate() error

func (*UpdatePluginResponseWrapper) XXX_DiscardUnknown

func (m *UpdatePluginResponseWrapper) XXX_DiscardUnknown()

func (*UpdatePluginResponseWrapper) XXX_Marshal

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

func (*UpdatePluginResponseWrapper) XXX_Merge

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

func (*UpdatePluginResponseWrapper) XXX_Size

func (m *UpdatePluginResponseWrapper) XXX_Size() int

func (*UpdatePluginResponseWrapper) XXX_Unmarshal

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

type UpdatePluginV1Request

type UpdatePluginV1Request struct {
	//
	//ID
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id" form:"id"`
	//
	//名称
	Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name" form:"name"`
	//
	//备注
	Memo string `protobuf:"bytes,3,opt,name=memo,proto3" json:"memo" form:"memo"`
	//
	//部署路径
	DeployPath           []string `protobuf:"bytes,4,rep,name=deployPath,proto3" json:"deployPath" form:"deployPath"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

UpdatePluginV1请求

func (*UpdatePluginV1Request) Descriptor

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

func (*UpdatePluginV1Request) GetDeployPath

func (m *UpdatePluginV1Request) GetDeployPath() []string

func (*UpdatePluginV1Request) GetId

func (m *UpdatePluginV1Request) GetId() string

func (*UpdatePluginV1Request) GetMemo

func (m *UpdatePluginV1Request) GetMemo() string

func (*UpdatePluginV1Request) GetName

func (m *UpdatePluginV1Request) GetName() string

func (*UpdatePluginV1Request) ProtoMessage

func (*UpdatePluginV1Request) ProtoMessage()

func (*UpdatePluginV1Request) Reset

func (m *UpdatePluginV1Request) Reset()

func (*UpdatePluginV1Request) String

func (m *UpdatePluginV1Request) String() string

func (*UpdatePluginV1Request) Validate

func (this *UpdatePluginV1Request) Validate() error

func (*UpdatePluginV1Request) XXX_DiscardUnknown

func (m *UpdatePluginV1Request) XXX_DiscardUnknown()

func (*UpdatePluginV1Request) XXX_Marshal

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

func (*UpdatePluginV1Request) XXX_Merge

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

func (*UpdatePluginV1Request) XXX_Size

func (m *UpdatePluginV1Request) XXX_Size() int

func (*UpdatePluginV1Request) XXX_Unmarshal

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

type UpdatePluginV1Response

type UpdatePluginV1Response struct {
	//
	//插件包的最新版本信息
	LastestVersion []*agent_admin.PluginVersion `protobuf:"bytes,1,rep,name=lastestVersion,proto3" json:"lastestVersion" form:"lastestVersion"`
	//
	//部署的实例个数
	DeployedCount int32 `protobuf:"varint,2,opt,name=deployedCount,proto3" json:"deployedCount" form:"deployedCount"`
	//
	//ID
	Id string `protobuf:"bytes,3,opt,name=id,proto3" json:"id" form:"id"`
	//
	//名称
	Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name" form:"name"`
	//
	//部署路径
	DeployPath []string `protobuf:"bytes,5,rep,name=deployPath,proto3" json:"deployPath" form:"deployPath"`
	//
	//备注
	Memo string `protobuf:"bytes,6,opt,name=memo,proto3" json:"memo" form:"memo"`
	//
	//仓库对应包ID
	RepoPackageId string `protobuf:"bytes,7,opt,name=repoPackageId,proto3" json:"repoPackageId" form:"repoPackageId"`
	//
	//创建者
	Creator string `protobuf:"bytes,8,opt,name=creator,proto3" json:"creator" form:"creator"`
	//
	//创建时间
	Ctime int32 `protobuf:"varint,9,opt,name=ctime,proto3" json:"ctime" form:"ctime"`
	//
	//修改时间
	Mtime int32 `protobuf:"varint,10,opt,name=mtime,proto3" json:"mtime" form:"mtime"`
	//
	//是否锁定
	IsLocked             bool     `protobuf:"varint,11,opt,name=isLocked,proto3" json:"isLocked" form:"isLocked"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

UpdatePluginV1返回

func (*UpdatePluginV1Response) Descriptor

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

func (*UpdatePluginV1Response) GetCreator

func (m *UpdatePluginV1Response) GetCreator() string

func (*UpdatePluginV1Response) GetCtime

func (m *UpdatePluginV1Response) GetCtime() int32

func (*UpdatePluginV1Response) GetDeployPath

func (m *UpdatePluginV1Response) GetDeployPath() []string

func (*UpdatePluginV1Response) GetDeployedCount

func (m *UpdatePluginV1Response) GetDeployedCount() int32

func (*UpdatePluginV1Response) GetId

func (m *UpdatePluginV1Response) GetId() string

func (*UpdatePluginV1Response) GetIsLocked

func (m *UpdatePluginV1Response) GetIsLocked() bool

func (*UpdatePluginV1Response) GetLastestVersion

func (m *UpdatePluginV1Response) GetLastestVersion() []*agent_admin.PluginVersion

func (*UpdatePluginV1Response) GetMemo

func (m *UpdatePluginV1Response) GetMemo() string

func (*UpdatePluginV1Response) GetMtime

func (m *UpdatePluginV1Response) GetMtime() int32

func (*UpdatePluginV1Response) GetName

func (m *UpdatePluginV1Response) GetName() string

func (*UpdatePluginV1Response) GetRepoPackageId

func (m *UpdatePluginV1Response) GetRepoPackageId() string

func (*UpdatePluginV1Response) ProtoMessage

func (*UpdatePluginV1Response) ProtoMessage()

func (*UpdatePluginV1Response) Reset

func (m *UpdatePluginV1Response) Reset()

func (*UpdatePluginV1Response) String

func (m *UpdatePluginV1Response) String() string

func (*UpdatePluginV1Response) Validate

func (this *UpdatePluginV1Response) Validate() error

func (*UpdatePluginV1Response) XXX_DiscardUnknown

func (m *UpdatePluginV1Response) XXX_DiscardUnknown()

func (*UpdatePluginV1Response) XXX_Marshal

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

func (*UpdatePluginV1Response) XXX_Merge

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

func (*UpdatePluginV1Response) XXX_Size

func (m *UpdatePluginV1Response) XXX_Size() int

func (*UpdatePluginV1Response) XXX_Unmarshal

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

type UpdatePluginV1ResponseWrapper

type UpdatePluginV1ResponseWrapper struct {
	//
	//返回码
	Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code" form:"code"`
	//
	//返回码解释
	CodeExplain string `protobuf:"bytes,2,opt,name=codeExplain,proto3" json:"codeExplain" form:"codeExplain"`
	//
	//错误详情
	Error string `protobuf:"bytes,3,opt,name=error,proto3" json:"error" form:"error"`
	//
	//返回数据
	Data                 *UpdatePluginV1Response `protobuf:"bytes,4,opt,name=data,proto3" json:"data" form:"data"`
	XXX_NoUnkeyedLiteral struct{}                `json:"-"`
	XXX_unrecognized     []byte                  `json:"-"`
	XXX_sizecache        int32                   `json:"-"`
}

UpdatePluginV1Api返回

func (*UpdatePluginV1ResponseWrapper) Descriptor

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

func (*UpdatePluginV1ResponseWrapper) GetCode

func (m *UpdatePluginV1ResponseWrapper) GetCode() int32

func (*UpdatePluginV1ResponseWrapper) GetCodeExplain

func (m *UpdatePluginV1ResponseWrapper) GetCodeExplain() string

func (*UpdatePluginV1ResponseWrapper) GetData

func (*UpdatePluginV1ResponseWrapper) GetError

func (m *UpdatePluginV1ResponseWrapper) GetError() string

func (*UpdatePluginV1ResponseWrapper) ProtoMessage

func (*UpdatePluginV1ResponseWrapper) ProtoMessage()

func (*UpdatePluginV1ResponseWrapper) Reset

func (m *UpdatePluginV1ResponseWrapper) Reset()

func (*UpdatePluginV1ResponseWrapper) String

func (*UpdatePluginV1ResponseWrapper) Validate

func (this *UpdatePluginV1ResponseWrapper) Validate() error

func (*UpdatePluginV1ResponseWrapper) XXX_DiscardUnknown

func (m *UpdatePluginV1ResponseWrapper) XXX_DiscardUnknown()

func (*UpdatePluginV1ResponseWrapper) XXX_Marshal

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

func (*UpdatePluginV1ResponseWrapper) XXX_Merge

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

func (*UpdatePluginV1ResponseWrapper) XXX_Size

func (m *UpdatePluginV1ResponseWrapper) XXX_Size() int

func (*UpdatePluginV1ResponseWrapper) XXX_Unmarshal

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

Jump to

Keyboard shortcuts

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