Documentation ¶
Overview ¶
Package go_micro_srv_auth_account is a generated protocol buffer package.
It is generated from these files:
github.com/micro/auth-srv/proto/account/account.proto
It has these top-level messages:
Record ReadRequest ReadResponse CreateRequest CreateResponse UpdateRequest UpdateResponse DeleteRequest DeleteResponse SearchRequest SearchResponse
Index ¶
- func RegisterAccountHandler(s server.Server, hdlr AccountHandler)
- type Account
- func (h *Account) Create(ctx context.Context, in *CreateRequest, out *CreateResponse) error
- func (h *Account) Delete(ctx context.Context, in *DeleteRequest, out *DeleteResponse) error
- func (h *Account) Read(ctx context.Context, in *ReadRequest, out *ReadResponse) error
- func (h *Account) Search(ctx context.Context, in *SearchRequest, out *SearchResponse) error
- func (h *Account) Update(ctx context.Context, in *UpdateRequest, out *UpdateResponse) error
- type AccountClient
- type AccountHandler
- type CreateRequest
- type CreateResponse
- type DeleteRequest
- type DeleteResponse
- type ReadRequest
- type ReadResponse
- type Record
- type SearchRequest
- type SearchResponse
- type UpdateRequest
- type UpdateResponse
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func RegisterAccountHandler ¶
func RegisterAccountHandler(s server.Server, hdlr AccountHandler)
Types ¶
type Account ¶
type Account struct {
AccountHandler
}
func (*Account) Create ¶
func (h *Account) Create(ctx context.Context, in *CreateRequest, out *CreateResponse) error
func (*Account) Delete ¶
func (h *Account) Delete(ctx context.Context, in *DeleteRequest, out *DeleteResponse) error
func (*Account) Read ¶
func (h *Account) Read(ctx context.Context, in *ReadRequest, out *ReadResponse) error
func (*Account) Search ¶
func (h *Account) Search(ctx context.Context, in *SearchRequest, out *SearchResponse) error
func (*Account) Update ¶
func (h *Account) Update(ctx context.Context, in *UpdateRequest, out *UpdateResponse) error
type AccountClient ¶
type AccountClient interface { Read(ctx context.Context, in *ReadRequest, opts ...client.CallOption) (*ReadResponse, error) Create(ctx context.Context, in *CreateRequest, opts ...client.CallOption) (*CreateResponse, error) Update(ctx context.Context, in *UpdateRequest, opts ...client.CallOption) (*UpdateResponse, error) Delete(ctx context.Context, in *DeleteRequest, opts ...client.CallOption) (*DeleteResponse, error) Search(ctx context.Context, in *SearchRequest, opts ...client.CallOption) (*SearchResponse, error) }
func NewAccountClient ¶
func NewAccountClient(serviceName string, c client.Client) AccountClient
type AccountHandler ¶
type AccountHandler interface { Read(context.Context, *ReadRequest, *ReadResponse) error Create(context.Context, *CreateRequest, *CreateResponse) error Update(context.Context, *UpdateRequest, *UpdateResponse) error Delete(context.Context, *DeleteRequest, *DeleteResponse) error Search(context.Context, *SearchRequest, *SearchResponse) error }
type CreateRequest ¶
type CreateRequest struct { // If id is blank, one will be generated Account *Record `protobuf:"bytes,1,opt,name=account" json:"account,omitempty"` }
func (*CreateRequest) Descriptor ¶
func (*CreateRequest) Descriptor() ([]byte, []int)
func (*CreateRequest) GetAccount ¶
func (m *CreateRequest) GetAccount() *Record
func (*CreateRequest) ProtoMessage ¶
func (*CreateRequest) ProtoMessage()
func (*CreateRequest) Reset ¶
func (m *CreateRequest) Reset()
func (*CreateRequest) String ¶
func (m *CreateRequest) String() string
type CreateResponse ¶
type CreateResponse struct { }
func (*CreateResponse) Descriptor ¶
func (*CreateResponse) Descriptor() ([]byte, []int)
func (*CreateResponse) ProtoMessage ¶
func (*CreateResponse) ProtoMessage()
func (*CreateResponse) Reset ¶
func (m *CreateResponse) Reset()
func (*CreateResponse) String ¶
func (m *CreateResponse) String() string
type DeleteRequest ¶
type DeleteRequest struct {
Id string `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"`
}
func (*DeleteRequest) Descriptor ¶
func (*DeleteRequest) Descriptor() ([]byte, []int)
func (*DeleteRequest) ProtoMessage ¶
func (*DeleteRequest) ProtoMessage()
func (*DeleteRequest) Reset ¶
func (m *DeleteRequest) Reset()
func (*DeleteRequest) String ¶
func (m *DeleteRequest) String() string
type DeleteResponse ¶
type DeleteResponse struct { }
func (*DeleteResponse) Descriptor ¶
func (*DeleteResponse) Descriptor() ([]byte, []int)
func (*DeleteResponse) ProtoMessage ¶
func (*DeleteResponse) ProtoMessage()
func (*DeleteResponse) Reset ¶
func (m *DeleteResponse) Reset()
func (*DeleteResponse) String ¶
func (m *DeleteResponse) String() string
type ReadRequest ¶
type ReadRequest struct {
Id string `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"`
}
func (*ReadRequest) Descriptor ¶
func (*ReadRequest) Descriptor() ([]byte, []int)
func (*ReadRequest) ProtoMessage ¶
func (*ReadRequest) ProtoMessage()
func (*ReadRequest) Reset ¶
func (m *ReadRequest) Reset()
func (*ReadRequest) String ¶
func (m *ReadRequest) String() string
type ReadResponse ¶
type ReadResponse struct {
Account *Record `protobuf:"bytes,1,opt,name=account" json:"account,omitempty"`
}
func (*ReadResponse) Descriptor ¶
func (*ReadResponse) Descriptor() ([]byte, []int)
func (*ReadResponse) GetAccount ¶
func (m *ReadResponse) GetAccount() *Record
func (*ReadResponse) ProtoMessage ¶
func (*ReadResponse) ProtoMessage()
func (*ReadResponse) Reset ¶
func (m *ReadResponse) Reset()
func (*ReadResponse) String ¶
func (m *ReadResponse) String() string
type Record ¶
type Record struct { // uuid Id string `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"` // service or user Type string `protobuf:"bytes,2,opt,name=type" json:"type,omitempty"` // service name, username, etc ClientId string `protobuf:"bytes,3,opt,name=client_id" json:"client_id,omitempty"` // we leave this blank in responses // used for update and create ClientSecret string `protobuf:"bytes,4,opt,name=client_secret" json:"client_secret,omitempty"` Metadata map[string]string `` /* 136-byte string literal not displayed */ // unix timestamp Created int64 `protobuf:"varint,6,opt,name=created" json:"created,omitempty"` // unix timestamp Updated int64 `protobuf:"varint,7,opt,name=updated" json:"updated,omitempty"` }
func (*Record) Descriptor ¶
func (*Record) GetMetadata ¶
func (*Record) ProtoMessage ¶
func (*Record) ProtoMessage()
type SearchRequest ¶
type SearchRequest struct { ClientId string `protobuf:"bytes,1,opt,name=client_id" json:"client_id,omitempty"` Type string `protobuf:"bytes,2,opt,name=type" json:"type,omitempty"` Limit int64 `protobuf:"varint,3,opt,name=limit" json:"limit,omitempty"` Offset int64 `protobuf:"varint,4,opt,name=offset" json:"offset,omitempty"` }
func (*SearchRequest) Descriptor ¶
func (*SearchRequest) Descriptor() ([]byte, []int)
func (*SearchRequest) ProtoMessage ¶
func (*SearchRequest) ProtoMessage()
func (*SearchRequest) Reset ¶
func (m *SearchRequest) Reset()
func (*SearchRequest) String ¶
func (m *SearchRequest) String() string
type SearchResponse ¶
type SearchResponse struct {
Accounts []*Record `protobuf:"bytes,1,rep,name=accounts" json:"accounts,omitempty"`
}
func (*SearchResponse) Descriptor ¶
func (*SearchResponse) Descriptor() ([]byte, []int)
func (*SearchResponse) GetAccounts ¶
func (m *SearchResponse) GetAccounts() []*Record
func (*SearchResponse) ProtoMessage ¶
func (*SearchResponse) ProtoMessage()
func (*SearchResponse) Reset ¶
func (m *SearchResponse) Reset()
func (*SearchResponse) String ¶
func (m *SearchResponse) String() string
type UpdateRequest ¶
type UpdateRequest struct { // Id and client_id cannot be changed Account *Record `protobuf:"bytes,1,opt,name=account" json:"account,omitempty"` }
func (*UpdateRequest) Descriptor ¶
func (*UpdateRequest) Descriptor() ([]byte, []int)
func (*UpdateRequest) GetAccount ¶
func (m *UpdateRequest) GetAccount() *Record
func (*UpdateRequest) ProtoMessage ¶
func (*UpdateRequest) ProtoMessage()
func (*UpdateRequest) Reset ¶
func (m *UpdateRequest) Reset()
func (*UpdateRequest) String ¶
func (m *UpdateRequest) String() string
type UpdateResponse ¶
type UpdateResponse struct { }
func (*UpdateResponse) Descriptor ¶
func (*UpdateResponse) Descriptor() ([]byte, []int)
func (*UpdateResponse) ProtoMessage ¶
func (*UpdateResponse) ProtoMessage()
func (*UpdateResponse) Reset ¶
func (m *UpdateResponse) Reset()
func (*UpdateResponse) String ¶
func (m *UpdateResponse) String() string
Click to show internal directories.
Click to hide internal directories.