Documentation ¶
Overview ¶
Creates or updates an alias.
Index ¶
- Variables
- type NewPutAlias
- type PutAlias
- func (r PutAlias) Do(ctx context.Context) (*Response, error)
- func (r *PutAlias) Header(key, value string) *PutAlias
- func (r *PutAlias) HttpRequest(ctx context.Context) (*http.Request, error)
- func (r *PutAlias) Index(v string) *PutAlias
- func (r *PutAlias) MasterTimeout(v string) *PutAlias
- func (r *PutAlias) Name(v string) *PutAlias
- func (r PutAlias) Perform(ctx context.Context) (*http.Response, error)
- func (r *PutAlias) Raw(raw io.Reader) *PutAlias
- func (r *PutAlias) Request(req *Request) *PutAlias
- func (r *PutAlias) Timeout(v string) *PutAlias
- type Request
- 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 NewPutAlias ¶
NewPutAlias type alias for index.
func NewPutAliasFunc ¶
func NewPutAliasFunc(tp elastictransport.Interface) NewPutAlias
NewPutAliasFunc returns a new instance of PutAlias with the provided transport. Used in the index of the library this allows to retrieve every apis in once place.
type PutAlias ¶
type PutAlias struct {
// contains filtered or unexported fields
}
func New ¶
func New(tp elastictransport.Interface) *PutAlias
Creates or updates an alias.
https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-aliases.html
func (PutAlias) Do ¶
Do runs the request through the transport, handle the response and returns a putalias.Response
func (*PutAlias) HttpRequest ¶
HttpRequest returns the http.Request object built from the given parameters.
func (*PutAlias) Index ¶
Index A comma-separated list of index names the alias should point to (supports wildcards); use `_all` to perform the operation on all indices. API Name: index
func (*PutAlias) MasterTimeout ¶
MasterTimeout Specify timeout for connection to master API name: master_timeout
func (PutAlias) Perform ¶
Perform runs the http.Request through the provided transport and returns an http.Response.
func (*PutAlias) Raw ¶
Raw takes a json payload as input which is then passed to the http.Request If specified Raw takes precedence on Request method.
type Request ¶
type Request struct { Filter *types.Query `json:"filter,omitempty"` IndexRouting *string `json:"index_routing,omitempty"` IsWriteIndex *bool `json:"is_write_index,omitempty"` Routing *string `json:"routing,omitempty"` SearchRouting *string `json:"search_routing,omitempty"` }
Request holds the request body struct for the package putalias