workspace

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: 12 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 BatchDownloadRequest

type BatchDownloadRequest struct {
	//
	//要下载的文件路径列表
	Paths []string `protobuf:"bytes,1,rep,name=paths,proto3" json:"paths" form:"paths"`
	//
	//程序包Id
	PackageId            string   `protobuf:"bytes,2,opt,name=packageId,proto3" json:"packageId" form:"packageId"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

BatchDownload请求

func (*BatchDownloadRequest) Descriptor

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

func (*BatchDownloadRequest) GetPackageId

func (m *BatchDownloadRequest) GetPackageId() string

func (*BatchDownloadRequest) GetPaths

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

func (*BatchDownloadRequest) ProtoMessage

func (*BatchDownloadRequest) ProtoMessage()

func (*BatchDownloadRequest) Reset

func (m *BatchDownloadRequest) Reset()

func (*BatchDownloadRequest) String

func (m *BatchDownloadRequest) String() string

func (*BatchDownloadRequest) Validate

func (this *BatchDownloadRequest) Validate() error

func (*BatchDownloadRequest) XXX_DiscardUnknown

func (m *BatchDownloadRequest) XXX_DiscardUnknown()

func (*BatchDownloadRequest) XXX_Marshal

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

func (*BatchDownloadRequest) XXX_Merge

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

func (*BatchDownloadRequest) XXX_Size

func (m *BatchDownloadRequest) XXX_Size() int

func (*BatchDownloadRequest) XXX_Unmarshal

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

type CheckWorkspaceBaseRequest

type CheckWorkspaceBaseRequest struct {
	//
	//程序包Id
	PackageId string `protobuf:"bytes,1,opt,name=packageId,proto3" json:"packageId" form:"packageId"`
	//
	//工作区基础版本Id
	WorkspaceBaseId      string   `protobuf:"bytes,2,opt,name=workspaceBaseId,proto3" json:"workspaceBaseId" form:"workspaceBaseId"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

CheckWorkspaceBase请求

func (*CheckWorkspaceBaseRequest) Descriptor

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

func (*CheckWorkspaceBaseRequest) GetPackageId

func (m *CheckWorkspaceBaseRequest) GetPackageId() string

func (*CheckWorkspaceBaseRequest) GetWorkspaceBaseId

func (m *CheckWorkspaceBaseRequest) GetWorkspaceBaseId() string

func (*CheckWorkspaceBaseRequest) ProtoMessage

func (*CheckWorkspaceBaseRequest) ProtoMessage()

func (*CheckWorkspaceBaseRequest) Reset

func (m *CheckWorkspaceBaseRequest) Reset()

func (*CheckWorkspaceBaseRequest) String

func (m *CheckWorkspaceBaseRequest) String() string

func (*CheckWorkspaceBaseRequest) Validate

func (this *CheckWorkspaceBaseRequest) Validate() error

func (*CheckWorkspaceBaseRequest) XXX_DiscardUnknown

func (m *CheckWorkspaceBaseRequest) XXX_DiscardUnknown()

func (*CheckWorkspaceBaseRequest) XXX_Marshal

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

func (*CheckWorkspaceBaseRequest) XXX_Merge

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

func (*CheckWorkspaceBaseRequest) XXX_Size

func (m *CheckWorkspaceBaseRequest) XXX_Size() int

func (*CheckWorkspaceBaseRequest) XXX_Unmarshal

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

type CheckWorkspaceBaseResponse

type CheckWorkspaceBaseResponse struct {
	//
	//成功时,返回工作区关联版本ID
	WorkspaceBaseId      string   `protobuf:"bytes,1,opt,name=workspaceBaseId,proto3" json:"workspaceBaseId" form:"workspaceBaseId"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

CheckWorkspaceBase返回

func (*CheckWorkspaceBaseResponse) Descriptor

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

func (*CheckWorkspaceBaseResponse) GetWorkspaceBaseId

func (m *CheckWorkspaceBaseResponse) GetWorkspaceBaseId() string

func (*CheckWorkspaceBaseResponse) ProtoMessage

func (*CheckWorkspaceBaseResponse) ProtoMessage()

func (*CheckWorkspaceBaseResponse) Reset

func (m *CheckWorkspaceBaseResponse) Reset()

func (*CheckWorkspaceBaseResponse) String

func (m *CheckWorkspaceBaseResponse) String() string

func (*CheckWorkspaceBaseResponse) Validate

func (this *CheckWorkspaceBaseResponse) Validate() error

func (*CheckWorkspaceBaseResponse) XXX_DiscardUnknown

func (m *CheckWorkspaceBaseResponse) XXX_DiscardUnknown()

func (*CheckWorkspaceBaseResponse) XXX_Marshal

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

func (*CheckWorkspaceBaseResponse) XXX_Merge

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

func (*CheckWorkspaceBaseResponse) XXX_Size

func (m *CheckWorkspaceBaseResponse) XXX_Size() int

func (*CheckWorkspaceBaseResponse) XXX_Unmarshal

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

type CheckWorkspaceBaseResponseWrapper

type CheckWorkspaceBaseResponseWrapper 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                 *CheckWorkspaceBaseResponse `protobuf:"bytes,4,opt,name=data,proto3" json:"data" form:"data"`
	XXX_NoUnkeyedLiteral struct{}                    `json:"-"`
	XXX_unrecognized     []byte                      `json:"-"`
	XXX_sizecache        int32                       `json:"-"`
}

CheckWorkspaceBaseApi返回

func (*CheckWorkspaceBaseResponseWrapper) Descriptor

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

func (*CheckWorkspaceBaseResponseWrapper) GetCode

func (*CheckWorkspaceBaseResponseWrapper) GetCodeExplain

func (m *CheckWorkspaceBaseResponseWrapper) GetCodeExplain() string

func (*CheckWorkspaceBaseResponseWrapper) GetData

func (*CheckWorkspaceBaseResponseWrapper) GetError

func (*CheckWorkspaceBaseResponseWrapper) ProtoMessage

func (*CheckWorkspaceBaseResponseWrapper) ProtoMessage()

func (*CheckWorkspaceBaseResponseWrapper) Reset

func (*CheckWorkspaceBaseResponseWrapper) String

func (*CheckWorkspaceBaseResponseWrapper) Validate

func (this *CheckWorkspaceBaseResponseWrapper) Validate() error

func (*CheckWorkspaceBaseResponseWrapper) XXX_DiscardUnknown

func (m *CheckWorkspaceBaseResponseWrapper) XXX_DiscardUnknown()

func (*CheckWorkspaceBaseResponseWrapper) XXX_Marshal

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

func (*CheckWorkspaceBaseResponseWrapper) XXX_Merge

func (*CheckWorkspaceBaseResponseWrapper) XXX_Size

func (m *CheckWorkspaceBaseResponseWrapper) XXX_Size() int

func (*CheckWorkspaceBaseResponseWrapper) XXX_Unmarshal

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

type ClearRequest

type ClearRequest struct {
	//
	//程序包Id
	PackageId            string   `protobuf:"bytes,1,opt,name=packageId,proto3" json:"packageId" form:"packageId"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

Clear请求

func (*ClearRequest) Descriptor

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

func (*ClearRequest) GetPackageId

func (m *ClearRequest) GetPackageId() string

func (*ClearRequest) ProtoMessage

func (*ClearRequest) ProtoMessage()

func (*ClearRequest) Reset

func (m *ClearRequest) Reset()

func (*ClearRequest) String

func (m *ClearRequest) String() string

func (*ClearRequest) Validate

func (this *ClearRequest) Validate() error

func (*ClearRequest) XXX_DiscardUnknown

func (m *ClearRequest) XXX_DiscardUnknown()

func (*ClearRequest) XXX_Marshal

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

func (*ClearRequest) XXX_Merge

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

func (*ClearRequest) XXX_Size

func (m *ClearRequest) XXX_Size() int

func (*ClearRequest) XXX_Unmarshal

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

type ClearResponseWrapper

type ClearResponseWrapper 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                 *types.Empty `protobuf:"bytes,4,opt,name=data,proto3" json:"data" form:"data"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

ClearApi返回

func (*ClearResponseWrapper) Descriptor

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

func (*ClearResponseWrapper) GetCode

func (m *ClearResponseWrapper) GetCode() int32

func (*ClearResponseWrapper) GetCodeExplain

func (m *ClearResponseWrapper) GetCodeExplain() string

func (*ClearResponseWrapper) GetData

func (m *ClearResponseWrapper) GetData() *types.Empty

func (*ClearResponseWrapper) GetError

func (m *ClearResponseWrapper) GetError() string

func (*ClearResponseWrapper) ProtoMessage

func (*ClearResponseWrapper) ProtoMessage()

func (*ClearResponseWrapper) Reset

func (m *ClearResponseWrapper) Reset()

func (*ClearResponseWrapper) String

func (m *ClearResponseWrapper) String() string

func (*ClearResponseWrapper) Validate

func (this *ClearResponseWrapper) Validate() error

func (*ClearResponseWrapper) XXX_DiscardUnknown

func (m *ClearResponseWrapper) XXX_DiscardUnknown()

func (*ClearResponseWrapper) XXX_Marshal

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

func (*ClearResponseWrapper) XXX_Merge

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

func (*ClearResponseWrapper) XXX_Size

func (m *ClearResponseWrapper) XXX_Size() int

func (*ClearResponseWrapper) XXX_Unmarshal

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

type Client

Client is the client API for workspace 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 CommitWorkspaceRequest

type CommitWorkspaceRequest struct {
	//
	//版本备注信息
	Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message" form:"message"`
	//
	//程序包Id
	PackageId string `protobuf:"bytes,2,opt,name=packageId,proto3" json:"packageId" form:"packageId"`
	//
	//版本Id
	VersionId            string   `protobuf:"bytes,3,opt,name=versionId,proto3" json:"versionId" form:"versionId"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

CommitWorkspace请求

func (*CommitWorkspaceRequest) Descriptor

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

func (*CommitWorkspaceRequest) GetMessage

func (m *CommitWorkspaceRequest) GetMessage() string

func (*CommitWorkspaceRequest) GetPackageId

func (m *CommitWorkspaceRequest) GetPackageId() string

func (*CommitWorkspaceRequest) GetVersionId

func (m *CommitWorkspaceRequest) GetVersionId() string

func (*CommitWorkspaceRequest) ProtoMessage

func (*CommitWorkspaceRequest) ProtoMessage()

func (*CommitWorkspaceRequest) Reset

func (m *CommitWorkspaceRequest) Reset()

func (*CommitWorkspaceRequest) String

func (m *CommitWorkspaceRequest) String() string

func (*CommitWorkspaceRequest) Validate

func (this *CommitWorkspaceRequest) Validate() error

func (*CommitWorkspaceRequest) XXX_DiscardUnknown

func (m *CommitWorkspaceRequest) XXX_DiscardUnknown()

func (*CommitWorkspaceRequest) XXX_Marshal

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

func (*CommitWorkspaceRequest) XXX_Merge

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

func (*CommitWorkspaceRequest) XXX_Size

func (m *CommitWorkspaceRequest) XXX_Size() int

func (*CommitWorkspaceRequest) XXX_Unmarshal

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

type CommitWorkspaceResponse

type CommitWorkspaceResponse struct {
	//
	//版本Id
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id" form:"id"`
	//
	//包配置信息
	Conf string `protobuf:"bytes,2,opt,name=conf,proto3" json:"conf" form:"conf"`
	//
	//包文件的md5检验值
	Sign                 string   `protobuf:"bytes,3,opt,name=sign,proto3" json:"sign" form:"sign"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

CommitWorkspace返回

func (*CommitWorkspaceResponse) Descriptor

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

func (*CommitWorkspaceResponse) GetConf

func (m *CommitWorkspaceResponse) GetConf() string

func (*CommitWorkspaceResponse) GetId

func (m *CommitWorkspaceResponse) GetId() string

func (*CommitWorkspaceResponse) GetSign

func (m *CommitWorkspaceResponse) GetSign() string

func (*CommitWorkspaceResponse) ProtoMessage

func (*CommitWorkspaceResponse) ProtoMessage()

func (*CommitWorkspaceResponse) Reset

func (m *CommitWorkspaceResponse) Reset()

func (*CommitWorkspaceResponse) String

func (m *CommitWorkspaceResponse) String() string

func (*CommitWorkspaceResponse) Validate

func (this *CommitWorkspaceResponse) Validate() error

func (*CommitWorkspaceResponse) XXX_DiscardUnknown

func (m *CommitWorkspaceResponse) XXX_DiscardUnknown()

func (*CommitWorkspaceResponse) XXX_Marshal

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

func (*CommitWorkspaceResponse) XXX_Merge

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

func (*CommitWorkspaceResponse) XXX_Size

func (m *CommitWorkspaceResponse) XXX_Size() int

func (*CommitWorkspaceResponse) XXX_Unmarshal

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

type CommitWorkspaceResponseWrapper

type CommitWorkspaceResponseWrapper 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                 *CommitWorkspaceResponse `protobuf:"bytes,4,opt,name=data,proto3" json:"data" form:"data"`
	XXX_NoUnkeyedLiteral struct{}                 `json:"-"`
	XXX_unrecognized     []byte                   `json:"-"`
	XXX_sizecache        int32                    `json:"-"`
}

CommitWorkspaceApi返回

func (*CommitWorkspaceResponseWrapper) Descriptor

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

func (*CommitWorkspaceResponseWrapper) GetCode

func (*CommitWorkspaceResponseWrapper) GetCodeExplain

func (m *CommitWorkspaceResponseWrapper) GetCodeExplain() string

func (*CommitWorkspaceResponseWrapper) GetData

func (*CommitWorkspaceResponseWrapper) GetError

func (m *CommitWorkspaceResponseWrapper) GetError() string

func (*CommitWorkspaceResponseWrapper) ProtoMessage

func (*CommitWorkspaceResponseWrapper) ProtoMessage()

func (*CommitWorkspaceResponseWrapper) Reset

func (m *CommitWorkspaceResponseWrapper) Reset()

func (*CommitWorkspaceResponseWrapper) String

func (*CommitWorkspaceResponseWrapper) Validate

func (this *CommitWorkspaceResponseWrapper) Validate() error

func (*CommitWorkspaceResponseWrapper) XXX_DiscardUnknown

func (m *CommitWorkspaceResponseWrapper) XXX_DiscardUnknown()

func (*CommitWorkspaceResponseWrapper) XXX_Marshal

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

func (*CommitWorkspaceResponseWrapper) XXX_Merge

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

func (*CommitWorkspaceResponseWrapper) XXX_Size

func (m *CommitWorkspaceResponseWrapper) XXX_Size() int

func (*CommitWorkspaceResponseWrapper) XXX_Unmarshal

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

type CommitWorkspaceV2Request

type CommitWorkspaceV2Request struct {
	//
	//使用指定的版本ID,不提供则自动生成
	VersionId string `protobuf:"bytes,1,opt,name=versionId,proto3" json:"versionId" form:"versionId"`
	//
	//版本备注信息
	Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message" form:"message"`
	//
	//版本名称
	Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name" form:"name"`
	//
	//文件源信息
	Source string `protobuf:"bytes,4,opt,name=source,proto3" json:"source" form:"source"`
	//
	//版本类型
	EnvType string `protobuf:"bytes,5,opt,name=env_type,json=envType,proto3" json:"env_type" form:"env_type"`
	//
	//程序包Id
	PackageId            string   `protobuf:"bytes,6,opt,name=packageId,proto3" json:"packageId" form:"packageId"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

CommitWorkspaceV2请求

func (*CommitWorkspaceV2Request) Descriptor

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

func (*CommitWorkspaceV2Request) GetEnvType

func (m *CommitWorkspaceV2Request) GetEnvType() string

func (*CommitWorkspaceV2Request) GetMessage

func (m *CommitWorkspaceV2Request) GetMessage() string

func (*CommitWorkspaceV2Request) GetName

func (m *CommitWorkspaceV2Request) GetName() string

func (*CommitWorkspaceV2Request) GetPackageId

func (m *CommitWorkspaceV2Request) GetPackageId() string

func (*CommitWorkspaceV2Request) GetSource

func (m *CommitWorkspaceV2Request) GetSource() string

func (*CommitWorkspaceV2Request) GetVersionId

func (m *CommitWorkspaceV2Request) GetVersionId() string

func (*CommitWorkspaceV2Request) ProtoMessage

func (*CommitWorkspaceV2Request) ProtoMessage()

func (*CommitWorkspaceV2Request) Reset

func (m *CommitWorkspaceV2Request) Reset()

func (*CommitWorkspaceV2Request) String

func (m *CommitWorkspaceV2Request) String() string

func (*CommitWorkspaceV2Request) Validate

func (this *CommitWorkspaceV2Request) Validate() error

func (*CommitWorkspaceV2Request) XXX_DiscardUnknown

func (m *CommitWorkspaceV2Request) XXX_DiscardUnknown()

func (*CommitWorkspaceV2Request) XXX_Marshal

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

func (*CommitWorkspaceV2Request) XXX_Merge

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

func (*CommitWorkspaceV2Request) XXX_Size

func (m *CommitWorkspaceV2Request) XXX_Size() int

func (*CommitWorkspaceV2Request) XXX_Unmarshal

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

type CommitWorkspaceV2Response

type CommitWorkspaceV2Response struct {
	//
	//返回码
	Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code" form:"code"`
	//
	//错误信息
	Error string `protobuf:"bytes,2,opt,name=error,proto3" json:"error" form:"error"`
	//
	//返回信息
	Message string `protobuf:"bytes,3,opt,name=message,proto3" json:"message" form:"message"`
	//
	//返回数据,成功创建的新版本ID
	Data                 string   `protobuf:"bytes,4,opt,name=data,proto3" json:"data" form:"data"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

CommitWorkspaceV2返回

func (*CommitWorkspaceV2Response) Descriptor

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

func (*CommitWorkspaceV2Response) GetCode

func (m *CommitWorkspaceV2Response) GetCode() int32

func (*CommitWorkspaceV2Response) GetData

func (m *CommitWorkspaceV2Response) GetData() string

func (*CommitWorkspaceV2Response) GetError

func (m *CommitWorkspaceV2Response) GetError() string

func (*CommitWorkspaceV2Response) GetMessage

func (m *CommitWorkspaceV2Response) GetMessage() string

func (*CommitWorkspaceV2Response) ProtoMessage

func (*CommitWorkspaceV2Response) ProtoMessage()

func (*CommitWorkspaceV2Response) Reset

func (m *CommitWorkspaceV2Response) Reset()

func (*CommitWorkspaceV2Response) String

func (m *CommitWorkspaceV2Response) String() string

func (*CommitWorkspaceV2Response) Validate

func (this *CommitWorkspaceV2Response) Validate() error

func (*CommitWorkspaceV2Response) XXX_DiscardUnknown

func (m *CommitWorkspaceV2Response) XXX_DiscardUnknown()

func (*CommitWorkspaceV2Response) XXX_Marshal

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

func (*CommitWorkspaceV2Response) XXX_Merge

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

func (*CommitWorkspaceV2Response) XXX_Size

func (m *CommitWorkspaceV2Response) XXX_Size() int

func (*CommitWorkspaceV2Response) XXX_Unmarshal

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

type CommitWorkspaceV2ResponseWrapper

type CommitWorkspaceV2ResponseWrapper 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                 *CommitWorkspaceV2Response `protobuf:"bytes,4,opt,name=data,proto3" json:"data" form:"data"`
	XXX_NoUnkeyedLiteral struct{}                   `json:"-"`
	XXX_unrecognized     []byte                     `json:"-"`
	XXX_sizecache        int32                      `json:"-"`
}

CommitWorkspaceV2Api返回

func (*CommitWorkspaceV2ResponseWrapper) Descriptor

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

func (*CommitWorkspaceV2ResponseWrapper) GetCode

func (*CommitWorkspaceV2ResponseWrapper) GetCodeExplain

func (m *CommitWorkspaceV2ResponseWrapper) GetCodeExplain() string

func (*CommitWorkspaceV2ResponseWrapper) GetData

func (*CommitWorkspaceV2ResponseWrapper) GetError

func (*CommitWorkspaceV2ResponseWrapper) ProtoMessage

func (*CommitWorkspaceV2ResponseWrapper) ProtoMessage()

func (*CommitWorkspaceV2ResponseWrapper) Reset

func (*CommitWorkspaceV2ResponseWrapper) String

func (*CommitWorkspaceV2ResponseWrapper) Validate

func (this *CommitWorkspaceV2ResponseWrapper) Validate() error

func (*CommitWorkspaceV2ResponseWrapper) XXX_DiscardUnknown

func (m *CommitWorkspaceV2ResponseWrapper) XXX_DiscardUnknown()

func (*CommitWorkspaceV2ResponseWrapper) XXX_Marshal

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

func (*CommitWorkspaceV2ResponseWrapper) XXX_Merge

func (*CommitWorkspaceV2ResponseWrapper) XXX_Size

func (m *CommitWorkspaceV2ResponseWrapper) XXX_Size() int

func (*CommitWorkspaceV2ResponseWrapper) XXX_Unmarshal

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

type CompareWorkspaceWithVersionRequest

type CompareWorkspaceWithVersionRequest struct {
	//
	//程序包Id
	PackageId string `protobuf:"bytes,1,opt,name=packageId,proto3" json:"packageId" form:"packageId"`
	//
	//版本Id
	VersionId            string   `protobuf:"bytes,2,opt,name=versionId,proto3" json:"versionId" form:"versionId"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

CompareWorkspaceWithVersion请求

func (*CompareWorkspaceWithVersionRequest) Descriptor

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

func (*CompareWorkspaceWithVersionRequest) GetPackageId

func (m *CompareWorkspaceWithVersionRequest) GetPackageId() string

func (*CompareWorkspaceWithVersionRequest) GetVersionId

func (m *CompareWorkspaceWithVersionRequest) GetVersionId() string

func (*CompareWorkspaceWithVersionRequest) ProtoMessage

func (*CompareWorkspaceWithVersionRequest) ProtoMessage()

func (*CompareWorkspaceWithVersionRequest) Reset

func (*CompareWorkspaceWithVersionRequest) String

func (*CompareWorkspaceWithVersionRequest) Validate

func (this *CompareWorkspaceWithVersionRequest) Validate() error

func (*CompareWorkspaceWithVersionRequest) XXX_DiscardUnknown

func (m *CompareWorkspaceWithVersionRequest) XXX_DiscardUnknown()

func (*CompareWorkspaceWithVersionRequest) XXX_Marshal

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

func (*CompareWorkspaceWithVersionRequest) XXX_Merge

func (*CompareWorkspaceWithVersionRequest) XXX_Size

func (*CompareWorkspaceWithVersionRequest) XXX_Unmarshal

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

type CompareWorkspaceWithVersionResponse

type CompareWorkspaceWithVersionResponse struct {
	//
	//版本来源
	FromVersion string `protobuf:"bytes,1,opt,name=fromVersion,proto3" json:"fromVersion" form:"fromVersion"`
	//
	//版本去向
	ToVersion string `protobuf:"bytes,2,opt,name=toVersion,proto3" json:"toVersion" form:"toVersion"`
	//
	//差异详情
	Detail               []*CompareWorkspaceWithVersionResponse_Detail `protobuf:"bytes,3,rep,name=detail,proto3" json:"detail" form:"detail"`
	XXX_NoUnkeyedLiteral struct{}                                      `json:"-"`
	XXX_unrecognized     []byte                                        `json:"-"`
	XXX_sizecache        int32                                         `json:"-"`
}

CompareWorkspaceWithVersion返回

func (*CompareWorkspaceWithVersionResponse) Descriptor

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

func (*CompareWorkspaceWithVersionResponse) GetDetail

func (*CompareWorkspaceWithVersionResponse) GetFromVersion

func (m *CompareWorkspaceWithVersionResponse) GetFromVersion() string

func (*CompareWorkspaceWithVersionResponse) GetToVersion

func (m *CompareWorkspaceWithVersionResponse) GetToVersion() string

func (*CompareWorkspaceWithVersionResponse) ProtoMessage

func (*CompareWorkspaceWithVersionResponse) ProtoMessage()

func (*CompareWorkspaceWithVersionResponse) Reset

func (*CompareWorkspaceWithVersionResponse) String

func (*CompareWorkspaceWithVersionResponse) Validate

func (this *CompareWorkspaceWithVersionResponse) Validate() error

func (*CompareWorkspaceWithVersionResponse) XXX_DiscardUnknown

func (m *CompareWorkspaceWithVersionResponse) XXX_DiscardUnknown()

func (*CompareWorkspaceWithVersionResponse) XXX_Marshal

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

func (*CompareWorkspaceWithVersionResponse) XXX_Merge

func (*CompareWorkspaceWithVersionResponse) XXX_Size

func (*CompareWorkspaceWithVersionResponse) XXX_Unmarshal

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

type CompareWorkspaceWithVersionResponseWrapper

type CompareWorkspaceWithVersionResponseWrapper 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                 *CompareWorkspaceWithVersionResponse `protobuf:"bytes,4,opt,name=data,proto3" json:"data" form:"data"`
	XXX_NoUnkeyedLiteral struct{}                             `json:"-"`
	XXX_unrecognized     []byte                               `json:"-"`
	XXX_sizecache        int32                                `json:"-"`
}

CompareWorkspaceWithVersionApi返回

func (*CompareWorkspaceWithVersionResponseWrapper) Descriptor

func (*CompareWorkspaceWithVersionResponseWrapper) GetCode

func (*CompareWorkspaceWithVersionResponseWrapper) GetCodeExplain

func (*CompareWorkspaceWithVersionResponseWrapper) GetData

func (*CompareWorkspaceWithVersionResponseWrapper) GetError

func (*CompareWorkspaceWithVersionResponseWrapper) ProtoMessage

func (*CompareWorkspaceWithVersionResponseWrapper) Reset

func (*CompareWorkspaceWithVersionResponseWrapper) String

func (*CompareWorkspaceWithVersionResponseWrapper) Validate

func (*CompareWorkspaceWithVersionResponseWrapper) XXX_DiscardUnknown

func (m *CompareWorkspaceWithVersionResponseWrapper) XXX_DiscardUnknown()

func (*CompareWorkspaceWithVersionResponseWrapper) XXX_Marshal

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

func (*CompareWorkspaceWithVersionResponseWrapper) XXX_Merge

func (*CompareWorkspaceWithVersionResponseWrapper) XXX_Size

func (*CompareWorkspaceWithVersionResponseWrapper) XXX_Unmarshal

type CompareWorkspaceWithVersionResponse_Detail

type CompareWorkspaceWithVersionResponse_Detail struct {
	//
	//操作类型
	Op string `protobuf:"bytes,1,opt,name=op,proto3" json:"op" form:"op"`
	//
	//文件路径
	File string `protobuf:"bytes,2,opt,name=file,proto3" json:"file" form:"file"`
	//
	//文件类型
	Type string `protobuf:"bytes,3,opt,name=type,proto3" json:"type" form:"type"`
	//
	//文件权限
	Perm string `protobuf:"bytes,4,opt,name=perm,proto3" json:"perm" form:"perm"`
	//
	//新的检验值
	NewMd5 string `protobuf:"bytes,5,opt,name=newMd5,proto3" json:"newMd5" form:"newMd5"`
	//
	//旧的检验值
	OldMd5 string `protobuf:"bytes,6,opt,name=oldMd5,proto3" json:"oldMd5" form:"oldMd5"`
	//
	//文件原本大小
	OldSize int64 `protobuf:"varint,7,opt,name=oldSize,proto3" json:"oldSize" form:"oldSize"`
	//
	//文件新的大小
	NewSize int64 `protobuf:"varint,8,opt,name=newSize,proto3" json:"newSize" form:"newSize"`
	//
	//参数path的编码格式
	Encoding             string   `protobuf:"bytes,9,opt,name=encoding,proto3" json:"encoding" form:"encoding"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*CompareWorkspaceWithVersionResponse_Detail) Descriptor

func (*CompareWorkspaceWithVersionResponse_Detail) GetEncoding

func (*CompareWorkspaceWithVersionResponse_Detail) GetFile

func (*CompareWorkspaceWithVersionResponse_Detail) GetNewMd5

func (*CompareWorkspaceWithVersionResponse_Detail) GetNewSize

func (*CompareWorkspaceWithVersionResponse_Detail) GetOldMd5

func (*CompareWorkspaceWithVersionResponse_Detail) GetOldSize

func (*CompareWorkspaceWithVersionResponse_Detail) GetOp

func (*CompareWorkspaceWithVersionResponse_Detail) GetPerm

func (*CompareWorkspaceWithVersionResponse_Detail) GetType

func (*CompareWorkspaceWithVersionResponse_Detail) ProtoMessage

func (*CompareWorkspaceWithVersionResponse_Detail) Reset

func (*CompareWorkspaceWithVersionResponse_Detail) String

func (*CompareWorkspaceWithVersionResponse_Detail) Validate

func (*CompareWorkspaceWithVersionResponse_Detail) XXX_DiscardUnknown

func (m *CompareWorkspaceWithVersionResponse_Detail) XXX_DiscardUnknown()

func (*CompareWorkspaceWithVersionResponse_Detail) XXX_Marshal

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

func (*CompareWorkspaceWithVersionResponse_Detail) XXX_Merge

func (*CompareWorkspaceWithVersionResponse_Detail) XXX_Size

func (*CompareWorkspaceWithVersionResponse_Detail) XXX_Unmarshal

type DownloadFileRequest

type DownloadFileRequest struct {
	//
	//要操作的文件、目录路径,上传时path是指存储的目录
	Path string `protobuf:"bytes,1,opt,name=path,proto3" json:"path" form:"path"`
	//
	//参数path的编码格式
	Encoding string `protobuf:"bytes,2,opt,name=encoding,proto3" json:"encoding" form:"encoding"`
	//
	//文件操作类型包括:下载 -> download
	Op string `protobuf:"bytes,3,opt,name=op,proto3" json:"op" form:"op"`
	//
	//包Id
	PackageId            string   `protobuf:"bytes,4,opt,name=packageId,proto3" json:"packageId" form:"packageId"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

DownloadFile请求

func (*DownloadFileRequest) Descriptor

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

func (*DownloadFileRequest) GetEncoding

func (m *DownloadFileRequest) GetEncoding() string

func (*DownloadFileRequest) GetOp

func (m *DownloadFileRequest) GetOp() string

func (*DownloadFileRequest) GetPackageId

func (m *DownloadFileRequest) GetPackageId() string

func (*DownloadFileRequest) GetPath

func (m *DownloadFileRequest) GetPath() string

func (*DownloadFileRequest) ProtoMessage

func (*DownloadFileRequest) ProtoMessage()

func (*DownloadFileRequest) Reset

func (m *DownloadFileRequest) Reset()

func (*DownloadFileRequest) String

func (m *DownloadFileRequest) String() string

func (*DownloadFileRequest) Validate

func (this *DownloadFileRequest) Validate() error

func (*DownloadFileRequest) XXX_DiscardUnknown

func (m *DownloadFileRequest) XXX_DiscardUnknown()

func (*DownloadFileRequest) XXX_Marshal

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

func (*DownloadFileRequest) XXX_Merge

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

func (*DownloadFileRequest) XXX_Size

func (m *DownloadFileRequest) XXX_Size() int

func (*DownloadFileRequest) XXX_Unmarshal

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

type FileCompareRequest

type FileCompareRequest struct {
	//
	//要比较的文件列表
	Items []*FileCompareRequest_Items `protobuf:"bytes,1,rep,name=items,proto3" json:"items" form:"items"`
	//
	//程序包Id
	PackageId            string   `protobuf:"bytes,2,opt,name=packageId,proto3" json:"packageId" form:"packageId"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

FileCompare请求

func (*FileCompareRequest) Descriptor

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

func (*FileCompareRequest) GetItems

func (*FileCompareRequest) GetPackageId

func (m *FileCompareRequest) GetPackageId() string

func (*FileCompareRequest) ProtoMessage

func (*FileCompareRequest) ProtoMessage()

func (*FileCompareRequest) Reset

func (m *FileCompareRequest) Reset()

func (*FileCompareRequest) String

func (m *FileCompareRequest) String() string

func (*FileCompareRequest) Validate

func (this *FileCompareRequest) Validate() error

func (*FileCompareRequest) XXX_DiscardUnknown

func (m *FileCompareRequest) XXX_DiscardUnknown()

func (*FileCompareRequest) XXX_Marshal

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

func (*FileCompareRequest) XXX_Merge

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

func (*FileCompareRequest) XXX_Size

func (m *FileCompareRequest) XXX_Size() int

func (*FileCompareRequest) XXX_Unmarshal

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

type FileCompareRequest_Items

type FileCompareRequest_Items struct {
	//
	//文件旧名称
	OldName string `protobuf:"bytes,1,opt,name=oldName,proto3" json:"oldName" form:"oldName"`
	//
	//文件新名称
	NewName string `protobuf:"bytes,2,opt,name=newName,proto3" json:"newName" form:"newName"`
	//
	//要比较的文件路径
	Path                 string   `protobuf:"bytes,3,opt,name=path,proto3" json:"path" form:"path"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*FileCompareRequest_Items) Descriptor

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

func (*FileCompareRequest_Items) GetNewName

func (m *FileCompareRequest_Items) GetNewName() string

func (*FileCompareRequest_Items) GetOldName

func (m *FileCompareRequest_Items) GetOldName() string

func (*FileCompareRequest_Items) GetPath

func (m *FileCompareRequest_Items) GetPath() string

func (*FileCompareRequest_Items) ProtoMessage

func (*FileCompareRequest_Items) ProtoMessage()

func (*FileCompareRequest_Items) Reset

func (m *FileCompareRequest_Items) Reset()

func (*FileCompareRequest_Items) String

func (m *FileCompareRequest_Items) String() string

func (*FileCompareRequest_Items) Validate

func (this *FileCompareRequest_Items) Validate() error

func (*FileCompareRequest_Items) XXX_DiscardUnknown

func (m *FileCompareRequest_Items) XXX_DiscardUnknown()

func (*FileCompareRequest_Items) XXX_Marshal

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

func (*FileCompareRequest_Items) XXX_Merge

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

func (*FileCompareRequest_Items) XXX_Size

func (m *FileCompareRequest_Items) XXX_Size() int

func (*FileCompareRequest_Items) XXX_Unmarshal

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

type FileCompareResponse

type FileCompareResponse struct {
	//
	//差异详情列表
	Datail               []*FileCompareResponse_Datail `protobuf:"bytes,1,rep,name=datail,proto3" json:"datail" form:"datail"`
	XXX_NoUnkeyedLiteral struct{}                      `json:"-"`
	XXX_unrecognized     []byte                        `json:"-"`
	XXX_sizecache        int32                         `json:"-"`
}

FileCompare返回

func (*FileCompareResponse) Descriptor

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

func (*FileCompareResponse) GetDatail

func (*FileCompareResponse) ProtoMessage

func (*FileCompareResponse) ProtoMessage()

func (*FileCompareResponse) Reset

func (m *FileCompareResponse) Reset()

func (*FileCompareResponse) String

func (m *FileCompareResponse) String() string

func (*FileCompareResponse) Validate

func (this *FileCompareResponse) Validate() error

func (*FileCompareResponse) XXX_DiscardUnknown

func (m *FileCompareResponse) XXX_DiscardUnknown()

func (*FileCompareResponse) XXX_Marshal

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

func (*FileCompareResponse) XXX_Merge

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

func (*FileCompareResponse) XXX_Size

func (m *FileCompareResponse) XXX_Size() int

func (*FileCompareResponse) XXX_Unmarshal

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

type FileCompareResponseWrapper

type FileCompareResponseWrapper 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                 *FileCompareResponse `protobuf:"bytes,4,opt,name=data,proto3" json:"data" form:"data"`
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

FileCompareApi返回

func (*FileCompareResponseWrapper) Descriptor

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

func (*FileCompareResponseWrapper) GetCode

func (m *FileCompareResponseWrapper) GetCode() int32

func (*FileCompareResponseWrapper) GetCodeExplain

func (m *FileCompareResponseWrapper) GetCodeExplain() string

func (*FileCompareResponseWrapper) GetData

func (*FileCompareResponseWrapper) GetError

func (m *FileCompareResponseWrapper) GetError() string

func (*FileCompareResponseWrapper) ProtoMessage

func (*FileCompareResponseWrapper) ProtoMessage()

func (*FileCompareResponseWrapper) Reset

func (m *FileCompareResponseWrapper) Reset()

func (*FileCompareResponseWrapper) String

func (m *FileCompareResponseWrapper) String() string

func (*FileCompareResponseWrapper) Validate

func (this *FileCompareResponseWrapper) Validate() error

func (*FileCompareResponseWrapper) XXX_DiscardUnknown

func (m *FileCompareResponseWrapper) XXX_DiscardUnknown()

func (*FileCompareResponseWrapper) XXX_Marshal

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

func (*FileCompareResponseWrapper) XXX_Merge

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

func (*FileCompareResponseWrapper) XXX_Size

func (m *FileCompareResponseWrapper) XXX_Size() int

func (*FileCompareResponseWrapper) XXX_Unmarshal

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

type FileCompareResponse_Datail

type FileCompareResponse_Datail struct {
	//
	//差异信息
	Diff string `protobuf:"bytes,1,opt,name=diff,proto3" json:"diff" form:"diff"`
	//
	//文件路径
	File                 string   `protobuf:"bytes,2,opt,name=file,proto3" json:"file" form:"file"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*FileCompareResponse_Datail) Descriptor

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

func (*FileCompareResponse_Datail) GetDiff

func (m *FileCompareResponse_Datail) GetDiff() string

func (*FileCompareResponse_Datail) GetFile

func (m *FileCompareResponse_Datail) GetFile() string

func (*FileCompareResponse_Datail) ProtoMessage

func (*FileCompareResponse_Datail) ProtoMessage()

func (*FileCompareResponse_Datail) Reset

func (m *FileCompareResponse_Datail) Reset()

func (*FileCompareResponse_Datail) String

func (m *FileCompareResponse_Datail) String() string

func (*FileCompareResponse_Datail) Validate

func (this *FileCompareResponse_Datail) Validate() error

func (*FileCompareResponse_Datail) XXX_DiscardUnknown

func (m *FileCompareResponse_Datail) XXX_DiscardUnknown()

func (*FileCompareResponse_Datail) XXX_Marshal

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

func (*FileCompareResponse_Datail) XXX_Merge

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

func (*FileCompareResponse_Datail) XXX_Size

func (m *FileCompareResponse_Datail) XXX_Size() int

func (*FileCompareResponse_Datail) XXX_Unmarshal

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

type FileDownloadRequest

type FileDownloadRequest struct {
	//
	//只查看指定文件内容差异
	Path string `protobuf:"bytes,1,opt,name=path,proto3" json:"path" form:"path"`
	//
	//参数path的编码格式
	Encoding string `protobuf:"bytes,2,opt,name=encoding,proto3" json:"encoding" form:"encoding"`
	//
	//程序包Id
	PackageId            string   `protobuf:"bytes,3,opt,name=packageId,proto3" json:"packageId" form:"packageId"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

FileDownload请求

func (*FileDownloadRequest) Descriptor

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

func (*FileDownloadRequest) GetEncoding

func (m *FileDownloadRequest) GetEncoding() string

func (*FileDownloadRequest) GetPackageId

func (m *FileDownloadRequest) GetPackageId() string

func (*FileDownloadRequest) GetPath

func (m *FileDownloadRequest) GetPath() string

func (*FileDownloadRequest) ProtoMessage

func (*FileDownloadRequest) ProtoMessage()

func (*FileDownloadRequest) Reset

func (m *FileDownloadRequest) Reset()

func (*FileDownloadRequest) String

func (m *FileDownloadRequest) String() string

func (*FileDownloadRequest) Validate

func (this *FileDownloadRequest) Validate() error

func (*FileDownloadRequest) XXX_DiscardUnknown

func (m *FileDownloadRequest) XXX_DiscardUnknown()

func (*FileDownloadRequest) XXX_Marshal

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

func (*FileDownloadRequest) XXX_Merge

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

func (*FileDownloadRequest) XXX_Size

func (m *FileDownloadRequest) XXX_Size() int

func (*FileDownloadRequest) XXX_Unmarshal

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

type GetFileInfoRequest

type GetFileInfoRequest struct {
	//
	//要操作的文件、目录路径,上传时path是指存储的目录
	Path string `protobuf:"bytes,1,opt,name=path,proto3" json:"path" form:"path"`
	//
	//参数path的编码格式
	Encodeing string `protobuf:"bytes,2,opt,name=encodeing,proto3" json:"encodeing" form:"encodeing"`
	//
	//文件操作类型包括:查询属性和md5 -> info
	Op string `protobuf:"bytes,3,opt,name=op,proto3" json:"op" form:"op"`
	//
	//包Id
	PackageId            string   `protobuf:"bytes,4,opt,name=packageId,proto3" json:"packageId" form:"packageId"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

GetFileInfo请求

func (*GetFileInfoRequest) Descriptor

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

func (*GetFileInfoRequest) GetEncodeing

func (m *GetFileInfoRequest) GetEncodeing() string

func (*GetFileInfoRequest) GetOp

func (m *GetFileInfoRequest) GetOp() string

func (*GetFileInfoRequest) GetPackageId

func (m *GetFileInfoRequest) GetPackageId() string

func (*GetFileInfoRequest) GetPath

func (m *GetFileInfoRequest) GetPath() string

func (*GetFileInfoRequest) ProtoMessage

func (*GetFileInfoRequest) ProtoMessage()

func (*GetFileInfoRequest) Reset

func (m *GetFileInfoRequest) Reset()

func (*GetFileInfoRequest) String

func (m *GetFileInfoRequest) String() string

func (*GetFileInfoRequest) Validate

func (this *GetFileInfoRequest) Validate() error

func (*GetFileInfoRequest) XXX_DiscardUnknown

func (m *GetFileInfoRequest) XXX_DiscardUnknown()

func (*GetFileInfoRequest) XXX_Marshal

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

func (*GetFileInfoRequest) XXX_Merge

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

func (*GetFileInfoRequest) XXX_Size

func (m *GetFileInfoRequest) XXX_Size() int

func (*GetFileInfoRequest) XXX_Unmarshal

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

type GetFileInfoResponse

type GetFileInfoResponse struct {
	//
	//文件名
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name" form:"name"`
	//
	//文件类型
	Type string `protobuf:"bytes,2,opt,name=type,proto3" json:"type" form:"type"`
	//
	//文件大小
	Size_ int32 `protobuf:"varint,3,opt,name=size,proto3" json:"size" form:"size"`
	//
	//chmod、mkdir新文件权限
	Perm string `protobuf:"bytes,4,opt,name=perm,proto3" json:"perm" form:"perm"`
	//
	//文件的link类型
	Link string `protobuf:"bytes,5,opt,name=link,proto3" json:"link" form:"link"`
	//
	//mtime
	Mtime string `protobuf:"bytes,6,opt,name=mtime,proto3" json:"mtime" form:"mtime"`
	//
	//ctime
	Ctime                string   `protobuf:"bytes,7,opt,name=ctime,proto3" json:"ctime" form:"ctime"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

GetFileInfo返回

func (*GetFileInfoResponse) Descriptor

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

func (*GetFileInfoResponse) GetCtime

func (m *GetFileInfoResponse) GetCtime() string
func (m *GetFileInfoResponse) GetLink() string

func (*GetFileInfoResponse) GetMtime

func (m *GetFileInfoResponse) GetMtime() string

func (*GetFileInfoResponse) GetName

func (m *GetFileInfoResponse) GetName() string

func (*GetFileInfoResponse) GetPerm

func (m *GetFileInfoResponse) GetPerm() string

func (*GetFileInfoResponse) GetSize_

func (m *GetFileInfoResponse) GetSize_() int32

func (*GetFileInfoResponse) GetType

func (m *GetFileInfoResponse) GetType() string

func (*GetFileInfoResponse) ProtoMessage

func (*GetFileInfoResponse) ProtoMessage()

func (*GetFileInfoResponse) Reset

func (m *GetFileInfoResponse) Reset()

func (*GetFileInfoResponse) String

func (m *GetFileInfoResponse) String() string

func (*GetFileInfoResponse) Validate

func (this *GetFileInfoResponse) Validate() error

func (*GetFileInfoResponse) XXX_DiscardUnknown

func (m *GetFileInfoResponse) XXX_DiscardUnknown()

func (*GetFileInfoResponse) XXX_Marshal

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

func (*GetFileInfoResponse) XXX_Merge

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

func (*GetFileInfoResponse) XXX_Size

func (m *GetFileInfoResponse) XXX_Size() int

func (*GetFileInfoResponse) XXX_Unmarshal

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

type GetFileInfoResponseWrapper

type GetFileInfoResponseWrapper 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                 *GetFileInfoResponse `protobuf:"bytes,4,opt,name=data,proto3" json:"data" form:"data"`
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

GetFileInfoApi返回

func (*GetFileInfoResponseWrapper) Descriptor

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

func (*GetFileInfoResponseWrapper) GetCode

func (m *GetFileInfoResponseWrapper) GetCode() int32

func (*GetFileInfoResponseWrapper) GetCodeExplain

func (m *GetFileInfoResponseWrapper) GetCodeExplain() string

func (*GetFileInfoResponseWrapper) GetData

func (*GetFileInfoResponseWrapper) GetError

func (m *GetFileInfoResponseWrapper) GetError() string

func (*GetFileInfoResponseWrapper) ProtoMessage

func (*GetFileInfoResponseWrapper) ProtoMessage()

func (*GetFileInfoResponseWrapper) Reset

func (m *GetFileInfoResponseWrapper) Reset()

func (*GetFileInfoResponseWrapper) String

func (m *GetFileInfoResponseWrapper) String() string

func (*GetFileInfoResponseWrapper) Validate

func (this *GetFileInfoResponseWrapper) Validate() error

func (*GetFileInfoResponseWrapper) XXX_DiscardUnknown

func (m *GetFileInfoResponseWrapper) XXX_DiscardUnknown()

func (*GetFileInfoResponseWrapper) XXX_Marshal

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

func (*GetFileInfoResponseWrapper) XXX_Merge

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

func (*GetFileInfoResponseWrapper) XXX_Size

func (m *GetFileInfoResponseWrapper) XXX_Size() int

func (*GetFileInfoResponseWrapper) XXX_Unmarshal

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

type GetFileListRequest

type GetFileListRequest struct {
	//
	//要操作的文件、目录路径,上传时path是指存储的目录
	Path string `protobuf:"bytes,1,opt,name=path,proto3" json:"path" form:"path"`
	//
	//参数path的编码格式
	Encoding string `protobuf:"bytes,2,opt,name=encoding,proto3" json:"encoding" form:"encoding"`
	//
	//文件操作类型包括:查看文件列表 -> list
	Op string `protobuf:"bytes,3,opt,name=op,proto3" json:"op" form:"op"`
	//
	//路径扁平化(true,false)
	Flatten string `protobuf:"bytes,4,opt,name=flatten,proto3" json:"flatten" form:"flatten"`
	//
	//包Id
	PackageId            string   `protobuf:"bytes,5,opt,name=packageId,proto3" json:"packageId" form:"packageId"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

GetFileList请求

func (*GetFileListRequest) Descriptor

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

func (*GetFileListRequest) GetEncoding

func (m *GetFileListRequest) GetEncoding() string

func (*GetFileListRequest) GetFlatten

func (m *GetFileListRequest) GetFlatten() string

func (*GetFileListRequest) GetOp

func (m *GetFileListRequest) GetOp() string

func (*GetFileListRequest) GetPackageId

func (m *GetFileListRequest) GetPackageId() string

func (*GetFileListRequest) GetPath

func (m *GetFileListRequest) GetPath() string

func (*GetFileListRequest) ProtoMessage

func (*GetFileListRequest) ProtoMessage()

func (*GetFileListRequest) Reset

func (m *GetFileListRequest) Reset()

func (*GetFileListRequest) String

func (m *GetFileListRequest) String() string

func (*GetFileListRequest) Validate

func (this *GetFileListRequest) Validate() error

func (*GetFileListRequest) XXX_DiscardUnknown

func (m *GetFileListRequest) XXX_DiscardUnknown()

func (*GetFileListRequest) XXX_Marshal

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

func (*GetFileListRequest) XXX_Merge

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

func (*GetFileListRequest) XXX_Size

func (m *GetFileListRequest) XXX_Size() int

func (*GetFileListRequest) XXX_Unmarshal

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

type GetFileListResponse

type GetFileListResponse struct {
	//
	//返回码
	Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code" form:"code"`
	//
	//错误信息
	Error string `protobuf:"bytes,2,opt,name=error,proto3" json:"error" form:"error"`
	//
	//返回信息
	Message string `protobuf:"bytes,3,opt,name=message,proto3" json:"message" form:"message"`
	//
	//返回数据
	Data                 []*GetFileListResponse_Data `protobuf:"bytes,4,rep,name=data,proto3" json:"data" form:"data"`
	XXX_NoUnkeyedLiteral struct{}                    `json:"-"`
	XXX_unrecognized     []byte                      `json:"-"`
	XXX_sizecache        int32                       `json:"-"`
}

GetFileList返回

func (*GetFileListResponse) Descriptor

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

func (*GetFileListResponse) GetCode

func (m *GetFileListResponse) GetCode() int32

func (*GetFileListResponse) GetData

func (*GetFileListResponse) GetError

func (m *GetFileListResponse) GetError() string

func (*GetFileListResponse) GetMessage

func (m *GetFileListResponse) GetMessage() string

func (*GetFileListResponse) ProtoMessage

func (*GetFileListResponse) ProtoMessage()

func (*GetFileListResponse) Reset

func (m *GetFileListResponse) Reset()

func (*GetFileListResponse) String

func (m *GetFileListResponse) String() string

func (*GetFileListResponse) Validate

func (this *GetFileListResponse) Validate() error

func (*GetFileListResponse) XXX_DiscardUnknown

func (m *GetFileListResponse) XXX_DiscardUnknown()

func (*GetFileListResponse) XXX_Marshal

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

func (*GetFileListResponse) XXX_Merge

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

func (*GetFileListResponse) XXX_Size

func (m *GetFileListResponse) XXX_Size() int

func (*GetFileListResponse) XXX_Unmarshal

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

type GetFileListResponseWrapper

type GetFileListResponseWrapper 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                 *GetFileListResponse `protobuf:"bytes,4,opt,name=data,proto3" json:"data" form:"data"`
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

GetFileListApi返回

func (*GetFileListResponseWrapper) Descriptor

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

func (*GetFileListResponseWrapper) GetCode

func (m *GetFileListResponseWrapper) GetCode() int32

func (*GetFileListResponseWrapper) GetCodeExplain

func (m *GetFileListResponseWrapper) GetCodeExplain() string

func (*GetFileListResponseWrapper) GetData

func (*GetFileListResponseWrapper) GetError

func (m *GetFileListResponseWrapper) GetError() string

func (*GetFileListResponseWrapper) ProtoMessage

func (*GetFileListResponseWrapper) ProtoMessage()

func (*GetFileListResponseWrapper) Reset

func (m *GetFileListResponseWrapper) Reset()

func (*GetFileListResponseWrapper) String

func (m *GetFileListResponseWrapper) String() string

func (*GetFileListResponseWrapper) Validate

func (this *GetFileListResponseWrapper) Validate() error

func (*GetFileListResponseWrapper) XXX_DiscardUnknown

func (m *GetFileListResponseWrapper) XXX_DiscardUnknown()

func (*GetFileListResponseWrapper) XXX_Marshal

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

func (*GetFileListResponseWrapper) XXX_Merge

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

func (*GetFileListResponseWrapper) XXX_Size

func (m *GetFileListResponseWrapper) XXX_Size() int

func (*GetFileListResponseWrapper) XXX_Unmarshal

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

type GetFileListResponse_Data

type GetFileListResponse_Data struct {
	//
	//文件名
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name" form:"name"`
	//
	//文件类型
	Type string `protobuf:"bytes,2,opt,name=type,proto3" json:"type" form:"type"`
	//
	//参数path的编码格式
	Encoding string `protobuf:"bytes,3,opt,name=encoding,proto3" json:"encoding" form:"encoding"`
	//
	//文件大小
	Size_ int32 `protobuf:"varint,4,opt,name=size,proto3" json:"size" form:"size"`
	//
	//chmod、mkdir新文件权限
	Perm string `protobuf:"bytes,5,opt,name=perm,proto3" json:"perm" form:"perm"`
	//
	//mtime
	Mtime string `protobuf:"bytes,6,opt,name=mtime,proto3" json:"mtime" form:"mtime"`
	//
	//ctime
	Ctime                string   `protobuf:"bytes,7,opt,name=ctime,proto3" json:"ctime" form:"ctime"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetFileListResponse_Data) Descriptor

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

func (*GetFileListResponse_Data) GetCtime

func (m *GetFileListResponse_Data) GetCtime() string

func (*GetFileListResponse_Data) GetEncoding

func (m *GetFileListResponse_Data) GetEncoding() string

func (*GetFileListResponse_Data) GetMtime

func (m *GetFileListResponse_Data) GetMtime() string

func (*GetFileListResponse_Data) GetName

func (m *GetFileListResponse_Data) GetName() string

func (*GetFileListResponse_Data) GetPerm

func (m *GetFileListResponse_Data) GetPerm() string

func (*GetFileListResponse_Data) GetSize_

func (m *GetFileListResponse_Data) GetSize_() int32

func (*GetFileListResponse_Data) GetType

func (m *GetFileListResponse_Data) GetType() string

func (*GetFileListResponse_Data) ProtoMessage

func (*GetFileListResponse_Data) ProtoMessage()

func (*GetFileListResponse_Data) Reset

func (m *GetFileListResponse_Data) Reset()

func (*GetFileListResponse_Data) String

func (m *GetFileListResponse_Data) String() string

func (*GetFileListResponse_Data) Validate

func (this *GetFileListResponse_Data) Validate() error

func (*GetFileListResponse_Data) XXX_DiscardUnknown

func (m *GetFileListResponse_Data) XXX_DiscardUnknown()

func (*GetFileListResponse_Data) XXX_Marshal

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

func (*GetFileListResponse_Data) XXX_Merge

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

func (*GetFileListResponse_Data) XXX_Size

func (m *GetFileListResponse_Data) XXX_Size() int

func (*GetFileListResponse_Data) XXX_Unmarshal

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

type InitRequest

type InitRequest struct {
	//
	//程序包Id
	PackageId string `protobuf:"bytes,1,opt,name=packageId,proto3" json:"packageId" form:"packageId"`
	//
	//版本Id
	VersionId            string   `protobuf:"bytes,2,opt,name=versionId,proto3" json:"versionId" form:"versionId"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

Init请求

func (*InitRequest) Descriptor

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

func (*InitRequest) GetPackageId

func (m *InitRequest) GetPackageId() string

func (*InitRequest) GetVersionId

func (m *InitRequest) GetVersionId() string

func (*InitRequest) ProtoMessage

func (*InitRequest) ProtoMessage()

func (*InitRequest) Reset

func (m *InitRequest) Reset()

func (*InitRequest) String

func (m *InitRequest) String() string

func (*InitRequest) Validate

func (this *InitRequest) Validate() error

func (*InitRequest) XXX_DiscardUnknown

func (m *InitRequest) XXX_DiscardUnknown()

func (*InitRequest) XXX_Marshal

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

func (*InitRequest) XXX_Merge

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

func (*InitRequest) XXX_Size

func (m *InitRequest) XXX_Size() int

func (*InitRequest) XXX_Unmarshal

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

type InitResponse

type InitResponse struct {
	//
	//返回状态码
	Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code" form:"code"`
	//
	//错误信息
	Error string `protobuf:"bytes,2,opt,name=error,proto3" json:"error" form:"error"`
	//
	//返回消息
	Message string `protobuf:"bytes,3,opt,name=message,proto3" json:"message" form:"message"`
	//
	//版本Id
	Data                 string   `protobuf:"bytes,4,opt,name=data,proto3" json:"data" form:"data"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

Init返回

func (*InitResponse) Descriptor

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

func (*InitResponse) GetCode

func (m *InitResponse) GetCode() int32

func (*InitResponse) GetData

func (m *InitResponse) GetData() string

func (*InitResponse) GetError

func (m *InitResponse) GetError() string

func (*InitResponse) GetMessage

func (m *InitResponse) GetMessage() string

func (*InitResponse) ProtoMessage

func (*InitResponse) ProtoMessage()

func (*InitResponse) Reset

func (m *InitResponse) Reset()

func (*InitResponse) String

func (m *InitResponse) String() string

func (*InitResponse) Validate

func (this *InitResponse) Validate() error

func (*InitResponse) XXX_DiscardUnknown

func (m *InitResponse) XXX_DiscardUnknown()

func (*InitResponse) XXX_Marshal

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

func (*InitResponse) XXX_Merge

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

func (*InitResponse) XXX_Size

func (m *InitResponse) XXX_Size() int

func (*InitResponse) XXX_Unmarshal

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

type InitResponseWrapper

type InitResponseWrapper 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                 *InitResponse `protobuf:"bytes,4,opt,name=data,proto3" json:"data" form:"data"`
	XXX_NoUnkeyedLiteral struct{}      `json:"-"`
	XXX_unrecognized     []byte        `json:"-"`
	XXX_sizecache        int32         `json:"-"`
}

InitApi返回

func (*InitResponseWrapper) Descriptor

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

func (*InitResponseWrapper) GetCode

func (m *InitResponseWrapper) GetCode() int32

func (*InitResponseWrapper) GetCodeExplain

func (m *InitResponseWrapper) GetCodeExplain() string

func (*InitResponseWrapper) GetData

func (m *InitResponseWrapper) GetData() *InitResponse

func (*InitResponseWrapper) GetError

func (m *InitResponseWrapper) GetError() string

func (*InitResponseWrapper) ProtoMessage

func (*InitResponseWrapper) ProtoMessage()

func (*InitResponseWrapper) Reset

func (m *InitResponseWrapper) Reset()

func (*InitResponseWrapper) String

func (m *InitResponseWrapper) String() string

func (*InitResponseWrapper) Validate

func (this *InitResponseWrapper) Validate() error

func (*InitResponseWrapper) XXX_DiscardUnknown

func (m *InitResponseWrapper) XXX_DiscardUnknown()

func (*InitResponseWrapper) XXX_Marshal

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

func (*InitResponseWrapper) XXX_Merge

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

func (*InitResponseWrapper) XXX_Size

func (m *InitResponseWrapper) XXX_Size() int

func (*InitResponseWrapper) XXX_Unmarshal

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

type SafeCommitWorkspaceRequest

type SafeCommitWorkspaceRequest struct {
	//
	//版本备注信息
	Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message" form:"message"`
	//
	//程序包Id
	PackageId string `protobuf:"bytes,2,opt,name=packageId,proto3" json:"packageId" form:"packageId"`
	//
	//版本Id
	VersionId string `protobuf:"bytes,3,opt,name=versionId,proto3" json:"versionId" form:"versionId"`
	//
	//版本类型 1 开发, 3 测试, 7 预发布, 15 生产
	EnvType int32 `protobuf:"varint,4,opt,name=env_type,json=envType,proto3" json:"env_type" form:"env_type"`
	//
	//包存储源信息,如"{"host":"deployrepo.easyops-only.com","ensName":"logic.deploy.repo.archive"}"
	Source string `protobuf:"bytes,5,opt,name=source,proto3" json:"source" form:"source"`
	//
	//包名称
	Name                 string   `protobuf:"bytes,6,opt,name=name,proto3" json:"name" form:"name"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

SafeCommitWorkspace请求

func (*SafeCommitWorkspaceRequest) Descriptor

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

func (*SafeCommitWorkspaceRequest) GetEnvType

func (m *SafeCommitWorkspaceRequest) GetEnvType() int32

func (*SafeCommitWorkspaceRequest) GetMessage

func (m *SafeCommitWorkspaceRequest) GetMessage() string

func (*SafeCommitWorkspaceRequest) GetName

func (m *SafeCommitWorkspaceRequest) GetName() string

func (*SafeCommitWorkspaceRequest) GetPackageId

func (m *SafeCommitWorkspaceRequest) GetPackageId() string

func (*SafeCommitWorkspaceRequest) GetSource

func (m *SafeCommitWorkspaceRequest) GetSource() string

func (*SafeCommitWorkspaceRequest) GetVersionId

func (m *SafeCommitWorkspaceRequest) GetVersionId() string

func (*SafeCommitWorkspaceRequest) ProtoMessage

func (*SafeCommitWorkspaceRequest) ProtoMessage()

func (*SafeCommitWorkspaceRequest) Reset

func (m *SafeCommitWorkspaceRequest) Reset()

func (*SafeCommitWorkspaceRequest) String

func (m *SafeCommitWorkspaceRequest) String() string

func (*SafeCommitWorkspaceRequest) Validate

func (this *SafeCommitWorkspaceRequest) Validate() error

func (*SafeCommitWorkspaceRequest) XXX_DiscardUnknown

func (m *SafeCommitWorkspaceRequest) XXX_DiscardUnknown()

func (*SafeCommitWorkspaceRequest) XXX_Marshal

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

func (*SafeCommitWorkspaceRequest) XXX_Merge

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

func (*SafeCommitWorkspaceRequest) XXX_Size

func (m *SafeCommitWorkspaceRequest) XXX_Size() int

func (*SafeCommitWorkspaceRequest) XXX_Unmarshal

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

type SafeCommitWorkspaceResponse

type SafeCommitWorkspaceResponse struct {
	//
	//返回码
	Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code" form:"code"`
	//
	//错误信息
	Error string `protobuf:"bytes,2,opt,name=error,proto3" json:"error" form:"error"`
	//
	//返回信息
	Message string `protobuf:"bytes,3,opt,name=message,proto3" json:"message" form:"message"`
	//
	//返回数据
	Data                 string   `protobuf:"bytes,4,opt,name=data,proto3" json:"data" form:"data"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

SafeCommitWorkspace返回

func (*SafeCommitWorkspaceResponse) Descriptor

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

func (*SafeCommitWorkspaceResponse) GetCode

func (m *SafeCommitWorkspaceResponse) GetCode() int32

func (*SafeCommitWorkspaceResponse) GetData

func (m *SafeCommitWorkspaceResponse) GetData() string

func (*SafeCommitWorkspaceResponse) GetError

func (m *SafeCommitWorkspaceResponse) GetError() string

func (*SafeCommitWorkspaceResponse) GetMessage

func (m *SafeCommitWorkspaceResponse) GetMessage() string

func (*SafeCommitWorkspaceResponse) ProtoMessage

func (*SafeCommitWorkspaceResponse) ProtoMessage()

func (*SafeCommitWorkspaceResponse) Reset

func (m *SafeCommitWorkspaceResponse) Reset()

func (*SafeCommitWorkspaceResponse) String

func (m *SafeCommitWorkspaceResponse) String() string

func (*SafeCommitWorkspaceResponse) Validate

func (this *SafeCommitWorkspaceResponse) Validate() error

func (*SafeCommitWorkspaceResponse) XXX_DiscardUnknown

func (m *SafeCommitWorkspaceResponse) XXX_DiscardUnknown()

func (*SafeCommitWorkspaceResponse) XXX_Marshal

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

func (*SafeCommitWorkspaceResponse) XXX_Merge

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

func (*SafeCommitWorkspaceResponse) XXX_Size

func (m *SafeCommitWorkspaceResponse) XXX_Size() int

func (*SafeCommitWorkspaceResponse) XXX_Unmarshal

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

type SafeCommitWorkspaceResponseWrapper

type SafeCommitWorkspaceResponseWrapper 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                 *SafeCommitWorkspaceResponse `protobuf:"bytes,4,opt,name=data,proto3" json:"data" form:"data"`
	XXX_NoUnkeyedLiteral struct{}                     `json:"-"`
	XXX_unrecognized     []byte                       `json:"-"`
	XXX_sizecache        int32                        `json:"-"`
}

SafeCommitWorkspaceApi返回

func (*SafeCommitWorkspaceResponseWrapper) Descriptor

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

func (*SafeCommitWorkspaceResponseWrapper) GetCode

func (*SafeCommitWorkspaceResponseWrapper) GetCodeExplain

func (m *SafeCommitWorkspaceResponseWrapper) GetCodeExplain() string

func (*SafeCommitWorkspaceResponseWrapper) GetData

func (*SafeCommitWorkspaceResponseWrapper) GetError

func (*SafeCommitWorkspaceResponseWrapper) ProtoMessage

func (*SafeCommitWorkspaceResponseWrapper) ProtoMessage()

func (*SafeCommitWorkspaceResponseWrapper) Reset

func (*SafeCommitWorkspaceResponseWrapper) String

func (*SafeCommitWorkspaceResponseWrapper) Validate

func (this *SafeCommitWorkspaceResponseWrapper) Validate() error

func (*SafeCommitWorkspaceResponseWrapper) XXX_DiscardUnknown

func (m *SafeCommitWorkspaceResponseWrapper) XXX_DiscardUnknown()

func (*SafeCommitWorkspaceResponseWrapper) XXX_Marshal

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

func (*SafeCommitWorkspaceResponseWrapper) XXX_Merge

func (*SafeCommitWorkspaceResponseWrapper) XXX_Size

func (*SafeCommitWorkspaceResponseWrapper) XXX_Unmarshal

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

type StatusRequest

type StatusRequest struct {
	//
	//是否要获取文件内容差异
	DiffFile string `protobuf:"bytes,1,opt,name=diff_file,json=diffFile,proto3" json:"diff_file" form:"diff_file"`
	//
	//只查看指定文件内容差异
	Path string `protobuf:"bytes,2,opt,name=path,proto3" json:"path" form:"path"`
	//
	//参数path的编码格式
	Encoding string `protobuf:"bytes,3,opt,name=encoding,proto3" json:"encoding" form:"encoding"`
	//
	//程序包Id
	PackageId            string   `protobuf:"bytes,4,opt,name=packageId,proto3" json:"packageId" form:"packageId"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

Status请求

func (*StatusRequest) Descriptor

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

func (*StatusRequest) GetDiffFile

func (m *StatusRequest) GetDiffFile() string

func (*StatusRequest) GetEncoding

func (m *StatusRequest) GetEncoding() string

func (*StatusRequest) GetPackageId

func (m *StatusRequest) GetPackageId() string

func (*StatusRequest) GetPath

func (m *StatusRequest) GetPath() string

func (*StatusRequest) ProtoMessage

func (*StatusRequest) ProtoMessage()

func (*StatusRequest) Reset

func (m *StatusRequest) Reset()

func (*StatusRequest) String

func (m *StatusRequest) String() string

func (*StatusRequest) Validate

func (this *StatusRequest) Validate() error

func (*StatusRequest) XXX_DiscardUnknown

func (m *StatusRequest) XXX_DiscardUnknown()

func (*StatusRequest) XXX_Marshal

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

func (*StatusRequest) XXX_Merge

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

func (*StatusRequest) XXX_Size

func (m *StatusRequest) XXX_Size() int

func (*StatusRequest) XXX_Unmarshal

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

type StatusResponseWrapper

type StatusResponseWrapper 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                 []*file_repository.Diff `protobuf:"bytes,4,rep,name=data,proto3" json:"data" form:"data"`
	XXX_NoUnkeyedLiteral struct{}                `json:"-"`
	XXX_unrecognized     []byte                  `json:"-"`
	XXX_sizecache        int32                   `json:"-"`
}

StatusApi返回

func (*StatusResponseWrapper) Descriptor

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

func (*StatusResponseWrapper) GetCode

func (m *StatusResponseWrapper) GetCode() int32

func (*StatusResponseWrapper) GetCodeExplain

func (m *StatusResponseWrapper) GetCodeExplain() string

func (*StatusResponseWrapper) GetData

func (m *StatusResponseWrapper) GetData() []*file_repository.Diff

func (*StatusResponseWrapper) GetError

func (m *StatusResponseWrapper) GetError() string

func (*StatusResponseWrapper) ProtoMessage

func (*StatusResponseWrapper) ProtoMessage()

func (*StatusResponseWrapper) Reset

func (m *StatusResponseWrapper) Reset()

func (*StatusResponseWrapper) String

func (m *StatusResponseWrapper) String() string

func (*StatusResponseWrapper) Validate

func (this *StatusResponseWrapper) Validate() error

func (*StatusResponseWrapper) XXX_DiscardUnknown

func (m *StatusResponseWrapper) XXX_DiscardUnknown()

func (*StatusResponseWrapper) XXX_Marshal

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

func (*StatusResponseWrapper) XXX_Merge

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

func (*StatusResponseWrapper) XXX_Size

func (m *StatusResponseWrapper) XXX_Size() int

func (*StatusResponseWrapper) XXX_Unmarshal

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

type UpdateFileRequest

type UpdateFileRequest struct {
	//
	//rename的新文件名
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name" form:"name"`
	//
	//要操作的文件、目录路径,上传时path是指存储的目录
	Path string `protobuf:"bytes,2,opt,name=path,proto3" json:"path" form:"path"`
	//
	//参数path的编码格式
	Encoding string `protobuf:"bytes,3,opt,name=encoding,proto3" json:"encoding" form:"encoding"`
	//
	//文件操作类型包括:上传 -> upload,删除 -> delete,重命名 -> rename,修改权限 -> chmod,创建目录 -> mkdir
	Op string `protobuf:"bytes,4,opt,name=op,proto3" json:"op" form:"op"`
	//
	//chmod、mkdir新文件权限(0755, 0644)
	Perm string `protobuf:"bytes,5,opt,name=perm,proto3" json:"perm" form:"perm"`
	//
	//包Id
	PackageId            string   `protobuf:"bytes,6,opt,name=packageId,proto3" json:"packageId" form:"packageId"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

UpdateFile请求

func (*UpdateFileRequest) Descriptor

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

func (*UpdateFileRequest) GetEncoding

func (m *UpdateFileRequest) GetEncoding() string

func (*UpdateFileRequest) GetName

func (m *UpdateFileRequest) GetName() string

func (*UpdateFileRequest) GetOp

func (m *UpdateFileRequest) GetOp() string

func (*UpdateFileRequest) GetPackageId

func (m *UpdateFileRequest) GetPackageId() string

func (*UpdateFileRequest) GetPath

func (m *UpdateFileRequest) GetPath() string

func (*UpdateFileRequest) GetPerm

func (m *UpdateFileRequest) GetPerm() string

func (*UpdateFileRequest) ProtoMessage

func (*UpdateFileRequest) ProtoMessage()

func (*UpdateFileRequest) Reset

func (m *UpdateFileRequest) Reset()

func (*UpdateFileRequest) String

func (m *UpdateFileRequest) String() string

func (*UpdateFileRequest) Validate

func (this *UpdateFileRequest) Validate() error

func (*UpdateFileRequest) XXX_DiscardUnknown

func (m *UpdateFileRequest) XXX_DiscardUnknown()

func (*UpdateFileRequest) XXX_Marshal

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

func (*UpdateFileRequest) XXX_Merge

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

func (*UpdateFileRequest) XXX_Size

func (m *UpdateFileRequest) XXX_Size() int

func (*UpdateFileRequest) XXX_Unmarshal

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

type UpdateFileResponseWrapper

type UpdateFileResponseWrapper 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                 *types.Empty `protobuf:"bytes,4,opt,name=data,proto3" json:"data" form:"data"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

UpdateFileApi返回

func (*UpdateFileResponseWrapper) Descriptor

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

func (*UpdateFileResponseWrapper) GetCode

func (m *UpdateFileResponseWrapper) GetCode() int32

func (*UpdateFileResponseWrapper) GetCodeExplain

func (m *UpdateFileResponseWrapper) GetCodeExplain() string

func (*UpdateFileResponseWrapper) GetData

func (m *UpdateFileResponseWrapper) GetData() *types.Empty

func (*UpdateFileResponseWrapper) GetError

func (m *UpdateFileResponseWrapper) GetError() string

func (*UpdateFileResponseWrapper) ProtoMessage

func (*UpdateFileResponseWrapper) ProtoMessage()

func (*UpdateFileResponseWrapper) Reset

func (m *UpdateFileResponseWrapper) Reset()

func (*UpdateFileResponseWrapper) String

func (m *UpdateFileResponseWrapper) String() string

func (*UpdateFileResponseWrapper) Validate

func (this *UpdateFileResponseWrapper) Validate() error

func (*UpdateFileResponseWrapper) XXX_DiscardUnknown

func (m *UpdateFileResponseWrapper) XXX_DiscardUnknown()

func (*UpdateFileResponseWrapper) XXX_Marshal

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

func (*UpdateFileResponseWrapper) XXX_Merge

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

func (*UpdateFileResponseWrapper) XXX_Size

func (m *UpdateFileResponseWrapper) XXX_Size() int

func (*UpdateFileResponseWrapper) XXX_Unmarshal

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

type UploadFileResponseWrapper

type UploadFileResponseWrapper 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                 *types.Empty `protobuf:"bytes,4,opt,name=data,proto3" json:"data" form:"data"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

UploadFileApi返回

func (*UploadFileResponseWrapper) Descriptor

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

func (*UploadFileResponseWrapper) GetCode

func (m *UploadFileResponseWrapper) GetCode() int32

func (*UploadFileResponseWrapper) GetCodeExplain

func (m *UploadFileResponseWrapper) GetCodeExplain() string

func (*UploadFileResponseWrapper) GetData

func (m *UploadFileResponseWrapper) GetData() *types.Empty

func (*UploadFileResponseWrapper) GetError

func (m *UploadFileResponseWrapper) GetError() string

func (*UploadFileResponseWrapper) ProtoMessage

func (*UploadFileResponseWrapper) ProtoMessage()

func (*UploadFileResponseWrapper) Reset

func (m *UploadFileResponseWrapper) Reset()

func (*UploadFileResponseWrapper) String

func (m *UploadFileResponseWrapper) String() string

func (*UploadFileResponseWrapper) Validate

func (this *UploadFileResponseWrapper) Validate() error

func (*UploadFileResponseWrapper) XXX_DiscardUnknown

func (m *UploadFileResponseWrapper) XXX_DiscardUnknown()

func (*UploadFileResponseWrapper) XXX_Marshal

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

func (*UploadFileResponseWrapper) XXX_Merge

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

func (*UploadFileResponseWrapper) XXX_Size

func (m *UploadFileResponseWrapper) XXX_Size() int

func (*UploadFileResponseWrapper) XXX_Unmarshal

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

Jump to

Keyboard shortcuts

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