Documentation ¶
Overview ¶
Creates an index with optional settings and mappings.
Index ¶
- Variables
- type Create
- func (r Create) Do(ctx context.Context) (*Response, error)
- func (r *Create) Header(key, value string) *Create
- func (r *Create) HttpRequest(ctx context.Context) (*http.Request, error)
- func (r *Create) Index(v string) *Create
- func (r *Create) MasterTimeout(v string) *Create
- func (r Create) Perform(ctx context.Context) (*http.Response, error)
- func (r *Create) Raw(raw io.Reader) *Create
- func (r *Create) Request(req *Request) *Create
- func (r *Create) Timeout(v string) *Create
- func (r *Create) WaitForActiveShards(v string) *Create
- type NewCreate
- 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 Create ¶
type Create struct {
// contains filtered or unexported fields
}
func New ¶
func New(tp elastictransport.Interface) *Create
Creates an index with optional settings and mappings.
https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-create-index.html
func (Create) Do ¶
Do runs the request through the transport, handle the response and returns a create.Response
func (*Create) HttpRequest ¶
HttpRequest returns the http.Request object built from the given parameters.
func (*Create) MasterTimeout ¶
MasterTimeout Specify timeout for connection to master API name: master_timeout
func (Create) Perform ¶
Perform runs the http.Request through the provided transport and returns an http.Response.
func (*Create) Raw ¶
Raw takes a json payload as input which is then passed to the http.Request If specified Raw takes precedence on Request method.
func (*Create) WaitForActiveShards ¶
WaitForActiveShards Set the number of active shards to wait for before the operation returns. API name: wait_for_active_shards
type NewCreate ¶
NewCreate type alias for index.
func NewCreateFunc ¶
func NewCreateFunc(tp elastictransport.Interface) NewCreate
NewCreateFunc returns a new instance of Create with the provided transport. Used in the index of the library this allows to retrieve every apis in once place.
type Request ¶
type Request struct { Aliases map[string]types.Alias `json:"aliases,omitempty"` // Mappings Mapping for fields in the index. If specified, this mapping can include: // - Field names // - Field data types // - Mapping parameters Mappings *types.TypeMapping `json:"mappings,omitempty"` Settings *types.IndexSettings `json:"settings,omitempty"` }
Request holds the request body struct for the package create