Documentation ¶
Overview ¶
Allows a new node to enroll to an existing cluster with security enabled.
Index ¶
- Variables
- type EnrollNode
- func (r EnrollNode) Do(ctx context.Context) (*Response, error)
- func (r *EnrollNode) Header(key, value string) *EnrollNode
- func (r *EnrollNode) HttpRequest(ctx context.Context) (*http.Request, error)
- func (r EnrollNode) IsSuccess(ctx context.Context) (bool, error)
- func (r EnrollNode) Perform(ctx context.Context) (*http.Response, error)
- type NewEnrollNode
- type Response
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 EnrollNode ¶
type EnrollNode struct {
// contains filtered or unexported fields
}
func New ¶
func New(tp elastictransport.Interface) *EnrollNode
Allows a new node to enroll to an existing cluster with security enabled.
https://www.elastic.co/guide/en/elasticsearch/reference/master/security-api-node-enrollment.html
func (EnrollNode) Do ¶
func (r EnrollNode) Do(ctx context.Context) (*Response, error)
Do runs the request through the transport, handle the response and returns a enrollnode.Response
func (*EnrollNode) Header ¶
func (r *EnrollNode) Header(key, value string) *EnrollNode
Header set a key, value pair in the EnrollNode headers map.
func (*EnrollNode) HttpRequest ¶
HttpRequest returns the http.Request object built from the given parameters.
type NewEnrollNode ¶
type NewEnrollNode func() *EnrollNode
NewEnrollNode type alias for index.
func NewEnrollNodeFunc ¶
func NewEnrollNodeFunc(tp elastictransport.Interface) NewEnrollNode
NewEnrollNodeFunc returns a new instance of EnrollNode with the provided transport. Used in the index of the library this allows to retrieve every apis in once place.