Documentation ¶
Overview ¶
Returns an alias.
Index ¶
- Variables
- type GetAlias
- func (r *GetAlias) AllowNoIndices(b bool) *GetAlias
- func (r GetAlias) Do(ctx context.Context) (Response, error)
- func (r *GetAlias) ExpandWildcards(v string) *GetAlias
- func (r *GetAlias) Header(key, value string) *GetAlias
- func (r *GetAlias) HttpRequest(ctx context.Context) (*http.Request, error)
- func (r *GetAlias) IgnoreUnavailable(b bool) *GetAlias
- func (r *GetAlias) Index(v string) *GetAlias
- func (r GetAlias) IsSuccess(ctx context.Context) (bool, error)
- func (r *GetAlias) Local(b bool) *GetAlias
- func (r *GetAlias) Name(v string) *GetAlias
- func (r GetAlias) Perform(ctx context.Context) (*http.Response, error)
- type NewGetAlias
- 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 GetAlias ¶
type GetAlias struct {
// contains filtered or unexported fields
}
func New ¶
func New(tp elastictransport.Interface) *GetAlias
Returns an alias.
https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-aliases.html
func (*GetAlias) AllowNoIndices ¶
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 (GetAlias) Do ¶
Do runs the request through the transport, handle the response and returns a getalias.Response
func (*GetAlias) ExpandWildcards ¶
ExpandWildcards Whether to expand wildcard expression to concrete indices that are open, closed or both. API name: expand_wildcards
func (*GetAlias) HttpRequest ¶
HttpRequest returns the http.Request object built from the given parameters.
func (*GetAlias) IgnoreUnavailable ¶
IgnoreUnavailable Whether specified concrete indices should be ignored when unavailable (missing or closed) API name: ignore_unavailable
func (*GetAlias) Index ¶
Index A comma-separated list of index names to filter aliases API Name: index
func (GetAlias) 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 (*GetAlias) Local ¶
Local Return local information, do not retrieve the state from master node (default: false) API name: local
type NewGetAlias ¶
type NewGetAlias func() *GetAlias
NewGetAlias type alias for index.
func NewGetAliasFunc ¶
func NewGetAliasFunc(tp elastictransport.Interface) NewGetAlias
NewGetAliasFunc returns a new instance of GetAlias with the provided transport. Used in the index of the library this allows to retrieve every apis in once place.
type Response ¶
type Response map[string]types.IndexAliases