Documentation ¶
Index ¶
- Variables
- type GetUserRequest
- func (*GetUserRequest) Descriptor() ([]byte, []int)deprecated
- func (x *GetUserRequest) GetId() string
- func (*GetUserRequest) ProtoMessage()
- func (x *GetUserRequest) ProtoReflect() protoreflect.Message
- func (x *GetUserRequest) Reset()
- func (x *GetUserRequest) String() string
- func (m *GetUserRequest) Validate() error
- func (m *GetUserRequest) ValidateAll() error
- type GetUserRequestMultiError
- type GetUserRequestValidationError
- func (e GetUserRequestValidationError) Cause() error
- func (e GetUserRequestValidationError) Error() string
- func (e GetUserRequestValidationError) ErrorName() string
- func (e GetUserRequestValidationError) Field() string
- func (e GetUserRequestValidationError) Key() bool
- func (e GetUserRequestValidationError) Reason() string
- type GetUserResponse
- func (*GetUserResponse) Descriptor() ([]byte, []int)deprecated
- func (x *GetUserResponse) GetUser() *v1alpha1.User
- func (*GetUserResponse) ProtoMessage()
- func (x *GetUserResponse) ProtoReflect() protoreflect.Message
- func (x *GetUserResponse) Reset()
- func (x *GetUserResponse) String() string
- func (m *GetUserResponse) Validate() error
- func (m *GetUserResponse) ValidateAll() error
- type GetUserResponseMultiError
- type GetUserResponseValidationError
- func (e GetUserResponseValidationError) Cause() error
- func (e GetUserResponseValidationError) Error() string
- func (e GetUserResponseValidationError) ErrorName() string
- func (e GetUserResponseValidationError) Field() string
- func (e GetUserResponseValidationError) Key() bool
- func (e GetUserResponseValidationError) Reason() string
- type QueryUsersRequest
- func (*QueryUsersRequest) Descriptor() ([]byte, []int)deprecated
- func (*QueryUsersRequest) ProtoMessage()
- func (x *QueryUsersRequest) ProtoReflect() protoreflect.Message
- func (x *QueryUsersRequest) Reset()
- func (x *QueryUsersRequest) String() string
- func (m *QueryUsersRequest) Validate() error
- func (m *QueryUsersRequest) ValidateAll() error
- type QueryUsersRequestMultiError
- type QueryUsersRequestValidationError
- func (e QueryUsersRequestValidationError) Cause() error
- func (e QueryUsersRequestValidationError) Error() string
- func (e QueryUsersRequestValidationError) ErrorName() string
- func (e QueryUsersRequestValidationError) Field() string
- func (e QueryUsersRequestValidationError) Key() bool
- func (e QueryUsersRequestValidationError) Reason() string
- type QueryUsersResponse
- func (*QueryUsersResponse) Descriptor() ([]byte, []int)deprecated
- func (x *QueryUsersResponse) GetUsers() []*v1alpha1.User
- func (*QueryUsersResponse) ProtoMessage()
- func (x *QueryUsersResponse) ProtoReflect() protoreflect.Message
- func (x *QueryUsersResponse) Reset()
- func (x *QueryUsersResponse) String() string
- func (m *QueryUsersResponse) Validate() error
- func (m *QueryUsersResponse) ValidateAll() error
- type QueryUsersResponseMultiError
- type QueryUsersResponseValidationError
- func (e QueryUsersResponseValidationError) Cause() error
- func (e QueryUsersResponseValidationError) Error() string
- func (e QueryUsersResponseValidationError) ErrorName() string
- func (e QueryUsersResponseValidationError) Field() string
- func (e QueryUsersResponseValidationError) Key() bool
- func (e QueryUsersResponseValidationError) Reason() string
Constants ¶
This section is empty.
Variables ¶
var File_commonfate_control_user_v1alpha1_user_proto protoreflect.FileDescriptor
Functions ¶
This section is empty.
Types ¶
type GetUserRequest ¶
type GetUserRequest struct { Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` // contains filtered or unexported fields }
func (*GetUserRequest) Descriptor
deprecated
func (*GetUserRequest) Descriptor() ([]byte, []int)
Deprecated: Use GetUserRequest.ProtoReflect.Descriptor instead.
func (*GetUserRequest) GetId ¶
func (x *GetUserRequest) GetId() string
func (*GetUserRequest) ProtoMessage ¶
func (*GetUserRequest) ProtoMessage()
func (*GetUserRequest) ProtoReflect ¶
func (x *GetUserRequest) ProtoReflect() protoreflect.Message
func (*GetUserRequest) Reset ¶
func (x *GetUserRequest) Reset()
func (*GetUserRequest) String ¶
func (x *GetUserRequest) String() string
func (*GetUserRequest) Validate ¶ added in v1.32.1
func (m *GetUserRequest) Validate() error
Validate checks the field values on GetUserRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.
func (*GetUserRequest) ValidateAll ¶ added in v1.32.1
func (m *GetUserRequest) ValidateAll() error
ValidateAll checks the field values on GetUserRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetUserRequestMultiError, or nil if none found.
type GetUserRequestMultiError ¶ added in v1.32.1
type GetUserRequestMultiError []error
GetUserRequestMultiError is an error wrapping multiple validation errors returned by GetUserRequest.ValidateAll() if the designated constraints aren't met.
func (GetUserRequestMultiError) AllErrors ¶ added in v1.32.1
func (m GetUserRequestMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (GetUserRequestMultiError) Error ¶ added in v1.32.1
func (m GetUserRequestMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
type GetUserRequestValidationError ¶ added in v1.32.1
type GetUserRequestValidationError struct {
// contains filtered or unexported fields
}
GetUserRequestValidationError is the validation error returned by GetUserRequest.Validate if the designated constraints aren't met.
func (GetUserRequestValidationError) Cause ¶ added in v1.32.1
func (e GetUserRequestValidationError) Cause() error
Cause function returns cause value.
func (GetUserRequestValidationError) Error ¶ added in v1.32.1
func (e GetUserRequestValidationError) Error() string
Error satisfies the builtin error interface
func (GetUserRequestValidationError) ErrorName ¶ added in v1.32.1
func (e GetUserRequestValidationError) ErrorName() string
ErrorName returns error name.
func (GetUserRequestValidationError) Field ¶ added in v1.32.1
func (e GetUserRequestValidationError) Field() string
Field function returns field value.
func (GetUserRequestValidationError) Key ¶ added in v1.32.1
func (e GetUserRequestValidationError) Key() bool
Key function returns key value.
func (GetUserRequestValidationError) Reason ¶ added in v1.32.1
func (e GetUserRequestValidationError) Reason() string
Reason function returns reason value.
type GetUserResponse ¶
type GetUserResponse struct { User *v1alpha1.User `protobuf:"bytes,1,opt,name=user,proto3" json:"user,omitempty"` // contains filtered or unexported fields }
func (*GetUserResponse) Descriptor
deprecated
func (*GetUserResponse) Descriptor() ([]byte, []int)
Deprecated: Use GetUserResponse.ProtoReflect.Descriptor instead.
func (*GetUserResponse) GetUser ¶
func (x *GetUserResponse) GetUser() *v1alpha1.User
func (*GetUserResponse) ProtoMessage ¶
func (*GetUserResponse) ProtoMessage()
func (*GetUserResponse) ProtoReflect ¶
func (x *GetUserResponse) ProtoReflect() protoreflect.Message
func (*GetUserResponse) Reset ¶
func (x *GetUserResponse) Reset()
func (*GetUserResponse) String ¶
func (x *GetUserResponse) String() string
func (*GetUserResponse) Validate ¶ added in v1.32.1
func (m *GetUserResponse) Validate() error
Validate checks the field values on GetUserResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.
func (*GetUserResponse) ValidateAll ¶ added in v1.32.1
func (m *GetUserResponse) ValidateAll() error
ValidateAll checks the field values on GetUserResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetUserResponseMultiError, or nil if none found.
type GetUserResponseMultiError ¶ added in v1.32.1
type GetUserResponseMultiError []error
GetUserResponseMultiError is an error wrapping multiple validation errors returned by GetUserResponse.ValidateAll() if the designated constraints aren't met.
func (GetUserResponseMultiError) AllErrors ¶ added in v1.32.1
func (m GetUserResponseMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (GetUserResponseMultiError) Error ¶ added in v1.32.1
func (m GetUserResponseMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
type GetUserResponseValidationError ¶ added in v1.32.1
type GetUserResponseValidationError struct {
// contains filtered or unexported fields
}
GetUserResponseValidationError is the validation error returned by GetUserResponse.Validate if the designated constraints aren't met.
func (GetUserResponseValidationError) Cause ¶ added in v1.32.1
func (e GetUserResponseValidationError) Cause() error
Cause function returns cause value.
func (GetUserResponseValidationError) Error ¶ added in v1.32.1
func (e GetUserResponseValidationError) Error() string
Error satisfies the builtin error interface
func (GetUserResponseValidationError) ErrorName ¶ added in v1.32.1
func (e GetUserResponseValidationError) ErrorName() string
ErrorName returns error name.
func (GetUserResponseValidationError) Field ¶ added in v1.32.1
func (e GetUserResponseValidationError) Field() string
Field function returns field value.
func (GetUserResponseValidationError) Key ¶ added in v1.32.1
func (e GetUserResponseValidationError) Key() bool
Key function returns key value.
func (GetUserResponseValidationError) Reason ¶ added in v1.32.1
func (e GetUserResponseValidationError) Reason() string
Reason function returns reason value.
type QueryUsersRequest ¶
type QueryUsersRequest struct {
// contains filtered or unexported fields
}
func (*QueryUsersRequest) Descriptor
deprecated
func (*QueryUsersRequest) Descriptor() ([]byte, []int)
Deprecated: Use QueryUsersRequest.ProtoReflect.Descriptor instead.
func (*QueryUsersRequest) ProtoMessage ¶
func (*QueryUsersRequest) ProtoMessage()
func (*QueryUsersRequest) ProtoReflect ¶
func (x *QueryUsersRequest) ProtoReflect() protoreflect.Message
func (*QueryUsersRequest) Reset ¶
func (x *QueryUsersRequest) Reset()
func (*QueryUsersRequest) String ¶
func (x *QueryUsersRequest) String() string
func (*QueryUsersRequest) Validate ¶ added in v1.32.1
func (m *QueryUsersRequest) Validate() error
Validate checks the field values on QueryUsersRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.
func (*QueryUsersRequest) ValidateAll ¶ added in v1.32.1
func (m *QueryUsersRequest) ValidateAll() error
ValidateAll checks the field values on QueryUsersRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in QueryUsersRequestMultiError, or nil if none found.
type QueryUsersRequestMultiError ¶ added in v1.32.1
type QueryUsersRequestMultiError []error
QueryUsersRequestMultiError is an error wrapping multiple validation errors returned by QueryUsersRequest.ValidateAll() if the designated constraints aren't met.
func (QueryUsersRequestMultiError) AllErrors ¶ added in v1.32.1
func (m QueryUsersRequestMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (QueryUsersRequestMultiError) Error ¶ added in v1.32.1
func (m QueryUsersRequestMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
type QueryUsersRequestValidationError ¶ added in v1.32.1
type QueryUsersRequestValidationError struct {
// contains filtered or unexported fields
}
QueryUsersRequestValidationError is the validation error returned by QueryUsersRequest.Validate if the designated constraints aren't met.
func (QueryUsersRequestValidationError) Cause ¶ added in v1.32.1
func (e QueryUsersRequestValidationError) Cause() error
Cause function returns cause value.
func (QueryUsersRequestValidationError) Error ¶ added in v1.32.1
func (e QueryUsersRequestValidationError) Error() string
Error satisfies the builtin error interface
func (QueryUsersRequestValidationError) ErrorName ¶ added in v1.32.1
func (e QueryUsersRequestValidationError) ErrorName() string
ErrorName returns error name.
func (QueryUsersRequestValidationError) Field ¶ added in v1.32.1
func (e QueryUsersRequestValidationError) Field() string
Field function returns field value.
func (QueryUsersRequestValidationError) Key ¶ added in v1.32.1
func (e QueryUsersRequestValidationError) Key() bool
Key function returns key value.
func (QueryUsersRequestValidationError) Reason ¶ added in v1.32.1
func (e QueryUsersRequestValidationError) Reason() string
Reason function returns reason value.
type QueryUsersResponse ¶
type QueryUsersResponse struct { Users []*v1alpha1.User `protobuf:"bytes,1,rep,name=users,proto3" json:"users,omitempty"` // contains filtered or unexported fields }
func (*QueryUsersResponse) Descriptor
deprecated
func (*QueryUsersResponse) Descriptor() ([]byte, []int)
Deprecated: Use QueryUsersResponse.ProtoReflect.Descriptor instead.
func (*QueryUsersResponse) GetUsers ¶
func (x *QueryUsersResponse) GetUsers() []*v1alpha1.User
func (*QueryUsersResponse) ProtoMessage ¶
func (*QueryUsersResponse) ProtoMessage()
func (*QueryUsersResponse) ProtoReflect ¶
func (x *QueryUsersResponse) ProtoReflect() protoreflect.Message
func (*QueryUsersResponse) Reset ¶
func (x *QueryUsersResponse) Reset()
func (*QueryUsersResponse) String ¶
func (x *QueryUsersResponse) String() string
func (*QueryUsersResponse) Validate ¶ added in v1.32.1
func (m *QueryUsersResponse) Validate() error
Validate checks the field values on QueryUsersResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.
func (*QueryUsersResponse) ValidateAll ¶ added in v1.32.1
func (m *QueryUsersResponse) ValidateAll() error
ValidateAll checks the field values on QueryUsersResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in QueryUsersResponseMultiError, or nil if none found.
type QueryUsersResponseMultiError ¶ added in v1.32.1
type QueryUsersResponseMultiError []error
QueryUsersResponseMultiError is an error wrapping multiple validation errors returned by QueryUsersResponse.ValidateAll() if the designated constraints aren't met.
func (QueryUsersResponseMultiError) AllErrors ¶ added in v1.32.1
func (m QueryUsersResponseMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (QueryUsersResponseMultiError) Error ¶ added in v1.32.1
func (m QueryUsersResponseMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
type QueryUsersResponseValidationError ¶ added in v1.32.1
type QueryUsersResponseValidationError struct {
// contains filtered or unexported fields
}
QueryUsersResponseValidationError is the validation error returned by QueryUsersResponse.Validate if the designated constraints aren't met.
func (QueryUsersResponseValidationError) Cause ¶ added in v1.32.1
func (e QueryUsersResponseValidationError) Cause() error
Cause function returns cause value.
func (QueryUsersResponseValidationError) Error ¶ added in v1.32.1
func (e QueryUsersResponseValidationError) Error() string
Error satisfies the builtin error interface
func (QueryUsersResponseValidationError) ErrorName ¶ added in v1.32.1
func (e QueryUsersResponseValidationError) ErrorName() string
ErrorName returns error name.
func (QueryUsersResponseValidationError) Field ¶ added in v1.32.1
func (e QueryUsersResponseValidationError) Field() string
Field function returns field value.
func (QueryUsersResponseValidationError) Key ¶ added in v1.32.1
func (e QueryUsersResponseValidationError) Key() bool
Key function returns key value.
func (QueryUsersResponseValidationError) Reason ¶ added in v1.32.1
func (e QueryUsersResponseValidationError) Reason() string
Reason function returns reason value.