Documentation ¶
Overview ¶
Reloads an index's search analyzers and their resources.
Index ¶
- Variables
- type NewReloadSearchAnalyzers
- type ReloadSearchAnalyzers
- func (r *ReloadSearchAnalyzers) AllowNoIndices(b bool) *ReloadSearchAnalyzers
- func (r ReloadSearchAnalyzers) Do(ctx context.Context) (*Response, error)
- func (r *ReloadSearchAnalyzers) ExpandWildcards(v string) *ReloadSearchAnalyzers
- func (r *ReloadSearchAnalyzers) Header(key, value string) *ReloadSearchAnalyzers
- func (r *ReloadSearchAnalyzers) HttpRequest(ctx context.Context) (*http.Request, error)
- func (r *ReloadSearchAnalyzers) IgnoreUnavailable(b bool) *ReloadSearchAnalyzers
- func (r *ReloadSearchAnalyzers) Index(v string) *ReloadSearchAnalyzers
- func (r ReloadSearchAnalyzers) IsSuccess(ctx context.Context) (bool, error)
- func (r ReloadSearchAnalyzers) Perform(ctx context.Context) (*http.Response, error)
- 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 NewReloadSearchAnalyzers ¶
type NewReloadSearchAnalyzers func(index string) *ReloadSearchAnalyzers
NewReloadSearchAnalyzers type alias for index.
func NewReloadSearchAnalyzersFunc ¶
func NewReloadSearchAnalyzersFunc(tp elastictransport.Interface) NewReloadSearchAnalyzers
NewReloadSearchAnalyzersFunc returns a new instance of ReloadSearchAnalyzers with the provided transport. Used in the index of the library this allows to retrieve every apis in once place.
type ReloadSearchAnalyzers ¶
type ReloadSearchAnalyzers struct {
// contains filtered or unexported fields
}
func New ¶
func New(tp elastictransport.Interface) *ReloadSearchAnalyzers
Reloads an index's search analyzers and their resources.
https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-reload-analyzers.html
func (*ReloadSearchAnalyzers) AllowNoIndices ¶
func (r *ReloadSearchAnalyzers) AllowNoIndices(b bool) *ReloadSearchAnalyzers
AllowNoIndices Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified) API name: allow_no_indices
func (ReloadSearchAnalyzers) Do ¶
func (r ReloadSearchAnalyzers) Do(ctx context.Context) (*Response, error)
Do runs the request through the transport, handle the response and returns a reloadsearchanalyzers.Response
func (*ReloadSearchAnalyzers) ExpandWildcards ¶
func (r *ReloadSearchAnalyzers) ExpandWildcards(v string) *ReloadSearchAnalyzers
ExpandWildcards Whether to expand wildcard expression to concrete indices that are open, closed or both. API name: expand_wildcards
func (*ReloadSearchAnalyzers) Header ¶
func (r *ReloadSearchAnalyzers) Header(key, value string) *ReloadSearchAnalyzers
Header set a key, value pair in the ReloadSearchAnalyzers headers map.
func (*ReloadSearchAnalyzers) HttpRequest ¶
HttpRequest returns the http.Request object built from the given parameters.
func (*ReloadSearchAnalyzers) IgnoreUnavailable ¶
func (r *ReloadSearchAnalyzers) IgnoreUnavailable(b bool) *ReloadSearchAnalyzers
IgnoreUnavailable Whether specified concrete indices should be ignored when unavailable (missing or closed) API name: ignore_unavailable
func (*ReloadSearchAnalyzers) Index ¶
func (r *ReloadSearchAnalyzers) Index(v string) *ReloadSearchAnalyzers
Index A comma-separated list of index names to reload analyzers for API Name: index
type Response ¶ added in v8.7.0
type Response struct { ReloadDetails []types.ReloadDetails `json:"reload_details"` Shards_ types.ShardStatistics `json:"_shards"` }