Documentation ¶
Overview ¶
Retrieve status of a node or nodes that are currently marked as shutting down. Designed for indirect use by ECE/ESS and ECK. Direct use is not supported.
Index ¶
- Variables
- type GetNode
- func (r GetNode) Do(ctx context.Context) (*http.Response, error)
- func (r *GetNode) Header(key, value string) *GetNode
- func (r *GetNode) HttpRequest(ctx context.Context) (*http.Request, error)
- func (r GetNode) IsSuccess(ctx context.Context) (bool, error)
- func (r *GetNode) MasterTimeout(enum timeunit.TimeUnit) *GetNode
- func (r *GetNode) NodeId(v string) *GetNode
- func (r *GetNode) Timeout(enum timeunit.TimeUnit) *GetNode
- type NewGetNode
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 GetNode ¶
type GetNode struct {
// contains filtered or unexported fields
}
func New ¶
func New(tp elastictransport.Interface) *GetNode
Retrieve status of a node or nodes that are currently marked as shutting down. Designed for indirect use by ECE/ESS and ECK. Direct use is not supported.
https://www.elastic.co/guide/en/elasticsearch/reference/current
func (*GetNode) HttpRequest ¶
HttpRequest returns the http.Request object built from the given parameters.
func (GetNode) IsSuccess ¶
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 (*GetNode) MasterTimeout ¶
MasterTimeout Period to wait for a connection to the master node. If no response is received before the timeout expires, the request fails and returns an error. API name: master_timeout
type NewGetNode ¶
type NewGetNode func() *GetNode
NewGetNode type alias for index.
func NewGetNodeFunc ¶
func NewGetNodeFunc(tp elastictransport.Interface) NewGetNode
NewGetNodeFunc returns a new instance of GetNode with the provided transport. Used in the index of the library this allows to retrieve every apis in once place.