Documentation ¶
Overview ¶
Deletes an existing data frame analytics job.
Index ¶
- Variables
- type DeleteDataFrameAnalytics
- func (r DeleteDataFrameAnalytics) Do(ctx context.Context) (*Response, error)
- func (r *DeleteDataFrameAnalytics) Force(b bool) *DeleteDataFrameAnalytics
- func (r *DeleteDataFrameAnalytics) Header(key, value string) *DeleteDataFrameAnalytics
- func (r *DeleteDataFrameAnalytics) HttpRequest(ctx context.Context) (*http.Request, error)
- func (r *DeleteDataFrameAnalytics) Id(v string) *DeleteDataFrameAnalytics
- func (r DeleteDataFrameAnalytics) IsSuccess(ctx context.Context) (bool, error)
- func (r DeleteDataFrameAnalytics) Perform(ctx context.Context) (*http.Response, error)
- func (r *DeleteDataFrameAnalytics) Timeout(v string) *DeleteDataFrameAnalytics
- type NewDeleteDataFrameAnalytics
- 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 DeleteDataFrameAnalytics ¶
type DeleteDataFrameAnalytics struct {
// contains filtered or unexported fields
}
func New ¶
func New(tp elastictransport.Interface) *DeleteDataFrameAnalytics
Deletes an existing data frame analytics job.
https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/delete-dfanalytics.html
func (DeleteDataFrameAnalytics) Do ¶
func (r DeleteDataFrameAnalytics) Do(ctx context.Context) (*Response, error)
Do runs the request through the transport, handle the response and returns a deletedataframeanalytics.Response
func (*DeleteDataFrameAnalytics) Force ¶
func (r *DeleteDataFrameAnalytics) Force(b bool) *DeleteDataFrameAnalytics
Force If `true`, it deletes a job that is not stopped; this method is quicker than stopping and deleting the job. API name: force
func (*DeleteDataFrameAnalytics) Header ¶
func (r *DeleteDataFrameAnalytics) Header(key, value string) *DeleteDataFrameAnalytics
Header set a key, value pair in the DeleteDataFrameAnalytics headers map.
func (*DeleteDataFrameAnalytics) HttpRequest ¶
HttpRequest returns the http.Request object built from the given parameters.
func (*DeleteDataFrameAnalytics) Id ¶
func (r *DeleteDataFrameAnalytics) Id(v string) *DeleteDataFrameAnalytics
Id Identifier for the data frame analytics job. API Name: id
func (DeleteDataFrameAnalytics) IsSuccess ¶
func (r DeleteDataFrameAnalytics) 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 (DeleteDataFrameAnalytics) Perform ¶
Perform runs the http.Request through the provided transport and returns an http.Response.
func (*DeleteDataFrameAnalytics) Timeout ¶
func (r *DeleteDataFrameAnalytics) Timeout(v string) *DeleteDataFrameAnalytics
Timeout The time to wait for the job to be deleted. API name: timeout
type NewDeleteDataFrameAnalytics ¶
type NewDeleteDataFrameAnalytics func(id string) *DeleteDataFrameAnalytics
NewDeleteDataFrameAnalytics type alias for index.
func NewDeleteDataFrameAnalyticsFunc ¶
func NewDeleteDataFrameAnalyticsFunc(tp elastictransport.Interface) NewDeleteDataFrameAnalytics
NewDeleteDataFrameAnalyticsFunc returns a new instance of DeleteDataFrameAnalytics with the provided transport. Used in the index of the library this allows to retrieve every apis in once place.