pb

package
v1.4.0 Latest Latest
Warning

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

Go to latest
Published: Nov 4, 2021 License: Apache-2.0 Imports: 32 Imported by: 1

Documentation

Index

Constants

This section is empty.

Variables

View Source
var File_credential_proto protoreflect.FileDescriptor

Functions

func AccessKeyServiceClientType

func AccessKeyServiceClientType() reflect.Type

AccessKeyServiceClientType .

func AccessKeyServiceHandlerType

func AccessKeyServiceHandlerType() reflect.Type

AccessKeyServiceHandlerType .

func AccessKeyServiceServerType

func AccessKeyServiceServerType() reflect.Type

AccessKeyServiceServerType .

func RegisterAccessKeyServiceHandler

func RegisterAccessKeyServiceHandler(r http.Router, srv AccessKeyServiceHandler, opts ...http.HandleOption)

RegisterAccessKeyServiceHandler register AccessKeyServiceHandler to http.Router.

func RegisterAccessKeyServiceImp

func RegisterAccessKeyServiceImp(regester transport.Register, srv AccessKeyServiceServer, opts ...transport.ServiceOption)

RegisterAccessKeyServiceImp credential.proto

func RegisterAccessKeyServiceServer

func RegisterAccessKeyServiceServer(s grpc1.ServiceRegistrar, srv AccessKeyServiceServer, opts ...grpc1.HandleOption)

func ServiceNames

func ServiceNames(svr ...string) []string

ServiceNames return all service names

func Types

func Types() []reflect.Type

Types

type AccessKeyServiceClient

type AccessKeyServiceClient interface {
	CreateAccessKey(ctx context.Context, in *CreateAccessKeyRequest, opts ...grpc.CallOption) (*CreateAccessKeyResponse, error)
	DeleteAccessKey(ctx context.Context, in *DeleteAccessKeyRequest, opts ...grpc.CallOption) (*DeleteAccessKeyResponse, error)
	GetAccessKey(ctx context.Context, in *GetAccessKeyRequest, opts ...grpc.CallOption) (*GetAccessKeyResponse, error)
	DownloadAccessKeyFile(ctx context.Context, in *DownloadAccessKeyFileRequest, opts ...grpc.CallOption) (*DownloadAccessKeyFileResponse, error)
	QueryAccessKeys(ctx context.Context, in *QueryAccessKeysRequest, opts ...grpc.CallOption) (*QueryAccessKeysResponse, error)
}

AccessKeyServiceClient is the client API for AccessKeyService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

type AccessKeyServiceHandler

type AccessKeyServiceHandler interface {
	// POST /api/msp/credential/access-keys
	CreateAccessKey(context.Context, *CreateAccessKeyRequest) (*CreateAccessKeyResponse, error)
	// DELETE /api/msp/credential/access-keys/{id}
	DeleteAccessKey(context.Context, *DeleteAccessKeyRequest) (*DeleteAccessKeyResponse, error)
	// GET /api/msp/credential/access-keys/{id}
	GetAccessKey(context.Context, *GetAccessKeyRequest) (*GetAccessKeyResponse, error)
	// GET /api/msp/credential/access-keys/download
	DownloadAccessKeyFile(context.Context, *DownloadAccessKeyFileRequest) (*DownloadAccessKeyFileResponse, error)
	// POST /api/msp/credential/access-keys/records
	QueryAccessKeys(context.Context, *QueryAccessKeysRequest) (*QueryAccessKeysResponse, error)
}

AccessKeyServiceHandler is the server API for AccessKeyService service.

type AccessKeyServiceServer

AccessKeyServiceServer is the server API for AccessKeyService service. All implementations should embed UnimplementedAccessKeyServiceServer for forward compatibility

type CreateAccessKeyRequest

type CreateAccessKeyRequest struct {
	SubjectType pb.SubjectTypeEnum_SubjectType `` /* 165-byte string literal not displayed */
	Subject     string                         `protobuf:"bytes,2,opt,name=subject,proto3" json:"subject,omitempty"`
	Description string                         `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
	Scope       string                         `protobuf:"bytes,4,opt,name=scope,proto3" json:"scope,omitempty"`
	ScopeId     string                         `protobuf:"bytes,5,opt,name=scopeId,proto3" json:"scopeId,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateAccessKeyRequest) Descriptor deprecated

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

Deprecated: Use CreateAccessKeyRequest.ProtoReflect.Descriptor instead.

func (*CreateAccessKeyRequest) GetDescription

func (x *CreateAccessKeyRequest) GetDescription() string

func (*CreateAccessKeyRequest) GetScope

func (x *CreateAccessKeyRequest) GetScope() string

func (*CreateAccessKeyRequest) GetScopeId

func (x *CreateAccessKeyRequest) GetScopeId() string

func (*CreateAccessKeyRequest) GetSubject

func (x *CreateAccessKeyRequest) GetSubject() string

func (*CreateAccessKeyRequest) GetSubjectType

func (*CreateAccessKeyRequest) MarshalJSON

func (m *CreateAccessKeyRequest) MarshalJSON() ([]byte, error)

CreateAccessKeyRequest implement json.Marshaler.

func (*CreateAccessKeyRequest) ProtoMessage

func (*CreateAccessKeyRequest) ProtoMessage()

func (*CreateAccessKeyRequest) ProtoReflect

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

func (*CreateAccessKeyRequest) Reset

func (x *CreateAccessKeyRequest) Reset()

func (*CreateAccessKeyRequest) String

func (x *CreateAccessKeyRequest) String() string

func (*CreateAccessKeyRequest) UnmarshalJSON

func (m *CreateAccessKeyRequest) UnmarshalJSON(b []byte) error

CreateAccessKeyRequest implement json.Marshaler.

func (*CreateAccessKeyRequest) UnmarshalURLValues

func (m *CreateAccessKeyRequest) UnmarshalURLValues(prefix string, values url.Values) error

CreateAccessKeyRequest implement urlenc.URLValuesUnmarshaler.

func (*CreateAccessKeyRequest) Validate

func (this *CreateAccessKeyRequest) Validate() error

type CreateAccessKeyResponse

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

func (*CreateAccessKeyResponse) Descriptor deprecated

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

Deprecated: Use CreateAccessKeyResponse.ProtoReflect.Descriptor instead.

func (*CreateAccessKeyResponse) GetData

func (x *CreateAccessKeyResponse) GetData() string

func (*CreateAccessKeyResponse) MarshalJSON

func (m *CreateAccessKeyResponse) MarshalJSON() ([]byte, error)

CreateAccessKeyResponse implement json.Marshaler.

func (*CreateAccessKeyResponse) ProtoMessage

func (*CreateAccessKeyResponse) ProtoMessage()

func (*CreateAccessKeyResponse) ProtoReflect

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

func (*CreateAccessKeyResponse) Reset

func (x *CreateAccessKeyResponse) Reset()

func (*CreateAccessKeyResponse) String

func (x *CreateAccessKeyResponse) String() string

func (*CreateAccessKeyResponse) UnmarshalJSON

func (m *CreateAccessKeyResponse) UnmarshalJSON(b []byte) error

CreateAccessKeyResponse implement json.Marshaler.

func (*CreateAccessKeyResponse) UnmarshalURLValues

func (m *CreateAccessKeyResponse) UnmarshalURLValues(prefix string, values url.Values) error

CreateAccessKeyResponse implement urlenc.URLValuesUnmarshaler.

func (*CreateAccessKeyResponse) Validate

func (this *CreateAccessKeyResponse) Validate() error

type DeleteAccessKeyRequest

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

func (*DeleteAccessKeyRequest) Descriptor deprecated

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

Deprecated: Use DeleteAccessKeyRequest.ProtoReflect.Descriptor instead.

func (*DeleteAccessKeyRequest) GetId

func (x *DeleteAccessKeyRequest) GetId() string

func (*DeleteAccessKeyRequest) MarshalJSON

func (m *DeleteAccessKeyRequest) MarshalJSON() ([]byte, error)

DeleteAccessKeyRequest implement json.Marshaler.

func (*DeleteAccessKeyRequest) ProtoMessage

func (*DeleteAccessKeyRequest) ProtoMessage()

func (*DeleteAccessKeyRequest) ProtoReflect

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

func (*DeleteAccessKeyRequest) Reset

func (x *DeleteAccessKeyRequest) Reset()

func (*DeleteAccessKeyRequest) String

func (x *DeleteAccessKeyRequest) String() string

func (*DeleteAccessKeyRequest) UnmarshalJSON

func (m *DeleteAccessKeyRequest) UnmarshalJSON(b []byte) error

DeleteAccessKeyRequest implement json.Marshaler.

func (*DeleteAccessKeyRequest) UnmarshalURLValues

func (m *DeleteAccessKeyRequest) UnmarshalURLValues(prefix string, values url.Values) error

DeleteAccessKeyRequest implement urlenc.URLValuesUnmarshaler.

func (*DeleteAccessKeyRequest) Validate

func (this *DeleteAccessKeyRequest) Validate() error

type DeleteAccessKeyResponse

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

func (*DeleteAccessKeyResponse) Descriptor deprecated

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

Deprecated: Use DeleteAccessKeyResponse.ProtoReflect.Descriptor instead.

func (*DeleteAccessKeyResponse) MarshalJSON

func (m *DeleteAccessKeyResponse) MarshalJSON() ([]byte, error)

DeleteAccessKeyResponse implement json.Marshaler.

func (*DeleteAccessKeyResponse) ProtoMessage

func (*DeleteAccessKeyResponse) ProtoMessage()

func (*DeleteAccessKeyResponse) ProtoReflect

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

func (*DeleteAccessKeyResponse) Reset

func (x *DeleteAccessKeyResponse) Reset()

func (*DeleteAccessKeyResponse) String

func (x *DeleteAccessKeyResponse) String() string

func (*DeleteAccessKeyResponse) UnmarshalJSON

func (m *DeleteAccessKeyResponse) UnmarshalJSON(b []byte) error

DeleteAccessKeyResponse implement json.Marshaler.

func (*DeleteAccessKeyResponse) UnmarshalURLValues

func (m *DeleteAccessKeyResponse) UnmarshalURLValues(prefix string, values url.Values) error

DeleteAccessKeyResponse implement urlenc.URLValuesUnmarshaler.

func (*DeleteAccessKeyResponse) Validate

func (this *DeleteAccessKeyResponse) Validate() error

type DownloadAccessKeyFileRequest

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

func (*DownloadAccessKeyFileRequest) Descriptor deprecated

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

Deprecated: Use DownloadAccessKeyFileRequest.ProtoReflect.Descriptor instead.

func (*DownloadAccessKeyFileRequest) GetId

func (*DownloadAccessKeyFileRequest) MarshalJSON

func (m *DownloadAccessKeyFileRequest) MarshalJSON() ([]byte, error)

DownloadAccessKeyFileRequest implement json.Marshaler.

func (*DownloadAccessKeyFileRequest) ProtoMessage

func (*DownloadAccessKeyFileRequest) ProtoMessage()

func (*DownloadAccessKeyFileRequest) ProtoReflect

func (*DownloadAccessKeyFileRequest) Reset

func (x *DownloadAccessKeyFileRequest) Reset()

func (*DownloadAccessKeyFileRequest) String

func (*DownloadAccessKeyFileRequest) UnmarshalJSON

func (m *DownloadAccessKeyFileRequest) UnmarshalJSON(b []byte) error

DownloadAccessKeyFileRequest implement json.Marshaler.

func (*DownloadAccessKeyFileRequest) UnmarshalURLValues

func (m *DownloadAccessKeyFileRequest) UnmarshalURLValues(prefix string, values url.Values) error

DownloadAccessKeyFileRequest implement urlenc.URLValuesUnmarshaler.

func (*DownloadAccessKeyFileRequest) Validate

func (this *DownloadAccessKeyFileRequest) Validate() error

type DownloadAccessKeyFileResponse

type DownloadAccessKeyFileResponse struct {
	Content []byte `protobuf:"bytes,1,opt,name=content,proto3" json:"content,omitempty"`
	// contains filtered or unexported fields
}

func (*DownloadAccessKeyFileResponse) Descriptor deprecated

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

Deprecated: Use DownloadAccessKeyFileResponse.ProtoReflect.Descriptor instead.

func (*DownloadAccessKeyFileResponse) GetContent

func (x *DownloadAccessKeyFileResponse) GetContent() []byte

func (*DownloadAccessKeyFileResponse) MarshalJSON

func (m *DownloadAccessKeyFileResponse) MarshalJSON() ([]byte, error)

DownloadAccessKeyFileResponse implement json.Marshaler.

func (*DownloadAccessKeyFileResponse) ProtoMessage

func (*DownloadAccessKeyFileResponse) ProtoMessage()

func (*DownloadAccessKeyFileResponse) ProtoReflect

func (*DownloadAccessKeyFileResponse) Reset

func (x *DownloadAccessKeyFileResponse) Reset()

func (*DownloadAccessKeyFileResponse) String

func (*DownloadAccessKeyFileResponse) UnmarshalJSON

func (m *DownloadAccessKeyFileResponse) UnmarshalJSON(b []byte) error

DownloadAccessKeyFileResponse implement json.Marshaler.

func (*DownloadAccessKeyFileResponse) UnmarshalURLValues

func (m *DownloadAccessKeyFileResponse) UnmarshalURLValues(prefix string, values url.Values) error

DownloadAccessKeyFileResponse implement urlenc.URLValuesUnmarshaler.

func (*DownloadAccessKeyFileResponse) Validate

func (this *DownloadAccessKeyFileResponse) Validate() error

type GetAccessKeyRequest

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

func (*GetAccessKeyRequest) Descriptor deprecated

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

Deprecated: Use GetAccessKeyRequest.ProtoReflect.Descriptor instead.

func (*GetAccessKeyRequest) GetId

func (x *GetAccessKeyRequest) GetId() string

func (*GetAccessKeyRequest) MarshalJSON

func (m *GetAccessKeyRequest) MarshalJSON() ([]byte, error)

GetAccessKeyRequest implement json.Marshaler.

func (*GetAccessKeyRequest) ProtoMessage

func (*GetAccessKeyRequest) ProtoMessage()

func (*GetAccessKeyRequest) ProtoReflect

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

func (*GetAccessKeyRequest) Reset

func (x *GetAccessKeyRequest) Reset()

func (*GetAccessKeyRequest) String

func (x *GetAccessKeyRequest) String() string

func (*GetAccessKeyRequest) UnmarshalJSON

func (m *GetAccessKeyRequest) UnmarshalJSON(b []byte) error

GetAccessKeyRequest implement json.Marshaler.

func (*GetAccessKeyRequest) UnmarshalURLValues

func (m *GetAccessKeyRequest) UnmarshalURLValues(prefix string, values url.Values) error

GetAccessKeyRequest implement urlenc.URLValuesUnmarshaler.

func (*GetAccessKeyRequest) Validate

func (this *GetAccessKeyRequest) Validate() error

type GetAccessKeyResponse

type GetAccessKeyResponse struct {
	Data *pb.AccessKeysItem `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*GetAccessKeyResponse) Descriptor deprecated

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

Deprecated: Use GetAccessKeyResponse.ProtoReflect.Descriptor instead.

func (*GetAccessKeyResponse) GetData

func (x *GetAccessKeyResponse) GetData() *pb.AccessKeysItem

func (*GetAccessKeyResponse) MarshalJSON

func (m *GetAccessKeyResponse) MarshalJSON() ([]byte, error)

GetAccessKeyResponse implement json.Marshaler.

func (*GetAccessKeyResponse) ProtoMessage

func (*GetAccessKeyResponse) ProtoMessage()

func (*GetAccessKeyResponse) ProtoReflect

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

func (*GetAccessKeyResponse) Reset

func (x *GetAccessKeyResponse) Reset()

func (*GetAccessKeyResponse) String

func (x *GetAccessKeyResponse) String() string

func (*GetAccessKeyResponse) UnmarshalJSON

func (m *GetAccessKeyResponse) UnmarshalJSON(b []byte) error

GetAccessKeyResponse implement json.Marshaler.

func (*GetAccessKeyResponse) UnmarshalURLValues

func (m *GetAccessKeyResponse) UnmarshalURLValues(prefix string, values url.Values) error

GetAccessKeyResponse implement urlenc.URLValuesUnmarshaler.

func (*GetAccessKeyResponse) Validate

func (this *GetAccessKeyResponse) Validate() error

type QueryAccessKeys

type QueryAccessKeys struct {
	Id        string                 `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Token     string                 `protobuf:"bytes,2,opt,name=token,proto3" json:"token,omitempty"`
	CreatedAt *timestamppb.Timestamp `protobuf:"bytes,3,opt,name=createdAt,proto3" json:"createdAt,omitempty"`
	// contains filtered or unexported fields
}

func (*QueryAccessKeys) Descriptor deprecated

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

Deprecated: Use QueryAccessKeys.ProtoReflect.Descriptor instead.

func (*QueryAccessKeys) GetCreatedAt

func (x *QueryAccessKeys) GetCreatedAt() *timestamppb.Timestamp

func (*QueryAccessKeys) GetId

func (x *QueryAccessKeys) GetId() string

func (*QueryAccessKeys) GetToken

func (x *QueryAccessKeys) GetToken() string

func (*QueryAccessKeys) MarshalJSON

func (m *QueryAccessKeys) MarshalJSON() ([]byte, error)

QueryAccessKeys implement json.Marshaler.

func (*QueryAccessKeys) ProtoMessage

func (*QueryAccessKeys) ProtoMessage()

func (*QueryAccessKeys) ProtoReflect

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

func (*QueryAccessKeys) Reset

func (x *QueryAccessKeys) Reset()

func (*QueryAccessKeys) String

func (x *QueryAccessKeys) String() string

func (*QueryAccessKeys) UnmarshalJSON

func (m *QueryAccessKeys) UnmarshalJSON(b []byte) error

QueryAccessKeys implement json.Marshaler.

func (*QueryAccessKeys) UnmarshalURLValues

func (m *QueryAccessKeys) UnmarshalURLValues(prefix string, values url.Values) error

QueryAccessKeys implement urlenc.URLValuesUnmarshaler.

func (*QueryAccessKeys) Validate

func (this *QueryAccessKeys) Validate() error

type QueryAccessKeysData

type QueryAccessKeysData struct {
	List  []*QueryAccessKeys `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
	Total int64              `protobuf:"varint,2,opt,name=total,proto3" json:"total,omitempty"`
	// contains filtered or unexported fields
}

func (*QueryAccessKeysData) Descriptor deprecated

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

Deprecated: Use QueryAccessKeysData.ProtoReflect.Descriptor instead.

func (*QueryAccessKeysData) GetList

func (x *QueryAccessKeysData) GetList() []*QueryAccessKeys

func (*QueryAccessKeysData) GetTotal

func (x *QueryAccessKeysData) GetTotal() int64

func (*QueryAccessKeysData) MarshalJSON

func (m *QueryAccessKeysData) MarshalJSON() ([]byte, error)

QueryAccessKeysData implement json.Marshaler.

func (*QueryAccessKeysData) ProtoMessage

func (*QueryAccessKeysData) ProtoMessage()

func (*QueryAccessKeysData) ProtoReflect

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

func (*QueryAccessKeysData) Reset

func (x *QueryAccessKeysData) Reset()

func (*QueryAccessKeysData) String

func (x *QueryAccessKeysData) String() string

func (*QueryAccessKeysData) UnmarshalJSON

func (m *QueryAccessKeysData) UnmarshalJSON(b []byte) error

QueryAccessKeysData implement json.Marshaler.

func (*QueryAccessKeysData) UnmarshalURLValues

func (m *QueryAccessKeysData) UnmarshalURLValues(prefix string, values url.Values) error

QueryAccessKeysData implement urlenc.URLValuesUnmarshaler.

func (*QueryAccessKeysData) Validate

func (this *QueryAccessKeysData) Validate() error

type QueryAccessKeysRequest

type QueryAccessKeysRequest struct {
	Status      pb.StatusEnum_Status           `` /* 145-byte string literal not displayed */
	SubjectType pb.SubjectTypeEnum_SubjectType `` /* 165-byte string literal not displayed */
	Subject     string                         `protobuf:"bytes,3,opt,name=subject,proto3" json:"subject,omitempty"`
	AccessKey   string                         `protobuf:"bytes,4,opt,name=accessKey,proto3" json:"accessKey,omitempty"`
	PageNo      int64                          `protobuf:"varint,5,opt,name=pageNo,proto3" json:"pageNo,omitempty"`
	PageSize    int64                          `protobuf:"varint,6,opt,name=pageSize,proto3" json:"pageSize,omitempty"`
	Scope       string                         `protobuf:"bytes,7,opt,name=scope,proto3" json:"scope,omitempty"`
	ScopeId     string                         `protobuf:"bytes,8,opt,name=scopeId,proto3" json:"scopeId,omitempty"`
	// contains filtered or unexported fields
}

func (*QueryAccessKeysRequest) Descriptor deprecated

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

Deprecated: Use QueryAccessKeysRequest.ProtoReflect.Descriptor instead.

func (*QueryAccessKeysRequest) GetAccessKey

func (x *QueryAccessKeysRequest) GetAccessKey() string

func (*QueryAccessKeysRequest) GetPageNo

func (x *QueryAccessKeysRequest) GetPageNo() int64

func (*QueryAccessKeysRequest) GetPageSize

func (x *QueryAccessKeysRequest) GetPageSize() int64

func (*QueryAccessKeysRequest) GetScope

func (x *QueryAccessKeysRequest) GetScope() string

func (*QueryAccessKeysRequest) GetScopeId

func (x *QueryAccessKeysRequest) GetScopeId() string

func (*QueryAccessKeysRequest) GetStatus

func (*QueryAccessKeysRequest) GetSubject

func (x *QueryAccessKeysRequest) GetSubject() string

func (*QueryAccessKeysRequest) GetSubjectType

func (*QueryAccessKeysRequest) MarshalJSON

func (m *QueryAccessKeysRequest) MarshalJSON() ([]byte, error)

QueryAccessKeysRequest implement json.Marshaler.

func (*QueryAccessKeysRequest) ProtoMessage

func (*QueryAccessKeysRequest) ProtoMessage()

func (*QueryAccessKeysRequest) ProtoReflect

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

func (*QueryAccessKeysRequest) Reset

func (x *QueryAccessKeysRequest) Reset()

func (*QueryAccessKeysRequest) String

func (x *QueryAccessKeysRequest) String() string

func (*QueryAccessKeysRequest) UnmarshalJSON

func (m *QueryAccessKeysRequest) UnmarshalJSON(b []byte) error

QueryAccessKeysRequest implement json.Marshaler.

func (*QueryAccessKeysRequest) UnmarshalURLValues

func (m *QueryAccessKeysRequest) UnmarshalURLValues(prefix string, values url.Values) error

QueryAccessKeysRequest implement urlenc.URLValuesUnmarshaler.

func (*QueryAccessKeysRequest) Validate

func (this *QueryAccessKeysRequest) Validate() error

type QueryAccessKeysResponse

type QueryAccessKeysResponse struct {
	Data *QueryAccessKeysData `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*QueryAccessKeysResponse) Descriptor deprecated

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

Deprecated: Use QueryAccessKeysResponse.ProtoReflect.Descriptor instead.

func (*QueryAccessKeysResponse) GetData

func (*QueryAccessKeysResponse) MarshalJSON

func (m *QueryAccessKeysResponse) MarshalJSON() ([]byte, error)

QueryAccessKeysResponse implement json.Marshaler.

func (*QueryAccessKeysResponse) ProtoMessage

func (*QueryAccessKeysResponse) ProtoMessage()

func (*QueryAccessKeysResponse) ProtoReflect

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

func (*QueryAccessKeysResponse) Reset

func (x *QueryAccessKeysResponse) Reset()

func (*QueryAccessKeysResponse) String

func (x *QueryAccessKeysResponse) String() string

func (*QueryAccessKeysResponse) UnmarshalJSON

func (m *QueryAccessKeysResponse) UnmarshalJSON(b []byte) error

QueryAccessKeysResponse implement json.Marshaler.

func (*QueryAccessKeysResponse) UnmarshalURLValues

func (m *QueryAccessKeysResponse) UnmarshalURLValues(prefix string, values url.Values) error

QueryAccessKeysResponse implement urlenc.URLValuesUnmarshaler.

func (*QueryAccessKeysResponse) Validate

func (this *QueryAccessKeysResponse) Validate() error

type UnimplementedAccessKeyServiceServer

type UnimplementedAccessKeyServiceServer struct {
}

UnimplementedAccessKeyServiceServer should be embedded to have forward compatible implementations.

func (*UnimplementedAccessKeyServiceServer) CreateAccessKey

func (*UnimplementedAccessKeyServiceServer) DeleteAccessKey

func (*UnimplementedAccessKeyServiceServer) DownloadAccessKeyFile

func (*UnimplementedAccessKeyServiceServer) GetAccessKey

func (*UnimplementedAccessKeyServiceServer) QueryAccessKeys

Jump to

Keyboard shortcuts

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