Versions in this module Expand all Collapse all v0 v0.1.1 Sep 10, 2018 Changes in this version + func AtlasValidateAnnotator(ctx context.Context, r *http.Request) metadata.MD + func RegisterGroupsHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error + func RegisterGroupsHandlerClient(ctx context.Context, mux *runtime.ServeMux, client GroupsClient) error + func RegisterGroupsHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, ...) (err error) + func RegisterGroupsServer(s *grpc.Server, srv GroupsServer) + func RegisterProfilesHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error + func RegisterProfilesHandlerClient(ctx context.Context, mux *runtime.ServeMux, client ProfilesClient) error + func RegisterProfilesHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, ...) (err error) + func RegisterProfilesServer(s *grpc.Server, srv ProfilesServer) + func RegisterUsersHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error + func RegisterUsersHandlerClient(ctx context.Context, mux *runtime.ServeMux, client UsersClient) error + func RegisterUsersHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, ...) (err error) + func RegisterUsersServer(s *grpc.Server, srv UsersServer) + type Address struct + City string + Country string + State string + Zip string + func (*Address) Descriptor() ([]byte, []int) + func (*Address) ProtoMessage() + func (m *Address) GetCity() string + func (m *Address) GetCountry() string + func (m *Address) GetState() string + func (m *Address) GetZip() string + func (m *Address) Reset() + func (m *Address) String() string + func (o *Address) AtlasValidateJSON(r json.RawMessage, path string, allowUnknown bool) (err error) + type CreateUserRequest struct + Payload *User + func (*CreateUserRequest) Descriptor() ([]byte, []int) + func (*CreateUserRequest) ProtoMessage() + func (m *CreateUserRequest) GetPayload() *User + func (m *CreateUserRequest) Reset() + func (m *CreateUserRequest) String() string + func (o *CreateUserRequest) AtlasValidateJSON(r json.RawMessage, path string, allowUnknown bool) (err error) + type EmptyRequest struct + func (*EmptyRequest) Descriptor() ([]byte, []int) + func (*EmptyRequest) ProtoMessage() + func (m *EmptyRequest) Reset() + func (m *EmptyRequest) String() string + func (o *EmptyRequest) AtlasValidateJSON(r json.RawMessage, path string, allowUnknown bool) (err error) + type EmptyResponse struct + func (*EmptyResponse) Descriptor() ([]byte, []int) + func (*EmptyResponse) ProtoMessage() + func (m *EmptyResponse) Reset() + func (m *EmptyResponse) String() string + func (o *EmptyResponse) AtlasValidateJSON(r json.RawMessage, path string, allowUnknown bool) (err error) + type Group struct + Id int32 + Name string + Notes string + func (*Group) Descriptor() ([]byte, []int) + func (*Group) ProtoMessage() + func (m *Group) GetId() int32 + func (m *Group) GetName() string + func (m *Group) GetNotes() string + func (m *Group) Reset() + func (m *Group) String() string + func (o *Group) AtlasValidateJSON(r json.RawMessage, path string, allowUnknown bool) (err error) + type GroupsClient interface + Create func(ctx context.Context, in *Group, opts ...grpc.CallOption) (*EmptyResponse, error) + Update func(ctx context.Context, in *Group, opts ...grpc.CallOption) (*EmptyResponse, error) + ValidatedList func(ctx context.Context, in *EmptyRequest, opts ...grpc.CallOption) (*EmptyResponse, error) + func NewGroupsClient(cc *grpc.ClientConn) GroupsClient + type GroupsServer interface + Create func(context.Context, *Group) (*EmptyResponse, error) + Update func(context.Context, *Group) (*EmptyResponse, error) + ValidatedList func(context.Context, *EmptyRequest) (*EmptyResponse, error) + type Profile struct + Id int32 + Name string + Notes string + func (*Profile) Descriptor() ([]byte, []int) + func (*Profile) ProtoMessage() + func (m *Profile) GetId() int32 + func (m *Profile) GetName() string + func (m *Profile) GetNotes() string + func (m *Profile) Reset() + func (m *Profile) String() string + func (o *Profile) AtlasValidateJSON(r json.RawMessage, path string, allowUnknown bool) (err error) + type ProfilesClient interface + Create func(ctx context.Context, in *Profile, opts ...grpc.CallOption) (*EmptyResponse, error) + Update func(ctx context.Context, in *UpdateProfileRequest, opts ...grpc.CallOption) (*EmptyResponse, error) + func NewProfilesClient(cc *grpc.ClientConn) ProfilesClient + type ProfilesServer interface + Create func(context.Context, *Profile) (*EmptyResponse, error) + Update func(context.Context, *UpdateProfileRequest) (*EmptyResponse, error) + type UpdateProfileRequest struct + Payload *Profile + func (*UpdateProfileRequest) Descriptor() ([]byte, []int) + func (*UpdateProfileRequest) ProtoMessage() + func (m *UpdateProfileRequest) GetPayload() *Profile + func (m *UpdateProfileRequest) Reset() + func (m *UpdateProfileRequest) String() string + func (o *UpdateProfileRequest) AtlasValidateJSON(r json.RawMessage, path string, allowUnknown bool) (err error) + type UpdateUserRequest struct + Payload *User + func (*UpdateUserRequest) Descriptor() ([]byte, []int) + func (*UpdateUserRequest) ProtoMessage() + func (m *UpdateUserRequest) GetPayload() *User + func (m *UpdateUserRequest) Reset() + func (m *UpdateUserRequest) String() string + func (o *UpdateUserRequest) AtlasValidateJSON(r json.RawMessage, path string, allowUnknown bool) (err error) + type User struct + Address *Address + ExternalUser *external.ExternalUser + Groups []*Group + Id int32 + Name string + Parents []*User_Parent + Profile *Profile + func (*User) Descriptor() ([]byte, []int) + func (*User) ProtoMessage() + func (m *User) GetAddress() *Address + func (m *User) GetExternalUser() *external.ExternalUser + func (m *User) GetGroups() []*Group + func (m *User) GetId() int32 + func (m *User) GetName() string + func (m *User) GetParents() []*User_Parent + func (m *User) GetProfile() *Profile + func (m *User) Reset() + func (m *User) String() string + func (o *User) AtlasValidateJSON(r json.RawMessage, path string, allowUnknown bool) (err error) + type User_Parent struct + Name string + func (*User_Parent) Descriptor() ([]byte, []int) + func (*User_Parent) ProtoMessage() + func (m *User_Parent) GetName() string + func (m *User_Parent) Reset() + func (m *User_Parent) String() string + func (o *User_Parent) AtlasValidateJSON(r json.RawMessage, path string, allowUnknown bool) (err error) + type UsersClient interface + Create func(ctx context.Context, in *CreateUserRequest, opts ...grpc.CallOption) (*EmptyResponse, error) + List func(ctx context.Context, in *EmptyRequest, opts ...grpc.CallOption) (*EmptyResponse, error) + Update func(ctx context.Context, in *UpdateUserRequest, opts ...grpc.CallOption) (*EmptyResponse, error) + UpdateExternalUser func(ctx context.Context, in *User, opts ...grpc.CallOption) (*EmptyResponse, error) + UpdateExternalUser2 func(ctx context.Context, in *external.ExternalUser, opts ...grpc.CallOption) (*EmptyResponse, error) + func NewUsersClient(cc *grpc.ClientConn) UsersClient + type UsersServer interface + Create func(context.Context, *CreateUserRequest) (*EmptyResponse, error) + List func(context.Context, *EmptyRequest) (*EmptyResponse, error) + Update func(context.Context, *UpdateUserRequest) (*EmptyResponse, error) + UpdateExternalUser func(context.Context, *User) (*EmptyResponse, error) + UpdateExternalUser2 func(context.Context, *external.ExternalUser) (*EmptyResponse, error) v0.1.0 Aug 28, 2018