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