Documentation ¶
Overview ¶
Disables users in the native realm.
Index ¶
- Variables
- type DisableUser
- func (r DisableUser) Do(ctx context.Context) (*http.Response, error)
- func (r *DisableUser) Header(key, value string) *DisableUser
- func (r *DisableUser) HttpRequest(ctx context.Context) (*http.Request, error)
- func (r DisableUser) IsSuccess(ctx context.Context) (bool, error)
- func (r *DisableUser) Refresh(enum refresh.Refresh) *DisableUser
- func (r *DisableUser) Username(v string) *DisableUser
- type NewDisableUser
Constants ¶
This section is empty.
Variables ¶
var ErrBuildPath = errors.New("cannot build path, check for missing path parameters")
ErrBuildPath is returned in case of missing parameters within the build of the request.
Functions ¶
This section is empty.
Types ¶
type DisableUser ¶
type DisableUser struct {
// contains filtered or unexported fields
}
func New ¶
func New(tp elastictransport.Interface) *DisableUser
Disables users in the native realm.
https://www.elastic.co/guide/en/elasticsearch/reference/current/security-api-disable-user.html
func (*DisableUser) Header ¶
func (r *DisableUser) Header(key, value string) *DisableUser
Header set a key, value pair in the DisableUser headers map.
func (*DisableUser) HttpRequest ¶
HttpRequest returns the http.Request object built from the given parameters.
func (DisableUser) IsSuccess ¶
func (r DisableUser) IsSuccess(ctx context.Context) (bool, error)
IsSuccess allows to run a query with a context and retrieve the result as a boolean. This only exists for endpoints without a request payload and allows for quick control flow.
func (*DisableUser) Refresh ¶
func (r *DisableUser) Refresh(enum refresh.Refresh) *DisableUser
Refresh If `true` (the default) then refresh the affected shards to make this operation visible to search, if `wait_for` then wait for a refresh to make this operation visible to search, if `false` then do nothing with refreshes. API name: refresh
func (*DisableUser) Username ¶
func (r *DisableUser) Username(v string) *DisableUser
Username The username of the user to disable API Name: username
type NewDisableUser ¶
type NewDisableUser func(username string) *DisableUser
NewDisableUser type alias for index.
func NewDisableUserFunc ¶
func NewDisableUserFunc(tp elastictransport.Interface) NewDisableUser
NewDisableUserFunc returns a new instance of DisableUser with the provided transport. Used in the index of the library this allows to retrieve every apis in once place.