pb

package
v0.1.0 Latest Latest
Warning

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

Go to latest
Published: Mar 29, 2019 License: Apache-2.0 Imports: 8 Imported by: 6

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func RegisterAccessManagerServer

func RegisterAccessManagerServer(s *grpc.Server, srv AccessManagerServer)

Types

type AccessManagerClient

type AccessManagerClient interface {
	GetVersion(ctx context.Context, in *GetVersionRequest, opts ...grpc.CallOption) (*GetVersionResponse, error)
	CanDo(ctx context.Context, in *CanDoRequest, opts ...grpc.CallOption) (*CanDoResponse, error)
	CreateRole(ctx context.Context, in *CreateRoleRequest, opts ...grpc.CallOption) (*CreateRoleResponse, error)
	DeleteRoles(ctx context.Context, in *DeleteRolesRequest, opts ...grpc.CallOption) (*DeleteRolesResponse, error)
	ModifyRole(ctx context.Context, in *ModifyRoleRequest, opts ...grpc.CallOption) (*ModifyRoleResponse, error)
	GetRole(ctx context.Context, in *GetRoleRequest, opts ...grpc.CallOption) (*GetRoleResponse, error)
	GetRoleWithUser(ctx context.Context, in *GetRoleRequest, opts ...grpc.CallOption) (*GetRoleWithUserResponse, error)
	DescribeRoles(ctx context.Context, in *DescribeRolesRequest, opts ...grpc.CallOption) (*DescribeRolesResponse, error)
	DescribeRolesWithUser(ctx context.Context, in *DescribeRolesRequest, opts ...grpc.CallOption) (*DescribeRolesWithUserResponse, error)
	GetRoleModule(ctx context.Context, in *GetRoleModuleRequest, opts ...grpc.CallOption) (*GetRoleModuleResponse, error)
	ModifyRoleModule(ctx context.Context, in *ModifyRoleModuleRequest, opts ...grpc.CallOption) (*ModifyRoleModuleResponse, error)
	BindUserRole(ctx context.Context, in *BindUserRoleRequest, opts ...grpc.CallOption) (*BindUserRoleResponse, error)
	UnbindUserRole(ctx context.Context, in *UnbindUserRoleRequest, opts ...grpc.CallOption) (*UnbindUserRoleResponse, error)
}

AccessManagerClient is the client API for AccessManager service.

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

func NewAccessManagerClient

func NewAccessManagerClient(cc *grpc.ClientConn) AccessManagerClient

type ActionBundle

type ActionBundle struct {
	ActionBundleId       string   `protobuf:"bytes,1,opt,name=action_bundle_id,json=actionBundleId,proto3" json:"action_bundle_id,omitempty"`
	ActionBundleName     string   `protobuf:"bytes,2,opt,name=action_bundle_name,json=actionBundleName,proto3" json:"action_bundle_name,omitempty"`
	ApiSet               []*Api   `protobuf:"bytes,3,rep,name=api_set,json=apiSet,proto3" json:"api_set,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ActionBundle) Descriptor

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

func (*ActionBundle) GetActionBundleId

func (m *ActionBundle) GetActionBundleId() string

func (*ActionBundle) GetActionBundleName

func (m *ActionBundle) GetActionBundleName() string

func (*ActionBundle) GetApiSet

func (m *ActionBundle) GetApiSet() []*Api

func (*ActionBundle) ProtoMessage

func (*ActionBundle) ProtoMessage()

func (*ActionBundle) Reset

func (m *ActionBundle) Reset()

func (*ActionBundle) String

func (m *ActionBundle) String() string

func (*ActionBundle) XXX_DiscardUnknown

func (m *ActionBundle) XXX_DiscardUnknown()

func (*ActionBundle) XXX_Marshal

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

func (*ActionBundle) XXX_Merge

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

func (*ActionBundle) XXX_Size

func (m *ActionBundle) XXX_Size() int

func (*ActionBundle) XXX_Unmarshal

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

type Api

type Api struct {
	ApiId                string   `protobuf:"bytes,1,opt,name=api_id,json=apiId,proto3" json:"api_id,omitempty"`
	ApiMethod            string   `protobuf:"bytes,2,opt,name=api_method,json=apiMethod,proto3" json:"api_method,omitempty"`
	UrlMethod            string   `protobuf:"bytes,3,opt,name=url_method,json=urlMethod,proto3" json:"url_method,omitempty"`
	Url                  string   `protobuf:"bytes,4,opt,name=url,proto3" json:"url,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

---------------------------------------------------------------------------- RoleModule ----------------------------------------------------------------------------

func (*Api) Descriptor

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

func (*Api) GetApiId

func (m *Api) GetApiId() string

func (*Api) GetApiMethod

func (m *Api) GetApiMethod() string

func (*Api) GetUrl

func (m *Api) GetUrl() string

func (*Api) GetUrlMethod

func (m *Api) GetUrlMethod() string

func (*Api) ProtoMessage

func (*Api) ProtoMessage()

func (*Api) Reset

func (m *Api) Reset()

func (*Api) String

func (m *Api) String() string

func (*Api) XXX_DiscardUnknown

func (m *Api) XXX_DiscardUnknown()

func (*Api) XXX_Marshal

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

func (*Api) XXX_Merge

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

func (*Api) XXX_Size

func (m *Api) XXX_Size() int

func (*Api) XXX_Unmarshal

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

type BindUserRoleRequest

type BindUserRoleRequest struct {
	UserId               []string `protobuf:"bytes,1,rep,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	RoleId               []string `protobuf:"bytes,2,rep,name=role_id,json=roleId,proto3" json:"role_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*BindUserRoleRequest) Descriptor

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

func (*BindUserRoleRequest) GetRoleId

func (m *BindUserRoleRequest) GetRoleId() []string

func (*BindUserRoleRequest) GetUserId

func (m *BindUserRoleRequest) GetUserId() []string

func (*BindUserRoleRequest) ProtoMessage

func (*BindUserRoleRequest) ProtoMessage()

func (*BindUserRoleRequest) Reset

func (m *BindUserRoleRequest) Reset()

func (*BindUserRoleRequest) String

func (m *BindUserRoleRequest) String() string

func (*BindUserRoleRequest) XXX_DiscardUnknown

func (m *BindUserRoleRequest) XXX_DiscardUnknown()

func (*BindUserRoleRequest) XXX_Marshal

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

func (*BindUserRoleRequest) XXX_Merge

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

func (*BindUserRoleRequest) XXX_Size

func (m *BindUserRoleRequest) XXX_Size() int

func (*BindUserRoleRequest) XXX_Unmarshal

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

type BindUserRoleResponse

type BindUserRoleResponse struct {
	UserId               []string `protobuf:"bytes,1,rep,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	RoleId               []string `protobuf:"bytes,2,rep,name=role_id,json=roleId,proto3" json:"role_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*BindUserRoleResponse) Descriptor

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

func (*BindUserRoleResponse) GetRoleId

func (m *BindUserRoleResponse) GetRoleId() []string

func (*BindUserRoleResponse) GetUserId

func (m *BindUserRoleResponse) GetUserId() []string

func (*BindUserRoleResponse) ProtoMessage

func (*BindUserRoleResponse) ProtoMessage()

func (*BindUserRoleResponse) Reset

func (m *BindUserRoleResponse) Reset()

func (*BindUserRoleResponse) String

func (m *BindUserRoleResponse) String() string

func (*BindUserRoleResponse) XXX_DiscardUnknown

func (m *BindUserRoleResponse) XXX_DiscardUnknown()

func (*BindUserRoleResponse) XXX_Marshal

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

func (*BindUserRoleResponse) XXX_Merge

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

func (*BindUserRoleResponse) XXX_Size

func (m *BindUserRoleResponse) XXX_Size() int

func (*BindUserRoleResponse) XXX_Unmarshal

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

type CanDoRequest

type CanDoRequest struct {
	UserId               string   `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	Url                  string   `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"`
	UrlMethod            string   `protobuf:"bytes,3,opt,name=url_method,json=urlMethod,proto3" json:"url_method,omitempty"`
	ApiMethod            string   `protobuf:"bytes,4,opt,name=api_method,json=apiMethod,proto3" json:"api_method,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*CanDoRequest) Descriptor

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

func (*CanDoRequest) GetApiMethod

func (m *CanDoRequest) GetApiMethod() string

func (*CanDoRequest) GetUrl

func (m *CanDoRequest) GetUrl() string

func (*CanDoRequest) GetUrlMethod

func (m *CanDoRequest) GetUrlMethod() string

func (*CanDoRequest) GetUserId

func (m *CanDoRequest) GetUserId() string

func (*CanDoRequest) ProtoMessage

func (*CanDoRequest) ProtoMessage()

func (*CanDoRequest) Reset

func (m *CanDoRequest) Reset()

func (*CanDoRequest) String

func (m *CanDoRequest) String() string

func (*CanDoRequest) XXX_DiscardUnknown

func (m *CanDoRequest) XXX_DiscardUnknown()

func (*CanDoRequest) XXX_Marshal

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

func (*CanDoRequest) XXX_Merge

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

func (*CanDoRequest) XXX_Size

func (m *CanDoRequest) XXX_Size() int

func (*CanDoRequest) XXX_Unmarshal

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

type CanDoResponse

type CanDoResponse struct {
	UserId               string   `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	AccessPath           string   `protobuf:"bytes,2,opt,name=access_path,json=accessPath,proto3" json:"access_path,omitempty"`
	OwnerPath            string   `protobuf:"bytes,3,opt,name=owner_path,json=ownerPath,proto3" json:"owner_path,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*CanDoResponse) Descriptor

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

func (*CanDoResponse) GetAccessPath

func (m *CanDoResponse) GetAccessPath() string

func (*CanDoResponse) GetOwnerPath

func (m *CanDoResponse) GetOwnerPath() string

func (*CanDoResponse) GetUserId

func (m *CanDoResponse) GetUserId() string

func (*CanDoResponse) ProtoMessage

func (*CanDoResponse) ProtoMessage()

func (*CanDoResponse) Reset

func (m *CanDoResponse) Reset()

func (*CanDoResponse) String

func (m *CanDoResponse) String() string

func (*CanDoResponse) XXX_DiscardUnknown

func (m *CanDoResponse) XXX_DiscardUnknown()

func (*CanDoResponse) XXX_Marshal

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

func (*CanDoResponse) XXX_Merge

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

func (*CanDoResponse) XXX_Size

func (m *CanDoResponse) XXX_Size() int

func (*CanDoResponse) XXX_Unmarshal

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

type CreateRoleRequest

type CreateRoleRequest struct {
	RoleName             string   `protobuf:"bytes,1,opt,name=role_name,json=roleName,proto3" json:"role_name,omitempty"`
	Description          string   `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	Portal               string   `protobuf:"bytes,3,opt,name=portal,proto3" json:"portal,omitempty"`
	Owner                string   `protobuf:"bytes,4,opt,name=owner,proto3" json:"owner,omitempty"`
	OwnerPath            string   `protobuf:"bytes,5,opt,name=owner_path,json=ownerPath,proto3" json:"owner_path,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*CreateRoleRequest) Descriptor

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

func (*CreateRoleRequest) GetDescription

func (m *CreateRoleRequest) GetDescription() string

func (*CreateRoleRequest) GetOwner

func (m *CreateRoleRequest) GetOwner() string

func (*CreateRoleRequest) GetOwnerPath

func (m *CreateRoleRequest) GetOwnerPath() string

func (*CreateRoleRequest) GetPortal

func (m *CreateRoleRequest) GetPortal() string

func (*CreateRoleRequest) GetRoleName

func (m *CreateRoleRequest) GetRoleName() string

func (*CreateRoleRequest) ProtoMessage

func (*CreateRoleRequest) ProtoMessage()

func (*CreateRoleRequest) Reset

func (m *CreateRoleRequest) Reset()

func (*CreateRoleRequest) String

func (m *CreateRoleRequest) String() string

func (*CreateRoleRequest) XXX_DiscardUnknown

func (m *CreateRoleRequest) XXX_DiscardUnknown()

func (*CreateRoleRequest) XXX_Marshal

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

func (*CreateRoleRequest) XXX_Merge

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

func (*CreateRoleRequest) XXX_Size

func (m *CreateRoleRequest) XXX_Size() int

func (*CreateRoleRequest) XXX_Unmarshal

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

type CreateRoleResponse

type CreateRoleResponse struct {
	RoleId               string   `protobuf:"bytes,1,opt,name=role_id,json=roleId,proto3" json:"role_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*CreateRoleResponse) Descriptor

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

func (*CreateRoleResponse) GetRoleId

func (m *CreateRoleResponse) GetRoleId() string

func (*CreateRoleResponse) ProtoMessage

func (*CreateRoleResponse) ProtoMessage()

func (*CreateRoleResponse) Reset

func (m *CreateRoleResponse) Reset()

func (*CreateRoleResponse) String

func (m *CreateRoleResponse) String() string

func (*CreateRoleResponse) XXX_DiscardUnknown

func (m *CreateRoleResponse) XXX_DiscardUnknown()

func (*CreateRoleResponse) XXX_Marshal

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

func (*CreateRoleResponse) XXX_Merge

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

func (*CreateRoleResponse) XXX_Size

func (m *CreateRoleResponse) XXX_Size() int

func (*CreateRoleResponse) XXX_Unmarshal

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

type DeleteRolesRequest

type DeleteRolesRequest struct {
	RoleId               []string `protobuf:"bytes,1,rep,name=role_id,json=roleId,proto3" json:"role_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DeleteRolesRequest) Descriptor

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

func (*DeleteRolesRequest) GetRoleId

func (m *DeleteRolesRequest) GetRoleId() []string

func (*DeleteRolesRequest) ProtoMessage

func (*DeleteRolesRequest) ProtoMessage()

func (*DeleteRolesRequest) Reset

func (m *DeleteRolesRequest) Reset()

func (*DeleteRolesRequest) String

func (m *DeleteRolesRequest) String() string

func (*DeleteRolesRequest) XXX_DiscardUnknown

func (m *DeleteRolesRequest) XXX_DiscardUnknown()

func (*DeleteRolesRequest) XXX_Marshal

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

func (*DeleteRolesRequest) XXX_Merge

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

func (*DeleteRolesRequest) XXX_Size

func (m *DeleteRolesRequest) XXX_Size() int

func (*DeleteRolesRequest) XXX_Unmarshal

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

type DeleteRolesResponse

type DeleteRolesResponse struct {
	RoleId               []string `protobuf:"bytes,1,rep,name=role_id,json=roleId,proto3" json:"role_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DeleteRolesResponse) Descriptor

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

func (*DeleteRolesResponse) GetRoleId

func (m *DeleteRolesResponse) GetRoleId() []string

func (*DeleteRolesResponse) ProtoMessage

func (*DeleteRolesResponse) ProtoMessage()

func (*DeleteRolesResponse) Reset

func (m *DeleteRolesResponse) Reset()

func (*DeleteRolesResponse) String

func (m *DeleteRolesResponse) String() string

func (*DeleteRolesResponse) XXX_DiscardUnknown

func (m *DeleteRolesResponse) XXX_DiscardUnknown()

func (*DeleteRolesResponse) XXX_Marshal

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

func (*DeleteRolesResponse) XXX_Merge

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

func (*DeleteRolesResponse) XXX_Size

func (m *DeleteRolesResponse) XXX_Size() int

func (*DeleteRolesResponse) XXX_Unmarshal

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

type DescribeRolesRequest

type DescribeRolesRequest struct {
	SearchWord           string   `protobuf:"bytes,1,opt,name=search_word,json=searchWord,proto3" json:"search_word,omitempty"`
	SortKey              string   `protobuf:"bytes,2,opt,name=sort_key,json=sortKey,proto3" json:"sort_key,omitempty"`
	Reverse              bool     `protobuf:"varint,3,opt,name=reverse,proto3" json:"reverse,omitempty"`
	Offset               uint32   `protobuf:"varint,4,opt,name=offset,proto3" json:"offset,omitempty"`
	Limit                uint32   `protobuf:"varint,5,opt,name=limit,proto3" json:"limit,omitempty"`
	RoleId               []string `protobuf:"bytes,6,rep,name=role_id,json=roleId,proto3" json:"role_id,omitempty"`
	UserId               []string `protobuf:"bytes,7,rep,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	RoleName             []string `protobuf:"bytes,8,rep,name=role_name,json=roleName,proto3" json:"role_name,omitempty"`
	Portal               []string `protobuf:"bytes,9,rep,name=portal,proto3" json:"portal,omitempty"`
	Status               []string `protobuf:"bytes,10,rep,name=status,proto3" json:"status,omitempty"`
	ActionBundleId       []string `protobuf:"bytes,11,rep,name=action_bundle_id,json=actionBundleId,proto3" json:"action_bundle_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DescribeRolesRequest) Descriptor

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

func (*DescribeRolesRequest) GetActionBundleId

func (m *DescribeRolesRequest) GetActionBundleId() []string

func (*DescribeRolesRequest) GetLimit

func (m *DescribeRolesRequest) GetLimit() uint32

func (*DescribeRolesRequest) GetOffset

func (m *DescribeRolesRequest) GetOffset() uint32

func (*DescribeRolesRequest) GetPortal

func (m *DescribeRolesRequest) GetPortal() []string

func (*DescribeRolesRequest) GetReverse

func (m *DescribeRolesRequest) GetReverse() bool

func (*DescribeRolesRequest) GetRoleId

func (m *DescribeRolesRequest) GetRoleId() []string

func (*DescribeRolesRequest) GetRoleName

func (m *DescribeRolesRequest) GetRoleName() []string

func (*DescribeRolesRequest) GetSearchWord

func (m *DescribeRolesRequest) GetSearchWord() string

func (*DescribeRolesRequest) GetSortKey

func (m *DescribeRolesRequest) GetSortKey() string

func (*DescribeRolesRequest) GetStatus

func (m *DescribeRolesRequest) GetStatus() []string

func (*DescribeRolesRequest) GetUserId

func (m *DescribeRolesRequest) GetUserId() []string

func (*DescribeRolesRequest) ProtoMessage

func (*DescribeRolesRequest) ProtoMessage()

func (*DescribeRolesRequest) Reset

func (m *DescribeRolesRequest) Reset()

func (*DescribeRolesRequest) String

func (m *DescribeRolesRequest) String() string

func (*DescribeRolesRequest) XXX_DiscardUnknown

func (m *DescribeRolesRequest) XXX_DiscardUnknown()

func (*DescribeRolesRequest) XXX_Marshal

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

func (*DescribeRolesRequest) XXX_Merge

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

func (*DescribeRolesRequest) XXX_Size

func (m *DescribeRolesRequest) XXX_Size() int

func (*DescribeRolesRequest) XXX_Unmarshal

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

type DescribeRolesResponse

type DescribeRolesResponse struct {
	Total                uint32   `protobuf:"varint,1,opt,name=total,proto3" json:"total,omitempty"`
	RoleSet              []*Role  `protobuf:"bytes,2,rep,name=role_set,json=roleSet,proto3" json:"role_set,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DescribeRolesResponse) Descriptor

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

func (*DescribeRolesResponse) GetRoleSet

func (m *DescribeRolesResponse) GetRoleSet() []*Role

func (*DescribeRolesResponse) GetTotal

func (m *DescribeRolesResponse) GetTotal() uint32

func (*DescribeRolesResponse) ProtoMessage

func (*DescribeRolesResponse) ProtoMessage()

func (*DescribeRolesResponse) Reset

func (m *DescribeRolesResponse) Reset()

func (*DescribeRolesResponse) String

func (m *DescribeRolesResponse) String() string

func (*DescribeRolesResponse) XXX_DiscardUnknown

func (m *DescribeRolesResponse) XXX_DiscardUnknown()

func (*DescribeRolesResponse) XXX_Marshal

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

func (*DescribeRolesResponse) XXX_Merge

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

func (*DescribeRolesResponse) XXX_Size

func (m *DescribeRolesResponse) XXX_Size() int

func (*DescribeRolesResponse) XXX_Unmarshal

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

type DescribeRolesWithUserResponse

type DescribeRolesWithUserResponse struct {
	Total                uint32          `protobuf:"varint,1,opt,name=total,proto3" json:"total,omitempty"`
	RoleSet              []*RoleWithUser `protobuf:"bytes,2,rep,name=role_set,json=roleSet,proto3" json:"role_set,omitempty"`
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
}

func (*DescribeRolesWithUserResponse) Descriptor

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

func (*DescribeRolesWithUserResponse) GetRoleSet

func (m *DescribeRolesWithUserResponse) GetRoleSet() []*RoleWithUser

func (*DescribeRolesWithUserResponse) GetTotal

func (m *DescribeRolesWithUserResponse) GetTotal() uint32

func (*DescribeRolesWithUserResponse) ProtoMessage

func (*DescribeRolesWithUserResponse) ProtoMessage()

func (*DescribeRolesWithUserResponse) Reset

func (m *DescribeRolesWithUserResponse) Reset()

func (*DescribeRolesWithUserResponse) String

func (*DescribeRolesWithUserResponse) XXX_DiscardUnknown

func (m *DescribeRolesWithUserResponse) XXX_DiscardUnknown()

func (*DescribeRolesWithUserResponse) XXX_Marshal

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

func (*DescribeRolesWithUserResponse) XXX_Merge

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

func (*DescribeRolesWithUserResponse) XXX_Size

func (m *DescribeRolesWithUserResponse) XXX_Size() int

func (*DescribeRolesWithUserResponse) XXX_Unmarshal

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

type ErrorDetail

type ErrorDetail struct {
	ErrorName            string   `protobuf:"bytes,1,opt,name=error_name,json=errorName,proto3" json:"error_name,omitempty"`
	Cause                string   `protobuf:"bytes,2,opt,name=cause,proto3" json:"cause,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ErrorDetail) Descriptor

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

func (*ErrorDetail) GetCause

func (m *ErrorDetail) GetCause() string

func (*ErrorDetail) GetErrorName

func (m *ErrorDetail) GetErrorName() string

func (*ErrorDetail) ProtoMessage

func (*ErrorDetail) ProtoMessage()

func (*ErrorDetail) Reset

func (m *ErrorDetail) Reset()

func (*ErrorDetail) String

func (m *ErrorDetail) String() string

func (*ErrorDetail) XXX_DiscardUnknown

func (m *ErrorDetail) XXX_DiscardUnknown()

func (*ErrorDetail) XXX_Marshal

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

func (*ErrorDetail) XXX_Merge

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

func (*ErrorDetail) XXX_Size

func (m *ErrorDetail) XXX_Size() int

func (*ErrorDetail) XXX_Unmarshal

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

type Feature

type Feature struct {
	FeatureId                string          `protobuf:"bytes,1,opt,name=feature_id,json=featureId,proto3" json:"feature_id,omitempty"`
	FeatureName              string          `protobuf:"bytes,2,opt,name=feature_name,json=featureName,proto3" json:"feature_name,omitempty"`
	ActionBundleSet          []*ActionBundle `protobuf:"bytes,3,rep,name=action_bundle_set,json=actionBundleSet,proto3" json:"action_bundle_set,omitempty"`
	CheckedActionBundleIdSet []string        `` /* 139-byte string literal not displayed */
	XXX_NoUnkeyedLiteral     struct{}        `json:"-"`
	XXX_unrecognized         []byte          `json:"-"`
	XXX_sizecache            int32           `json:"-"`
}

func (*Feature) Descriptor

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

func (*Feature) GetActionBundleSet

func (m *Feature) GetActionBundleSet() []*ActionBundle

func (*Feature) GetCheckedActionBundleIdSet

func (m *Feature) GetCheckedActionBundleIdSet() []string

func (*Feature) GetFeatureId

func (m *Feature) GetFeatureId() string

func (*Feature) GetFeatureName

func (m *Feature) GetFeatureName() string

func (*Feature) ProtoMessage

func (*Feature) ProtoMessage()

func (*Feature) Reset

func (m *Feature) Reset()

func (*Feature) String

func (m *Feature) String() string

func (*Feature) XXX_DiscardUnknown

func (m *Feature) XXX_DiscardUnknown()

func (*Feature) XXX_Marshal

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

func (*Feature) XXX_Merge

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

func (*Feature) XXX_Size

func (m *Feature) XXX_Size() int

func (*Feature) XXX_Unmarshal

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

type GetRoleModuleRequest

type GetRoleModuleRequest struct {
	RoleId               string   `protobuf:"bytes,1,opt,name=role_id,json=roleId,proto3" json:"role_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetRoleModuleRequest) Descriptor

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

func (*GetRoleModuleRequest) GetRoleId

func (m *GetRoleModuleRequest) GetRoleId() string

func (*GetRoleModuleRequest) ProtoMessage

func (*GetRoleModuleRequest) ProtoMessage()

func (*GetRoleModuleRequest) Reset

func (m *GetRoleModuleRequest) Reset()

func (*GetRoleModuleRequest) String

func (m *GetRoleModuleRequest) String() string

func (*GetRoleModuleRequest) XXX_DiscardUnknown

func (m *GetRoleModuleRequest) XXX_DiscardUnknown()

func (*GetRoleModuleRequest) XXX_Marshal

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

func (*GetRoleModuleRequest) XXX_Merge

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

func (*GetRoleModuleRequest) XXX_Size

func (m *GetRoleModuleRequest) XXX_Size() int

func (*GetRoleModuleRequest) XXX_Unmarshal

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

type GetRoleModuleResponse

type GetRoleModuleResponse struct {
	RoleId               string   `protobuf:"bytes,1,opt,name=role_id,json=roleId,proto3" json:"role_id,omitempty"`
	Module               *Module  `protobuf:"bytes,2,opt,name=module,proto3" json:"module,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetRoleModuleResponse) Descriptor

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

func (*GetRoleModuleResponse) GetModule

func (m *GetRoleModuleResponse) GetModule() *Module

func (*GetRoleModuleResponse) GetRoleId

func (m *GetRoleModuleResponse) GetRoleId() string

func (*GetRoleModuleResponse) ProtoMessage

func (*GetRoleModuleResponse) ProtoMessage()

func (*GetRoleModuleResponse) Reset

func (m *GetRoleModuleResponse) Reset()

func (*GetRoleModuleResponse) String

func (m *GetRoleModuleResponse) String() string

func (*GetRoleModuleResponse) XXX_DiscardUnknown

func (m *GetRoleModuleResponse) XXX_DiscardUnknown()

func (*GetRoleModuleResponse) XXX_Marshal

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

func (*GetRoleModuleResponse) XXX_Merge

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

func (*GetRoleModuleResponse) XXX_Size

func (m *GetRoleModuleResponse) XXX_Size() int

func (*GetRoleModuleResponse) XXX_Unmarshal

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

type GetRoleRequest

type GetRoleRequest struct {
	RoleId               string   `protobuf:"bytes,1,opt,name=role_id,json=roleId,proto3" json:"role_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetRoleRequest) Descriptor

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

func (*GetRoleRequest) GetRoleId

func (m *GetRoleRequest) GetRoleId() string

func (*GetRoleRequest) ProtoMessage

func (*GetRoleRequest) ProtoMessage()

func (*GetRoleRequest) Reset

func (m *GetRoleRequest) Reset()

func (*GetRoleRequest) String

func (m *GetRoleRequest) String() string

func (*GetRoleRequest) XXX_DiscardUnknown

func (m *GetRoleRequest) XXX_DiscardUnknown()

func (*GetRoleRequest) XXX_Marshal

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

func (*GetRoleRequest) XXX_Merge

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

func (*GetRoleRequest) XXX_Size

func (m *GetRoleRequest) XXX_Size() int

func (*GetRoleRequest) XXX_Unmarshal

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

type GetRoleResponse

type GetRoleResponse struct {
	Role                 *Role    `protobuf:"bytes,1,opt,name=role,proto3" json:"role,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetRoleResponse) Descriptor

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

func (*GetRoleResponse) GetRole

func (m *GetRoleResponse) GetRole() *Role

func (*GetRoleResponse) ProtoMessage

func (*GetRoleResponse) ProtoMessage()

func (*GetRoleResponse) Reset

func (m *GetRoleResponse) Reset()

func (*GetRoleResponse) String

func (m *GetRoleResponse) String() string

func (*GetRoleResponse) XXX_DiscardUnknown

func (m *GetRoleResponse) XXX_DiscardUnknown()

func (*GetRoleResponse) XXX_Marshal

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

func (*GetRoleResponse) XXX_Merge

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

func (*GetRoleResponse) XXX_Size

func (m *GetRoleResponse) XXX_Size() int

func (*GetRoleResponse) XXX_Unmarshal

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

type GetRoleWithUserResponse

type GetRoleWithUserResponse struct {
	Role                 *RoleWithUser `protobuf:"bytes,1,opt,name=role,proto3" json:"role,omitempty"`
	XXX_NoUnkeyedLiteral struct{}      `json:"-"`
	XXX_unrecognized     []byte        `json:"-"`
	XXX_sizecache        int32         `json:"-"`
}

func (*GetRoleWithUserResponse) Descriptor

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

func (*GetRoleWithUserResponse) GetRole

func (m *GetRoleWithUserResponse) GetRole() *RoleWithUser

func (*GetRoleWithUserResponse) ProtoMessage

func (*GetRoleWithUserResponse) ProtoMessage()

func (*GetRoleWithUserResponse) Reset

func (m *GetRoleWithUserResponse) Reset()

func (*GetRoleWithUserResponse) String

func (m *GetRoleWithUserResponse) String() string

func (*GetRoleWithUserResponse) XXX_DiscardUnknown

func (m *GetRoleWithUserResponse) XXX_DiscardUnknown()

func (*GetRoleWithUserResponse) XXX_Marshal

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

func (*GetRoleWithUserResponse) XXX_Merge

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

func (*GetRoleWithUserResponse) XXX_Size

func (m *GetRoleWithUserResponse) XXX_Size() int

func (*GetRoleWithUserResponse) XXX_Unmarshal

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

type GetVersionRequest

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

func (*GetVersionRequest) Descriptor

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

func (*GetVersionRequest) ProtoMessage

func (*GetVersionRequest) ProtoMessage()

func (*GetVersionRequest) Reset

func (m *GetVersionRequest) Reset()

func (*GetVersionRequest) String

func (m *GetVersionRequest) String() string

func (*GetVersionRequest) XXX_DiscardUnknown

func (m *GetVersionRequest) XXX_DiscardUnknown()

func (*GetVersionRequest) XXX_Marshal

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

func (*GetVersionRequest) XXX_Merge

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

func (*GetVersionRequest) XXX_Size

func (m *GetVersionRequest) XXX_Size() int

func (*GetVersionRequest) XXX_Unmarshal

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

type GetVersionResponse

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

func (*GetVersionResponse) Descriptor

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

func (*GetVersionResponse) GetVersion

func (m *GetVersionResponse) GetVersion() string

func (*GetVersionResponse) ProtoMessage

func (*GetVersionResponse) ProtoMessage()

func (*GetVersionResponse) Reset

func (m *GetVersionResponse) Reset()

func (*GetVersionResponse) String

func (m *GetVersionResponse) String() string

func (*GetVersionResponse) XXX_DiscardUnknown

func (m *GetVersionResponse) XXX_DiscardUnknown()

func (*GetVersionResponse) XXX_Marshal

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

func (*GetVersionResponse) XXX_Merge

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

func (*GetVersionResponse) XXX_Size

func (m *GetVersionResponse) XXX_Size() int

func (*GetVersionResponse) XXX_Unmarshal

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

type ModifyRoleModuleRequest

type ModifyRoleModuleRequest struct {
	RoleId               string   `protobuf:"bytes,1,opt,name=role_id,json=roleId,proto3" json:"role_id,omitempty"`
	Module               *Module  `protobuf:"bytes,2,opt,name=module,proto3" json:"module,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ModifyRoleModuleRequest) Descriptor

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

func (*ModifyRoleModuleRequest) GetModule

func (m *ModifyRoleModuleRequest) GetModule() *Module

func (*ModifyRoleModuleRequest) GetRoleId

func (m *ModifyRoleModuleRequest) GetRoleId() string

func (*ModifyRoleModuleRequest) ProtoMessage

func (*ModifyRoleModuleRequest) ProtoMessage()

func (*ModifyRoleModuleRequest) Reset

func (m *ModifyRoleModuleRequest) Reset()

func (*ModifyRoleModuleRequest) String

func (m *ModifyRoleModuleRequest) String() string

func (*ModifyRoleModuleRequest) XXX_DiscardUnknown

func (m *ModifyRoleModuleRequest) XXX_DiscardUnknown()

func (*ModifyRoleModuleRequest) XXX_Marshal

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

func (*ModifyRoleModuleRequest) XXX_Merge

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

func (*ModifyRoleModuleRequest) XXX_Size

func (m *ModifyRoleModuleRequest) XXX_Size() int

func (*ModifyRoleModuleRequest) XXX_Unmarshal

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

type ModifyRoleModuleResponse

type ModifyRoleModuleResponse struct {
	RoleId               string   `protobuf:"bytes,1,opt,name=role_id,json=roleId,proto3" json:"role_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ModifyRoleModuleResponse) Descriptor

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

func (*ModifyRoleModuleResponse) GetRoleId

func (m *ModifyRoleModuleResponse) GetRoleId() string

func (*ModifyRoleModuleResponse) ProtoMessage

func (*ModifyRoleModuleResponse) ProtoMessage()

func (*ModifyRoleModuleResponse) Reset

func (m *ModifyRoleModuleResponse) Reset()

func (*ModifyRoleModuleResponse) String

func (m *ModifyRoleModuleResponse) String() string

func (*ModifyRoleModuleResponse) XXX_DiscardUnknown

func (m *ModifyRoleModuleResponse) XXX_DiscardUnknown()

func (*ModifyRoleModuleResponse) XXX_Marshal

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

func (*ModifyRoleModuleResponse) XXX_Merge

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

func (*ModifyRoleModuleResponse) XXX_Size

func (m *ModifyRoleModuleResponse) XXX_Size() int

func (*ModifyRoleModuleResponse) XXX_Unmarshal

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

type ModifyRoleRequest

type ModifyRoleRequest struct {
	RoleId               string   `protobuf:"bytes,1,opt,name=role_id,json=roleId,proto3" json:"role_id,omitempty"`
	RoleName             string   `protobuf:"bytes,2,opt,name=role_name,json=roleName,proto3" json:"role_name,omitempty"`
	Description          string   `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ModifyRoleRequest) Descriptor

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

func (*ModifyRoleRequest) GetDescription

func (m *ModifyRoleRequest) GetDescription() string

func (*ModifyRoleRequest) GetRoleId

func (m *ModifyRoleRequest) GetRoleId() string

func (*ModifyRoleRequest) GetRoleName

func (m *ModifyRoleRequest) GetRoleName() string

func (*ModifyRoleRequest) ProtoMessage

func (*ModifyRoleRequest) ProtoMessage()

func (*ModifyRoleRequest) Reset

func (m *ModifyRoleRequest) Reset()

func (*ModifyRoleRequest) String

func (m *ModifyRoleRequest) String() string

func (*ModifyRoleRequest) XXX_DiscardUnknown

func (m *ModifyRoleRequest) XXX_DiscardUnknown()

func (*ModifyRoleRequest) XXX_Marshal

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

func (*ModifyRoleRequest) XXX_Merge

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

func (*ModifyRoleRequest) XXX_Size

func (m *ModifyRoleRequest) XXX_Size() int

func (*ModifyRoleRequest) XXX_Unmarshal

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

type ModifyRoleResponse

type ModifyRoleResponse struct {
	RoleId               string   `protobuf:"bytes,1,opt,name=role_id,json=roleId,proto3" json:"role_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ModifyRoleResponse) Descriptor

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

func (*ModifyRoleResponse) GetRoleId

func (m *ModifyRoleResponse) GetRoleId() string

func (*ModifyRoleResponse) ProtoMessage

func (*ModifyRoleResponse) ProtoMessage()

func (*ModifyRoleResponse) Reset

func (m *ModifyRoleResponse) Reset()

func (*ModifyRoleResponse) String

func (m *ModifyRoleResponse) String() string

func (*ModifyRoleResponse) XXX_DiscardUnknown

func (m *ModifyRoleResponse) XXX_DiscardUnknown()

func (*ModifyRoleResponse) XXX_Marshal

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

func (*ModifyRoleResponse) XXX_Merge

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

func (*ModifyRoleResponse) XXX_Size

func (m *ModifyRoleResponse) XXX_Size() int

func (*ModifyRoleResponse) XXX_Unmarshal

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

type Module

type Module struct {
	ModuleElemSet        []*ModuleElem `protobuf:"bytes,1,rep,name=module_elem_set,json=moduleElemSet,proto3" json:"module_elem_set,omitempty"`
	XXX_NoUnkeyedLiteral struct{}      `json:"-"`
	XXX_unrecognized     []byte        `json:"-"`
	XXX_sizecache        int32         `json:"-"`
}

func (*Module) Descriptor

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

func (*Module) GetModuleElemSet

func (m *Module) GetModuleElemSet() []*ModuleElem

func (*Module) ProtoMessage

func (*Module) ProtoMessage()

func (*Module) Reset

func (m *Module) Reset()

func (*Module) String

func (m *Module) String() string

func (*Module) XXX_DiscardUnknown

func (m *Module) XXX_DiscardUnknown()

func (*Module) XXX_Marshal

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

func (*Module) XXX_Merge

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

func (*Module) XXX_Size

func (m *Module) XXX_Size() int

func (*Module) XXX_Unmarshal

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

type ModuleElem

type ModuleElem struct {
	ModuleId             string     `protobuf:"bytes,1,opt,name=module_id,json=moduleId,proto3" json:"module_id,omitempty"`
	ModuleName           string     `protobuf:"bytes,2,opt,name=module_name,json=moduleName,proto3" json:"module_name,omitempty"`
	FeatureSet           []*Feature `protobuf:"bytes,3,rep,name=feature_set,json=featureSet,proto3" json:"feature_set,omitempty"`
	DataLevel            string     `protobuf:"bytes,4,opt,name=data_level,json=dataLevel,proto3" json:"data_level,omitempty"`
	IsCheckAll           bool       `protobuf:"varint,5,opt,name=is_check_all,json=isCheckAll,proto3" json:"is_check_all,omitempty"`
	XXX_NoUnkeyedLiteral struct{}   `json:"-"`
	XXX_unrecognized     []byte     `json:"-"`
	XXX_sizecache        int32      `json:"-"`
}

func (*ModuleElem) Descriptor

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

func (*ModuleElem) GetDataLevel

func (m *ModuleElem) GetDataLevel() string

func (*ModuleElem) GetFeatureSet

func (m *ModuleElem) GetFeatureSet() []*Feature

func (*ModuleElem) GetIsCheckAll

func (m *ModuleElem) GetIsCheckAll() bool

func (*ModuleElem) GetModuleId

func (m *ModuleElem) GetModuleId() string

func (*ModuleElem) GetModuleName

func (m *ModuleElem) GetModuleName() string

func (*ModuleElem) ProtoMessage

func (*ModuleElem) ProtoMessage()

func (*ModuleElem) Reset

func (m *ModuleElem) Reset()

func (*ModuleElem) String

func (m *ModuleElem) String() string

func (*ModuleElem) XXX_DiscardUnknown

func (m *ModuleElem) XXX_DiscardUnknown()

func (*ModuleElem) XXX_Marshal

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

func (*ModuleElem) XXX_Merge

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

func (*ModuleElem) XXX_Size

func (m *ModuleElem) XXX_Size() int

func (*ModuleElem) XXX_Unmarshal

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

type Role

type Role struct {
	RoleId               string               `protobuf:"bytes,1,opt,name=role_id,json=roleId,proto3" json:"role_id,omitempty"`
	RoleName             string               `protobuf:"bytes,2,opt,name=role_name,json=roleName,proto3" json:"role_name,omitempty"`
	Description          string               `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
	Portal               string               `protobuf:"bytes,4,opt,name=portal,proto3" json:"portal,omitempty"`
	Owner                string               `protobuf:"bytes,5,opt,name=owner,proto3" json:"owner,omitempty"`
	OwnerPath            string               `protobuf:"bytes,6,opt,name=owner_path,json=ownerPath,proto3" json:"owner_path,omitempty"`
	Status               string               `protobuf:"bytes,7,opt,name=status,proto3" json:"status,omitempty"`
	Controller           string               `protobuf:"bytes,8,opt,name=controller,proto3" json:"controller,omitempty"`
	CreateTime           *timestamp.Timestamp `protobuf:"bytes,9,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty"`
	UpdateTime           *timestamp.Timestamp `protobuf:"bytes,10,opt,name=update_time,json=updateTime,proto3" json:"update_time,omitempty"`
	StatusTime           *timestamp.Timestamp `protobuf:"bytes,11,opt,name=status_time,json=statusTime,proto3" json:"status_time,omitempty"`
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

func (*Role) Descriptor

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

func (*Role) GetController

func (m *Role) GetController() string

func (*Role) GetCreateTime

func (m *Role) GetCreateTime() *timestamp.Timestamp

func (*Role) GetDescription

func (m *Role) GetDescription() string

func (*Role) GetOwner

func (m *Role) GetOwner() string

func (*Role) GetOwnerPath

func (m *Role) GetOwnerPath() string

func (*Role) GetPortal

func (m *Role) GetPortal() string

func (*Role) GetRoleId

func (m *Role) GetRoleId() string

func (*Role) GetRoleName

func (m *Role) GetRoleName() string

func (*Role) GetStatus

func (m *Role) GetStatus() string

func (*Role) GetStatusTime

func (m *Role) GetStatusTime() *timestamp.Timestamp

func (*Role) GetUpdateTime

func (m *Role) GetUpdateTime() *timestamp.Timestamp

func (*Role) ProtoMessage

func (*Role) ProtoMessage()

func (*Role) Reset

func (m *Role) Reset()

func (*Role) String

func (m *Role) String() string

func (*Role) XXX_DiscardUnknown

func (m *Role) XXX_DiscardUnknown()

func (*Role) XXX_Marshal

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

func (*Role) XXX_Merge

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

func (*Role) XXX_Size

func (m *Role) XXX_Size() int

func (*Role) XXX_Unmarshal

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

type RoleWithUser

type RoleWithUser struct {
	Role                 *Role    `protobuf:"bytes,1,opt,name=role,proto3" json:"role,omitempty"`
	UserIdSet            []string `protobuf:"bytes,2,rep,name=user_id_set,json=userIdSet,proto3" json:"user_id_set,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*RoleWithUser) Descriptor

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

func (*RoleWithUser) GetRole

func (m *RoleWithUser) GetRole() *Role

func (*RoleWithUser) GetUserIdSet

func (m *RoleWithUser) GetUserIdSet() []string

func (*RoleWithUser) ProtoMessage

func (*RoleWithUser) ProtoMessage()

func (*RoleWithUser) Reset

func (m *RoleWithUser) Reset()

func (*RoleWithUser) String

func (m *RoleWithUser) String() string

func (*RoleWithUser) XXX_DiscardUnknown

func (m *RoleWithUser) XXX_DiscardUnknown()

func (*RoleWithUser) XXX_Marshal

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

func (*RoleWithUser) XXX_Merge

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

func (*RoleWithUser) XXX_Size

func (m *RoleWithUser) XXX_Size() int

func (*RoleWithUser) XXX_Unmarshal

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

type UnbindUserRoleRequest

type UnbindUserRoleRequest struct {
	UserId               []string `protobuf:"bytes,1,rep,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	RoleId               []string `protobuf:"bytes,2,rep,name=role_id,json=roleId,proto3" json:"role_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*UnbindUserRoleRequest) Descriptor

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

func (*UnbindUserRoleRequest) GetRoleId

func (m *UnbindUserRoleRequest) GetRoleId() []string

func (*UnbindUserRoleRequest) GetUserId

func (m *UnbindUserRoleRequest) GetUserId() []string

func (*UnbindUserRoleRequest) ProtoMessage

func (*UnbindUserRoleRequest) ProtoMessage()

func (*UnbindUserRoleRequest) Reset

func (m *UnbindUserRoleRequest) Reset()

func (*UnbindUserRoleRequest) String

func (m *UnbindUserRoleRequest) String() string

func (*UnbindUserRoleRequest) XXX_DiscardUnknown

func (m *UnbindUserRoleRequest) XXX_DiscardUnknown()

func (*UnbindUserRoleRequest) XXX_Marshal

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

func (*UnbindUserRoleRequest) XXX_Merge

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

func (*UnbindUserRoleRequest) XXX_Size

func (m *UnbindUserRoleRequest) XXX_Size() int

func (*UnbindUserRoleRequest) XXX_Unmarshal

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

type UnbindUserRoleResponse

type UnbindUserRoleResponse struct {
	UserId               []string `protobuf:"bytes,1,rep,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	RoleId               []string `protobuf:"bytes,2,rep,name=role_id,json=roleId,proto3" json:"role_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*UnbindUserRoleResponse) Descriptor

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

func (*UnbindUserRoleResponse) GetRoleId

func (m *UnbindUserRoleResponse) GetRoleId() []string

func (*UnbindUserRoleResponse) GetUserId

func (m *UnbindUserRoleResponse) GetUserId() []string

func (*UnbindUserRoleResponse) ProtoMessage

func (*UnbindUserRoleResponse) ProtoMessage()

func (*UnbindUserRoleResponse) Reset

func (m *UnbindUserRoleResponse) Reset()

func (*UnbindUserRoleResponse) String

func (m *UnbindUserRoleResponse) String() string

func (*UnbindUserRoleResponse) XXX_DiscardUnknown

func (m *UnbindUserRoleResponse) XXX_DiscardUnknown()

func (*UnbindUserRoleResponse) XXX_Marshal

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

func (*UnbindUserRoleResponse) XXX_Merge

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

func (*UnbindUserRoleResponse) XXX_Size

func (m *UnbindUserRoleResponse) XXX_Size() int

func (*UnbindUserRoleResponse) XXX_Unmarshal

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

Jump to

Keyboard shortcuts

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