Documentation ¶
Overview ¶
Creates the enrich index for an existing enrich policy.
Index ¶
- Variables
- type ExecutePolicy
- func (r ExecutePolicy) Do(ctx context.Context) (*http.Response, error)
- func (r *ExecutePolicy) Header(key, value string) *ExecutePolicy
- func (r *ExecutePolicy) HttpRequest(ctx context.Context) (*http.Request, error)
- func (r ExecutePolicy) IsSuccess(ctx context.Context) (bool, error)
- func (r *ExecutePolicy) Name(v string) *ExecutePolicy
- func (r *ExecutePolicy) WaitForCompletion(b bool) *ExecutePolicy
- type NewExecutePolicy
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 ExecutePolicy ¶
type ExecutePolicy struct {
// contains filtered or unexported fields
}
func New ¶
func New(tp elastictransport.Interface) *ExecutePolicy
Creates the enrich index for an existing enrich policy.
https://www.elastic.co/guide/en/elasticsearch/reference/current/execute-enrich-policy-api.html
func (*ExecutePolicy) Header ¶
func (r *ExecutePolicy) Header(key, value string) *ExecutePolicy
Header set a key, value pair in the ExecutePolicy headers map.
func (*ExecutePolicy) HttpRequest ¶
HttpRequest returns the http.Request object built from the given parameters.
func (ExecutePolicy) IsSuccess ¶
func (r ExecutePolicy) 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 (*ExecutePolicy) Name ¶
func (r *ExecutePolicy) Name(v string) *ExecutePolicy
Name The name of the enrich policy API Name: name
func (*ExecutePolicy) WaitForCompletion ¶
func (r *ExecutePolicy) WaitForCompletion(b bool) *ExecutePolicy
WaitForCompletion Should the request should block until the execution is complete. API name: wait_for_completion
type NewExecutePolicy ¶
type NewExecutePolicy func(name string) *ExecutePolicy
NewExecutePolicy type alias for index.
func NewExecutePolicyFunc ¶
func NewExecutePolicyFunc(tp elastictransport.Interface) NewExecutePolicy
NewExecutePolicyFunc returns a new instance of ExecutePolicy with the provided transport. Used in the index of the library this allows to retrieve every apis in once place.