zincsearch

package module
v0.0.0-...-237b079 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 4, 2024 License: Apache-2.0 Imports: 22 Imported by: 0

README

Go API client for client

Zinc Search engine API documents https://docs.zincsearch.com

Overview

This API client was generated by the OpenAPI Generator project. By using the OpenAPI-spec from a remote server, you can easily generate an API client.

  • API version: 0.3.3
  • Package version: 0.3.3
  • Build package: org.openapitools.codegen.languages.GoClientCodegen For more information, please visit https://www.zincsearch.com

Installation

Install the following dependencies:

go get gitee.com/saxon134/zincsearch

Put the package under your project folder and add the following in import:

import client "gitee.com/saxon134/zincsearch"

To use a proxy, set the environment variable HTTP_PROXY:

os.Setenv("HTTP_PROXY", "http://proxy_name:proxy_port")

Configuration of Server URL

Default configuration comes with Servers field that contains server objects as defined in the OpenAPI specification.

Select Server Configuration

For using other server than the one defined on index 0 set context value sw.ContextServerIndex of type int.

ctx := context.WithValue(context.Background(), client.ContextServerIndex, 1)
Templated Server URL

Templated server URL is formatted using default variables from configuration or from context value sw.ContextServerVariables of type map[string]string.

ctx := context.WithValue(context.Background(), client.ContextServerVariables, map[string]string{
	"basePath": "v2",
})

Note, enum values are always validated and all unused variables are silently ignored.

URLs Configuration per Operation

Each operation can use different server URL defined using OperationServers map in the Configuration. An operation is uniquely identified by "{classname}Service.{nickname}" string. Similar rules for overriding default operation server index and variables applies by using sw.ContextOperationServerIndices and sw.ContextOperationServerVariables context maps.

ctx := context.WithValue(context.Background(), client.ContextOperationServerIndices, map[string]int{
	"{classname}Service.{nickname}": 2,
})
ctx = context.WithValue(context.Background(), client.ContextOperationServerVariables, map[string]map[string]string{
	"{classname}Service.{nickname}": {
		"port": "8443",
	},
})

Documentation for API Endpoints

All URIs are relative to http://localhost:4080

Class Method HTTP request Description
Default Healthz Get /healthz Get healthz
Default Version Get /version Get version
Document Bulk Post /api/_bulk Bulk documents
Document Bulkv2 Post /api/_bulkv2 Bulkv2 documents
Document Delete Delete /api/{index}/_doc/{id} Delete document
Document ESBulk Post /es/_bulk ES bulk documents
Document Index Post /api/{index}/_doc Create or update document
Document IndexWithID Put /api/{index}/_doc/{id} Create or update document with id
Document Multi Post /api/{index}/_multi Multi documents
Document Update Post /api/{index}/_update/{id} Update document with id
Index AddOrRemoveESAlias Post /es/_aliases Add or remove index alias for compatible ES
Index Analyze Post /api/_analyze Analyze
Index AnalyzeIndex Post /api/{index}/_analyze Analyze
Index Create Post /api/index Create index
Index CreateTemplate Post /es/_index_template Create update index template
Index Delete Delete /api/index/{index} Delete index
Index DeleteTemplate Delete /es/_index_template/{name} Delete template
Index ESCreateIndex Put /es/{index} Create index for compatible ES
Index ESGetMapping Get /es/{index}/_mapping Get index mappings for compatible ES
Index EsExists Head /es/{index} Checks if the index exists for compatible ES
Index Exists Head /api/index/{index} Checks if the index exists
Index GetESAliases Get /es/{target}/_alias/{target_alias} Get index alias for compatible ES
Index GetIndex Get /api/index/{index} Get index metadata
Index GetMapping Get /api/{index}/_mapping Get index mappings
Index GetSettings Get /api/{index}/_settings Get index settings
Index GetTemplate Get /es/_index_template/{name} Get index template
Index IndexNameList Get /api/index_name List index Name
Index List Get /api/index List indexes
Index ListTemplates Get /es/_index_template List index teplates
Index Refresh Post /api/index/{index}/refresh Resfresh index
Index SetMapping Put /api/{index}/_mapping Set index mappings
Index SetSettings Put /api/{index}/_settings Set index Settings
Index UpdateTemplate Put /es/_index_template/{name} Create update index template
Search DeleteByQuery Post /es/{index}/_delete_by_query Searches the index and deletes all matched documents
Search MSearch Post /es/_msearch Search V2 MultipleSearch for compatible ES
Search Search Post /es/{index}/_search Search V2 DSL for compatible ES
Search SearchV1 Post /api/{index}/_search Search V1
User Create Post /api/user Create user
User Delete Delete /api/user/{id} Delete user
User List Get /api/user List user
User Login Post /api/login Login
User Update Put /api/user Update user

Documentation For Models

Documentation For Authorization

basicAuth
  • Type: HTTP basic authentication

Example

auth := context.WithValue(context.Background(), client.ContextBasicAuth, client.BasicAuth{
    UserName: "username",
    Password: "password",
})
r, err := client.Service.Operation(auth, args)

Documentation for Utility Methods

Due to the fact that model structure members are all pointers, this package contains a number of utility functions to easily obtain pointers to values of basic types. Each of these functions takes a value of the given basic type and returns a pointer to it:

  • PtrBool
  • PtrInt
  • PtrInt32
  • PtrInt64
  • PtrFloat
  • PtrFloat32
  • PtrFloat64
  • PtrString
  • PtrTime

Author

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	// ContextOAuth2 takes an oauth2.TokenSource as authentication for the request.
	ContextOAuth2 = contextKey("token")

	// ContextBasicAuth takes BasicAuth as authentication for the request.
	ContextBasicAuth = contextKey("basic")

	// ContextAccessToken takes a string oauth2 access token as authentication for the request.
	ContextAccessToken = contextKey("accesstoken")

	// ContextAPIKeys takes a string apikey as authentication for the request
	ContextAPIKeys = contextKey("apiKeys")

	// ContextHttpSignatureAuth takes HttpSignatureAuth as authentication for the request.
	ContextHttpSignatureAuth = contextKey("httpsignature")

	// ContextServerIndex uses a server configuration from the index.
	ContextServerIndex = contextKey("serverIndex")

	// ContextOperationServerIndices uses a server configuration from the index mapping.
	ContextOperationServerIndices = contextKey("serverOperationIndices")

	// ContextServerVariables overrides a server configuration variables.
	ContextServerVariables = contextKey("serverVariables")

	// ContextOperationServerVariables overrides a server configuration variables using operation specific values.
	ContextOperationServerVariables = contextKey("serverOperationVariables")
)

Functions

func CacheExpires

func CacheExpires(r *http.Response) time.Time

CacheExpires helper function to determine remaining time before repeating a request.

func PtrBool

func PtrBool(v bool) *bool

PtrBool is a helper routine that returns a pointer to given boolean value.

func PtrFloat32

func PtrFloat32(v float32) *float32

PtrFloat32 is a helper routine that returns a pointer to given float value.

func PtrFloat64

func PtrFloat64(v float64) *float64

PtrFloat64 is a helper routine that returns a pointer to given float value.

func PtrInt

func PtrInt(v int) *int

PtrInt is a helper routine that returns a pointer to given integer value.

func PtrInt32

func PtrInt32(v int32) *int32

PtrInt32 is a helper routine that returns a pointer to given integer value.

func PtrInt64

func PtrInt64(v int64) *int64

PtrInt64 is a helper routine that returns a pointer to given integer value.

func PtrString

func PtrString(v string) *string

PtrString is a helper routine that returns a pointer to given string value.

func PtrTime

func PtrTime(v time.Time) *time.Time

PtrTime is helper routine that returns a pointer to given Time value.

Types

type APIClient

type APIClient struct {
	Default Default

	Document Document

	Index Index

	Search Search

	User User
	// contains filtered or unexported fields
}

APIClient manages communication with the Zinc Search engine API API v0.3.3 In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *Configuration) *APIClient

NewAPIClient creates a new API client. Requires a userAgent string describing your application. optionally a custom http.Client to allow for advanced features such as caching.

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *Configuration

Allow modification of underlying config for alternate implementations and testing Caution: modifying the configuration while live can cause data races and potentially unwanted behavior

func (*APIClient) HttpAddDoc

func (c *APIClient) HttpAddDoc(index string, data string) (id string, err error)

func (*APIClient) HttpSearch

func (c *APIClient) HttpSearch(index string, resAryPointer any, query string) (err error)

func (*APIClient) HttpUpdateDoc

func (c *APIClient) HttpUpdateDoc(index string, docId string, data string) (err error)

func (*APIClient) NewContext

func (c *APIClient) NewContext(ctx context.Context) context.Context

type APIKey

type APIKey struct {
	Key    string
	Prefix string
}

APIKey provides API key based authentication to a request passed via context using ContextAPIKey

type APIResponse

type APIResponse struct {
	*http.Response `json:"-"`
	Message        string `json:"message,omitempty"`
	// Operation is the name of the OpenAPI operation.
	Operation string `json:"operation,omitempty"`
	// RequestURL is the request URL. This value is always available, even if the
	// embedded *http.Response is nil.
	RequestURL string `json:"url,omitempty"`
	// Method is the HTTP method used for the request.  This value is always
	// available, even if the embedded *http.Response is nil.
	Method string `json:"method,omitempty"`
	// Payload holds the contents of the response body (which may be nil or empty).
	// This is provided here as the raw response.Body() reader will have already
	// been drained.
	Payload []byte `json:"-"`
}

APIResponse stores the API response returned by the server.

func NewAPIResponse

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResponse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

NewAPIResponseWithError returns a new APIResponse object with the provided error message.

type AggregationHistogramBound

type AggregationHistogramBound struct {
	// maximum
	Max *float32 `json:"max,omitempty"`
	// minimum
	Min *float32 `json:"min,omitempty"`
}

AggregationHistogramBound struct for AggregationHistogramBound

func NewAggregationHistogramBound

func NewAggregationHistogramBound() *AggregationHistogramBound

NewAggregationHistogramBound instantiates a new AggregationHistogramBound object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAggregationHistogramBoundWithDefaults

func NewAggregationHistogramBoundWithDefaults() *AggregationHistogramBound

NewAggregationHistogramBoundWithDefaults instantiates a new AggregationHistogramBound object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AggregationHistogramBound) GetMax

func (o *AggregationHistogramBound) GetMax() float32

GetMax returns the Max field value if set, zero value otherwise.

func (*AggregationHistogramBound) GetMaxOk

func (o *AggregationHistogramBound) GetMaxOk() (*float32, bool)

GetMaxOk returns a tuple with the Max field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AggregationHistogramBound) GetMin

func (o *AggregationHistogramBound) GetMin() float32

GetMin returns the Min field value if set, zero value otherwise.

func (*AggregationHistogramBound) GetMinOk

func (o *AggregationHistogramBound) GetMinOk() (*float32, bool)

GetMinOk returns a tuple with the Min field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AggregationHistogramBound) HasMax

func (o *AggregationHistogramBound) HasMax() bool

HasMax returns a boolean if a field has been set.

func (*AggregationHistogramBound) HasMin

func (o *AggregationHistogramBound) HasMin() bool

HasMin returns a boolean if a field has been set.

func (AggregationHistogramBound) MarshalJSON

func (o AggregationHistogramBound) MarshalJSON() ([]byte, error)

func (*AggregationHistogramBound) SetMax

func (o *AggregationHistogramBound) SetMax(v float32)

SetMax gets a reference to the given float32 and assigns it to the Max field.

func (*AggregationHistogramBound) SetMin

func (o *AggregationHistogramBound) SetMin(v float32)

SetMin gets a reference to the given float32 and assigns it to the Min field.

type AuthLoginRequest

type AuthLoginRequest struct {
	Id       *string `json:"_id,omitempty"`
	Password *string `json:"password,omitempty"`
}

AuthLoginRequest struct for AuthLoginRequest

func NewAuthLoginRequest

func NewAuthLoginRequest() *AuthLoginRequest

NewAuthLoginRequest instantiates a new AuthLoginRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAuthLoginRequestWithDefaults

func NewAuthLoginRequestWithDefaults() *AuthLoginRequest

NewAuthLoginRequestWithDefaults instantiates a new AuthLoginRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AuthLoginRequest) GetId

func (o *AuthLoginRequest) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*AuthLoginRequest) GetIdOk

func (o *AuthLoginRequest) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthLoginRequest) GetPassword

func (o *AuthLoginRequest) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*AuthLoginRequest) GetPasswordOk

func (o *AuthLoginRequest) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthLoginRequest) HasId

func (o *AuthLoginRequest) HasId() bool

HasId returns a boolean if a field has been set.

func (*AuthLoginRequest) HasPassword

func (o *AuthLoginRequest) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (AuthLoginRequest) MarshalJSON

func (o AuthLoginRequest) MarshalJSON() ([]byte, error)

func (*AuthLoginRequest) SetId

func (o *AuthLoginRequest) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*AuthLoginRequest) SetPassword

func (o *AuthLoginRequest) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

type AuthLoginResponse

type AuthLoginResponse struct {
	User      *AuthLoginUser `json:"user,omitempty"`
	Validated *bool          `json:"validated,omitempty"`
}

AuthLoginResponse struct for AuthLoginResponse

func NewAuthLoginResponse

func NewAuthLoginResponse() *AuthLoginResponse

NewAuthLoginResponse instantiates a new AuthLoginResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAuthLoginResponseWithDefaults

func NewAuthLoginResponseWithDefaults() *AuthLoginResponse

NewAuthLoginResponseWithDefaults instantiates a new AuthLoginResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AuthLoginResponse) GetUser

func (o *AuthLoginResponse) GetUser() AuthLoginUser

GetUser returns the User field value if set, zero value otherwise.

func (*AuthLoginResponse) GetUserOk

func (o *AuthLoginResponse) GetUserOk() (*AuthLoginUser, bool)

GetUserOk returns a tuple with the User field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthLoginResponse) GetValidated

func (o *AuthLoginResponse) GetValidated() bool

GetValidated returns the Validated field value if set, zero value otherwise.

func (*AuthLoginResponse) GetValidatedOk

func (o *AuthLoginResponse) GetValidatedOk() (*bool, bool)

GetValidatedOk returns a tuple with the Validated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthLoginResponse) HasUser

func (o *AuthLoginResponse) HasUser() bool

HasUser returns a boolean if a field has been set.

func (*AuthLoginResponse) HasValidated

func (o *AuthLoginResponse) HasValidated() bool

HasValidated returns a boolean if a field has been set.

func (AuthLoginResponse) MarshalJSON

func (o AuthLoginResponse) MarshalJSON() ([]byte, error)

func (*AuthLoginResponse) SetUser

func (o *AuthLoginResponse) SetUser(v AuthLoginUser)

SetUser gets a reference to the given AuthLoginUser and assigns it to the User field.

func (*AuthLoginResponse) SetValidated

func (o *AuthLoginResponse) SetValidated(v bool)

SetValidated gets a reference to the given bool and assigns it to the Validated field.

type AuthLoginUser

type AuthLoginUser struct {
	Id   *string `json:"_id,omitempty"`
	Name *string `json:"name,omitempty"`
	Role *string `json:"role,omitempty"`
}

AuthLoginUser struct for AuthLoginUser

func NewAuthLoginUser

func NewAuthLoginUser() *AuthLoginUser

NewAuthLoginUser instantiates a new AuthLoginUser object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAuthLoginUserWithDefaults

func NewAuthLoginUserWithDefaults() *AuthLoginUser

NewAuthLoginUserWithDefaults instantiates a new AuthLoginUser object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AuthLoginUser) GetId

func (o *AuthLoginUser) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*AuthLoginUser) GetIdOk

func (o *AuthLoginUser) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthLoginUser) GetName

func (o *AuthLoginUser) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*AuthLoginUser) GetNameOk

func (o *AuthLoginUser) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthLoginUser) GetRole

func (o *AuthLoginUser) GetRole() string

GetRole returns the Role field value if set, zero value otherwise.

func (*AuthLoginUser) GetRoleOk

func (o *AuthLoginUser) GetRoleOk() (*string, bool)

GetRoleOk returns a tuple with the Role field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AuthLoginUser) HasId

func (o *AuthLoginUser) HasId() bool

HasId returns a boolean if a field has been set.

func (*AuthLoginUser) HasName

func (o *AuthLoginUser) HasName() bool

HasName returns a boolean if a field has been set.

func (*AuthLoginUser) HasRole

func (o *AuthLoginUser) HasRole() bool

HasRole returns a boolean if a field has been set.

func (AuthLoginUser) MarshalJSON

func (o AuthLoginUser) MarshalJSON() ([]byte, error)

func (*AuthLoginUser) SetId

func (o *AuthLoginUser) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*AuthLoginUser) SetName

func (o *AuthLoginUser) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*AuthLoginUser) SetRole

func (o *AuthLoginUser) SetRole(v string)

SetRole gets a reference to the given string and assigns it to the Role field.

type BasicAuth

type BasicAuth struct {
	UserName string `json:"userName,omitempty"`
	Password string `json:"password,omitempty"`
}

BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth

type Configuration

type Configuration struct {
	Host             string            `json:"host,omitempty"`
	Scheme           string            `json:"scheme,omitempty"`
	DefaultHeader    map[string]string `json:"defaultHeader,omitempty"`
	UserAgent        string            `json:"userAgent,omitempty"`
	Debug            bool              `json:"debug,omitempty"`
	Servers          ServerConfigurations
	OperationServers map[string]ServerConfigurations
	HTTPClient       *http.Client

	//add by jiang
	Url      string `json:"url"`
	UserName string `json:"userName"`
	Password string `json:"password"`
}

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

func (c *Configuration) AddDefaultHeader(key string, value string)

AddDefaultHeader adds a new HTTP header to the default header in the request

func (*Configuration) ServerURL

func (c *Configuration) ServerURL(index int, variables map[string]string) (string, error)

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

func (c *Configuration) ServerURLWithContext(ctx context.Context, endpoint string) (string, error)

ServerURLWithContext returns a new server URL given an endpoint

type Default

type Default interface {

	/*
		Healthz Get healthz

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return DefaultHealthzRequest
	*/
	Healthz(ctx context.Context) DefaultHealthzRequest

	// HealthzExecute executes the request
	//  @return MetaHealthzResponse
	HealthzExecute(r DefaultHealthzRequest) (*MetaHealthzResponse, *http.Response, error)

	/*
		Version Get version

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return DefaultVersionRequest
	*/
	Version(ctx context.Context) DefaultVersionRequest

	// VersionExecute executes the request
	//  @return MetaVersionResponse
	VersionExecute(r DefaultVersionRequest) (*MetaVersionResponse, *http.Response, error)
}

type DefaultHealthzRequest

type DefaultHealthzRequest struct {
	ApiService Default
	// contains filtered or unexported fields
}

func (DefaultHealthzRequest) Execute

type DefaultService

type DefaultService service

DefaultService Default service

func (*DefaultService) Healthz

Healthz Get healthz

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return DefaultHealthzRequest

func (*DefaultService) HealthzExecute

Execute executes the request

@return MetaHealthzResponse

func (*DefaultService) Version

Version Get version

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return DefaultVersionRequest

func (*DefaultService) VersionExecute

Execute executes the request

@return MetaVersionResponse

type DefaultVersionRequest

type DefaultVersionRequest struct {
	ApiService Default
	// contains filtered or unexported fields
}

func (DefaultVersionRequest) Execute

type Document

type Document interface {

	/*
		Bulk Bulk documents

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return DocumentBulkRequest
	*/
	Bulk(ctx context.Context) DocumentBulkRequest

	// BulkExecute executes the request
	//  @return MetaHTTPResponseRecordCount
	BulkExecute(r DocumentBulkRequest) (*MetaHTTPResponseRecordCount, *http.Response, error)

	/*
		Bulkv2 Bulkv2 documents

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return DocumentBulkv2Request
	*/
	Bulkv2(ctx context.Context) DocumentBulkv2Request

	// Bulkv2Execute executes the request
	//  @return MetaHTTPResponseRecordCount
	Bulkv2Execute(r DocumentBulkv2Request) (*MetaHTTPResponseRecordCount, *http.Response, error)

	/*
		Delete Delete document

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param index Index
		@param id ID
		@return DocumentDeleteRequest
	*/
	Delete(ctx context.Context, index string, id string) DocumentDeleteRequest

	// DeleteExecute executes the request
	//  @return MetaHTTPResponseDocument
	DeleteExecute(r DocumentDeleteRequest) (*MetaHTTPResponseDocument, *http.Response, error)

	/*
		ESBulk ES bulk documents

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return DocumentESBulkRequest
	*/
	ESBulk(ctx context.Context) DocumentESBulkRequest

	// ESBulkExecute executes the request
	//  @return map[string]interface{}
	ESBulkExecute(r DocumentESBulkRequest) (map[string]interface{}, *http.Response, error)

	/*
		Index Create or update document

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param index Index
		@return DocumentIndexRequest
	*/
	Index(ctx context.Context, index string) DocumentIndexRequest

	// IndexExecute executes the request
	//  @return MetaHTTPResponseID
	IndexExecute(r DocumentIndexRequest) (*MetaHTTPResponseID, *http.Response, error)

	/*
		IndexWithID Create or update document with id

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param index Index
		@param id ID
		@return DocumentIndexWithIDRequest
	*/
	IndexWithID(ctx context.Context, index string, id string) DocumentIndexWithIDRequest

	// IndexWithIDExecute executes the request
	//  @return MetaHTTPResponseID
	IndexWithIDExecute(r DocumentIndexWithIDRequest) (*MetaHTTPResponseID, *http.Response, error)

	/*
		Multi Multi documents

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param index Index
		@return DocumentMultiRequest
	*/
	Multi(ctx context.Context, index string) DocumentMultiRequest

	// MultiExecute executes the request
	//  @return MetaHTTPResponseRecordCount
	MultiExecute(r DocumentMultiRequest) (*MetaHTTPResponseRecordCount, *http.Response, error)

	/*
		Update Update document with id

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param index Index
		@param id ID
		@return DocumentUpdateRequest
	*/
	Update(ctx context.Context, index string, id string) DocumentUpdateRequest

	// UpdateExecute executes the request
	//  @return MetaHTTPResponseID
	UpdateExecute(r DocumentUpdateRequest) (*MetaHTTPResponseID, *http.Response, error)
}

type DocumentBulkRequest

type DocumentBulkRequest struct {
	ApiService Document
	// contains filtered or unexported fields
}

func (DocumentBulkRequest) Execute

func (DocumentBulkRequest) Query

Query

type DocumentBulkv2Request

type DocumentBulkv2Request struct {
	ApiService Document
	// contains filtered or unexported fields
}

func (DocumentBulkv2Request) Execute

func (DocumentBulkv2Request) Query

Query

type DocumentDeleteRequest

type DocumentDeleteRequest struct {
	ApiService Document
	// contains filtered or unexported fields
}

func (DocumentDeleteRequest) Execute

type DocumentESBulkRequest

type DocumentESBulkRequest struct {
	ApiService Document
	// contains filtered or unexported fields
}

func (DocumentESBulkRequest) Execute

func (r DocumentESBulkRequest) Execute() (map[string]interface{}, *http.Response, error)

func (DocumentESBulkRequest) Query

Query

type DocumentIndexRequest

type DocumentIndexRequest struct {
	ApiService Document
	// contains filtered or unexported fields
}

func (DocumentIndexRequest) Document

func (r DocumentIndexRequest) Document(document map[string]interface{}) DocumentIndexRequest

Document

func (DocumentIndexRequest) Execute

type DocumentIndexWithIDRequest

type DocumentIndexWithIDRequest struct {
	ApiService Document
	// contains filtered or unexported fields
}

func (DocumentIndexWithIDRequest) Document

func (r DocumentIndexWithIDRequest) Document(document map[string]interface{}) DocumentIndexWithIDRequest

Document

func (DocumentIndexWithIDRequest) Execute

type DocumentMultiRequest

type DocumentMultiRequest struct {
	ApiService Document
	// contains filtered or unexported fields
}

func (DocumentMultiRequest) Execute

func (DocumentMultiRequest) Query

Query

type DocumentService

type DocumentService service

DocumentService Document service

func (*DocumentService) Bulk

Bulk Bulk documents

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return DocumentBulkRequest

func (*DocumentService) BulkExecute

Execute executes the request

@return MetaHTTPResponseRecordCount

func (*DocumentService) Bulkv2

Bulkv2 Bulkv2 documents

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return DocumentBulkv2Request

func (*DocumentService) Bulkv2Execute

Execute executes the request

@return MetaHTTPResponseRecordCount

func (*DocumentService) Delete

Delete Delete document

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param index Index
@param id ID
@return DocumentDeleteRequest

func (*DocumentService) DeleteExecute

Execute executes the request

@return MetaHTTPResponseDocument

func (*DocumentService) ESBulk

ESBulk ES bulk documents

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return DocumentESBulkRequest

func (*DocumentService) ESBulkExecute

func (a *DocumentService) ESBulkExecute(r DocumentESBulkRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*DocumentService) Index

Index Create or update document

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param index Index
@return DocumentIndexRequest

func (*DocumentService) IndexExecute

Execute executes the request

@return MetaHTTPResponseID

func (*DocumentService) IndexWithID

func (a *DocumentService) IndexWithID(ctx context.Context, index string, id string) DocumentIndexWithIDRequest

IndexWithID Create or update document with id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param index Index
@param id ID
@return DocumentIndexWithIDRequest

func (*DocumentService) IndexWithIDExecute

Execute executes the request

@return MetaHTTPResponseID

func (*DocumentService) Multi

Multi Multi documents

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param index Index
@return DocumentMultiRequest

func (*DocumentService) MultiExecute

Execute executes the request

@return MetaHTTPResponseRecordCount

func (*DocumentService) Update

Update Update document with id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param index Index
@param id ID
@return DocumentUpdateRequest

func (*DocumentService) UpdateExecute

Execute executes the request

@return MetaHTTPResponseID

type DocumentUpdateRequest

type DocumentUpdateRequest struct {
	ApiService Document
	// contains filtered or unexported fields
}

func (DocumentUpdateRequest) Document

func (r DocumentUpdateRequest) Document(document map[string]interface{}) DocumentUpdateRequest

Document

func (DocumentUpdateRequest) Execute

type GenericOpenAPIError

type GenericOpenAPIError struct {
	// contains filtered or unexported fields
}

GenericOpenAPIError Provides access to the body, error and model on returned errors.

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

Error returns non-empty string if there was an error.

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type Index

type Index interface {

	/*
		AddOrRemoveESAlias Add or remove index alias for compatible ES

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return IndexAddOrRemoveESAliasRequest
	*/
	AddOrRemoveESAlias(ctx context.Context) IndexAddOrRemoveESAliasRequest

	// AddOrRemoveESAliasExecute executes the request
	//  @return map[string]interface{}
	AddOrRemoveESAliasExecute(r IndexAddOrRemoveESAliasRequest) (map[string]interface{}, *http.Response, error)

	/*
		Analyze Analyze

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return IndexAnalyzeRequest
	*/
	Analyze(ctx context.Context) IndexAnalyzeRequest

	// AnalyzeExecute executes the request
	//  @return IndexAnalyzeResponse
	AnalyzeExecute(r IndexAnalyzeRequest) (*IndexAnalyzeResponse, *http.Response, error)

	/*
		AnalyzeIndex Analyze

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param index Index
		@return IndexAnalyzeIndexRequest
	*/
	AnalyzeIndex(ctx context.Context, index string) IndexAnalyzeIndexRequest

	// AnalyzeIndexExecute executes the request
	//  @return IndexAnalyzeResponse
	AnalyzeIndexExecute(r IndexAnalyzeIndexRequest) (*IndexAnalyzeResponse, *http.Response, error)

	/*
		Create Create index

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return IndexCreateRequest
	*/
	Create(ctx context.Context) IndexCreateRequest

	// CreateExecute executes the request
	//  @return MetaHTTPResponseIndex
	CreateExecute(r IndexCreateRequest) (*MetaHTTPResponseIndex, *http.Response, error)

	/*
		CreateTemplate Create update index template

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return IndexCreateTemplateRequest
	*/
	CreateTemplate(ctx context.Context) IndexCreateTemplateRequest

	// CreateTemplateExecute executes the request
	//  @return MetaHTTPResponseTemplate
	CreateTemplateExecute(r IndexCreateTemplateRequest) (*MetaHTTPResponseTemplate, *http.Response, error)

	/*
		Delete Delete index

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param index Index
		@return IndexDeleteRequest
	*/
	Delete(ctx context.Context, index string) IndexDeleteRequest

	// DeleteExecute executes the request
	//  @return MetaHTTPResponseIndex
	DeleteExecute(r IndexDeleteRequest) (*MetaHTTPResponseIndex, *http.Response, error)

	/*
		DeleteTemplate Delete template

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param name Template
		@return IndexDeleteTemplateRequest
	*/
	DeleteTemplate(ctx context.Context, name string) IndexDeleteTemplateRequest

	// DeleteTemplateExecute executes the request
	//  @return MetaHTTPResponse
	DeleteTemplateExecute(r IndexDeleteTemplateRequest) (*MetaHTTPResponse, *http.Response, error)

	/*
		ESCreateIndex Create index for compatible ES

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param index Index
		@return IndexESCreateIndexRequest
	*/
	ESCreateIndex(ctx context.Context, index string) IndexESCreateIndexRequest

	// ESCreateIndexExecute executes the request
	//  @return map[string]interface{}
	ESCreateIndexExecute(r IndexESCreateIndexRequest) (map[string]interface{}, *http.Response, error)

	/*
		ESGetMapping Get index mappings for compatible ES

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param index Index
		@return IndexESGetMappingRequest
	*/
	ESGetMapping(ctx context.Context, index string) IndexESGetMappingRequest

	// ESGetMappingExecute executes the request
	//  @return map[string]interface{}
	ESGetMappingExecute(r IndexESGetMappingRequest) (map[string]interface{}, *http.Response, error)

	/*
		EsExists Checks if the index exists for compatible ES

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param index Index
		@return IndexEsExistsRequest
	*/
	EsExists(ctx context.Context, index string) IndexEsExistsRequest

	// EsExistsExecute executes the request
	//  @return MetaHTTPResponse
	EsExistsExecute(r IndexEsExistsRequest) (*MetaHTTPResponse, *http.Response, error)

	/*
		Exists Checks if the index exists

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param index Index
		@return IndexExistsRequest
	*/
	Exists(ctx context.Context, index string) IndexExistsRequest

	// ExistsExecute executes the request
	//  @return MetaHTTPResponse
	ExistsExecute(r IndexExistsRequest) (*MetaHTTPResponse, *http.Response, error)

	/*
		GetESAliases Get index alias for compatible ES

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param target Target Index
		@param targetAlias Target Alias
		@return IndexGetESAliasesRequest
	*/
	GetESAliases(ctx context.Context, target string, targetAlias string) IndexGetESAliasesRequest

	// GetESAliasesExecute executes the request
	//  @return map[string]interface{}
	GetESAliasesExecute(r IndexGetESAliasesRequest) (map[string]interface{}, *http.Response, error)

	/*
		GetIndex Get index metadata

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param index Index
		@return IndexGetIndexRequest
	*/
	GetIndex(ctx context.Context, index string) IndexGetIndexRequest

	// GetIndexExecute executes the request
	//  @return map[string]interface{}
	GetIndexExecute(r IndexGetIndexRequest) (map[string]interface{}, *http.Response, error)

	/*
		GetMapping Get index mappings

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param index Index
		@return IndexGetMappingRequest
	*/
	GetMapping(ctx context.Context, index string) IndexGetMappingRequest

	// GetMappingExecute executes the request
	//  @return map[string]interface{}
	GetMappingExecute(r IndexGetMappingRequest) (map[string]interface{}, *http.Response, error)

	/*
		GetSettings Get index settings

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param index Index
		@return IndexGetSettingsRequest
	*/
	GetSettings(ctx context.Context, index string) IndexGetSettingsRequest

	// GetSettingsExecute executes the request
	//  @return map[string]interface{}
	GetSettingsExecute(r IndexGetSettingsRequest) (map[string]interface{}, *http.Response, error)

	/*
		GetTemplate Get index template

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param name Template
		@return IndexGetTemplateRequest
	*/
	GetTemplate(ctx context.Context, name string) IndexGetTemplateRequest

	// GetTemplateExecute executes the request
	//  @return MetaIndexTemplate
	GetTemplateExecute(r IndexGetTemplateRequest) (*MetaIndexTemplate, *http.Response, error)

	/*
		IndexNameList List index Name

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return IndexIndexNameListRequest
	*/
	IndexNameList(ctx context.Context) IndexIndexNameListRequest

	// IndexNameListExecute executes the request
	//  @return []string
	IndexNameListExecute(r IndexIndexNameListRequest) ([]string, *http.Response, error)

	/*
		List List indexes

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return IndexListRequest
	*/
	List(ctx context.Context) IndexListRequest

	// ListExecute executes the request
	//  @return IndexIndexListResponse
	ListExecute(r IndexListRequest) (*IndexIndexListResponse, *http.Response, error)

	/*
		ListTemplates List index teplates

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return IndexListTemplatesRequest
	*/
	ListTemplates(ctx context.Context) IndexListTemplatesRequest

	// ListTemplatesExecute executes the request
	//  @return []MetaTemplate
	ListTemplatesExecute(r IndexListTemplatesRequest) ([]MetaTemplate, *http.Response, error)

	/*
		Refresh Resfresh index

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param index Index
		@return IndexRefreshRequest
	*/
	Refresh(ctx context.Context, index string) IndexRefreshRequest

	// RefreshExecute executes the request
	//  @return MetaHTTPResponse
	RefreshExecute(r IndexRefreshRequest) (*MetaHTTPResponse, *http.Response, error)

	/*
		SetMapping Set index mappings

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param index Index
		@return IndexSetMappingRequest
	*/
	SetMapping(ctx context.Context, index string) IndexSetMappingRequest

	// SetMappingExecute executes the request
	//  @return MetaHTTPResponse
	SetMappingExecute(r IndexSetMappingRequest) (*MetaHTTPResponse, *http.Response, error)

	/*
		SetSettings Set index Settings

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param index Index
		@return IndexSetSettingsRequest
	*/
	SetSettings(ctx context.Context, index string) IndexSetSettingsRequest

	// SetSettingsExecute executes the request
	//  @return MetaHTTPResponse
	SetSettingsExecute(r IndexSetSettingsRequest) (*MetaHTTPResponse, *http.Response, error)

	/*
		UpdateTemplate Create update index template

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param name Template
		@return IndexUpdateTemplateRequest
	*/
	UpdateTemplate(ctx context.Context, name string) IndexUpdateTemplateRequest

	// UpdateTemplateExecute executes the request
	//  @return MetaHTTPResponseTemplate
	UpdateTemplateExecute(r IndexUpdateTemplateRequest) (*MetaHTTPResponseTemplate, *http.Response, error)
}

type IndexAddOrRemoveESAliasRequest

type IndexAddOrRemoveESAliasRequest struct {
	ApiService Index
	// contains filtered or unexported fields
}

func (IndexAddOrRemoveESAliasRequest) Execute

func (r IndexAddOrRemoveESAliasRequest) Execute() (map[string]interface{}, *http.Response, error)

type IndexAnalyzeIndexRequest

type IndexAnalyzeIndexRequest struct {
	ApiService Index
	// contains filtered or unexported fields
}

func (IndexAnalyzeIndexRequest) Execute

func (IndexAnalyzeIndexRequest) Query

func (r IndexAnalyzeIndexRequest) Query(query map[string]interface{}) IndexAnalyzeIndexRequest

Query

type IndexAnalyzeRequest

type IndexAnalyzeRequest struct {
	ApiService Index
	// contains filtered or unexported fields
}

func (IndexAnalyzeRequest) Execute

func (IndexAnalyzeRequest) Query

func (r IndexAnalyzeRequest) Query(query map[string]interface{}) IndexAnalyzeRequest

Query

type IndexAnalyzeResponse

type IndexAnalyzeResponse struct {
	Tokens []IndexAnalyzeResponseToken `json:"tokens,omitempty"`
}

IndexAnalyzeResponse struct for IndexAnalyzeResponse

func NewIndexAnalyzeResponse

func NewIndexAnalyzeResponse() *IndexAnalyzeResponse

NewIndexAnalyzeResponse instantiates a new IndexAnalyzeResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewIndexAnalyzeResponseWithDefaults

func NewIndexAnalyzeResponseWithDefaults() *IndexAnalyzeResponse

NewIndexAnalyzeResponseWithDefaults instantiates a new IndexAnalyzeResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*IndexAnalyzeResponse) GetTokens

GetTokens returns the Tokens field value if set, zero value otherwise.

func (*IndexAnalyzeResponse) GetTokensOk

func (o *IndexAnalyzeResponse) GetTokensOk() ([]IndexAnalyzeResponseToken, bool)

GetTokensOk returns a tuple with the Tokens field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IndexAnalyzeResponse) HasTokens

func (o *IndexAnalyzeResponse) HasTokens() bool

HasTokens returns a boolean if a field has been set.

func (IndexAnalyzeResponse) MarshalJSON

func (o IndexAnalyzeResponse) MarshalJSON() ([]byte, error)

func (*IndexAnalyzeResponse) SetTokens

SetTokens gets a reference to the given []IndexAnalyzeResponseToken and assigns it to the Tokens field.

type IndexAnalyzeResponseToken

type IndexAnalyzeResponseToken struct {
	EndOffset   *int32  `json:"end_offset,omitempty"`
	Keyword     *bool   `json:"keyword,omitempty"`
	Position    *int32  `json:"position,omitempty"`
	StartOffset *int32  `json:"start_offset,omitempty"`
	Token       *string `json:"token,omitempty"`
	Type        *string `json:"type,omitempty"`
}

IndexAnalyzeResponseToken struct for IndexAnalyzeResponseToken

func NewIndexAnalyzeResponseToken

func NewIndexAnalyzeResponseToken() *IndexAnalyzeResponseToken

NewIndexAnalyzeResponseToken instantiates a new IndexAnalyzeResponseToken object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewIndexAnalyzeResponseTokenWithDefaults

func NewIndexAnalyzeResponseTokenWithDefaults() *IndexAnalyzeResponseToken

NewIndexAnalyzeResponseTokenWithDefaults instantiates a new IndexAnalyzeResponseToken object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*IndexAnalyzeResponseToken) GetEndOffset

func (o *IndexAnalyzeResponseToken) GetEndOffset() int32

GetEndOffset returns the EndOffset field value if set, zero value otherwise.

func (*IndexAnalyzeResponseToken) GetEndOffsetOk

func (o *IndexAnalyzeResponseToken) GetEndOffsetOk() (*int32, bool)

GetEndOffsetOk returns a tuple with the EndOffset field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IndexAnalyzeResponseToken) GetKeyword

func (o *IndexAnalyzeResponseToken) GetKeyword() bool

GetKeyword returns the Keyword field value if set, zero value otherwise.

func (*IndexAnalyzeResponseToken) GetKeywordOk

func (o *IndexAnalyzeResponseToken) GetKeywordOk() (*bool, bool)

GetKeywordOk returns a tuple with the Keyword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IndexAnalyzeResponseToken) GetPosition

func (o *IndexAnalyzeResponseToken) GetPosition() int32

GetPosition returns the Position field value if set, zero value otherwise.

func (*IndexAnalyzeResponseToken) GetPositionOk

func (o *IndexAnalyzeResponseToken) GetPositionOk() (*int32, bool)

GetPositionOk returns a tuple with the Position field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IndexAnalyzeResponseToken) GetStartOffset

func (o *IndexAnalyzeResponseToken) GetStartOffset() int32

GetStartOffset returns the StartOffset field value if set, zero value otherwise.

func (*IndexAnalyzeResponseToken) GetStartOffsetOk

func (o *IndexAnalyzeResponseToken) GetStartOffsetOk() (*int32, bool)

GetStartOffsetOk returns a tuple with the StartOffset field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IndexAnalyzeResponseToken) GetToken

func (o *IndexAnalyzeResponseToken) GetToken() string

GetToken returns the Token field value if set, zero value otherwise.

func (*IndexAnalyzeResponseToken) GetTokenOk

func (o *IndexAnalyzeResponseToken) GetTokenOk() (*string, bool)

GetTokenOk returns a tuple with the Token field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IndexAnalyzeResponseToken) GetType

func (o *IndexAnalyzeResponseToken) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*IndexAnalyzeResponseToken) GetTypeOk

func (o *IndexAnalyzeResponseToken) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IndexAnalyzeResponseToken) HasEndOffset

func (o *IndexAnalyzeResponseToken) HasEndOffset() bool

HasEndOffset returns a boolean if a field has been set.

func (*IndexAnalyzeResponseToken) HasKeyword

func (o *IndexAnalyzeResponseToken) HasKeyword() bool

HasKeyword returns a boolean if a field has been set.

func (*IndexAnalyzeResponseToken) HasPosition

func (o *IndexAnalyzeResponseToken) HasPosition() bool

HasPosition returns a boolean if a field has been set.

func (*IndexAnalyzeResponseToken) HasStartOffset

func (o *IndexAnalyzeResponseToken) HasStartOffset() bool

HasStartOffset returns a boolean if a field has been set.

func (*IndexAnalyzeResponseToken) HasToken

func (o *IndexAnalyzeResponseToken) HasToken() bool

HasToken returns a boolean if a field has been set.

func (*IndexAnalyzeResponseToken) HasType

func (o *IndexAnalyzeResponseToken) HasType() bool

HasType returns a boolean if a field has been set.

func (IndexAnalyzeResponseToken) MarshalJSON

func (o IndexAnalyzeResponseToken) MarshalJSON() ([]byte, error)

func (*IndexAnalyzeResponseToken) SetEndOffset

func (o *IndexAnalyzeResponseToken) SetEndOffset(v int32)

SetEndOffset gets a reference to the given int32 and assigns it to the EndOffset field.

func (*IndexAnalyzeResponseToken) SetKeyword

func (o *IndexAnalyzeResponseToken) SetKeyword(v bool)

SetKeyword gets a reference to the given bool and assigns it to the Keyword field.

func (*IndexAnalyzeResponseToken) SetPosition

func (o *IndexAnalyzeResponseToken) SetPosition(v int32)

SetPosition gets a reference to the given int32 and assigns it to the Position field.

func (*IndexAnalyzeResponseToken) SetStartOffset

func (o *IndexAnalyzeResponseToken) SetStartOffset(v int32)

SetStartOffset gets a reference to the given int32 and assigns it to the StartOffset field.

func (*IndexAnalyzeResponseToken) SetToken

func (o *IndexAnalyzeResponseToken) SetToken(v string)

SetToken gets a reference to the given string and assigns it to the Token field.

func (*IndexAnalyzeResponseToken) SetType

func (o *IndexAnalyzeResponseToken) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type IndexCreateRequest

type IndexCreateRequest struct {
	ApiService Index
	// contains filtered or unexported fields
}

func (IndexCreateRequest) Data

Index data

func (IndexCreateRequest) Execute

type IndexCreateTemplateRequest

type IndexCreateTemplateRequest struct {
	ApiService Index
	// contains filtered or unexported fields
}

func (IndexCreateTemplateRequest) Execute

func (IndexCreateTemplateRequest) Template

Template data

type IndexDeleteRequest

type IndexDeleteRequest struct {
	ApiService Index
	// contains filtered or unexported fields
}

func (IndexDeleteRequest) Execute

type IndexDeleteTemplateRequest

type IndexDeleteTemplateRequest struct {
	ApiService Index
	// contains filtered or unexported fields
}

func (IndexDeleteTemplateRequest) Execute

type IndexESCreateIndexRequest

type IndexESCreateIndexRequest struct {
	ApiService Index
	// contains filtered or unexported fields
}

func (IndexESCreateIndexRequest) Data

Index data

func (IndexESCreateIndexRequest) Execute

func (r IndexESCreateIndexRequest) Execute() (map[string]interface{}, *http.Response, error)

type IndexESGetMappingRequest

type IndexESGetMappingRequest struct {
	ApiService Index
	// contains filtered or unexported fields
}

func (IndexESGetMappingRequest) Execute

func (r IndexESGetMappingRequest) Execute() (map[string]interface{}, *http.Response, error)

type IndexEsExistsRequest

type IndexEsExistsRequest struct {
	ApiService Index
	// contains filtered or unexported fields
}

func (IndexEsExistsRequest) Execute

type IndexExistsRequest

type IndexExistsRequest struct {
	ApiService Index
	// contains filtered or unexported fields
}

func (IndexExistsRequest) Execute

type IndexGetESAliasesRequest

type IndexGetESAliasesRequest struct {
	ApiService Index
	// contains filtered or unexported fields
}

func (IndexGetESAliasesRequest) Execute

func (r IndexGetESAliasesRequest) Execute() (map[string]interface{}, *http.Response, error)

type IndexGetIndexRequest

type IndexGetIndexRequest struct {
	ApiService Index
	// contains filtered or unexported fields
}

func (IndexGetIndexRequest) Execute

func (r IndexGetIndexRequest) Execute() (map[string]interface{}, *http.Response, error)

type IndexGetMappingRequest

type IndexGetMappingRequest struct {
	ApiService Index
	// contains filtered or unexported fields
}

func (IndexGetMappingRequest) Execute

func (r IndexGetMappingRequest) Execute() (map[string]interface{}, *http.Response, error)

type IndexGetSettingsRequest

type IndexGetSettingsRequest struct {
	ApiService Index
	// contains filtered or unexported fields
}

func (IndexGetSettingsRequest) Execute

func (r IndexGetSettingsRequest) Execute() (map[string]interface{}, *http.Response, error)

type IndexGetTemplateRequest

type IndexGetTemplateRequest struct {
	ApiService Index
	// contains filtered or unexported fields
}

func (IndexGetTemplateRequest) Execute

type IndexIndexListResponse

type IndexIndexListResponse struct {
	List []map[string]interface{} `json:"list,omitempty"`
	Page *MetaPage                `json:"page,omitempty"`
}

IndexIndexListResponse struct for IndexIndexListResponse

func NewIndexIndexListResponse

func NewIndexIndexListResponse() *IndexIndexListResponse

NewIndexIndexListResponse instantiates a new IndexIndexListResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewIndexIndexListResponseWithDefaults

func NewIndexIndexListResponseWithDefaults() *IndexIndexListResponse

NewIndexIndexListResponseWithDefaults instantiates a new IndexIndexListResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*IndexIndexListResponse) GetList

func (o *IndexIndexListResponse) GetList() []map[string]interface{}

GetList returns the List field value if set, zero value otherwise.

func (*IndexIndexListResponse) GetListOk

func (o *IndexIndexListResponse) GetListOk() ([]map[string]interface{}, bool)

GetListOk returns a tuple with the List field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IndexIndexListResponse) GetPage

func (o *IndexIndexListResponse) GetPage() MetaPage

GetPage returns the Page field value if set, zero value otherwise.

func (*IndexIndexListResponse) GetPageOk

func (o *IndexIndexListResponse) GetPageOk() (*MetaPage, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IndexIndexListResponse) HasList

func (o *IndexIndexListResponse) HasList() bool

HasList returns a boolean if a field has been set.

func (*IndexIndexListResponse) HasPage

func (o *IndexIndexListResponse) HasPage() bool

HasPage returns a boolean if a field has been set.

func (IndexIndexListResponse) MarshalJSON

func (o IndexIndexListResponse) MarshalJSON() ([]byte, error)

func (*IndexIndexListResponse) SetList

func (o *IndexIndexListResponse) SetList(v []map[string]interface{})

SetList gets a reference to the given []map[string]interface{} and assigns it to the List field.

func (*IndexIndexListResponse) SetPage

func (o *IndexIndexListResponse) SetPage(v MetaPage)

SetPage gets a reference to the given MetaPage and assigns it to the Page field.

type IndexIndexNameListRequest

type IndexIndexNameListRequest struct {
	ApiService Index
	// contains filtered or unexported fields
}

func (IndexIndexNameListRequest) Execute

func (r IndexIndexNameListRequest) Execute() ([]string, *http.Response, error)

func (IndexIndexNameListRequest) Name

IndexName

type IndexListRequest

type IndexListRequest struct {
	ApiService Index
	// contains filtered or unexported fields
}

func (IndexListRequest) Desc

func (r IndexListRequest) Desc(desc bool) IndexListRequest

desc

func (IndexListRequest) Execute

func (IndexListRequest) Name

name

func (IndexListRequest) PageNum

func (r IndexListRequest) PageNum(pageNum int32) IndexListRequest

page num

func (IndexListRequest) PageSize

func (r IndexListRequest) PageSize(pageSize int32) IndexListRequest

page size

func (IndexListRequest) SortBy

func (r IndexListRequest) SortBy(sortBy string) IndexListRequest

sort by

type IndexListTemplatesRequest

type IndexListTemplatesRequest struct {
	ApiService Index
	// contains filtered or unexported fields
}

func (IndexListTemplatesRequest) Execute

type IndexRefreshRequest

type IndexRefreshRequest struct {
	ApiService Index
	// contains filtered or unexported fields
}

func (IndexRefreshRequest) Execute

type IndexService

type IndexService service

IndexService Index service

func (*IndexService) AddOrRemoveESAlias

func (a *IndexService) AddOrRemoveESAlias(ctx context.Context) IndexAddOrRemoveESAliasRequest

AddOrRemoveESAlias Add or remove index alias for compatible ES

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return IndexAddOrRemoveESAliasRequest

func (*IndexService) AddOrRemoveESAliasExecute

func (a *IndexService) AddOrRemoveESAliasExecute(r IndexAddOrRemoveESAliasRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*IndexService) Analyze

Analyze Analyze

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return IndexAnalyzeRequest

func (*IndexService) AnalyzeExecute

Execute executes the request

@return IndexAnalyzeResponse

func (*IndexService) AnalyzeIndex

func (a *IndexService) AnalyzeIndex(ctx context.Context, index string) IndexAnalyzeIndexRequest

AnalyzeIndex Analyze

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param index Index
@return IndexAnalyzeIndexRequest

func (*IndexService) AnalyzeIndexExecute

Execute executes the request

@return IndexAnalyzeResponse

func (*IndexService) Create

Create Create index

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return IndexCreateRequest

func (*IndexService) CreateExecute

Execute executes the request

@return MetaHTTPResponseIndex

func (*IndexService) CreateTemplate

func (a *IndexService) CreateTemplate(ctx context.Context) IndexCreateTemplateRequest

CreateTemplate Create update index template

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return IndexCreateTemplateRequest

func (*IndexService) CreateTemplateExecute

Execute executes the request

@return MetaHTTPResponseTemplate

func (*IndexService) Delete

func (a *IndexService) Delete(ctx context.Context, index string) IndexDeleteRequest

Delete Delete index

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param index Index
@return IndexDeleteRequest

func (*IndexService) DeleteExecute

Execute executes the request

@return MetaHTTPResponseIndex

func (*IndexService) DeleteTemplate

func (a *IndexService) DeleteTemplate(ctx context.Context, name string) IndexDeleteTemplateRequest

DeleteTemplate Delete template

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param name Template
@return IndexDeleteTemplateRequest

func (*IndexService) DeleteTemplateExecute

func (a *IndexService) DeleteTemplateExecute(r IndexDeleteTemplateRequest) (*MetaHTTPResponse, *http.Response, error)

Execute executes the request

@return MetaHTTPResponse

func (*IndexService) ESCreateIndex

func (a *IndexService) ESCreateIndex(ctx context.Context, index string) IndexESCreateIndexRequest

ESCreateIndex Create index for compatible ES

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param index Index
@return IndexESCreateIndexRequest

func (*IndexService) ESCreateIndexExecute

func (a *IndexService) ESCreateIndexExecute(r IndexESCreateIndexRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*IndexService) ESGetMapping

func (a *IndexService) ESGetMapping(ctx context.Context, index string) IndexESGetMappingRequest

ESGetMapping Get index mappings for compatible ES

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param index Index
@return IndexESGetMappingRequest

func (*IndexService) ESGetMappingExecute

func (a *IndexService) ESGetMappingExecute(r IndexESGetMappingRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*IndexService) EsExists

func (a *IndexService) EsExists(ctx context.Context, index string) IndexEsExistsRequest

EsExists Checks if the index exists for compatible ES

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param index Index
@return IndexEsExistsRequest

func (*IndexService) EsExistsExecute

Execute executes the request

@return MetaHTTPResponse

func (*IndexService) Exists

func (a *IndexService) Exists(ctx context.Context, index string) IndexExistsRequest

Exists Checks if the index exists

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param index Index
@return IndexExistsRequest

func (*IndexService) ExistsExecute

Execute executes the request

@return MetaHTTPResponse

func (*IndexService) GetESAliases

func (a *IndexService) GetESAliases(ctx context.Context, target string, targetAlias string) IndexGetESAliasesRequest

GetESAliases Get index alias for compatible ES

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param target Target Index
@param targetAlias Target Alias
@return IndexGetESAliasesRequest

func (*IndexService) GetESAliasesExecute

func (a *IndexService) GetESAliasesExecute(r IndexGetESAliasesRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*IndexService) GetIndex

func (a *IndexService) GetIndex(ctx context.Context, index string) IndexGetIndexRequest

GetIndex Get index metadata

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param index Index
@return IndexGetIndexRequest

func (*IndexService) GetIndexExecute

func (a *IndexService) GetIndexExecute(r IndexGetIndexRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*IndexService) GetMapping

func (a *IndexService) GetMapping(ctx context.Context, index string) IndexGetMappingRequest

GetMapping Get index mappings

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param index Index
@return IndexGetMappingRequest

func (*IndexService) GetMappingExecute

func (a *IndexService) GetMappingExecute(r IndexGetMappingRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*IndexService) GetSettings

func (a *IndexService) GetSettings(ctx context.Context, index string) IndexGetSettingsRequest

GetSettings Get index settings

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param index Index
@return IndexGetSettingsRequest

func (*IndexService) GetSettingsExecute

func (a *IndexService) GetSettingsExecute(r IndexGetSettingsRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*IndexService) GetTemplate

func (a *IndexService) GetTemplate(ctx context.Context, name string) IndexGetTemplateRequest

GetTemplate Get index template

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param name Template
@return IndexGetTemplateRequest

func (*IndexService) GetTemplateExecute

Execute executes the request

@return MetaIndexTemplate

func (*IndexService) IndexNameList

func (a *IndexService) IndexNameList(ctx context.Context) IndexIndexNameListRequest

IndexNameList List index Name

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return IndexIndexNameListRequest

func (*IndexService) IndexNameListExecute

func (a *IndexService) IndexNameListExecute(r IndexIndexNameListRequest) ([]string, *http.Response, error)

Execute executes the request

@return []string

func (*IndexService) List

List List indexes

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return IndexListRequest

func (*IndexService) ListExecute

Execute executes the request

@return IndexIndexListResponse

func (*IndexService) ListTemplates

func (a *IndexService) ListTemplates(ctx context.Context) IndexListTemplatesRequest

ListTemplates List index teplates

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return IndexListTemplatesRequest

func (*IndexService) ListTemplatesExecute

func (a *IndexService) ListTemplatesExecute(r IndexListTemplatesRequest) ([]MetaTemplate, *http.Response, error)

Execute executes the request

@return []MetaTemplate

func (*IndexService) Refresh

func (a *IndexService) Refresh(ctx context.Context, index string) IndexRefreshRequest

Refresh Resfresh index

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param index Index
@return IndexRefreshRequest

func (*IndexService) RefreshExecute

Execute executes the request

@return MetaHTTPResponse

func (*IndexService) SetMapping

func (a *IndexService) SetMapping(ctx context.Context, index string) IndexSetMappingRequest

SetMapping Set index mappings

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param index Index
@return IndexSetMappingRequest

func (*IndexService) SetMappingExecute

Execute executes the request

@return MetaHTTPResponse

func (*IndexService) SetSettings

func (a *IndexService) SetSettings(ctx context.Context, index string) IndexSetSettingsRequest

SetSettings Set index Settings

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param index Index
@return IndexSetSettingsRequest

func (*IndexService) SetSettingsExecute

Execute executes the request

@return MetaHTTPResponse

func (*IndexService) UpdateTemplate

func (a *IndexService) UpdateTemplate(ctx context.Context, name string) IndexUpdateTemplateRequest

UpdateTemplate Create update index template

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param name Template
@return IndexUpdateTemplateRequest

func (*IndexService) UpdateTemplateExecute

Execute executes the request

@return MetaHTTPResponseTemplate

type IndexSetMappingRequest

type IndexSetMappingRequest struct {
	ApiService Index
	// contains filtered or unexported fields
}

func (IndexSetMappingRequest) Execute

func (IndexSetMappingRequest) Mapping

Mapping

type IndexSetSettingsRequest

type IndexSetSettingsRequest struct {
	ApiService Index
	// contains filtered or unexported fields
}

func (IndexSetSettingsRequest) Execute

func (IndexSetSettingsRequest) Settings

Settings

type IndexUpdateTemplateRequest

type IndexUpdateTemplateRequest struct {
	ApiService Index
	// contains filtered or unexported fields
}

func (IndexUpdateTemplateRequest) Execute

func (IndexUpdateTemplateRequest) Template

Template data

type MetaAggregationAutoDateHistogram

type MetaAggregationAutoDateHistogram struct {
	Buckets *int32  `json:"buckets,omitempty"`
	Field   *string `json:"field,omitempty"`
	// format key_as_string
	Format *string `json:"format,omitempty"`
	Keyed  *bool   `json:"keyed,omitempty"`
	// minute,hour,day,week,month,quarter,year
	MinimumInterval *string `json:"minimum_interval,omitempty"`
	// time_zone
	TimeZone *string `json:"time_zone,omitempty"`
}

MetaAggregationAutoDateHistogram struct for MetaAggregationAutoDateHistogram

func NewMetaAggregationAutoDateHistogram

func NewMetaAggregationAutoDateHistogram() *MetaAggregationAutoDateHistogram

NewMetaAggregationAutoDateHistogram instantiates a new MetaAggregationAutoDateHistogram object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaAggregationAutoDateHistogramWithDefaults

func NewMetaAggregationAutoDateHistogramWithDefaults() *MetaAggregationAutoDateHistogram

NewMetaAggregationAutoDateHistogramWithDefaults instantiates a new MetaAggregationAutoDateHistogram object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaAggregationAutoDateHistogram) GetBuckets

func (o *MetaAggregationAutoDateHistogram) GetBuckets() int32

GetBuckets returns the Buckets field value if set, zero value otherwise.

func (*MetaAggregationAutoDateHistogram) GetBucketsOk

func (o *MetaAggregationAutoDateHistogram) GetBucketsOk() (*int32, bool)

GetBucketsOk returns a tuple with the Buckets field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregationAutoDateHistogram) GetField

GetField returns the Field field value if set, zero value otherwise.

func (*MetaAggregationAutoDateHistogram) GetFieldOk

func (o *MetaAggregationAutoDateHistogram) GetFieldOk() (*string, bool)

GetFieldOk returns a tuple with the Field field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregationAutoDateHistogram) GetFormat

GetFormat returns the Format field value if set, zero value otherwise.

func (*MetaAggregationAutoDateHistogram) GetFormatOk

func (o *MetaAggregationAutoDateHistogram) GetFormatOk() (*string, bool)

GetFormatOk returns a tuple with the Format field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregationAutoDateHistogram) GetKeyed

func (o *MetaAggregationAutoDateHistogram) GetKeyed() bool

GetKeyed returns the Keyed field value if set, zero value otherwise.

func (*MetaAggregationAutoDateHistogram) GetKeyedOk

func (o *MetaAggregationAutoDateHistogram) GetKeyedOk() (*bool, bool)

GetKeyedOk returns a tuple with the Keyed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregationAutoDateHistogram) GetMinimumInterval

func (o *MetaAggregationAutoDateHistogram) GetMinimumInterval() string

GetMinimumInterval returns the MinimumInterval field value if set, zero value otherwise.

func (*MetaAggregationAutoDateHistogram) GetMinimumIntervalOk

func (o *MetaAggregationAutoDateHistogram) GetMinimumIntervalOk() (*string, bool)

GetMinimumIntervalOk returns a tuple with the MinimumInterval field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregationAutoDateHistogram) GetTimeZone

func (o *MetaAggregationAutoDateHistogram) GetTimeZone() string

GetTimeZone returns the TimeZone field value if set, zero value otherwise.

func (*MetaAggregationAutoDateHistogram) GetTimeZoneOk

func (o *MetaAggregationAutoDateHistogram) GetTimeZoneOk() (*string, bool)

GetTimeZoneOk returns a tuple with the TimeZone field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregationAutoDateHistogram) HasBuckets

func (o *MetaAggregationAutoDateHistogram) HasBuckets() bool

HasBuckets returns a boolean if a field has been set.

func (*MetaAggregationAutoDateHistogram) HasField

func (o *MetaAggregationAutoDateHistogram) HasField() bool

HasField returns a boolean if a field has been set.

func (*MetaAggregationAutoDateHistogram) HasFormat

func (o *MetaAggregationAutoDateHistogram) HasFormat() bool

HasFormat returns a boolean if a field has been set.

func (*MetaAggregationAutoDateHistogram) HasKeyed

func (o *MetaAggregationAutoDateHistogram) HasKeyed() bool

HasKeyed returns a boolean if a field has been set.

func (*MetaAggregationAutoDateHistogram) HasMinimumInterval

func (o *MetaAggregationAutoDateHistogram) HasMinimumInterval() bool

HasMinimumInterval returns a boolean if a field has been set.

func (*MetaAggregationAutoDateHistogram) HasTimeZone

func (o *MetaAggregationAutoDateHistogram) HasTimeZone() bool

HasTimeZone returns a boolean if a field has been set.

func (MetaAggregationAutoDateHistogram) MarshalJSON

func (o MetaAggregationAutoDateHistogram) MarshalJSON() ([]byte, error)

func (*MetaAggregationAutoDateHistogram) SetBuckets

func (o *MetaAggregationAutoDateHistogram) SetBuckets(v int32)

SetBuckets gets a reference to the given int32 and assigns it to the Buckets field.

func (*MetaAggregationAutoDateHistogram) SetField

SetField gets a reference to the given string and assigns it to the Field field.

func (*MetaAggregationAutoDateHistogram) SetFormat

func (o *MetaAggregationAutoDateHistogram) SetFormat(v string)

SetFormat gets a reference to the given string and assigns it to the Format field.

func (*MetaAggregationAutoDateHistogram) SetKeyed

func (o *MetaAggregationAutoDateHistogram) SetKeyed(v bool)

SetKeyed gets a reference to the given bool and assigns it to the Keyed field.

func (*MetaAggregationAutoDateHistogram) SetMinimumInterval

func (o *MetaAggregationAutoDateHistogram) SetMinimumInterval(v string)

SetMinimumInterval gets a reference to the given string and assigns it to the MinimumInterval field.

func (*MetaAggregationAutoDateHistogram) SetTimeZone

func (o *MetaAggregationAutoDateHistogram) SetTimeZone(v string)

SetTimeZone gets a reference to the given string and assigns it to the TimeZone field.

type MetaAggregationDateHistogram

type MetaAggregationDateHistogram struct {
	// minute,hour,day,week,month,quarter,year
	CalendarInterval *string                    `json:"calendar_interval,omitempty"`
	ExtendedBounds   *AggregationHistogramBound `json:"extended_bounds,omitempty"`
	Field            *string                    `json:"field,omitempty"`
	// ms,s,m,h,d
	FixedInterval *string `json:"fixed_interval,omitempty"`
	// format key_as_string
	Format     *string                    `json:"format,omitempty"`
	HardBounds *AggregationHistogramBound `json:"hard_bounds,omitempty"`
	// ms,s,m,h,d
	Interval    *string `json:"interval,omitempty"`
	Keyed       *bool   `json:"keyed,omitempty"`
	MinDocCount *int32  `json:"min_doc_count,omitempty"`
	Size        *int32  `json:"size,omitempty"`
	// time_zone
	TimeZone *string `json:"time_zone,omitempty"`
}

MetaAggregationDateHistogram struct for MetaAggregationDateHistogram

func NewMetaAggregationDateHistogram

func NewMetaAggregationDateHistogram() *MetaAggregationDateHistogram

NewMetaAggregationDateHistogram instantiates a new MetaAggregationDateHistogram object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaAggregationDateHistogramWithDefaults

func NewMetaAggregationDateHistogramWithDefaults() *MetaAggregationDateHistogram

NewMetaAggregationDateHistogramWithDefaults instantiates a new MetaAggregationDateHistogram object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaAggregationDateHistogram) GetCalendarInterval

func (o *MetaAggregationDateHistogram) GetCalendarInterval() string

GetCalendarInterval returns the CalendarInterval field value if set, zero value otherwise.

func (*MetaAggregationDateHistogram) GetCalendarIntervalOk

func (o *MetaAggregationDateHistogram) GetCalendarIntervalOk() (*string, bool)

GetCalendarIntervalOk returns a tuple with the CalendarInterval field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregationDateHistogram) GetExtendedBounds

GetExtendedBounds returns the ExtendedBounds field value if set, zero value otherwise.

func (*MetaAggregationDateHistogram) GetExtendedBoundsOk

func (o *MetaAggregationDateHistogram) GetExtendedBoundsOk() (*AggregationHistogramBound, bool)

GetExtendedBoundsOk returns a tuple with the ExtendedBounds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregationDateHistogram) GetField

func (o *MetaAggregationDateHistogram) GetField() string

GetField returns the Field field value if set, zero value otherwise.

func (*MetaAggregationDateHistogram) GetFieldOk

func (o *MetaAggregationDateHistogram) GetFieldOk() (*string, bool)

GetFieldOk returns a tuple with the Field field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregationDateHistogram) GetFixedInterval

func (o *MetaAggregationDateHistogram) GetFixedInterval() string

GetFixedInterval returns the FixedInterval field value if set, zero value otherwise.

func (*MetaAggregationDateHistogram) GetFixedIntervalOk

func (o *MetaAggregationDateHistogram) GetFixedIntervalOk() (*string, bool)

GetFixedIntervalOk returns a tuple with the FixedInterval field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregationDateHistogram) GetFormat

func (o *MetaAggregationDateHistogram) GetFormat() string

GetFormat returns the Format field value if set, zero value otherwise.

func (*MetaAggregationDateHistogram) GetFormatOk

func (o *MetaAggregationDateHistogram) GetFormatOk() (*string, bool)

GetFormatOk returns a tuple with the Format field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregationDateHistogram) GetHardBounds

GetHardBounds returns the HardBounds field value if set, zero value otherwise.

func (*MetaAggregationDateHistogram) GetHardBoundsOk

GetHardBoundsOk returns a tuple with the HardBounds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregationDateHistogram) GetInterval

func (o *MetaAggregationDateHistogram) GetInterval() string

GetInterval returns the Interval field value if set, zero value otherwise.

func (*MetaAggregationDateHistogram) GetIntervalOk

func (o *MetaAggregationDateHistogram) GetIntervalOk() (*string, bool)

GetIntervalOk returns a tuple with the Interval field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregationDateHistogram) GetKeyed

func (o *MetaAggregationDateHistogram) GetKeyed() bool

GetKeyed returns the Keyed field value if set, zero value otherwise.

func (*MetaAggregationDateHistogram) GetKeyedOk

func (o *MetaAggregationDateHistogram) GetKeyedOk() (*bool, bool)

GetKeyedOk returns a tuple with the Keyed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregationDateHistogram) GetMinDocCount

func (o *MetaAggregationDateHistogram) GetMinDocCount() int32

GetMinDocCount returns the MinDocCount field value if set, zero value otherwise.

func (*MetaAggregationDateHistogram) GetMinDocCountOk

func (o *MetaAggregationDateHistogram) GetMinDocCountOk() (*int32, bool)

GetMinDocCountOk returns a tuple with the MinDocCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregationDateHistogram) GetSize

func (o *MetaAggregationDateHistogram) GetSize() int32

GetSize returns the Size field value if set, zero value otherwise.

func (*MetaAggregationDateHistogram) GetSizeOk

func (o *MetaAggregationDateHistogram) GetSizeOk() (*int32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregationDateHistogram) GetTimeZone

func (o *MetaAggregationDateHistogram) GetTimeZone() string

GetTimeZone returns the TimeZone field value if set, zero value otherwise.

func (*MetaAggregationDateHistogram) GetTimeZoneOk

func (o *MetaAggregationDateHistogram) GetTimeZoneOk() (*string, bool)

GetTimeZoneOk returns a tuple with the TimeZone field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregationDateHistogram) HasCalendarInterval

func (o *MetaAggregationDateHistogram) HasCalendarInterval() bool

HasCalendarInterval returns a boolean if a field has been set.

func (*MetaAggregationDateHistogram) HasExtendedBounds

func (o *MetaAggregationDateHistogram) HasExtendedBounds() bool

HasExtendedBounds returns a boolean if a field has been set.

func (*MetaAggregationDateHistogram) HasField

func (o *MetaAggregationDateHistogram) HasField() bool

HasField returns a boolean if a field has been set.

func (*MetaAggregationDateHistogram) HasFixedInterval

func (o *MetaAggregationDateHistogram) HasFixedInterval() bool

HasFixedInterval returns a boolean if a field has been set.

func (*MetaAggregationDateHistogram) HasFormat

func (o *MetaAggregationDateHistogram) HasFormat() bool

HasFormat returns a boolean if a field has been set.

func (*MetaAggregationDateHistogram) HasHardBounds

func (o *MetaAggregationDateHistogram) HasHardBounds() bool

HasHardBounds returns a boolean if a field has been set.

func (*MetaAggregationDateHistogram) HasInterval

func (o *MetaAggregationDateHistogram) HasInterval() bool

HasInterval returns a boolean if a field has been set.

func (*MetaAggregationDateHistogram) HasKeyed

func (o *MetaAggregationDateHistogram) HasKeyed() bool

HasKeyed returns a boolean if a field has been set.

func (*MetaAggregationDateHistogram) HasMinDocCount

func (o *MetaAggregationDateHistogram) HasMinDocCount() bool

HasMinDocCount returns a boolean if a field has been set.

func (*MetaAggregationDateHistogram) HasSize

func (o *MetaAggregationDateHistogram) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*MetaAggregationDateHistogram) HasTimeZone

func (o *MetaAggregationDateHistogram) HasTimeZone() bool

HasTimeZone returns a boolean if a field has been set.

func (MetaAggregationDateHistogram) MarshalJSON

func (o MetaAggregationDateHistogram) MarshalJSON() ([]byte, error)

func (*MetaAggregationDateHistogram) SetCalendarInterval

func (o *MetaAggregationDateHistogram) SetCalendarInterval(v string)

SetCalendarInterval gets a reference to the given string and assigns it to the CalendarInterval field.

func (*MetaAggregationDateHistogram) SetExtendedBounds

SetExtendedBounds gets a reference to the given AggregationHistogramBound and assigns it to the ExtendedBounds field.

func (*MetaAggregationDateHistogram) SetField

func (o *MetaAggregationDateHistogram) SetField(v string)

SetField gets a reference to the given string and assigns it to the Field field.

func (*MetaAggregationDateHistogram) SetFixedInterval

func (o *MetaAggregationDateHistogram) SetFixedInterval(v string)

SetFixedInterval gets a reference to the given string and assigns it to the FixedInterval field.

func (*MetaAggregationDateHistogram) SetFormat

func (o *MetaAggregationDateHistogram) SetFormat(v string)

SetFormat gets a reference to the given string and assigns it to the Format field.

func (*MetaAggregationDateHistogram) SetHardBounds

SetHardBounds gets a reference to the given AggregationHistogramBound and assigns it to the HardBounds field.

func (*MetaAggregationDateHistogram) SetInterval

func (o *MetaAggregationDateHistogram) SetInterval(v string)

SetInterval gets a reference to the given string and assigns it to the Interval field.

func (*MetaAggregationDateHistogram) SetKeyed

func (o *MetaAggregationDateHistogram) SetKeyed(v bool)

SetKeyed gets a reference to the given bool and assigns it to the Keyed field.

func (*MetaAggregationDateHistogram) SetMinDocCount

func (o *MetaAggregationDateHistogram) SetMinDocCount(v int32)

SetMinDocCount gets a reference to the given int32 and assigns it to the MinDocCount field.

func (*MetaAggregationDateHistogram) SetSize

func (o *MetaAggregationDateHistogram) SetSize(v int32)

SetSize gets a reference to the given int32 and assigns it to the Size field.

func (*MetaAggregationDateHistogram) SetTimeZone

func (o *MetaAggregationDateHistogram) SetTimeZone(v string)

SetTimeZone gets a reference to the given string and assigns it to the TimeZone field.

type MetaAggregationDateRange

type MetaAggregationDateRange struct {
	Field *string `json:"field,omitempty"`
	// format the `to` and `from` values to `_as_string`, and used to format `keyed response`
	Format *string `json:"format,omitempty"`
	Keyed  *bool   `json:"keyed,omitempty"`
	// refer
	Ranges []MetaDateRange `json:"ranges,omitempty"`
	// refer
	TimeZone *string `json:"time_zone,omitempty"`
}

MetaAggregationDateRange struct for MetaAggregationDateRange

func NewMetaAggregationDateRange

func NewMetaAggregationDateRange() *MetaAggregationDateRange

NewMetaAggregationDateRange instantiates a new MetaAggregationDateRange object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaAggregationDateRangeWithDefaults

func NewMetaAggregationDateRangeWithDefaults() *MetaAggregationDateRange

NewMetaAggregationDateRangeWithDefaults instantiates a new MetaAggregationDateRange object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaAggregationDateRange) GetField

func (o *MetaAggregationDateRange) GetField() string

GetField returns the Field field value if set, zero value otherwise.

func (*MetaAggregationDateRange) GetFieldOk

func (o *MetaAggregationDateRange) GetFieldOk() (*string, bool)

GetFieldOk returns a tuple with the Field field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregationDateRange) GetFormat

func (o *MetaAggregationDateRange) GetFormat() string

GetFormat returns the Format field value if set, zero value otherwise.

func (*MetaAggregationDateRange) GetFormatOk

func (o *MetaAggregationDateRange) GetFormatOk() (*string, bool)

GetFormatOk returns a tuple with the Format field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregationDateRange) GetKeyed

func (o *MetaAggregationDateRange) GetKeyed() bool

GetKeyed returns the Keyed field value if set, zero value otherwise.

func (*MetaAggregationDateRange) GetKeyedOk

func (o *MetaAggregationDateRange) GetKeyedOk() (*bool, bool)

GetKeyedOk returns a tuple with the Keyed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregationDateRange) GetRanges

func (o *MetaAggregationDateRange) GetRanges() []MetaDateRange

GetRanges returns the Ranges field value if set, zero value otherwise.

func (*MetaAggregationDateRange) GetRangesOk

func (o *MetaAggregationDateRange) GetRangesOk() ([]MetaDateRange, bool)

GetRangesOk returns a tuple with the Ranges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregationDateRange) GetTimeZone

func (o *MetaAggregationDateRange) GetTimeZone() string

GetTimeZone returns the TimeZone field value if set, zero value otherwise.

func (*MetaAggregationDateRange) GetTimeZoneOk

func (o *MetaAggregationDateRange) GetTimeZoneOk() (*string, bool)

GetTimeZoneOk returns a tuple with the TimeZone field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregationDateRange) HasField

func (o *MetaAggregationDateRange) HasField() bool

HasField returns a boolean if a field has been set.

func (*MetaAggregationDateRange) HasFormat

func (o *MetaAggregationDateRange) HasFormat() bool

HasFormat returns a boolean if a field has been set.

func (*MetaAggregationDateRange) HasKeyed

func (o *MetaAggregationDateRange) HasKeyed() bool

HasKeyed returns a boolean if a field has been set.

func (*MetaAggregationDateRange) HasRanges

func (o *MetaAggregationDateRange) HasRanges() bool

HasRanges returns a boolean if a field has been set.

func (*MetaAggregationDateRange) HasTimeZone

func (o *MetaAggregationDateRange) HasTimeZone() bool

HasTimeZone returns a boolean if a field has been set.

func (MetaAggregationDateRange) MarshalJSON

func (o MetaAggregationDateRange) MarshalJSON() ([]byte, error)

func (*MetaAggregationDateRange) SetField

func (o *MetaAggregationDateRange) SetField(v string)

SetField gets a reference to the given string and assigns it to the Field field.

func (*MetaAggregationDateRange) SetFormat

func (o *MetaAggregationDateRange) SetFormat(v string)

SetFormat gets a reference to the given string and assigns it to the Format field.

func (*MetaAggregationDateRange) SetKeyed

func (o *MetaAggregationDateRange) SetKeyed(v bool)

SetKeyed gets a reference to the given bool and assigns it to the Keyed field.

func (*MetaAggregationDateRange) SetRanges

func (o *MetaAggregationDateRange) SetRanges(v []MetaDateRange)

SetRanges gets a reference to the given []MetaDateRange and assigns it to the Ranges field.

func (*MetaAggregationDateRange) SetTimeZone

func (o *MetaAggregationDateRange) SetTimeZone(v string)

SetTimeZone gets a reference to the given string and assigns it to the TimeZone field.

type MetaAggregationHistogram

type MetaAggregationHistogram struct {
	ExtendedBounds *AggregationHistogramBound `json:"extended_bounds,omitempty"`
	Field          *string                    `json:"field,omitempty"`
	HardBounds     *AggregationHistogramBound `json:"hard_bounds,omitempty"`
	Interval       *float32                   `json:"interval,omitempty"`
	Keyed          *bool                      `json:"keyed,omitempty"`
	MinDocCount    *int32                     `json:"min_doc_count,omitempty"`
	Offset         *float32                   `json:"offset,omitempty"`
	Size           *int32                     `json:"size,omitempty"`
}

MetaAggregationHistogram struct for MetaAggregationHistogram

func NewMetaAggregationHistogram

func NewMetaAggregationHistogram() *MetaAggregationHistogram

NewMetaAggregationHistogram instantiates a new MetaAggregationHistogram object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaAggregationHistogramWithDefaults

func NewMetaAggregationHistogramWithDefaults() *MetaAggregationHistogram

NewMetaAggregationHistogramWithDefaults instantiates a new MetaAggregationHistogram object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaAggregationHistogram) GetExtendedBounds

func (o *MetaAggregationHistogram) GetExtendedBounds() AggregationHistogramBound

GetExtendedBounds returns the ExtendedBounds field value if set, zero value otherwise.

func (*MetaAggregationHistogram) GetExtendedBoundsOk

func (o *MetaAggregationHistogram) GetExtendedBoundsOk() (*AggregationHistogramBound, bool)

GetExtendedBoundsOk returns a tuple with the ExtendedBounds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregationHistogram) GetField

func (o *MetaAggregationHistogram) GetField() string

GetField returns the Field field value if set, zero value otherwise.

func (*MetaAggregationHistogram) GetFieldOk

func (o *MetaAggregationHistogram) GetFieldOk() (*string, bool)

GetFieldOk returns a tuple with the Field field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregationHistogram) GetHardBounds

GetHardBounds returns the HardBounds field value if set, zero value otherwise.

func (*MetaAggregationHistogram) GetHardBoundsOk

func (o *MetaAggregationHistogram) GetHardBoundsOk() (*AggregationHistogramBound, bool)

GetHardBoundsOk returns a tuple with the HardBounds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregationHistogram) GetInterval

func (o *MetaAggregationHistogram) GetInterval() float32

GetInterval returns the Interval field value if set, zero value otherwise.

func (*MetaAggregationHistogram) GetIntervalOk

func (o *MetaAggregationHistogram) GetIntervalOk() (*float32, bool)

GetIntervalOk returns a tuple with the Interval field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregationHistogram) GetKeyed

func (o *MetaAggregationHistogram) GetKeyed() bool

GetKeyed returns the Keyed field value if set, zero value otherwise.

func (*MetaAggregationHistogram) GetKeyedOk

func (o *MetaAggregationHistogram) GetKeyedOk() (*bool, bool)

GetKeyedOk returns a tuple with the Keyed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregationHistogram) GetMinDocCount

func (o *MetaAggregationHistogram) GetMinDocCount() int32

GetMinDocCount returns the MinDocCount field value if set, zero value otherwise.

func (*MetaAggregationHistogram) GetMinDocCountOk

func (o *MetaAggregationHistogram) GetMinDocCountOk() (*int32, bool)

GetMinDocCountOk returns a tuple with the MinDocCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregationHistogram) GetOffset

func (o *MetaAggregationHistogram) GetOffset() float32

GetOffset returns the Offset field value if set, zero value otherwise.

func (*MetaAggregationHistogram) GetOffsetOk

func (o *MetaAggregationHistogram) GetOffsetOk() (*float32, bool)

GetOffsetOk returns a tuple with the Offset field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregationHistogram) GetSize

func (o *MetaAggregationHistogram) GetSize() int32

GetSize returns the Size field value if set, zero value otherwise.

func (*MetaAggregationHistogram) GetSizeOk

func (o *MetaAggregationHistogram) GetSizeOk() (*int32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregationHistogram) HasExtendedBounds

func (o *MetaAggregationHistogram) HasExtendedBounds() bool

HasExtendedBounds returns a boolean if a field has been set.

func (*MetaAggregationHistogram) HasField

func (o *MetaAggregationHistogram) HasField() bool

HasField returns a boolean if a field has been set.

func (*MetaAggregationHistogram) HasHardBounds

func (o *MetaAggregationHistogram) HasHardBounds() bool

HasHardBounds returns a boolean if a field has been set.

func (*MetaAggregationHistogram) HasInterval

func (o *MetaAggregationHistogram) HasInterval() bool

HasInterval returns a boolean if a field has been set.

func (*MetaAggregationHistogram) HasKeyed

func (o *MetaAggregationHistogram) HasKeyed() bool

HasKeyed returns a boolean if a field has been set.

func (*MetaAggregationHistogram) HasMinDocCount

func (o *MetaAggregationHistogram) HasMinDocCount() bool

HasMinDocCount returns a boolean if a field has been set.

func (*MetaAggregationHistogram) HasOffset

func (o *MetaAggregationHistogram) HasOffset() bool

HasOffset returns a boolean if a field has been set.

func (*MetaAggregationHistogram) HasSize

func (o *MetaAggregationHistogram) HasSize() bool

HasSize returns a boolean if a field has been set.

func (MetaAggregationHistogram) MarshalJSON

func (o MetaAggregationHistogram) MarshalJSON() ([]byte, error)

func (*MetaAggregationHistogram) SetExtendedBounds

func (o *MetaAggregationHistogram) SetExtendedBounds(v AggregationHistogramBound)

SetExtendedBounds gets a reference to the given AggregationHistogramBound and assigns it to the ExtendedBounds field.

func (*MetaAggregationHistogram) SetField

func (o *MetaAggregationHistogram) SetField(v string)

SetField gets a reference to the given string and assigns it to the Field field.

func (*MetaAggregationHistogram) SetHardBounds

SetHardBounds gets a reference to the given AggregationHistogramBound and assigns it to the HardBounds field.

func (*MetaAggregationHistogram) SetInterval

func (o *MetaAggregationHistogram) SetInterval(v float32)

SetInterval gets a reference to the given float32 and assigns it to the Interval field.

func (*MetaAggregationHistogram) SetKeyed

func (o *MetaAggregationHistogram) SetKeyed(v bool)

SetKeyed gets a reference to the given bool and assigns it to the Keyed field.

func (*MetaAggregationHistogram) SetMinDocCount

func (o *MetaAggregationHistogram) SetMinDocCount(v int32)

SetMinDocCount gets a reference to the given int32 and assigns it to the MinDocCount field.

func (*MetaAggregationHistogram) SetOffset

func (o *MetaAggregationHistogram) SetOffset(v float32)

SetOffset gets a reference to the given float32 and assigns it to the Offset field.

func (*MetaAggregationHistogram) SetSize

func (o *MetaAggregationHistogram) SetSize(v int32)

SetSize gets a reference to the given int32 and assigns it to the Size field.

type MetaAggregationIPRange

type MetaAggregationIPRange struct {
	Field  *string       `json:"field,omitempty"`
	Keyed  *bool         `json:"keyed,omitempty"`
	Ranges []MetaIPRange `json:"ranges,omitempty"`
}

MetaAggregationIPRange struct for MetaAggregationIPRange

func NewMetaAggregationIPRange

func NewMetaAggregationIPRange() *MetaAggregationIPRange

NewMetaAggregationIPRange instantiates a new MetaAggregationIPRange object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaAggregationIPRangeWithDefaults

func NewMetaAggregationIPRangeWithDefaults() *MetaAggregationIPRange

NewMetaAggregationIPRangeWithDefaults instantiates a new MetaAggregationIPRange object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaAggregationIPRange) GetField

func (o *MetaAggregationIPRange) GetField() string

GetField returns the Field field value if set, zero value otherwise.

func (*MetaAggregationIPRange) GetFieldOk

func (o *MetaAggregationIPRange) GetFieldOk() (*string, bool)

GetFieldOk returns a tuple with the Field field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregationIPRange) GetKeyed

func (o *MetaAggregationIPRange) GetKeyed() bool

GetKeyed returns the Keyed field value if set, zero value otherwise.

func (*MetaAggregationIPRange) GetKeyedOk

func (o *MetaAggregationIPRange) GetKeyedOk() (*bool, bool)

GetKeyedOk returns a tuple with the Keyed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregationIPRange) GetRanges

func (o *MetaAggregationIPRange) GetRanges() []MetaIPRange

GetRanges returns the Ranges field value if set, zero value otherwise.

func (*MetaAggregationIPRange) GetRangesOk

func (o *MetaAggregationIPRange) GetRangesOk() ([]MetaIPRange, bool)

GetRangesOk returns a tuple with the Ranges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregationIPRange) HasField

func (o *MetaAggregationIPRange) HasField() bool

HasField returns a boolean if a field has been set.

func (*MetaAggregationIPRange) HasKeyed

func (o *MetaAggregationIPRange) HasKeyed() bool

HasKeyed returns a boolean if a field has been set.

func (*MetaAggregationIPRange) HasRanges

func (o *MetaAggregationIPRange) HasRanges() bool

HasRanges returns a boolean if a field has been set.

func (MetaAggregationIPRange) MarshalJSON

func (o MetaAggregationIPRange) MarshalJSON() ([]byte, error)

func (*MetaAggregationIPRange) SetField

func (o *MetaAggregationIPRange) SetField(v string)

SetField gets a reference to the given string and assigns it to the Field field.

func (*MetaAggregationIPRange) SetKeyed

func (o *MetaAggregationIPRange) SetKeyed(v bool)

SetKeyed gets a reference to the given bool and assigns it to the Keyed field.

func (*MetaAggregationIPRange) SetRanges

func (o *MetaAggregationIPRange) SetRanges(v []MetaIPRange)

SetRanges gets a reference to the given []MetaIPRange and assigns it to the Ranges field.

type MetaAggregationMetric

type MetaAggregationMetric struct {
	Field *string `json:"field,omitempty"`
	// Field name to be used for setting weight for primary field for weighted average aggregation
	WeightField *string `json:"weight_field,omitempty"`
}

MetaAggregationMetric struct for MetaAggregationMetric

func NewMetaAggregationMetric

func NewMetaAggregationMetric() *MetaAggregationMetric

NewMetaAggregationMetric instantiates a new MetaAggregationMetric object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaAggregationMetricWithDefaults

func NewMetaAggregationMetricWithDefaults() *MetaAggregationMetric

NewMetaAggregationMetricWithDefaults instantiates a new MetaAggregationMetric object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaAggregationMetric) GetField

func (o *MetaAggregationMetric) GetField() string

GetField returns the Field field value if set, zero value otherwise.

func (*MetaAggregationMetric) GetFieldOk

func (o *MetaAggregationMetric) GetFieldOk() (*string, bool)

GetFieldOk returns a tuple with the Field field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregationMetric) GetWeightField

func (o *MetaAggregationMetric) GetWeightField() string

GetWeightField returns the WeightField field value if set, zero value otherwise.

func (*MetaAggregationMetric) GetWeightFieldOk

func (o *MetaAggregationMetric) GetWeightFieldOk() (*string, bool)

GetWeightFieldOk returns a tuple with the WeightField field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregationMetric) HasField

func (o *MetaAggregationMetric) HasField() bool

HasField returns a boolean if a field has been set.

func (*MetaAggregationMetric) HasWeightField

func (o *MetaAggregationMetric) HasWeightField() bool

HasWeightField returns a boolean if a field has been set.

func (MetaAggregationMetric) MarshalJSON

func (o MetaAggregationMetric) MarshalJSON() ([]byte, error)

func (*MetaAggregationMetric) SetField

func (o *MetaAggregationMetric) SetField(v string)

SetField gets a reference to the given string and assigns it to the Field field.

func (*MetaAggregationMetric) SetWeightField

func (o *MetaAggregationMetric) SetWeightField(v string)

SetWeightField gets a reference to the given string and assigns it to the WeightField field.

type MetaAggregationRange

type MetaAggregationRange struct {
	Field  *string     `json:"field,omitempty"`
	Keyed  *bool       `json:"keyed,omitempty"`
	Ranges []MetaRange `json:"ranges,omitempty"`
}

MetaAggregationRange struct for MetaAggregationRange

func NewMetaAggregationRange

func NewMetaAggregationRange() *MetaAggregationRange

NewMetaAggregationRange instantiates a new MetaAggregationRange object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaAggregationRangeWithDefaults

func NewMetaAggregationRangeWithDefaults() *MetaAggregationRange

NewMetaAggregationRangeWithDefaults instantiates a new MetaAggregationRange object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaAggregationRange) GetField

func (o *MetaAggregationRange) GetField() string

GetField returns the Field field value if set, zero value otherwise.

func (*MetaAggregationRange) GetFieldOk

func (o *MetaAggregationRange) GetFieldOk() (*string, bool)

GetFieldOk returns a tuple with the Field field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregationRange) GetKeyed

func (o *MetaAggregationRange) GetKeyed() bool

GetKeyed returns the Keyed field value if set, zero value otherwise.

func (*MetaAggregationRange) GetKeyedOk

func (o *MetaAggregationRange) GetKeyedOk() (*bool, bool)

GetKeyedOk returns a tuple with the Keyed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregationRange) GetRanges

func (o *MetaAggregationRange) GetRanges() []MetaRange

GetRanges returns the Ranges field value if set, zero value otherwise.

func (*MetaAggregationRange) GetRangesOk

func (o *MetaAggregationRange) GetRangesOk() ([]MetaRange, bool)

GetRangesOk returns a tuple with the Ranges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregationRange) HasField

func (o *MetaAggregationRange) HasField() bool

HasField returns a boolean if a field has been set.

func (*MetaAggregationRange) HasKeyed

func (o *MetaAggregationRange) HasKeyed() bool

HasKeyed returns a boolean if a field has been set.

func (*MetaAggregationRange) HasRanges

func (o *MetaAggregationRange) HasRanges() bool

HasRanges returns a boolean if a field has been set.

func (MetaAggregationRange) MarshalJSON

func (o MetaAggregationRange) MarshalJSON() ([]byte, error)

func (*MetaAggregationRange) SetField

func (o *MetaAggregationRange) SetField(v string)

SetField gets a reference to the given string and assigns it to the Field field.

func (*MetaAggregationRange) SetKeyed

func (o *MetaAggregationRange) SetKeyed(v bool)

SetKeyed gets a reference to the given bool and assigns it to the Keyed field.

func (*MetaAggregationRange) SetRanges

func (o *MetaAggregationRange) SetRanges(v []MetaRange)

SetRanges gets a reference to the given []MetaRange and assigns it to the Ranges field.

type MetaAggregationResponse

type MetaAggregationResponse struct {
	// slice or map
	Buckets map[string]interface{} `json:"buckets,omitempty"`
	// support for auto_date_histogram_aggregation
	Interval *string                `json:"interval,omitempty"`
	Value    map[string]interface{} `json:"value,omitempty"`
}

MetaAggregationResponse struct for MetaAggregationResponse

func NewMetaAggregationResponse

func NewMetaAggregationResponse() *MetaAggregationResponse

NewMetaAggregationResponse instantiates a new MetaAggregationResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaAggregationResponseWithDefaults

func NewMetaAggregationResponseWithDefaults() *MetaAggregationResponse

NewMetaAggregationResponseWithDefaults instantiates a new MetaAggregationResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaAggregationResponse) GetBuckets

func (o *MetaAggregationResponse) GetBuckets() map[string]interface{}

GetBuckets returns the Buckets field value if set, zero value otherwise.

func (*MetaAggregationResponse) GetBucketsOk

func (o *MetaAggregationResponse) GetBucketsOk() (map[string]interface{}, bool)

GetBucketsOk returns a tuple with the Buckets field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregationResponse) GetInterval

func (o *MetaAggregationResponse) GetInterval() string

GetInterval returns the Interval field value if set, zero value otherwise.

func (*MetaAggregationResponse) GetIntervalOk

func (o *MetaAggregationResponse) GetIntervalOk() (*string, bool)

GetIntervalOk returns a tuple with the Interval field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregationResponse) GetValue

func (o *MetaAggregationResponse) GetValue() map[string]interface{}

GetValue returns the Value field value if set, zero value otherwise.

func (*MetaAggregationResponse) GetValueOk

func (o *MetaAggregationResponse) GetValueOk() (map[string]interface{}, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregationResponse) HasBuckets

func (o *MetaAggregationResponse) HasBuckets() bool

HasBuckets returns a boolean if a field has been set.

func (*MetaAggregationResponse) HasInterval

func (o *MetaAggregationResponse) HasInterval() bool

HasInterval returns a boolean if a field has been set.

func (*MetaAggregationResponse) HasValue

func (o *MetaAggregationResponse) HasValue() bool

HasValue returns a boolean if a field has been set.

func (MetaAggregationResponse) MarshalJSON

func (o MetaAggregationResponse) MarshalJSON() ([]byte, error)

func (*MetaAggregationResponse) SetBuckets

func (o *MetaAggregationResponse) SetBuckets(v map[string]interface{})

SetBuckets gets a reference to the given map[string]interface{} and assigns it to the Buckets field.

func (*MetaAggregationResponse) SetInterval

func (o *MetaAggregationResponse) SetInterval(v string)

SetInterval gets a reference to the given string and assigns it to the Interval field.

func (*MetaAggregationResponse) SetValue

func (o *MetaAggregationResponse) SetValue(v map[string]interface{})

SetValue gets a reference to the given map[string]interface{} and assigns it to the Value field.

type MetaAggregations

type MetaAggregations struct {
	// nested aggregations
	Aggs              *map[string]MetaAggregations      `json:"aggs,omitempty"`
	AutoDateHistogram *MetaAggregationAutoDateHistogram `json:"auto_date_histogram,omitempty"`
	Avg               *MetaAggregationMetric            `json:"avg,omitempty"`
	Cardinality       *MetaAggregationMetric            `json:"cardinality,omitempty"`
	Count             *MetaAggregationMetric            `json:"count,omitempty"`
	DateHistogram     *MetaAggregationDateHistogram     `json:"date_histogram,omitempty"`
	DateRange         *MetaAggregationDateRange         `json:"date_range,omitempty"`
	Histogram         *MetaAggregationHistogram         `json:"histogram,omitempty"`
	IpRange           *MetaAggregationIPRange           `json:"ip_range,omitempty"`
	Max               *MetaAggregationMetric            `json:"max,omitempty"`
	Min               *MetaAggregationMetric            `json:"min,omitempty"`
	Range             *MetaAggregationRange             `json:"range,omitempty"`
	Sum               *MetaAggregationMetric            `json:"sum,omitempty"`
	Terms             *MetaAggregationsTerms            `json:"terms,omitempty"`
	WeightedAvg       *MetaAggregationMetric            `json:"weighted_avg,omitempty"`
}

MetaAggregations struct for MetaAggregations

func NewMetaAggregations

func NewMetaAggregations() *MetaAggregations

NewMetaAggregations instantiates a new MetaAggregations object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaAggregationsWithDefaults

func NewMetaAggregationsWithDefaults() *MetaAggregations

NewMetaAggregationsWithDefaults instantiates a new MetaAggregations object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaAggregations) GetAggs

func (o *MetaAggregations) GetAggs() map[string]MetaAggregations

GetAggs returns the Aggs field value if set, zero value otherwise.

func (*MetaAggregations) GetAggsOk

func (o *MetaAggregations) GetAggsOk() (*map[string]MetaAggregations, bool)

GetAggsOk returns a tuple with the Aggs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregations) GetAutoDateHistogram

func (o *MetaAggregations) GetAutoDateHistogram() MetaAggregationAutoDateHistogram

GetAutoDateHistogram returns the AutoDateHistogram field value if set, zero value otherwise.

func (*MetaAggregations) GetAutoDateHistogramOk

func (o *MetaAggregations) GetAutoDateHistogramOk() (*MetaAggregationAutoDateHistogram, bool)

GetAutoDateHistogramOk returns a tuple with the AutoDateHistogram field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregations) GetAvg

GetAvg returns the Avg field value if set, zero value otherwise.

func (*MetaAggregations) GetAvgOk

func (o *MetaAggregations) GetAvgOk() (*MetaAggregationMetric, bool)

GetAvgOk returns a tuple with the Avg field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregations) GetCardinality

func (o *MetaAggregations) GetCardinality() MetaAggregationMetric

GetCardinality returns the Cardinality field value if set, zero value otherwise.

func (*MetaAggregations) GetCardinalityOk

func (o *MetaAggregations) GetCardinalityOk() (*MetaAggregationMetric, bool)

GetCardinalityOk returns a tuple with the Cardinality field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregations) GetCount

GetCount returns the Count field value if set, zero value otherwise.

func (*MetaAggregations) GetCountOk

func (o *MetaAggregations) GetCountOk() (*MetaAggregationMetric, bool)

GetCountOk returns a tuple with the Count field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregations) GetDateHistogram

func (o *MetaAggregations) GetDateHistogram() MetaAggregationDateHistogram

GetDateHistogram returns the DateHistogram field value if set, zero value otherwise.

func (*MetaAggregations) GetDateHistogramOk

func (o *MetaAggregations) GetDateHistogramOk() (*MetaAggregationDateHistogram, bool)

GetDateHistogramOk returns a tuple with the DateHistogram field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregations) GetDateRange

func (o *MetaAggregations) GetDateRange() MetaAggregationDateRange

GetDateRange returns the DateRange field value if set, zero value otherwise.

func (*MetaAggregations) GetDateRangeOk

func (o *MetaAggregations) GetDateRangeOk() (*MetaAggregationDateRange, bool)

GetDateRangeOk returns a tuple with the DateRange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregations) GetHistogram

func (o *MetaAggregations) GetHistogram() MetaAggregationHistogram

GetHistogram returns the Histogram field value if set, zero value otherwise.

func (*MetaAggregations) GetHistogramOk

func (o *MetaAggregations) GetHistogramOk() (*MetaAggregationHistogram, bool)

GetHistogramOk returns a tuple with the Histogram field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregations) GetIpRange

func (o *MetaAggregations) GetIpRange() MetaAggregationIPRange

GetIpRange returns the IpRange field value if set, zero value otherwise.

func (*MetaAggregations) GetIpRangeOk

func (o *MetaAggregations) GetIpRangeOk() (*MetaAggregationIPRange, bool)

GetIpRangeOk returns a tuple with the IpRange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregations) GetMax

GetMax returns the Max field value if set, zero value otherwise.

func (*MetaAggregations) GetMaxOk

func (o *MetaAggregations) GetMaxOk() (*MetaAggregationMetric, bool)

GetMaxOk returns a tuple with the Max field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregations) GetMin

GetMin returns the Min field value if set, zero value otherwise.

func (*MetaAggregations) GetMinOk

func (o *MetaAggregations) GetMinOk() (*MetaAggregationMetric, bool)

GetMinOk returns a tuple with the Min field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregations) GetRange

func (o *MetaAggregations) GetRange() MetaAggregationRange

GetRange returns the Range field value if set, zero value otherwise.

func (*MetaAggregations) GetRangeOk

func (o *MetaAggregations) GetRangeOk() (*MetaAggregationRange, bool)

GetRangeOk returns a tuple with the Range field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregations) GetSum

GetSum returns the Sum field value if set, zero value otherwise.

func (*MetaAggregations) GetSumOk

func (o *MetaAggregations) GetSumOk() (*MetaAggregationMetric, bool)

GetSumOk returns a tuple with the Sum field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregations) GetTerms

GetTerms returns the Terms field value if set, zero value otherwise.

func (*MetaAggregations) GetTermsOk

func (o *MetaAggregations) GetTermsOk() (*MetaAggregationsTerms, bool)

GetTermsOk returns a tuple with the Terms field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregations) GetWeightedAvg

func (o *MetaAggregations) GetWeightedAvg() MetaAggregationMetric

GetWeightedAvg returns the WeightedAvg field value if set, zero value otherwise.

func (*MetaAggregations) GetWeightedAvgOk

func (o *MetaAggregations) GetWeightedAvgOk() (*MetaAggregationMetric, bool)

GetWeightedAvgOk returns a tuple with the WeightedAvg field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregations) HasAggs

func (o *MetaAggregations) HasAggs() bool

HasAggs returns a boolean if a field has been set.

func (*MetaAggregations) HasAutoDateHistogram

func (o *MetaAggregations) HasAutoDateHistogram() bool

HasAutoDateHistogram returns a boolean if a field has been set.

func (*MetaAggregations) HasAvg

func (o *MetaAggregations) HasAvg() bool

HasAvg returns a boolean if a field has been set.

func (*MetaAggregations) HasCardinality

func (o *MetaAggregations) HasCardinality() bool

HasCardinality returns a boolean if a field has been set.

func (*MetaAggregations) HasCount

func (o *MetaAggregations) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*MetaAggregations) HasDateHistogram

func (o *MetaAggregations) HasDateHistogram() bool

HasDateHistogram returns a boolean if a field has been set.

func (*MetaAggregations) HasDateRange

func (o *MetaAggregations) HasDateRange() bool

HasDateRange returns a boolean if a field has been set.

func (*MetaAggregations) HasHistogram

func (o *MetaAggregations) HasHistogram() bool

HasHistogram returns a boolean if a field has been set.

func (*MetaAggregations) HasIpRange

func (o *MetaAggregations) HasIpRange() bool

HasIpRange returns a boolean if a field has been set.

func (*MetaAggregations) HasMax

func (o *MetaAggregations) HasMax() bool

HasMax returns a boolean if a field has been set.

func (*MetaAggregations) HasMin

func (o *MetaAggregations) HasMin() bool

HasMin returns a boolean if a field has been set.

func (*MetaAggregations) HasRange

func (o *MetaAggregations) HasRange() bool

HasRange returns a boolean if a field has been set.

func (*MetaAggregations) HasSum

func (o *MetaAggregations) HasSum() bool

HasSum returns a boolean if a field has been set.

func (*MetaAggregations) HasTerms

func (o *MetaAggregations) HasTerms() bool

HasTerms returns a boolean if a field has been set.

func (*MetaAggregations) HasWeightedAvg

func (o *MetaAggregations) HasWeightedAvg() bool

HasWeightedAvg returns a boolean if a field has been set.

func (MetaAggregations) MarshalJSON

func (o MetaAggregations) MarshalJSON() ([]byte, error)

func (*MetaAggregations) SetAggs

func (o *MetaAggregations) SetAggs(v map[string]MetaAggregations)

SetAggs gets a reference to the given map[string]MetaAggregations and assigns it to the Aggs field.

func (*MetaAggregations) SetAutoDateHistogram

func (o *MetaAggregations) SetAutoDateHistogram(v MetaAggregationAutoDateHistogram)

SetAutoDateHistogram gets a reference to the given MetaAggregationAutoDateHistogram and assigns it to the AutoDateHistogram field.

func (*MetaAggregations) SetAvg

SetAvg gets a reference to the given MetaAggregationMetric and assigns it to the Avg field.

func (*MetaAggregations) SetCardinality

func (o *MetaAggregations) SetCardinality(v MetaAggregationMetric)

SetCardinality gets a reference to the given MetaAggregationMetric and assigns it to the Cardinality field.

func (*MetaAggregations) SetCount

func (o *MetaAggregations) SetCount(v MetaAggregationMetric)

SetCount gets a reference to the given MetaAggregationMetric and assigns it to the Count field.

func (*MetaAggregations) SetDateHistogram

func (o *MetaAggregations) SetDateHistogram(v MetaAggregationDateHistogram)

SetDateHistogram gets a reference to the given MetaAggregationDateHistogram and assigns it to the DateHistogram field.

func (*MetaAggregations) SetDateRange

func (o *MetaAggregations) SetDateRange(v MetaAggregationDateRange)

SetDateRange gets a reference to the given MetaAggregationDateRange and assigns it to the DateRange field.

func (*MetaAggregations) SetHistogram

func (o *MetaAggregations) SetHistogram(v MetaAggregationHistogram)

SetHistogram gets a reference to the given MetaAggregationHistogram and assigns it to the Histogram field.

func (*MetaAggregations) SetIpRange

func (o *MetaAggregations) SetIpRange(v MetaAggregationIPRange)

SetIpRange gets a reference to the given MetaAggregationIPRange and assigns it to the IpRange field.

func (*MetaAggregations) SetMax

SetMax gets a reference to the given MetaAggregationMetric and assigns it to the Max field.

func (*MetaAggregations) SetMin

SetMin gets a reference to the given MetaAggregationMetric and assigns it to the Min field.

func (*MetaAggregations) SetRange

func (o *MetaAggregations) SetRange(v MetaAggregationRange)

SetRange gets a reference to the given MetaAggregationRange and assigns it to the Range field.

func (*MetaAggregations) SetSum

SetSum gets a reference to the given MetaAggregationMetric and assigns it to the Sum field.

func (*MetaAggregations) SetTerms

func (o *MetaAggregations) SetTerms(v MetaAggregationsTerms)

SetTerms gets a reference to the given MetaAggregationsTerms and assigns it to the Terms field.

func (*MetaAggregations) SetWeightedAvg

func (o *MetaAggregations) SetWeightedAvg(v MetaAggregationMetric)

SetWeightedAvg gets a reference to the given MetaAggregationMetric and assigns it to the WeightedAvg field.

type MetaAggregationsTerms

type MetaAggregationsTerms struct {
	Field *string `json:"field,omitempty"`
	// { \"_count\": \"asc\" }
	Order *map[string]string `json:"order,omitempty"`
	Size  *int32             `json:"size,omitempty"`
}

MetaAggregationsTerms struct for MetaAggregationsTerms

func NewMetaAggregationsTerms

func NewMetaAggregationsTerms() *MetaAggregationsTerms

NewMetaAggregationsTerms instantiates a new MetaAggregationsTerms object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaAggregationsTermsWithDefaults

func NewMetaAggregationsTermsWithDefaults() *MetaAggregationsTerms

NewMetaAggregationsTermsWithDefaults instantiates a new MetaAggregationsTerms object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaAggregationsTerms) GetField

func (o *MetaAggregationsTerms) GetField() string

GetField returns the Field field value if set, zero value otherwise.

func (*MetaAggregationsTerms) GetFieldOk

func (o *MetaAggregationsTerms) GetFieldOk() (*string, bool)

GetFieldOk returns a tuple with the Field field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregationsTerms) GetOrder

func (o *MetaAggregationsTerms) GetOrder() map[string]string

GetOrder returns the Order field value if set, zero value otherwise.

func (*MetaAggregationsTerms) GetOrderOk

func (o *MetaAggregationsTerms) GetOrderOk() (*map[string]string, bool)

GetOrderOk returns a tuple with the Order field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregationsTerms) GetSize

func (o *MetaAggregationsTerms) GetSize() int32

GetSize returns the Size field value if set, zero value otherwise.

func (*MetaAggregationsTerms) GetSizeOk

func (o *MetaAggregationsTerms) GetSizeOk() (*int32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAggregationsTerms) HasField

func (o *MetaAggregationsTerms) HasField() bool

HasField returns a boolean if a field has been set.

func (*MetaAggregationsTerms) HasOrder

func (o *MetaAggregationsTerms) HasOrder() bool

HasOrder returns a boolean if a field has been set.

func (*MetaAggregationsTerms) HasSize

func (o *MetaAggregationsTerms) HasSize() bool

HasSize returns a boolean if a field has been set.

func (MetaAggregationsTerms) MarshalJSON

func (o MetaAggregationsTerms) MarshalJSON() ([]byte, error)

func (*MetaAggregationsTerms) SetField

func (o *MetaAggregationsTerms) SetField(v string)

SetField gets a reference to the given string and assigns it to the Field field.

func (*MetaAggregationsTerms) SetOrder

func (o *MetaAggregationsTerms) SetOrder(v map[string]string)

SetOrder gets a reference to the given map[string]string and assigns it to the Order field.

func (*MetaAggregationsTerms) SetSize

func (o *MetaAggregationsTerms) SetSize(v int32)

SetSize gets a reference to the given int32 and assigns it to the Size field.

type MetaAnalyzer

type MetaAnalyzer struct {
	CharFilter []string `json:"char_filter,omitempty"`
	// compatibility with es, alias for TokenFilter
	Filter []string `json:"filter,omitempty"`
	// for type=pattern
	Lowercase *bool `json:"lowercase,omitempty"`
	// for type=pattern
	Pattern *string `json:"pattern,omitempty"`
	// for type=pattern,standard,stop
	Stopwords   []string `json:"stopwords,omitempty"`
	TokenFilter []string `json:"token_filter,omitempty"`
	Tokenizer   *string  `json:"tokenizer,omitempty"`
	// options for compatible
	Type *string `json:"type,omitempty"`
}

MetaAnalyzer struct for MetaAnalyzer

func NewMetaAnalyzer

func NewMetaAnalyzer() *MetaAnalyzer

NewMetaAnalyzer instantiates a new MetaAnalyzer object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaAnalyzerWithDefaults

func NewMetaAnalyzerWithDefaults() *MetaAnalyzer

NewMetaAnalyzerWithDefaults instantiates a new MetaAnalyzer object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaAnalyzer) GetCharFilter

func (o *MetaAnalyzer) GetCharFilter() []string

GetCharFilter returns the CharFilter field value if set, zero value otherwise.

func (*MetaAnalyzer) GetCharFilterOk

func (o *MetaAnalyzer) GetCharFilterOk() ([]string, bool)

GetCharFilterOk returns a tuple with the CharFilter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAnalyzer) GetFilter

func (o *MetaAnalyzer) GetFilter() []string

GetFilter returns the Filter field value if set, zero value otherwise.

func (*MetaAnalyzer) GetFilterOk

func (o *MetaAnalyzer) GetFilterOk() ([]string, bool)

GetFilterOk returns a tuple with the Filter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAnalyzer) GetLowercase

func (o *MetaAnalyzer) GetLowercase() bool

GetLowercase returns the Lowercase field value if set, zero value otherwise.

func (*MetaAnalyzer) GetLowercaseOk

func (o *MetaAnalyzer) GetLowercaseOk() (*bool, bool)

GetLowercaseOk returns a tuple with the Lowercase field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAnalyzer) GetPattern

func (o *MetaAnalyzer) GetPattern() string

GetPattern returns the Pattern field value if set, zero value otherwise.

func (*MetaAnalyzer) GetPatternOk

func (o *MetaAnalyzer) GetPatternOk() (*string, bool)

GetPatternOk returns a tuple with the Pattern field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAnalyzer) GetStopwords

func (o *MetaAnalyzer) GetStopwords() []string

GetStopwords returns the Stopwords field value if set, zero value otherwise.

func (*MetaAnalyzer) GetStopwordsOk

func (o *MetaAnalyzer) GetStopwordsOk() ([]string, bool)

GetStopwordsOk returns a tuple with the Stopwords field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAnalyzer) GetTokenFilter

func (o *MetaAnalyzer) GetTokenFilter() []string

GetTokenFilter returns the TokenFilter field value if set, zero value otherwise.

func (*MetaAnalyzer) GetTokenFilterOk

func (o *MetaAnalyzer) GetTokenFilterOk() ([]string, bool)

GetTokenFilterOk returns a tuple with the TokenFilter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAnalyzer) GetTokenizer

func (o *MetaAnalyzer) GetTokenizer() string

GetTokenizer returns the Tokenizer field value if set, zero value otherwise.

func (*MetaAnalyzer) GetTokenizerOk

func (o *MetaAnalyzer) GetTokenizerOk() (*string, bool)

GetTokenizerOk returns a tuple with the Tokenizer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAnalyzer) GetType

func (o *MetaAnalyzer) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*MetaAnalyzer) GetTypeOk

func (o *MetaAnalyzer) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaAnalyzer) HasCharFilter

func (o *MetaAnalyzer) HasCharFilter() bool

HasCharFilter returns a boolean if a field has been set.

func (*MetaAnalyzer) HasFilter

func (o *MetaAnalyzer) HasFilter() bool

HasFilter returns a boolean if a field has been set.

func (*MetaAnalyzer) HasLowercase

func (o *MetaAnalyzer) HasLowercase() bool

HasLowercase returns a boolean if a field has been set.

func (*MetaAnalyzer) HasPattern

func (o *MetaAnalyzer) HasPattern() bool

HasPattern returns a boolean if a field has been set.

func (*MetaAnalyzer) HasStopwords

func (o *MetaAnalyzer) HasStopwords() bool

HasStopwords returns a boolean if a field has been set.

func (*MetaAnalyzer) HasTokenFilter

func (o *MetaAnalyzer) HasTokenFilter() bool

HasTokenFilter returns a boolean if a field has been set.

func (*MetaAnalyzer) HasTokenizer

func (o *MetaAnalyzer) HasTokenizer() bool

HasTokenizer returns a boolean if a field has been set.

func (*MetaAnalyzer) HasType

func (o *MetaAnalyzer) HasType() bool

HasType returns a boolean if a field has been set.

func (MetaAnalyzer) MarshalJSON

func (o MetaAnalyzer) MarshalJSON() ([]byte, error)

func (*MetaAnalyzer) SetCharFilter

func (o *MetaAnalyzer) SetCharFilter(v []string)

SetCharFilter gets a reference to the given []string and assigns it to the CharFilter field.

func (*MetaAnalyzer) SetFilter

func (o *MetaAnalyzer) SetFilter(v []string)

SetFilter gets a reference to the given []string and assigns it to the Filter field.

func (*MetaAnalyzer) SetLowercase

func (o *MetaAnalyzer) SetLowercase(v bool)

SetLowercase gets a reference to the given bool and assigns it to the Lowercase field.

func (*MetaAnalyzer) SetPattern

func (o *MetaAnalyzer) SetPattern(v string)

SetPattern gets a reference to the given string and assigns it to the Pattern field.

func (*MetaAnalyzer) SetStopwords

func (o *MetaAnalyzer) SetStopwords(v []string)

SetStopwords gets a reference to the given []string and assigns it to the Stopwords field.

func (*MetaAnalyzer) SetTokenFilter

func (o *MetaAnalyzer) SetTokenFilter(v []string)

SetTokenFilter gets a reference to the given []string and assigns it to the TokenFilter field.

func (*MetaAnalyzer) SetTokenizer

func (o *MetaAnalyzer) SetTokenizer(v string)

SetTokenizer gets a reference to the given string and assigns it to the Tokenizer field.

func (*MetaAnalyzer) SetType

func (o *MetaAnalyzer) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type MetaBoolQuery

type MetaBoolQuery struct {
	// query, [query1, query2]
	Filter []MetaQuery `json:"filter,omitempty"`
	// only for should
	MinimumShouldMatch *float32 `json:"minimum_should_match,omitempty"`
	// query, [query1, query2]
	Must []MetaQuery `json:"must,omitempty"`
	// query, [query1, query2]
	MustNot []MetaQuery `json:"must_not,omitempty"`
	// query, [query1, query2]
	Should []MetaQuery `json:"should,omitempty"`
}

MetaBoolQuery struct for MetaBoolQuery

func NewMetaBoolQuery

func NewMetaBoolQuery() *MetaBoolQuery

NewMetaBoolQuery instantiates a new MetaBoolQuery object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaBoolQueryWithDefaults

func NewMetaBoolQueryWithDefaults() *MetaBoolQuery

NewMetaBoolQueryWithDefaults instantiates a new MetaBoolQuery object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaBoolQuery) GetFilter

func (o *MetaBoolQuery) GetFilter() []MetaQuery

GetFilter returns the Filter field value if set, zero value otherwise.

func (*MetaBoolQuery) GetFilterOk

func (o *MetaBoolQuery) GetFilterOk() ([]MetaQuery, bool)

GetFilterOk returns a tuple with the Filter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaBoolQuery) GetMinimumShouldMatch

func (o *MetaBoolQuery) GetMinimumShouldMatch() float32

GetMinimumShouldMatch returns the MinimumShouldMatch field value if set, zero value otherwise.

func (*MetaBoolQuery) GetMinimumShouldMatchOk

func (o *MetaBoolQuery) GetMinimumShouldMatchOk() (*float32, bool)

GetMinimumShouldMatchOk returns a tuple with the MinimumShouldMatch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaBoolQuery) GetMust

func (o *MetaBoolQuery) GetMust() []MetaQuery

GetMust returns the Must field value if set, zero value otherwise.

func (*MetaBoolQuery) GetMustNot

func (o *MetaBoolQuery) GetMustNot() []MetaQuery

GetMustNot returns the MustNot field value if set, zero value otherwise.

func (*MetaBoolQuery) GetMustNotOk

func (o *MetaBoolQuery) GetMustNotOk() ([]MetaQuery, bool)

GetMustNotOk returns a tuple with the MustNot field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaBoolQuery) GetMustOk

func (o *MetaBoolQuery) GetMustOk() ([]MetaQuery, bool)

GetMustOk returns a tuple with the Must field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaBoolQuery) GetShould

func (o *MetaBoolQuery) GetShould() []MetaQuery

GetShould returns the Should field value if set, zero value otherwise.

func (*MetaBoolQuery) GetShouldOk

func (o *MetaBoolQuery) GetShouldOk() ([]MetaQuery, bool)

GetShouldOk returns a tuple with the Should field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaBoolQuery) HasFilter

func (o *MetaBoolQuery) HasFilter() bool

HasFilter returns a boolean if a field has been set.

func (*MetaBoolQuery) HasMinimumShouldMatch

func (o *MetaBoolQuery) HasMinimumShouldMatch() bool

HasMinimumShouldMatch returns a boolean if a field has been set.

func (*MetaBoolQuery) HasMust

func (o *MetaBoolQuery) HasMust() bool

HasMust returns a boolean if a field has been set.

func (*MetaBoolQuery) HasMustNot

func (o *MetaBoolQuery) HasMustNot() bool

HasMustNot returns a boolean if a field has been set.

func (*MetaBoolQuery) HasShould

func (o *MetaBoolQuery) HasShould() bool

HasShould returns a boolean if a field has been set.

func (MetaBoolQuery) MarshalJSON

func (o MetaBoolQuery) MarshalJSON() ([]byte, error)

func (*MetaBoolQuery) SetFilter

func (o *MetaBoolQuery) SetFilter(v []MetaQuery)

SetFilter gets a reference to the given []MetaQuery and assigns it to the Filter field.

func (*MetaBoolQuery) SetMinimumShouldMatch

func (o *MetaBoolQuery) SetMinimumShouldMatch(v float32)

SetMinimumShouldMatch gets a reference to the given float32 and assigns it to the MinimumShouldMatch field.

func (*MetaBoolQuery) SetMust

func (o *MetaBoolQuery) SetMust(v []MetaQuery)

SetMust gets a reference to the given []MetaQuery and assigns it to the Must field.

func (*MetaBoolQuery) SetMustNot

func (o *MetaBoolQuery) SetMustNot(v []MetaQuery)

SetMustNot gets a reference to the given []MetaQuery and assigns it to the MustNot field.

func (*MetaBoolQuery) SetShould

func (o *MetaBoolQuery) SetShould(v []MetaQuery)

SetShould gets a reference to the given []MetaQuery and assigns it to the Should field.

type MetaDateRange

type MetaDateRange struct {
	From *string `json:"from,omitempty"`
	To   *string `json:"to,omitempty"`
}

MetaDateRange struct for MetaDateRange

func NewMetaDateRange

func NewMetaDateRange() *MetaDateRange

NewMetaDateRange instantiates a new MetaDateRange object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaDateRangeWithDefaults

func NewMetaDateRangeWithDefaults() *MetaDateRange

NewMetaDateRangeWithDefaults instantiates a new MetaDateRange object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaDateRange) GetFrom

func (o *MetaDateRange) GetFrom() string

GetFrom returns the From field value if set, zero value otherwise.

func (*MetaDateRange) GetFromOk

func (o *MetaDateRange) GetFromOk() (*string, bool)

GetFromOk returns a tuple with the From field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaDateRange) GetTo

func (o *MetaDateRange) GetTo() string

GetTo returns the To field value if set, zero value otherwise.

func (*MetaDateRange) GetToOk

func (o *MetaDateRange) GetToOk() (*string, bool)

GetToOk returns a tuple with the To field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaDateRange) HasFrom

func (o *MetaDateRange) HasFrom() bool

HasFrom returns a boolean if a field has been set.

func (*MetaDateRange) HasTo

func (o *MetaDateRange) HasTo() bool

HasTo returns a boolean if a field has been set.

func (MetaDateRange) MarshalJSON

func (o MetaDateRange) MarshalJSON() ([]byte, error)

func (*MetaDateRange) SetFrom

func (o *MetaDateRange) SetFrom(v string)

SetFrom gets a reference to the given string and assigns it to the From field.

func (*MetaDateRange) SetTo

func (o *MetaDateRange) SetTo(v string)

SetTo gets a reference to the given string and assigns it to the To field.

type MetaExistsQuery

type MetaExistsQuery struct {
	Field *string `json:"field,omitempty"`
}

MetaExistsQuery struct for MetaExistsQuery

func NewMetaExistsQuery

func NewMetaExistsQuery() *MetaExistsQuery

NewMetaExistsQuery instantiates a new MetaExistsQuery object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaExistsQueryWithDefaults

func NewMetaExistsQueryWithDefaults() *MetaExistsQuery

NewMetaExistsQueryWithDefaults instantiates a new MetaExistsQuery object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaExistsQuery) GetField

func (o *MetaExistsQuery) GetField() string

GetField returns the Field field value if set, zero value otherwise.

func (*MetaExistsQuery) GetFieldOk

func (o *MetaExistsQuery) GetFieldOk() (*string, bool)

GetFieldOk returns a tuple with the Field field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaExistsQuery) HasField

func (o *MetaExistsQuery) HasField() bool

HasField returns a boolean if a field has been set.

func (MetaExistsQuery) MarshalJSON

func (o MetaExistsQuery) MarshalJSON() ([]byte, error)

func (*MetaExistsQuery) SetField

func (o *MetaExistsQuery) SetField(v string)

SetField gets a reference to the given string and assigns it to the Field field.

type MetaFuzzyQuery

type MetaFuzzyQuery struct {
	Boost *float32 `json:"boost,omitempty"`
	// auto, 1,2,3,n
	Fuzziness    map[string]interface{} `json:"fuzziness,omitempty"`
	PrefixLength *float32               `json:"prefix_length,omitempty"`
	Value        *string                `json:"value,omitempty"`
}

MetaFuzzyQuery struct for MetaFuzzyQuery

func NewMetaFuzzyQuery

func NewMetaFuzzyQuery() *MetaFuzzyQuery

NewMetaFuzzyQuery instantiates a new MetaFuzzyQuery object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaFuzzyQueryWithDefaults

func NewMetaFuzzyQueryWithDefaults() *MetaFuzzyQuery

NewMetaFuzzyQueryWithDefaults instantiates a new MetaFuzzyQuery object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaFuzzyQuery) GetBoost

func (o *MetaFuzzyQuery) GetBoost() float32

GetBoost returns the Boost field value if set, zero value otherwise.

func (*MetaFuzzyQuery) GetBoostOk

func (o *MetaFuzzyQuery) GetBoostOk() (*float32, bool)

GetBoostOk returns a tuple with the Boost field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaFuzzyQuery) GetFuzziness

func (o *MetaFuzzyQuery) GetFuzziness() map[string]interface{}

GetFuzziness returns the Fuzziness field value if set, zero value otherwise.

func (*MetaFuzzyQuery) GetFuzzinessOk

func (o *MetaFuzzyQuery) GetFuzzinessOk() (map[string]interface{}, bool)

GetFuzzinessOk returns a tuple with the Fuzziness field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaFuzzyQuery) GetPrefixLength

func (o *MetaFuzzyQuery) GetPrefixLength() float32

GetPrefixLength returns the PrefixLength field value if set, zero value otherwise.

func (*MetaFuzzyQuery) GetPrefixLengthOk

func (o *MetaFuzzyQuery) GetPrefixLengthOk() (*float32, bool)

GetPrefixLengthOk returns a tuple with the PrefixLength field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaFuzzyQuery) GetValue

func (o *MetaFuzzyQuery) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*MetaFuzzyQuery) GetValueOk

func (o *MetaFuzzyQuery) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaFuzzyQuery) HasBoost

func (o *MetaFuzzyQuery) HasBoost() bool

HasBoost returns a boolean if a field has been set.

func (*MetaFuzzyQuery) HasFuzziness

func (o *MetaFuzzyQuery) HasFuzziness() bool

HasFuzziness returns a boolean if a field has been set.

func (*MetaFuzzyQuery) HasPrefixLength

func (o *MetaFuzzyQuery) HasPrefixLength() bool

HasPrefixLength returns a boolean if a field has been set.

func (*MetaFuzzyQuery) HasValue

func (o *MetaFuzzyQuery) HasValue() bool

HasValue returns a boolean if a field has been set.

func (MetaFuzzyQuery) MarshalJSON

func (o MetaFuzzyQuery) MarshalJSON() ([]byte, error)

func (*MetaFuzzyQuery) SetBoost

func (o *MetaFuzzyQuery) SetBoost(v float32)

SetBoost gets a reference to the given float32 and assigns it to the Boost field.

func (*MetaFuzzyQuery) SetFuzziness

func (o *MetaFuzzyQuery) SetFuzziness(v map[string]interface{})

SetFuzziness gets a reference to the given map[string]interface{} and assigns it to the Fuzziness field.

func (*MetaFuzzyQuery) SetPrefixLength

func (o *MetaFuzzyQuery) SetPrefixLength(v float32)

SetPrefixLength gets a reference to the given float32 and assigns it to the PrefixLength field.

func (*MetaFuzzyQuery) SetValue

func (o *MetaFuzzyQuery) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

type MetaHTTPResponse

type MetaHTTPResponse struct {
	Message *string `json:"message,omitempty"`
}

MetaHTTPResponse struct for MetaHTTPResponse

func NewMetaHTTPResponse

func NewMetaHTTPResponse() *MetaHTTPResponse

NewMetaHTTPResponse instantiates a new MetaHTTPResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaHTTPResponseWithDefaults

func NewMetaHTTPResponseWithDefaults() *MetaHTTPResponse

NewMetaHTTPResponseWithDefaults instantiates a new MetaHTTPResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaHTTPResponse) GetMessage

func (o *MetaHTTPResponse) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*MetaHTTPResponse) GetMessageOk

func (o *MetaHTTPResponse) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaHTTPResponse) HasMessage

func (o *MetaHTTPResponse) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (MetaHTTPResponse) MarshalJSON

func (o MetaHTTPResponse) MarshalJSON() ([]byte, error)

func (*MetaHTTPResponse) SetMessage

func (o *MetaHTTPResponse) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

type MetaHTTPResponseDeleteByQuery

type MetaHTTPResponseDeleteByQuery struct {
	Batches              *int32                   `json:"batches,omitempty"`
	Deleted              *int32                   `json:"deleted,omitempty"`
	Failures             []string                 `json:"failures,omitempty"`
	Noops                *int32                   `json:"noops,omitempty"`
	RequestsPerSecond    *int32                   `json:"requests_per_second,omitempty"`
	Retries              *MetaHttpRetriesResponse `json:"retries,omitempty"`
	ThrottledMillis      *int32                   `json:"throttled_millis,omitempty"`
	ThrottledUntilMillis *int32                   `json:"throttled_until_millis,omitempty"`
	TimeOut              *bool                    `json:"time_out,omitempty"`
	Took                 *int32                   `json:"took,omitempty"`
	Total                *int32                   `json:"total,omitempty"`
	VersionConflicts     *int32                   `json:"version_conflicts,omitempty"`
}

MetaHTTPResponseDeleteByQuery struct for MetaHTTPResponseDeleteByQuery

func NewMetaHTTPResponseDeleteByQuery

func NewMetaHTTPResponseDeleteByQuery() *MetaHTTPResponseDeleteByQuery

NewMetaHTTPResponseDeleteByQuery instantiates a new MetaHTTPResponseDeleteByQuery object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaHTTPResponseDeleteByQueryWithDefaults

func NewMetaHTTPResponseDeleteByQueryWithDefaults() *MetaHTTPResponseDeleteByQuery

NewMetaHTTPResponseDeleteByQueryWithDefaults instantiates a new MetaHTTPResponseDeleteByQuery object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaHTTPResponseDeleteByQuery) GetBatches

func (o *MetaHTTPResponseDeleteByQuery) GetBatches() int32

GetBatches returns the Batches field value if set, zero value otherwise.

func (*MetaHTTPResponseDeleteByQuery) GetBatchesOk

func (o *MetaHTTPResponseDeleteByQuery) GetBatchesOk() (*int32, bool)

GetBatchesOk returns a tuple with the Batches field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaHTTPResponseDeleteByQuery) GetDeleted

func (o *MetaHTTPResponseDeleteByQuery) GetDeleted() int32

GetDeleted returns the Deleted field value if set, zero value otherwise.

func (*MetaHTTPResponseDeleteByQuery) GetDeletedOk

func (o *MetaHTTPResponseDeleteByQuery) GetDeletedOk() (*int32, bool)

GetDeletedOk returns a tuple with the Deleted field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaHTTPResponseDeleteByQuery) GetFailures

func (o *MetaHTTPResponseDeleteByQuery) GetFailures() []string

GetFailures returns the Failures field value if set, zero value otherwise.

func (*MetaHTTPResponseDeleteByQuery) GetFailuresOk

func (o *MetaHTTPResponseDeleteByQuery) GetFailuresOk() ([]string, bool)

GetFailuresOk returns a tuple with the Failures field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaHTTPResponseDeleteByQuery) GetNoops

func (o *MetaHTTPResponseDeleteByQuery) GetNoops() int32

GetNoops returns the Noops field value if set, zero value otherwise.

func (*MetaHTTPResponseDeleteByQuery) GetNoopsOk

func (o *MetaHTTPResponseDeleteByQuery) GetNoopsOk() (*int32, bool)

GetNoopsOk returns a tuple with the Noops field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaHTTPResponseDeleteByQuery) GetRequestsPerSecond

func (o *MetaHTTPResponseDeleteByQuery) GetRequestsPerSecond() int32

GetRequestsPerSecond returns the RequestsPerSecond field value if set, zero value otherwise.

func (*MetaHTTPResponseDeleteByQuery) GetRequestsPerSecondOk

func (o *MetaHTTPResponseDeleteByQuery) GetRequestsPerSecondOk() (*int32, bool)

GetRequestsPerSecondOk returns a tuple with the RequestsPerSecond field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaHTTPResponseDeleteByQuery) GetRetries

GetRetries returns the Retries field value if set, zero value otherwise.

func (*MetaHTTPResponseDeleteByQuery) GetRetriesOk

GetRetriesOk returns a tuple with the Retries field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaHTTPResponseDeleteByQuery) GetThrottledMillis

func (o *MetaHTTPResponseDeleteByQuery) GetThrottledMillis() int32

GetThrottledMillis returns the ThrottledMillis field value if set, zero value otherwise.

func (*MetaHTTPResponseDeleteByQuery) GetThrottledMillisOk

func (o *MetaHTTPResponseDeleteByQuery) GetThrottledMillisOk() (*int32, bool)

GetThrottledMillisOk returns a tuple with the ThrottledMillis field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaHTTPResponseDeleteByQuery) GetThrottledUntilMillis

func (o *MetaHTTPResponseDeleteByQuery) GetThrottledUntilMillis() int32

GetThrottledUntilMillis returns the ThrottledUntilMillis field value if set, zero value otherwise.

func (*MetaHTTPResponseDeleteByQuery) GetThrottledUntilMillisOk

func (o *MetaHTTPResponseDeleteByQuery) GetThrottledUntilMillisOk() (*int32, bool)

GetThrottledUntilMillisOk returns a tuple with the ThrottledUntilMillis field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaHTTPResponseDeleteByQuery) GetTimeOut

func (o *MetaHTTPResponseDeleteByQuery) GetTimeOut() bool

GetTimeOut returns the TimeOut field value if set, zero value otherwise.

func (*MetaHTTPResponseDeleteByQuery) GetTimeOutOk

func (o *MetaHTTPResponseDeleteByQuery) GetTimeOutOk() (*bool, bool)

GetTimeOutOk returns a tuple with the TimeOut field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaHTTPResponseDeleteByQuery) GetTook

func (o *MetaHTTPResponseDeleteByQuery) GetTook() int32

GetTook returns the Took field value if set, zero value otherwise.

func (*MetaHTTPResponseDeleteByQuery) GetTookOk

func (o *MetaHTTPResponseDeleteByQuery) GetTookOk() (*int32, bool)

GetTookOk returns a tuple with the Took field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaHTTPResponseDeleteByQuery) GetTotal

func (o *MetaHTTPResponseDeleteByQuery) GetTotal() int32

GetTotal returns the Total field value if set, zero value otherwise.

func (*MetaHTTPResponseDeleteByQuery) GetTotalOk

func (o *MetaHTTPResponseDeleteByQuery) GetTotalOk() (*int32, bool)

GetTotalOk returns a tuple with the Total field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaHTTPResponseDeleteByQuery) GetVersionConflicts

func (o *MetaHTTPResponseDeleteByQuery) GetVersionConflicts() int32

GetVersionConflicts returns the VersionConflicts field value if set, zero value otherwise.

func (*MetaHTTPResponseDeleteByQuery) GetVersionConflictsOk

func (o *MetaHTTPResponseDeleteByQuery) GetVersionConflictsOk() (*int32, bool)

GetVersionConflictsOk returns a tuple with the VersionConflicts field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaHTTPResponseDeleteByQuery) HasBatches

func (o *MetaHTTPResponseDeleteByQuery) HasBatches() bool

HasBatches returns a boolean if a field has been set.

func (*MetaHTTPResponseDeleteByQuery) HasDeleted

func (o *MetaHTTPResponseDeleteByQuery) HasDeleted() bool

HasDeleted returns a boolean if a field has been set.

func (*MetaHTTPResponseDeleteByQuery) HasFailures

func (o *MetaHTTPResponseDeleteByQuery) HasFailures() bool

HasFailures returns a boolean if a field has been set.

func (*MetaHTTPResponseDeleteByQuery) HasNoops

func (o *MetaHTTPResponseDeleteByQuery) HasNoops() bool

HasNoops returns a boolean if a field has been set.

func (*MetaHTTPResponseDeleteByQuery) HasRequestsPerSecond

func (o *MetaHTTPResponseDeleteByQuery) HasRequestsPerSecond() bool

HasRequestsPerSecond returns a boolean if a field has been set.

func (*MetaHTTPResponseDeleteByQuery) HasRetries

func (o *MetaHTTPResponseDeleteByQuery) HasRetries() bool

HasRetries returns a boolean if a field has been set.

func (*MetaHTTPResponseDeleteByQuery) HasThrottledMillis

func (o *MetaHTTPResponseDeleteByQuery) HasThrottledMillis() bool

HasThrottledMillis returns a boolean if a field has been set.

func (*MetaHTTPResponseDeleteByQuery) HasThrottledUntilMillis

func (o *MetaHTTPResponseDeleteByQuery) HasThrottledUntilMillis() bool

HasThrottledUntilMillis returns a boolean if a field has been set.

func (*MetaHTTPResponseDeleteByQuery) HasTimeOut

func (o *MetaHTTPResponseDeleteByQuery) HasTimeOut() bool

HasTimeOut returns a boolean if a field has been set.

func (*MetaHTTPResponseDeleteByQuery) HasTook

func (o *MetaHTTPResponseDeleteByQuery) HasTook() bool

HasTook returns a boolean if a field has been set.

func (*MetaHTTPResponseDeleteByQuery) HasTotal

func (o *MetaHTTPResponseDeleteByQuery) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (*MetaHTTPResponseDeleteByQuery) HasVersionConflicts

func (o *MetaHTTPResponseDeleteByQuery) HasVersionConflicts() bool

HasVersionConflicts returns a boolean if a field has been set.

func (MetaHTTPResponseDeleteByQuery) MarshalJSON

func (o MetaHTTPResponseDeleteByQuery) MarshalJSON() ([]byte, error)

func (*MetaHTTPResponseDeleteByQuery) SetBatches

func (o *MetaHTTPResponseDeleteByQuery) SetBatches(v int32)

SetBatches gets a reference to the given int32 and assigns it to the Batches field.

func (*MetaHTTPResponseDeleteByQuery) SetDeleted

func (o *MetaHTTPResponseDeleteByQuery) SetDeleted(v int32)

SetDeleted gets a reference to the given int32 and assigns it to the Deleted field.

func (*MetaHTTPResponseDeleteByQuery) SetFailures

func (o *MetaHTTPResponseDeleteByQuery) SetFailures(v []string)

SetFailures gets a reference to the given []string and assigns it to the Failures field.

func (*MetaHTTPResponseDeleteByQuery) SetNoops

func (o *MetaHTTPResponseDeleteByQuery) SetNoops(v int32)

SetNoops gets a reference to the given int32 and assigns it to the Noops field.

func (*MetaHTTPResponseDeleteByQuery) SetRequestsPerSecond

func (o *MetaHTTPResponseDeleteByQuery) SetRequestsPerSecond(v int32)

SetRequestsPerSecond gets a reference to the given int32 and assigns it to the RequestsPerSecond field.

func (*MetaHTTPResponseDeleteByQuery) SetRetries

SetRetries gets a reference to the given MetaHttpRetriesResponse and assigns it to the Retries field.

func (*MetaHTTPResponseDeleteByQuery) SetThrottledMillis

func (o *MetaHTTPResponseDeleteByQuery) SetThrottledMillis(v int32)

SetThrottledMillis gets a reference to the given int32 and assigns it to the ThrottledMillis field.

func (*MetaHTTPResponseDeleteByQuery) SetThrottledUntilMillis

func (o *MetaHTTPResponseDeleteByQuery) SetThrottledUntilMillis(v int32)

SetThrottledUntilMillis gets a reference to the given int32 and assigns it to the ThrottledUntilMillis field.

func (*MetaHTTPResponseDeleteByQuery) SetTimeOut

func (o *MetaHTTPResponseDeleteByQuery) SetTimeOut(v bool)

SetTimeOut gets a reference to the given bool and assigns it to the TimeOut field.

func (*MetaHTTPResponseDeleteByQuery) SetTook

func (o *MetaHTTPResponseDeleteByQuery) SetTook(v int32)

SetTook gets a reference to the given int32 and assigns it to the Took field.

func (*MetaHTTPResponseDeleteByQuery) SetTotal

func (o *MetaHTTPResponseDeleteByQuery) SetTotal(v int32)

SetTotal gets a reference to the given int32 and assigns it to the Total field.

func (*MetaHTTPResponseDeleteByQuery) SetVersionConflicts

func (o *MetaHTTPResponseDeleteByQuery) SetVersionConflicts(v int32)

SetVersionConflicts gets a reference to the given int32 and assigns it to the VersionConflicts field.

type MetaHTTPResponseDocument

type MetaHTTPResponseDocument struct {
	Id      *string `json:"id,omitempty"`
	Index   *string `json:"index,omitempty"`
	Message *string `json:"message,omitempty"`
}

MetaHTTPResponseDocument struct for MetaHTTPResponseDocument

func NewMetaHTTPResponseDocument

func NewMetaHTTPResponseDocument() *MetaHTTPResponseDocument

NewMetaHTTPResponseDocument instantiates a new MetaHTTPResponseDocument object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaHTTPResponseDocumentWithDefaults

func NewMetaHTTPResponseDocumentWithDefaults() *MetaHTTPResponseDocument

NewMetaHTTPResponseDocumentWithDefaults instantiates a new MetaHTTPResponseDocument object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaHTTPResponseDocument) GetId

func (o *MetaHTTPResponseDocument) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*MetaHTTPResponseDocument) GetIdOk

func (o *MetaHTTPResponseDocument) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaHTTPResponseDocument) GetIndex

func (o *MetaHTTPResponseDocument) GetIndex() string

GetIndex returns the Index field value if set, zero value otherwise.

func (*MetaHTTPResponseDocument) GetIndexOk

func (o *MetaHTTPResponseDocument) GetIndexOk() (*string, bool)

GetIndexOk returns a tuple with the Index field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaHTTPResponseDocument) GetMessage

func (o *MetaHTTPResponseDocument) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*MetaHTTPResponseDocument) GetMessageOk

func (o *MetaHTTPResponseDocument) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaHTTPResponseDocument) HasId

func (o *MetaHTTPResponseDocument) HasId() bool

HasId returns a boolean if a field has been set.

func (*MetaHTTPResponseDocument) HasIndex

func (o *MetaHTTPResponseDocument) HasIndex() bool

HasIndex returns a boolean if a field has been set.

func (*MetaHTTPResponseDocument) HasMessage

func (o *MetaHTTPResponseDocument) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (MetaHTTPResponseDocument) MarshalJSON

func (o MetaHTTPResponseDocument) MarshalJSON() ([]byte, error)

func (*MetaHTTPResponseDocument) SetId

func (o *MetaHTTPResponseDocument) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*MetaHTTPResponseDocument) SetIndex

func (o *MetaHTTPResponseDocument) SetIndex(v string)

SetIndex gets a reference to the given string and assigns it to the Index field.

func (*MetaHTTPResponseDocument) SetMessage

func (o *MetaHTTPResponseDocument) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

type MetaHTTPResponseError

type MetaHTTPResponseError struct {
	Error *string `json:"error,omitempty"`
}

MetaHTTPResponseError struct for MetaHTTPResponseError

func NewMetaHTTPResponseError

func NewMetaHTTPResponseError() *MetaHTTPResponseError

NewMetaHTTPResponseError instantiates a new MetaHTTPResponseError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaHTTPResponseErrorWithDefaults

func NewMetaHTTPResponseErrorWithDefaults() *MetaHTTPResponseError

NewMetaHTTPResponseErrorWithDefaults instantiates a new MetaHTTPResponseError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaHTTPResponseError) GetError

func (o *MetaHTTPResponseError) GetError() string

GetError returns the Error field value if set, zero value otherwise.

func (*MetaHTTPResponseError) GetErrorOk

func (o *MetaHTTPResponseError) GetErrorOk() (*string, bool)

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaHTTPResponseError) HasError

func (o *MetaHTTPResponseError) HasError() bool

HasError returns a boolean if a field has been set.

func (MetaHTTPResponseError) MarshalJSON

func (o MetaHTTPResponseError) MarshalJSON() ([]byte, error)

func (*MetaHTTPResponseError) SetError

func (o *MetaHTTPResponseError) SetError(v string)

SetError gets a reference to the given string and assigns it to the Error field.

type MetaHTTPResponseID

type MetaHTTPResponseID struct {
	Id      *string `json:"id,omitempty"`
	Message *string `json:"message,omitempty"`
}

MetaHTTPResponseID struct for MetaHTTPResponseID

func NewMetaHTTPResponseID

func NewMetaHTTPResponseID() *MetaHTTPResponseID

NewMetaHTTPResponseID instantiates a new MetaHTTPResponseID object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaHTTPResponseIDWithDefaults

func NewMetaHTTPResponseIDWithDefaults() *MetaHTTPResponseID

NewMetaHTTPResponseIDWithDefaults instantiates a new MetaHTTPResponseID object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaHTTPResponseID) GetId

func (o *MetaHTTPResponseID) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*MetaHTTPResponseID) GetIdOk

func (o *MetaHTTPResponseID) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaHTTPResponseID) GetMessage

func (o *MetaHTTPResponseID) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*MetaHTTPResponseID) GetMessageOk

func (o *MetaHTTPResponseID) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaHTTPResponseID) HasId

func (o *MetaHTTPResponseID) HasId() bool

HasId returns a boolean if a field has been set.

func (*MetaHTTPResponseID) HasMessage

func (o *MetaHTTPResponseID) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (MetaHTTPResponseID) MarshalJSON

func (o MetaHTTPResponseID) MarshalJSON() ([]byte, error)

func (*MetaHTTPResponseID) SetId

func (o *MetaHTTPResponseID) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*MetaHTTPResponseID) SetMessage

func (o *MetaHTTPResponseID) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

type MetaHTTPResponseIndex

type MetaHTTPResponseIndex struct {
	Index       *string `json:"index,omitempty"`
	Message     *string `json:"message,omitempty"`
	StorageType *string `json:"storage_type,omitempty"`
}

MetaHTTPResponseIndex struct for MetaHTTPResponseIndex

func NewMetaHTTPResponseIndex

func NewMetaHTTPResponseIndex() *MetaHTTPResponseIndex

NewMetaHTTPResponseIndex instantiates a new MetaHTTPResponseIndex object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaHTTPResponseIndexWithDefaults

func NewMetaHTTPResponseIndexWithDefaults() *MetaHTTPResponseIndex

NewMetaHTTPResponseIndexWithDefaults instantiates a new MetaHTTPResponseIndex object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaHTTPResponseIndex) GetIndex

func (o *MetaHTTPResponseIndex) GetIndex() string

GetIndex returns the Index field value if set, zero value otherwise.

func (*MetaHTTPResponseIndex) GetIndexOk

func (o *MetaHTTPResponseIndex) GetIndexOk() (*string, bool)

GetIndexOk returns a tuple with the Index field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaHTTPResponseIndex) GetMessage

func (o *MetaHTTPResponseIndex) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*MetaHTTPResponseIndex) GetMessageOk

func (o *MetaHTTPResponseIndex) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaHTTPResponseIndex) GetStorageType

func (o *MetaHTTPResponseIndex) GetStorageType() string

GetStorageType returns the StorageType field value if set, zero value otherwise.

func (*MetaHTTPResponseIndex) GetStorageTypeOk

func (o *MetaHTTPResponseIndex) GetStorageTypeOk() (*string, bool)

GetStorageTypeOk returns a tuple with the StorageType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaHTTPResponseIndex) HasIndex

func (o *MetaHTTPResponseIndex) HasIndex() bool

HasIndex returns a boolean if a field has been set.

func (*MetaHTTPResponseIndex) HasMessage

func (o *MetaHTTPResponseIndex) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*MetaHTTPResponseIndex) HasStorageType

func (o *MetaHTTPResponseIndex) HasStorageType() bool

HasStorageType returns a boolean if a field has been set.

func (MetaHTTPResponseIndex) MarshalJSON

func (o MetaHTTPResponseIndex) MarshalJSON() ([]byte, error)

func (*MetaHTTPResponseIndex) SetIndex

func (o *MetaHTTPResponseIndex) SetIndex(v string)

SetIndex gets a reference to the given string and assigns it to the Index field.

func (*MetaHTTPResponseIndex) SetMessage

func (o *MetaHTTPResponseIndex) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*MetaHTTPResponseIndex) SetStorageType

func (o *MetaHTTPResponseIndex) SetStorageType(v string)

SetStorageType gets a reference to the given string and assigns it to the StorageType field.

type MetaHTTPResponseRecordCount

type MetaHTTPResponseRecordCount struct {
	Message     *string `json:"message,omitempty"`
	RecordCount *int32  `json:"record_count,omitempty"`
}

MetaHTTPResponseRecordCount struct for MetaHTTPResponseRecordCount

func NewMetaHTTPResponseRecordCount

func NewMetaHTTPResponseRecordCount() *MetaHTTPResponseRecordCount

NewMetaHTTPResponseRecordCount instantiates a new MetaHTTPResponseRecordCount object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaHTTPResponseRecordCountWithDefaults

func NewMetaHTTPResponseRecordCountWithDefaults() *MetaHTTPResponseRecordCount

NewMetaHTTPResponseRecordCountWithDefaults instantiates a new MetaHTTPResponseRecordCount object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaHTTPResponseRecordCount) GetMessage

func (o *MetaHTTPResponseRecordCount) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*MetaHTTPResponseRecordCount) GetMessageOk

func (o *MetaHTTPResponseRecordCount) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaHTTPResponseRecordCount) GetRecordCount

func (o *MetaHTTPResponseRecordCount) GetRecordCount() int32

GetRecordCount returns the RecordCount field value if set, zero value otherwise.

func (*MetaHTTPResponseRecordCount) GetRecordCountOk

func (o *MetaHTTPResponseRecordCount) GetRecordCountOk() (*int32, bool)

GetRecordCountOk returns a tuple with the RecordCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaHTTPResponseRecordCount) HasMessage

func (o *MetaHTTPResponseRecordCount) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*MetaHTTPResponseRecordCount) HasRecordCount

func (o *MetaHTTPResponseRecordCount) HasRecordCount() bool

HasRecordCount returns a boolean if a field has been set.

func (MetaHTTPResponseRecordCount) MarshalJSON

func (o MetaHTTPResponseRecordCount) MarshalJSON() ([]byte, error)

func (*MetaHTTPResponseRecordCount) SetMessage

func (o *MetaHTTPResponseRecordCount) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*MetaHTTPResponseRecordCount) SetRecordCount

func (o *MetaHTTPResponseRecordCount) SetRecordCount(v int32)

SetRecordCount gets a reference to the given int32 and assigns it to the RecordCount field.

type MetaHTTPResponseTemplate

type MetaHTTPResponseTemplate struct {
	Message  *string `json:"message,omitempty"`
	Template *string `json:"template,omitempty"`
}

MetaHTTPResponseTemplate struct for MetaHTTPResponseTemplate

func NewMetaHTTPResponseTemplate

func NewMetaHTTPResponseTemplate() *MetaHTTPResponseTemplate

NewMetaHTTPResponseTemplate instantiates a new MetaHTTPResponseTemplate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaHTTPResponseTemplateWithDefaults

func NewMetaHTTPResponseTemplateWithDefaults() *MetaHTTPResponseTemplate

NewMetaHTTPResponseTemplateWithDefaults instantiates a new MetaHTTPResponseTemplate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaHTTPResponseTemplate) GetMessage

func (o *MetaHTTPResponseTemplate) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*MetaHTTPResponseTemplate) GetMessageOk

func (o *MetaHTTPResponseTemplate) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaHTTPResponseTemplate) GetTemplate

func (o *MetaHTTPResponseTemplate) GetTemplate() string

GetTemplate returns the Template field value if set, zero value otherwise.

func (*MetaHTTPResponseTemplate) GetTemplateOk

func (o *MetaHTTPResponseTemplate) GetTemplateOk() (*string, bool)

GetTemplateOk returns a tuple with the Template field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaHTTPResponseTemplate) HasMessage

func (o *MetaHTTPResponseTemplate) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*MetaHTTPResponseTemplate) HasTemplate

func (o *MetaHTTPResponseTemplate) HasTemplate() bool

HasTemplate returns a boolean if a field has been set.

func (MetaHTTPResponseTemplate) MarshalJSON

func (o MetaHTTPResponseTemplate) MarshalJSON() ([]byte, error)

func (*MetaHTTPResponseTemplate) SetMessage

func (o *MetaHTTPResponseTemplate) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*MetaHTTPResponseTemplate) SetTemplate

func (o *MetaHTTPResponseTemplate) SetTemplate(v string)

SetTemplate gets a reference to the given string and assigns it to the Template field.

type MetaHealthzResponse

type MetaHealthzResponse struct {
	Status *string `json:"status,omitempty"`
}

MetaHealthzResponse struct for MetaHealthzResponse

func NewMetaHealthzResponse

func NewMetaHealthzResponse() *MetaHealthzResponse

NewMetaHealthzResponse instantiates a new MetaHealthzResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaHealthzResponseWithDefaults

func NewMetaHealthzResponseWithDefaults() *MetaHealthzResponse

NewMetaHealthzResponseWithDefaults instantiates a new MetaHealthzResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaHealthzResponse) GetStatus

func (o *MetaHealthzResponse) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*MetaHealthzResponse) GetStatusOk

func (o *MetaHealthzResponse) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaHealthzResponse) HasStatus

func (o *MetaHealthzResponse) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (MetaHealthzResponse) MarshalJSON

func (o MetaHealthzResponse) MarshalJSON() ([]byte, error)

func (*MetaHealthzResponse) SetStatus

func (o *MetaHealthzResponse) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

type MetaHighlight

type MetaHighlight struct {
	Fields            *map[string]MetaHighlight `json:"fields,omitempty"`
	FragmentSize      *int32                    `json:"fragment_size,omitempty"`
	NumberOfFragments *int32                    `json:"number_of_fragments,omitempty"`
	PostTags          []string                  `json:"post_tags,omitempty"`
	PreTags           []string                  `json:"pre_tags,omitempty"`
}

MetaHighlight struct for MetaHighlight

func NewMetaHighlight

func NewMetaHighlight() *MetaHighlight

NewMetaHighlight instantiates a new MetaHighlight object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaHighlightWithDefaults

func NewMetaHighlightWithDefaults() *MetaHighlight

NewMetaHighlightWithDefaults instantiates a new MetaHighlight object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaHighlight) GetFields

func (o *MetaHighlight) GetFields() map[string]MetaHighlight

GetFields returns the Fields field value if set, zero value otherwise.

func (*MetaHighlight) GetFieldsOk

func (o *MetaHighlight) GetFieldsOk() (*map[string]MetaHighlight, bool)

GetFieldsOk returns a tuple with the Fields field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaHighlight) GetFragmentSize

func (o *MetaHighlight) GetFragmentSize() int32

GetFragmentSize returns the FragmentSize field value if set, zero value otherwise.

func (*MetaHighlight) GetFragmentSizeOk

func (o *MetaHighlight) GetFragmentSizeOk() (*int32, bool)

GetFragmentSizeOk returns a tuple with the FragmentSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaHighlight) GetNumberOfFragments

func (o *MetaHighlight) GetNumberOfFragments() int32

GetNumberOfFragments returns the NumberOfFragments field value if set, zero value otherwise.

func (*MetaHighlight) GetNumberOfFragmentsOk

func (o *MetaHighlight) GetNumberOfFragmentsOk() (*int32, bool)

GetNumberOfFragmentsOk returns a tuple with the NumberOfFragments field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaHighlight) GetPostTags

func (o *MetaHighlight) GetPostTags() []string

GetPostTags returns the PostTags field value if set, zero value otherwise.

func (*MetaHighlight) GetPostTagsOk

func (o *MetaHighlight) GetPostTagsOk() ([]string, bool)

GetPostTagsOk returns a tuple with the PostTags field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaHighlight) GetPreTags

func (o *MetaHighlight) GetPreTags() []string

GetPreTags returns the PreTags field value if set, zero value otherwise.

func (*MetaHighlight) GetPreTagsOk

func (o *MetaHighlight) GetPreTagsOk() ([]string, bool)

GetPreTagsOk returns a tuple with the PreTags field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaHighlight) HasFields

func (o *MetaHighlight) HasFields() bool

HasFields returns a boolean if a field has been set.

func (*MetaHighlight) HasFragmentSize

func (o *MetaHighlight) HasFragmentSize() bool

HasFragmentSize returns a boolean if a field has been set.

func (*MetaHighlight) HasNumberOfFragments

func (o *MetaHighlight) HasNumberOfFragments() bool

HasNumberOfFragments returns a boolean if a field has been set.

func (*MetaHighlight) HasPostTags

func (o *MetaHighlight) HasPostTags() bool

HasPostTags returns a boolean if a field has been set.

func (*MetaHighlight) HasPreTags

func (o *MetaHighlight) HasPreTags() bool

HasPreTags returns a boolean if a field has been set.

func (MetaHighlight) MarshalJSON

func (o MetaHighlight) MarshalJSON() ([]byte, error)

func (*MetaHighlight) SetFields

func (o *MetaHighlight) SetFields(v map[string]MetaHighlight)

SetFields gets a reference to the given map[string]MetaHighlight and assigns it to the Fields field.

func (*MetaHighlight) SetFragmentSize

func (o *MetaHighlight) SetFragmentSize(v int32)

SetFragmentSize gets a reference to the given int32 and assigns it to the FragmentSize field.

func (*MetaHighlight) SetNumberOfFragments

func (o *MetaHighlight) SetNumberOfFragments(v int32)

SetNumberOfFragments gets a reference to the given int32 and assigns it to the NumberOfFragments field.

func (*MetaHighlight) SetPostTags

func (o *MetaHighlight) SetPostTags(v []string)

SetPostTags gets a reference to the given []string and assigns it to the PostTags field.

func (*MetaHighlight) SetPreTags

func (o *MetaHighlight) SetPreTags(v []string)

SetPreTags gets a reference to the given []string and assigns it to the PreTags field.

type MetaHit

type MetaHit struct {
	Timestamp *string                `json:"@timestamp,omitempty"`
	Id        *string                `json:"_id,omitempty"`
	Index     *string                `json:"_index,omitempty"`
	Score     *float32               `json:"_score,omitempty"`
	Source    map[string]interface{} `json:"_source,omitempty"`
	Type      *string                `json:"_type,omitempty"`
	Fields    map[string]interface{} `json:"fields,omitempty"`
	Highlight map[string]interface{} `json:"highlight,omitempty"`
}

MetaHit struct for MetaHit

func NewMetaHit

func NewMetaHit() *MetaHit

NewMetaHit instantiates a new MetaHit object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaHitWithDefaults

func NewMetaHitWithDefaults() *MetaHit

NewMetaHitWithDefaults instantiates a new MetaHit object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaHit) GetFields

func (o *MetaHit) GetFields() map[string]interface{}

GetFields returns the Fields field value if set, zero value otherwise.

func (*MetaHit) GetFieldsOk

func (o *MetaHit) GetFieldsOk() (map[string]interface{}, bool)

GetFieldsOk returns a tuple with the Fields field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaHit) GetHighlight

func (o *MetaHit) GetHighlight() map[string]interface{}

GetHighlight returns the Highlight field value if set, zero value otherwise.

func (*MetaHit) GetHighlightOk

func (o *MetaHit) GetHighlightOk() (map[string]interface{}, bool)

GetHighlightOk returns a tuple with the Highlight field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaHit) GetId

func (o *MetaHit) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*MetaHit) GetIdOk

func (o *MetaHit) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaHit) GetIndex

func (o *MetaHit) GetIndex() string

GetIndex returns the Index field value if set, zero value otherwise.

func (*MetaHit) GetIndexOk

func (o *MetaHit) GetIndexOk() (*string, bool)

GetIndexOk returns a tuple with the Index field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaHit) GetScore

func (o *MetaHit) GetScore() float32

GetScore returns the Score field value if set, zero value otherwise.

func (*MetaHit) GetScoreOk

func (o *MetaHit) GetScoreOk() (*float32, bool)

GetScoreOk returns a tuple with the Score field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaHit) GetSource

func (o *MetaHit) GetSource() map[string]interface{}

GetSource returns the Source field value if set, zero value otherwise.

func (*MetaHit) GetSourceOk

func (o *MetaHit) GetSourceOk() (map[string]interface{}, bool)

GetSourceOk returns a tuple with the Source field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaHit) GetTimestamp

func (o *MetaHit) GetTimestamp() string

GetTimestamp returns the Timestamp field value if set, zero value otherwise.

func (*MetaHit) GetTimestampOk

func (o *MetaHit) GetTimestampOk() (*string, bool)

GetTimestampOk returns a tuple with the Timestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaHit) GetType

func (o *MetaHit) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*MetaHit) GetTypeOk

func (o *MetaHit) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaHit) HasFields

func (o *MetaHit) HasFields() bool

HasFields returns a boolean if a field has been set.

func (*MetaHit) HasHighlight

func (o *MetaHit) HasHighlight() bool

HasHighlight returns a boolean if a field has been set.

func (*MetaHit) HasId

func (o *MetaHit) HasId() bool

HasId returns a boolean if a field has been set.

func (*MetaHit) HasIndex

func (o *MetaHit) HasIndex() bool

HasIndex returns a boolean if a field has been set.

func (*MetaHit) HasScore

func (o *MetaHit) HasScore() bool

HasScore returns a boolean if a field has been set.

func (*MetaHit) HasSource

func (o *MetaHit) HasSource() bool

HasSource returns a boolean if a field has been set.

func (*MetaHit) HasTimestamp

func (o *MetaHit) HasTimestamp() bool

HasTimestamp returns a boolean if a field has been set.

func (*MetaHit) HasType

func (o *MetaHit) HasType() bool

HasType returns a boolean if a field has been set.

func (MetaHit) MarshalJSON

func (o MetaHit) MarshalJSON() ([]byte, error)

func (*MetaHit) SetFields

func (o *MetaHit) SetFields(v map[string]interface{})

SetFields gets a reference to the given map[string]interface{} and assigns it to the Fields field.

func (*MetaHit) SetHighlight

func (o *MetaHit) SetHighlight(v map[string]interface{})

SetHighlight gets a reference to the given map[string]interface{} and assigns it to the Highlight field.

func (*MetaHit) SetId

func (o *MetaHit) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*MetaHit) SetIndex

func (o *MetaHit) SetIndex(v string)

SetIndex gets a reference to the given string and assigns it to the Index field.

func (*MetaHit) SetScore

func (o *MetaHit) SetScore(v float32)

SetScore gets a reference to the given float32 and assigns it to the Score field.

func (*MetaHit) SetSource

func (o *MetaHit) SetSource(v map[string]interface{})

SetSource gets a reference to the given map[string]interface{} and assigns it to the Source field.

func (*MetaHit) SetTimestamp

func (o *MetaHit) SetTimestamp(v string)

SetTimestamp gets a reference to the given string and assigns it to the Timestamp field.

func (*MetaHit) SetType

func (o *MetaHit) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type MetaHits

type MetaHits struct {
	Hits     []MetaHit  `json:"hits,omitempty"`
	MaxScore *float32   `json:"max_score,omitempty"`
	Total    *MetaTotal `json:"total,omitempty"`
}

MetaHits struct for MetaHits

func NewMetaHits

func NewMetaHits() *MetaHits

NewMetaHits instantiates a new MetaHits object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaHitsWithDefaults

func NewMetaHitsWithDefaults() *MetaHits

NewMetaHitsWithDefaults instantiates a new MetaHits object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaHits) GetHits

func (o *MetaHits) GetHits() []MetaHit

GetHits returns the Hits field value if set, zero value otherwise.

func (*MetaHits) GetHitsOk

func (o *MetaHits) GetHitsOk() ([]MetaHit, bool)

GetHitsOk returns a tuple with the Hits field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaHits) GetMaxScore

func (o *MetaHits) GetMaxScore() float32

GetMaxScore returns the MaxScore field value if set, zero value otherwise.

func (*MetaHits) GetMaxScoreOk

func (o *MetaHits) GetMaxScoreOk() (*float32, bool)

GetMaxScoreOk returns a tuple with the MaxScore field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaHits) GetTotal

func (o *MetaHits) GetTotal() MetaTotal

GetTotal returns the Total field value if set, zero value otherwise.

func (*MetaHits) GetTotalOk

func (o *MetaHits) GetTotalOk() (*MetaTotal, bool)

GetTotalOk returns a tuple with the Total field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaHits) HasHits

func (o *MetaHits) HasHits() bool

HasHits returns a boolean if a field has been set.

func (*MetaHits) HasMaxScore

func (o *MetaHits) HasMaxScore() bool

HasMaxScore returns a boolean if a field has been set.

func (*MetaHits) HasTotal

func (o *MetaHits) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (MetaHits) MarshalJSON

func (o MetaHits) MarshalJSON() ([]byte, error)

func (*MetaHits) SetHits

func (o *MetaHits) SetHits(v []MetaHit)

SetHits gets a reference to the given []MetaHit and assigns it to the Hits field.

func (*MetaHits) SetMaxScore

func (o *MetaHits) SetMaxScore(v float32)

SetMaxScore gets a reference to the given float32 and assigns it to the MaxScore field.

func (*MetaHits) SetTotal

func (o *MetaHits) SetTotal(v MetaTotal)

SetTotal gets a reference to the given MetaTotal and assigns it to the Total field.

type MetaHttpRetriesResponse

type MetaHttpRetriesResponse struct {
	Bulk   *int32 `json:"bulk,omitempty"`
	Search *int32 `json:"search,omitempty"`
}

MetaHttpRetriesResponse struct for MetaHttpRetriesResponse

func NewMetaHttpRetriesResponse

func NewMetaHttpRetriesResponse() *MetaHttpRetriesResponse

NewMetaHttpRetriesResponse instantiates a new MetaHttpRetriesResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaHttpRetriesResponseWithDefaults

func NewMetaHttpRetriesResponseWithDefaults() *MetaHttpRetriesResponse

NewMetaHttpRetriesResponseWithDefaults instantiates a new MetaHttpRetriesResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaHttpRetriesResponse) GetBulk

func (o *MetaHttpRetriesResponse) GetBulk() int32

GetBulk returns the Bulk field value if set, zero value otherwise.

func (*MetaHttpRetriesResponse) GetBulkOk

func (o *MetaHttpRetriesResponse) GetBulkOk() (*int32, bool)

GetBulkOk returns a tuple with the Bulk field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaHttpRetriesResponse) GetSearch

func (o *MetaHttpRetriesResponse) GetSearch() int32

GetSearch returns the Search field value if set, zero value otherwise.

func (*MetaHttpRetriesResponse) GetSearchOk

func (o *MetaHttpRetriesResponse) GetSearchOk() (*int32, bool)

GetSearchOk returns a tuple with the Search field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaHttpRetriesResponse) HasBulk

func (o *MetaHttpRetriesResponse) HasBulk() bool

HasBulk returns a boolean if a field has been set.

func (*MetaHttpRetriesResponse) HasSearch

func (o *MetaHttpRetriesResponse) HasSearch() bool

HasSearch returns a boolean if a field has been set.

func (MetaHttpRetriesResponse) MarshalJSON

func (o MetaHttpRetriesResponse) MarshalJSON() ([]byte, error)

func (*MetaHttpRetriesResponse) SetBulk

func (o *MetaHttpRetriesResponse) SetBulk(v int32)

SetBulk gets a reference to the given int32 and assigns it to the Bulk field.

func (*MetaHttpRetriesResponse) SetSearch

func (o *MetaHttpRetriesResponse) SetSearch(v int32)

SetSearch gets a reference to the given int32 and assigns it to the Search field.

type MetaIPRange

type MetaIPRange struct {
	From *string `json:"from,omitempty"`
	To   *string `json:"to,omitempty"`
}

MetaIPRange struct for MetaIPRange

func NewMetaIPRange

func NewMetaIPRange() *MetaIPRange

NewMetaIPRange instantiates a new MetaIPRange object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaIPRangeWithDefaults

func NewMetaIPRangeWithDefaults() *MetaIPRange

NewMetaIPRangeWithDefaults instantiates a new MetaIPRange object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaIPRange) GetFrom

func (o *MetaIPRange) GetFrom() string

GetFrom returns the From field value if set, zero value otherwise.

func (*MetaIPRange) GetFromOk

func (o *MetaIPRange) GetFromOk() (*string, bool)

GetFromOk returns a tuple with the From field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaIPRange) GetTo

func (o *MetaIPRange) GetTo() string

GetTo returns the To field value if set, zero value otherwise.

func (*MetaIPRange) GetToOk

func (o *MetaIPRange) GetToOk() (*string, bool)

GetToOk returns a tuple with the To field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaIPRange) HasFrom

func (o *MetaIPRange) HasFrom() bool

HasFrom returns a boolean if a field has been set.

func (*MetaIPRange) HasTo

func (o *MetaIPRange) HasTo() bool

HasTo returns a boolean if a field has been set.

func (MetaIPRange) MarshalJSON

func (o MetaIPRange) MarshalJSON() ([]byte, error)

func (*MetaIPRange) SetFrom

func (o *MetaIPRange) SetFrom(v string)

SetFrom gets a reference to the given string and assigns it to the From field.

func (*MetaIPRange) SetTo

func (o *MetaIPRange) SetTo(v string)

SetTo gets a reference to the given string and assigns it to the To field.

type MetaIdsQuery

type MetaIdsQuery struct {
	Values []string `json:"values,omitempty"`
}

MetaIdsQuery struct for MetaIdsQuery

func NewMetaIdsQuery

func NewMetaIdsQuery() *MetaIdsQuery

NewMetaIdsQuery instantiates a new MetaIdsQuery object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaIdsQueryWithDefaults

func NewMetaIdsQueryWithDefaults() *MetaIdsQuery

NewMetaIdsQueryWithDefaults instantiates a new MetaIdsQuery object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaIdsQuery) GetValues

func (o *MetaIdsQuery) GetValues() []string

GetValues returns the Values field value if set, zero value otherwise.

func (*MetaIdsQuery) GetValuesOk

func (o *MetaIdsQuery) GetValuesOk() ([]string, bool)

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaIdsQuery) HasValues

func (o *MetaIdsQuery) HasValues() bool

HasValues returns a boolean if a field has been set.

func (MetaIdsQuery) MarshalJSON

func (o MetaIdsQuery) MarshalJSON() ([]byte, error)

func (*MetaIdsQuery) SetValues

func (o *MetaIdsQuery) SetValues(v []string)

SetValues gets a reference to the given []string and assigns it to the Values field.

type MetaIndexAnalysis

type MetaIndexAnalysis struct {
	Analyzer   *map[string]MetaAnalyzer `json:"analyzer,omitempty"`
	CharFilter map[string]interface{}   `json:"char_filter,omitempty"`
	// compatibility with es, alias for TokenFilter
	Filter      map[string]interface{} `json:"filter,omitempty"`
	TokenFilter map[string]interface{} `json:"token_filter,omitempty"`
	Tokenizer   map[string]interface{} `json:"tokenizer,omitempty"`
}

MetaIndexAnalysis struct for MetaIndexAnalysis

func NewMetaIndexAnalysis

func NewMetaIndexAnalysis() *MetaIndexAnalysis

NewMetaIndexAnalysis instantiates a new MetaIndexAnalysis object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaIndexAnalysisWithDefaults

func NewMetaIndexAnalysisWithDefaults() *MetaIndexAnalysis

NewMetaIndexAnalysisWithDefaults instantiates a new MetaIndexAnalysis object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaIndexAnalysis) GetAnalyzer

func (o *MetaIndexAnalysis) GetAnalyzer() map[string]MetaAnalyzer

GetAnalyzer returns the Analyzer field value if set, zero value otherwise.

func (*MetaIndexAnalysis) GetAnalyzerOk

func (o *MetaIndexAnalysis) GetAnalyzerOk() (*map[string]MetaAnalyzer, bool)

GetAnalyzerOk returns a tuple with the Analyzer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaIndexAnalysis) GetCharFilter

func (o *MetaIndexAnalysis) GetCharFilter() map[string]interface{}

GetCharFilter returns the CharFilter field value if set, zero value otherwise.

func (*MetaIndexAnalysis) GetCharFilterOk

func (o *MetaIndexAnalysis) GetCharFilterOk() (map[string]interface{}, bool)

GetCharFilterOk returns a tuple with the CharFilter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaIndexAnalysis) GetFilter

func (o *MetaIndexAnalysis) GetFilter() map[string]interface{}

GetFilter returns the Filter field value if set, zero value otherwise.

func (*MetaIndexAnalysis) GetFilterOk

func (o *MetaIndexAnalysis) GetFilterOk() (map[string]interface{}, bool)

GetFilterOk returns a tuple with the Filter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaIndexAnalysis) GetTokenFilter

func (o *MetaIndexAnalysis) GetTokenFilter() map[string]interface{}

GetTokenFilter returns the TokenFilter field value if set, zero value otherwise.

func (*MetaIndexAnalysis) GetTokenFilterOk

func (o *MetaIndexAnalysis) GetTokenFilterOk() (map[string]interface{}, bool)

GetTokenFilterOk returns a tuple with the TokenFilter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaIndexAnalysis) GetTokenizer

func (o *MetaIndexAnalysis) GetTokenizer() map[string]interface{}

GetTokenizer returns the Tokenizer field value if set, zero value otherwise.

func (*MetaIndexAnalysis) GetTokenizerOk

func (o *MetaIndexAnalysis) GetTokenizerOk() (map[string]interface{}, bool)

GetTokenizerOk returns a tuple with the Tokenizer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaIndexAnalysis) HasAnalyzer

func (o *MetaIndexAnalysis) HasAnalyzer() bool

HasAnalyzer returns a boolean if a field has been set.

func (*MetaIndexAnalysis) HasCharFilter

func (o *MetaIndexAnalysis) HasCharFilter() bool

HasCharFilter returns a boolean if a field has been set.

func (*MetaIndexAnalysis) HasFilter

func (o *MetaIndexAnalysis) HasFilter() bool

HasFilter returns a boolean if a field has been set.

func (*MetaIndexAnalysis) HasTokenFilter

func (o *MetaIndexAnalysis) HasTokenFilter() bool

HasTokenFilter returns a boolean if a field has been set.

func (*MetaIndexAnalysis) HasTokenizer

func (o *MetaIndexAnalysis) HasTokenizer() bool

HasTokenizer returns a boolean if a field has been set.

func (MetaIndexAnalysis) MarshalJSON

func (o MetaIndexAnalysis) MarshalJSON() ([]byte, error)

func (*MetaIndexAnalysis) SetAnalyzer

func (o *MetaIndexAnalysis) SetAnalyzer(v map[string]MetaAnalyzer)

SetAnalyzer gets a reference to the given map[string]MetaAnalyzer and assigns it to the Analyzer field.

func (*MetaIndexAnalysis) SetCharFilter

func (o *MetaIndexAnalysis) SetCharFilter(v map[string]interface{})

SetCharFilter gets a reference to the given map[string]interface{} and assigns it to the CharFilter field.

func (*MetaIndexAnalysis) SetFilter

func (o *MetaIndexAnalysis) SetFilter(v map[string]interface{})

SetFilter gets a reference to the given map[string]interface{} and assigns it to the Filter field.

func (*MetaIndexAnalysis) SetTokenFilter

func (o *MetaIndexAnalysis) SetTokenFilter(v map[string]interface{})

SetTokenFilter gets a reference to the given map[string]interface{} and assigns it to the TokenFilter field.

func (*MetaIndexAnalysis) SetTokenizer

func (o *MetaIndexAnalysis) SetTokenizer(v map[string]interface{})

SetTokenizer gets a reference to the given map[string]interface{} and assigns it to the Tokenizer field.

type MetaIndexSettings

type MetaIndexSettings struct {
	Analysis         *MetaIndexAnalysis `json:"analysis,omitempty"`
	NumberOfReplicas *int32             `json:"number_of_replicas,omitempty"`
	NumberOfShards   *int32             `json:"number_of_shards,omitempty"`
}

MetaIndexSettings struct for MetaIndexSettings

func NewMetaIndexSettings

func NewMetaIndexSettings() *MetaIndexSettings

NewMetaIndexSettings instantiates a new MetaIndexSettings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaIndexSettingsWithDefaults

func NewMetaIndexSettingsWithDefaults() *MetaIndexSettings

NewMetaIndexSettingsWithDefaults instantiates a new MetaIndexSettings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaIndexSettings) GetAnalysis

func (o *MetaIndexSettings) GetAnalysis() MetaIndexAnalysis

GetAnalysis returns the Analysis field value if set, zero value otherwise.

func (*MetaIndexSettings) GetAnalysisOk

func (o *MetaIndexSettings) GetAnalysisOk() (*MetaIndexAnalysis, bool)

GetAnalysisOk returns a tuple with the Analysis field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaIndexSettings) GetNumberOfReplicas

func (o *MetaIndexSettings) GetNumberOfReplicas() int32

GetNumberOfReplicas returns the NumberOfReplicas field value if set, zero value otherwise.

func (*MetaIndexSettings) GetNumberOfReplicasOk

func (o *MetaIndexSettings) GetNumberOfReplicasOk() (*int32, bool)

GetNumberOfReplicasOk returns a tuple with the NumberOfReplicas field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaIndexSettings) GetNumberOfShards

func (o *MetaIndexSettings) GetNumberOfShards() int32

GetNumberOfShards returns the NumberOfShards field value if set, zero value otherwise.

func (*MetaIndexSettings) GetNumberOfShardsOk

func (o *MetaIndexSettings) GetNumberOfShardsOk() (*int32, bool)

GetNumberOfShardsOk returns a tuple with the NumberOfShards field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaIndexSettings) HasAnalysis

func (o *MetaIndexSettings) HasAnalysis() bool

HasAnalysis returns a boolean if a field has been set.

func (*MetaIndexSettings) HasNumberOfReplicas

func (o *MetaIndexSettings) HasNumberOfReplicas() bool

HasNumberOfReplicas returns a boolean if a field has been set.

func (*MetaIndexSettings) HasNumberOfShards

func (o *MetaIndexSettings) HasNumberOfShards() bool

HasNumberOfShards returns a boolean if a field has been set.

func (MetaIndexSettings) MarshalJSON

func (o MetaIndexSettings) MarshalJSON() ([]byte, error)

func (*MetaIndexSettings) SetAnalysis

func (o *MetaIndexSettings) SetAnalysis(v MetaIndexAnalysis)

SetAnalysis gets a reference to the given MetaIndexAnalysis and assigns it to the Analysis field.

func (*MetaIndexSettings) SetNumberOfReplicas

func (o *MetaIndexSettings) SetNumberOfReplicas(v int32)

SetNumberOfReplicas gets a reference to the given int32 and assigns it to the NumberOfReplicas field.

func (*MetaIndexSettings) SetNumberOfShards

func (o *MetaIndexSettings) SetNumberOfShards(v int32)

SetNumberOfShards gets a reference to the given int32 and assigns it to the NumberOfShards field.

type MetaIndexSimple

type MetaIndexSimple struct {
	Mappings    map[string]interface{} `json:"mappings,omitempty"`
	Name        *string                `json:"name,omitempty"`
	Settings    *MetaIndexSettings     `json:"settings,omitempty"`
	ShardNum    *int32                 `json:"shard_num,omitempty"`
	StorageType *string                `json:"storage_type,omitempty"`
}

MetaIndexSimple struct for MetaIndexSimple

func NewMetaIndexSimple

func NewMetaIndexSimple() *MetaIndexSimple

NewMetaIndexSimple instantiates a new MetaIndexSimple object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaIndexSimpleWithDefaults

func NewMetaIndexSimpleWithDefaults() *MetaIndexSimple

NewMetaIndexSimpleWithDefaults instantiates a new MetaIndexSimple object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaIndexSimple) GetMappings

func (o *MetaIndexSimple) GetMappings() map[string]interface{}

GetMappings returns the Mappings field value if set, zero value otherwise.

func (*MetaIndexSimple) GetMappingsOk

func (o *MetaIndexSimple) GetMappingsOk() (map[string]interface{}, bool)

GetMappingsOk returns a tuple with the Mappings field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaIndexSimple) GetName

func (o *MetaIndexSimple) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*MetaIndexSimple) GetNameOk

func (o *MetaIndexSimple) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaIndexSimple) GetSettings

func (o *MetaIndexSimple) GetSettings() MetaIndexSettings

GetSettings returns the Settings field value if set, zero value otherwise.

func (*MetaIndexSimple) GetSettingsOk

func (o *MetaIndexSimple) GetSettingsOk() (*MetaIndexSettings, bool)

GetSettingsOk returns a tuple with the Settings field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaIndexSimple) GetShardNum

func (o *MetaIndexSimple) GetShardNum() int32

GetShardNum returns the ShardNum field value if set, zero value otherwise.

func (*MetaIndexSimple) GetShardNumOk

func (o *MetaIndexSimple) GetShardNumOk() (*int32, bool)

GetShardNumOk returns a tuple with the ShardNum field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaIndexSimple) GetStorageType

func (o *MetaIndexSimple) GetStorageType() string

GetStorageType returns the StorageType field value if set, zero value otherwise.

func (*MetaIndexSimple) GetStorageTypeOk

func (o *MetaIndexSimple) GetStorageTypeOk() (*string, bool)

GetStorageTypeOk returns a tuple with the StorageType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaIndexSimple) HasMappings

func (o *MetaIndexSimple) HasMappings() bool

HasMappings returns a boolean if a field has been set.

func (*MetaIndexSimple) HasName

func (o *MetaIndexSimple) HasName() bool

HasName returns a boolean if a field has been set.

func (*MetaIndexSimple) HasSettings

func (o *MetaIndexSimple) HasSettings() bool

HasSettings returns a boolean if a field has been set.

func (*MetaIndexSimple) HasShardNum

func (o *MetaIndexSimple) HasShardNum() bool

HasShardNum returns a boolean if a field has been set.

func (*MetaIndexSimple) HasStorageType

func (o *MetaIndexSimple) HasStorageType() bool

HasStorageType returns a boolean if a field has been set.

func (MetaIndexSimple) MarshalJSON

func (o MetaIndexSimple) MarshalJSON() ([]byte, error)

func (*MetaIndexSimple) SetMappings

func (o *MetaIndexSimple) SetMappings(v map[string]interface{})

SetMappings gets a reference to the given map[string]interface{} and assigns it to the Mappings field.

func (*MetaIndexSimple) SetName

func (o *MetaIndexSimple) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*MetaIndexSimple) SetSettings

func (o *MetaIndexSimple) SetSettings(v MetaIndexSettings)

SetSettings gets a reference to the given MetaIndexSettings and assigns it to the Settings field.

func (*MetaIndexSimple) SetShardNum

func (o *MetaIndexSimple) SetShardNum(v int32)

SetShardNum gets a reference to the given int32 and assigns it to the ShardNum field.

func (*MetaIndexSimple) SetStorageType

func (o *MetaIndexSimple) SetStorageType(v string)

SetStorageType gets a reference to the given string and assigns it to the StorageType field.

type MetaIndexTemplate

type MetaIndexTemplate struct {
	CreatedAt     *string  `json:"created_at,omitempty"`
	IndexPatterns []string `json:"index_patterns,omitempty"`
	// highest priority is chosen
	Priority  *int32                `json:"priority,omitempty"`
	Template  *MetaTemplateTemplate `json:"template,omitempty"`
	UpdatedAt *string               `json:"updated_at,omitempty"`
}

MetaIndexTemplate struct for MetaIndexTemplate

func NewMetaIndexTemplate

func NewMetaIndexTemplate() *MetaIndexTemplate

NewMetaIndexTemplate instantiates a new MetaIndexTemplate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaIndexTemplateWithDefaults

func NewMetaIndexTemplateWithDefaults() *MetaIndexTemplate

NewMetaIndexTemplateWithDefaults instantiates a new MetaIndexTemplate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaIndexTemplate) GetCreatedAt

func (o *MetaIndexTemplate) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*MetaIndexTemplate) GetCreatedAtOk

func (o *MetaIndexTemplate) GetCreatedAtOk() (*string, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaIndexTemplate) GetIndexPatterns

func (o *MetaIndexTemplate) GetIndexPatterns() []string

GetIndexPatterns returns the IndexPatterns field value if set, zero value otherwise.

func (*MetaIndexTemplate) GetIndexPatternsOk

func (o *MetaIndexTemplate) GetIndexPatternsOk() ([]string, bool)

GetIndexPatternsOk returns a tuple with the IndexPatterns field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaIndexTemplate) GetPriority

func (o *MetaIndexTemplate) GetPriority() int32

GetPriority returns the Priority field value if set, zero value otherwise.

func (*MetaIndexTemplate) GetPriorityOk

func (o *MetaIndexTemplate) GetPriorityOk() (*int32, bool)

GetPriorityOk returns a tuple with the Priority field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaIndexTemplate) GetTemplate

func (o *MetaIndexTemplate) GetTemplate() MetaTemplateTemplate

GetTemplate returns the Template field value if set, zero value otherwise.

func (*MetaIndexTemplate) GetTemplateOk

func (o *MetaIndexTemplate) GetTemplateOk() (*MetaTemplateTemplate, bool)

GetTemplateOk returns a tuple with the Template field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaIndexTemplate) GetUpdatedAt

func (o *MetaIndexTemplate) GetUpdatedAt() string

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*MetaIndexTemplate) GetUpdatedAtOk

func (o *MetaIndexTemplate) GetUpdatedAtOk() (*string, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaIndexTemplate) HasCreatedAt

func (o *MetaIndexTemplate) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*MetaIndexTemplate) HasIndexPatterns

func (o *MetaIndexTemplate) HasIndexPatterns() bool

HasIndexPatterns returns a boolean if a field has been set.

func (*MetaIndexTemplate) HasPriority

func (o *MetaIndexTemplate) HasPriority() bool

HasPriority returns a boolean if a field has been set.

func (*MetaIndexTemplate) HasTemplate

func (o *MetaIndexTemplate) HasTemplate() bool

HasTemplate returns a boolean if a field has been set.

func (*MetaIndexTemplate) HasUpdatedAt

func (o *MetaIndexTemplate) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (MetaIndexTemplate) MarshalJSON

func (o MetaIndexTemplate) MarshalJSON() ([]byte, error)

func (*MetaIndexTemplate) SetCreatedAt

func (o *MetaIndexTemplate) SetCreatedAt(v string)

SetCreatedAt gets a reference to the given string and assigns it to the CreatedAt field.

func (*MetaIndexTemplate) SetIndexPatterns

func (o *MetaIndexTemplate) SetIndexPatterns(v []string)

SetIndexPatterns gets a reference to the given []string and assigns it to the IndexPatterns field.

func (*MetaIndexTemplate) SetPriority

func (o *MetaIndexTemplate) SetPriority(v int32)

SetPriority gets a reference to the given int32 and assigns it to the Priority field.

func (*MetaIndexTemplate) SetTemplate

func (o *MetaIndexTemplate) SetTemplate(v MetaTemplateTemplate)

SetTemplate gets a reference to the given MetaTemplateTemplate and assigns it to the Template field.

func (*MetaIndexTemplate) SetUpdatedAt

func (o *MetaIndexTemplate) SetUpdatedAt(v string)

SetUpdatedAt gets a reference to the given string and assigns it to the UpdatedAt field.

type MetaJSONIngest

type MetaJSONIngest struct {
	Index   *string                  `json:"index,omitempty"`
	Records []map[string]interface{} `json:"records,omitempty"`
}

MetaJSONIngest struct for MetaJSONIngest

func NewMetaJSONIngest

func NewMetaJSONIngest() *MetaJSONIngest

NewMetaJSONIngest instantiates a new MetaJSONIngest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaJSONIngestWithDefaults

func NewMetaJSONIngestWithDefaults() *MetaJSONIngest

NewMetaJSONIngestWithDefaults instantiates a new MetaJSONIngest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaJSONIngest) GetIndex

func (o *MetaJSONIngest) GetIndex() string

GetIndex returns the Index field value if set, zero value otherwise.

func (*MetaJSONIngest) GetIndexOk

func (o *MetaJSONIngest) GetIndexOk() (*string, bool)

GetIndexOk returns a tuple with the Index field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaJSONIngest) GetRecords

func (o *MetaJSONIngest) GetRecords() []map[string]interface{}

GetRecords returns the Records field value if set, zero value otherwise.

func (*MetaJSONIngest) GetRecordsOk

func (o *MetaJSONIngest) GetRecordsOk() ([]map[string]interface{}, bool)

GetRecordsOk returns a tuple with the Records field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaJSONIngest) HasIndex

func (o *MetaJSONIngest) HasIndex() bool

HasIndex returns a boolean if a field has been set.

func (*MetaJSONIngest) HasRecords

func (o *MetaJSONIngest) HasRecords() bool

HasRecords returns a boolean if a field has been set.

func (MetaJSONIngest) MarshalJSON

func (o MetaJSONIngest) MarshalJSON() ([]byte, error)

func (*MetaJSONIngest) SetIndex

func (o *MetaJSONIngest) SetIndex(v string)

SetIndex gets a reference to the given string and assigns it to the Index field.

func (*MetaJSONIngest) SetRecords

func (o *MetaJSONIngest) SetRecords(v []map[string]interface{})

SetRecords gets a reference to the given []map[string]interface{} and assigns it to the Records field.

type MetaMappings

type MetaMappings struct {
	Properties *map[string]MetaProperty `json:"properties,omitempty"`
}

MetaMappings struct for MetaMappings

func NewMetaMappings

func NewMetaMappings() *MetaMappings

NewMetaMappings instantiates a new MetaMappings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaMappingsWithDefaults

func NewMetaMappingsWithDefaults() *MetaMappings

NewMetaMappingsWithDefaults instantiates a new MetaMappings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaMappings) GetProperties

func (o *MetaMappings) GetProperties() map[string]MetaProperty

GetProperties returns the Properties field value if set, zero value otherwise.

func (*MetaMappings) GetPropertiesOk

func (o *MetaMappings) GetPropertiesOk() (*map[string]MetaProperty, bool)

GetPropertiesOk returns a tuple with the Properties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaMappings) HasProperties

func (o *MetaMappings) HasProperties() bool

HasProperties returns a boolean if a field has been set.

func (MetaMappings) MarshalJSON

func (o MetaMappings) MarshalJSON() ([]byte, error)

func (*MetaMappings) SetProperties

func (o *MetaMappings) SetProperties(v map[string]MetaProperty)

SetProperties gets a reference to the given map[string]MetaProperty and assigns it to the Properties field.

type MetaMatchBoolPrefixQuery

type MetaMatchBoolPrefixQuery struct {
	Analyzer *string  `json:"analyzer,omitempty"`
	Boost    *float32 `json:"boost,omitempty"`
	Query    *string  `json:"query,omitempty"`
}

MetaMatchBoolPrefixQuery struct for MetaMatchBoolPrefixQuery

func NewMetaMatchBoolPrefixQuery

func NewMetaMatchBoolPrefixQuery() *MetaMatchBoolPrefixQuery

NewMetaMatchBoolPrefixQuery instantiates a new MetaMatchBoolPrefixQuery object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaMatchBoolPrefixQueryWithDefaults

func NewMetaMatchBoolPrefixQueryWithDefaults() *MetaMatchBoolPrefixQuery

NewMetaMatchBoolPrefixQueryWithDefaults instantiates a new MetaMatchBoolPrefixQuery object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaMatchBoolPrefixQuery) GetAnalyzer

func (o *MetaMatchBoolPrefixQuery) GetAnalyzer() string

GetAnalyzer returns the Analyzer field value if set, zero value otherwise.

func (*MetaMatchBoolPrefixQuery) GetAnalyzerOk

func (o *MetaMatchBoolPrefixQuery) GetAnalyzerOk() (*string, bool)

GetAnalyzerOk returns a tuple with the Analyzer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaMatchBoolPrefixQuery) GetBoost

func (o *MetaMatchBoolPrefixQuery) GetBoost() float32

GetBoost returns the Boost field value if set, zero value otherwise.

func (*MetaMatchBoolPrefixQuery) GetBoostOk

func (o *MetaMatchBoolPrefixQuery) GetBoostOk() (*float32, bool)

GetBoostOk returns a tuple with the Boost field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaMatchBoolPrefixQuery) GetQuery

func (o *MetaMatchBoolPrefixQuery) GetQuery() string

GetQuery returns the Query field value if set, zero value otherwise.

func (*MetaMatchBoolPrefixQuery) GetQueryOk

func (o *MetaMatchBoolPrefixQuery) GetQueryOk() (*string, bool)

GetQueryOk returns a tuple with the Query field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaMatchBoolPrefixQuery) HasAnalyzer

func (o *MetaMatchBoolPrefixQuery) HasAnalyzer() bool

HasAnalyzer returns a boolean if a field has been set.

func (*MetaMatchBoolPrefixQuery) HasBoost

func (o *MetaMatchBoolPrefixQuery) HasBoost() bool

HasBoost returns a boolean if a field has been set.

func (*MetaMatchBoolPrefixQuery) HasQuery

func (o *MetaMatchBoolPrefixQuery) HasQuery() bool

HasQuery returns a boolean if a field has been set.

func (MetaMatchBoolPrefixQuery) MarshalJSON

func (o MetaMatchBoolPrefixQuery) MarshalJSON() ([]byte, error)

func (*MetaMatchBoolPrefixQuery) SetAnalyzer

func (o *MetaMatchBoolPrefixQuery) SetAnalyzer(v string)

SetAnalyzer gets a reference to the given string and assigns it to the Analyzer field.

func (*MetaMatchBoolPrefixQuery) SetBoost

func (o *MetaMatchBoolPrefixQuery) SetBoost(v float32)

SetBoost gets a reference to the given float32 and assigns it to the Boost field.

func (*MetaMatchBoolPrefixQuery) SetQuery

func (o *MetaMatchBoolPrefixQuery) SetQuery(v string)

SetQuery gets a reference to the given string and assigns it to the Query field.

type MetaMatchPhrasePrefixQuery

type MetaMatchPhrasePrefixQuery struct {
	Analyzer *string  `json:"analyzer,omitempty"`
	Boost    *float32 `json:"boost,omitempty"`
	Query    *string  `json:"query,omitempty"`
}

MetaMatchPhrasePrefixQuery struct for MetaMatchPhrasePrefixQuery

func NewMetaMatchPhrasePrefixQuery

func NewMetaMatchPhrasePrefixQuery() *MetaMatchPhrasePrefixQuery

NewMetaMatchPhrasePrefixQuery instantiates a new MetaMatchPhrasePrefixQuery object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaMatchPhrasePrefixQueryWithDefaults

func NewMetaMatchPhrasePrefixQueryWithDefaults() *MetaMatchPhrasePrefixQuery

NewMetaMatchPhrasePrefixQueryWithDefaults instantiates a new MetaMatchPhrasePrefixQuery object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaMatchPhrasePrefixQuery) GetAnalyzer

func (o *MetaMatchPhrasePrefixQuery) GetAnalyzer() string

GetAnalyzer returns the Analyzer field value if set, zero value otherwise.

func (*MetaMatchPhrasePrefixQuery) GetAnalyzerOk

func (o *MetaMatchPhrasePrefixQuery) GetAnalyzerOk() (*string, bool)

GetAnalyzerOk returns a tuple with the Analyzer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaMatchPhrasePrefixQuery) GetBoost

func (o *MetaMatchPhrasePrefixQuery) GetBoost() float32

GetBoost returns the Boost field value if set, zero value otherwise.

func (*MetaMatchPhrasePrefixQuery) GetBoostOk

func (o *MetaMatchPhrasePrefixQuery) GetBoostOk() (*float32, bool)

GetBoostOk returns a tuple with the Boost field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaMatchPhrasePrefixQuery) GetQuery

func (o *MetaMatchPhrasePrefixQuery) GetQuery() string

GetQuery returns the Query field value if set, zero value otherwise.

func (*MetaMatchPhrasePrefixQuery) GetQueryOk

func (o *MetaMatchPhrasePrefixQuery) GetQueryOk() (*string, bool)

GetQueryOk returns a tuple with the Query field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaMatchPhrasePrefixQuery) HasAnalyzer

func (o *MetaMatchPhrasePrefixQuery) HasAnalyzer() bool

HasAnalyzer returns a boolean if a field has been set.

func (*MetaMatchPhrasePrefixQuery) HasBoost

func (o *MetaMatchPhrasePrefixQuery) HasBoost() bool

HasBoost returns a boolean if a field has been set.

func (*MetaMatchPhrasePrefixQuery) HasQuery

func (o *MetaMatchPhrasePrefixQuery) HasQuery() bool

HasQuery returns a boolean if a field has been set.

func (MetaMatchPhrasePrefixQuery) MarshalJSON

func (o MetaMatchPhrasePrefixQuery) MarshalJSON() ([]byte, error)

func (*MetaMatchPhrasePrefixQuery) SetAnalyzer

func (o *MetaMatchPhrasePrefixQuery) SetAnalyzer(v string)

SetAnalyzer gets a reference to the given string and assigns it to the Analyzer field.

func (*MetaMatchPhrasePrefixQuery) SetBoost

func (o *MetaMatchPhrasePrefixQuery) SetBoost(v float32)

SetBoost gets a reference to the given float32 and assigns it to the Boost field.

func (*MetaMatchPhrasePrefixQuery) SetQuery

func (o *MetaMatchPhrasePrefixQuery) SetQuery(v string)

SetQuery gets a reference to the given string and assigns it to the Query field.

type MetaMatchPhraseQuery

type MetaMatchPhraseQuery struct {
	Analyzer *string  `json:"analyzer,omitempty"`
	Boost    *float32 `json:"boost,omitempty"`
	Query    *string  `json:"query,omitempty"`
}

MetaMatchPhraseQuery struct for MetaMatchPhraseQuery

func NewMetaMatchPhraseQuery

func NewMetaMatchPhraseQuery() *MetaMatchPhraseQuery

NewMetaMatchPhraseQuery instantiates a new MetaMatchPhraseQuery object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaMatchPhraseQueryWithDefaults

func NewMetaMatchPhraseQueryWithDefaults() *MetaMatchPhraseQuery

NewMetaMatchPhraseQueryWithDefaults instantiates a new MetaMatchPhraseQuery object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaMatchPhraseQuery) GetAnalyzer

func (o *MetaMatchPhraseQuery) GetAnalyzer() string

GetAnalyzer returns the Analyzer field value if set, zero value otherwise.

func (*MetaMatchPhraseQuery) GetAnalyzerOk

func (o *MetaMatchPhraseQuery) GetAnalyzerOk() (*string, bool)

GetAnalyzerOk returns a tuple with the Analyzer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaMatchPhraseQuery) GetBoost

func (o *MetaMatchPhraseQuery) GetBoost() float32

GetBoost returns the Boost field value if set, zero value otherwise.

func (*MetaMatchPhraseQuery) GetBoostOk

func (o *MetaMatchPhraseQuery) GetBoostOk() (*float32, bool)

GetBoostOk returns a tuple with the Boost field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaMatchPhraseQuery) GetQuery

func (o *MetaMatchPhraseQuery) GetQuery() string

GetQuery returns the Query field value if set, zero value otherwise.

func (*MetaMatchPhraseQuery) GetQueryOk

func (o *MetaMatchPhraseQuery) GetQueryOk() (*string, bool)

GetQueryOk returns a tuple with the Query field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaMatchPhraseQuery) HasAnalyzer

func (o *MetaMatchPhraseQuery) HasAnalyzer() bool

HasAnalyzer returns a boolean if a field has been set.

func (*MetaMatchPhraseQuery) HasBoost

func (o *MetaMatchPhraseQuery) HasBoost() bool

HasBoost returns a boolean if a field has been set.

func (*MetaMatchPhraseQuery) HasQuery

func (o *MetaMatchPhraseQuery) HasQuery() bool

HasQuery returns a boolean if a field has been set.

func (MetaMatchPhraseQuery) MarshalJSON

func (o MetaMatchPhraseQuery) MarshalJSON() ([]byte, error)

func (*MetaMatchPhraseQuery) SetAnalyzer

func (o *MetaMatchPhraseQuery) SetAnalyzer(v string)

SetAnalyzer gets a reference to the given string and assigns it to the Analyzer field.

func (*MetaMatchPhraseQuery) SetBoost

func (o *MetaMatchPhraseQuery) SetBoost(v float32)

SetBoost gets a reference to the given float32 and assigns it to the Boost field.

func (*MetaMatchPhraseQuery) SetQuery

func (o *MetaMatchPhraseQuery) SetQuery(v string)

SetQuery gets a reference to the given string and assigns it to the Query field.

type MetaMatchQuery

type MetaMatchQuery struct {
	Analyzer *string  `json:"analyzer,omitempty"`
	Boost    *float32 `json:"boost,omitempty"`
	// auto, 1,2,3,n
	Fuzziness map[string]interface{} `json:"fuzziness,omitempty"`
	// or(default), and
	Operator     *string  `json:"operator,omitempty"`
	PrefixLength *float32 `json:"prefix_length,omitempty"`
	Query        *string  `json:"query,omitempty"`
}

MetaMatchQuery struct for MetaMatchQuery

func NewMetaMatchQuery

func NewMetaMatchQuery() *MetaMatchQuery

NewMetaMatchQuery instantiates a new MetaMatchQuery object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaMatchQueryWithDefaults

func NewMetaMatchQueryWithDefaults() *MetaMatchQuery

NewMetaMatchQueryWithDefaults instantiates a new MetaMatchQuery object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaMatchQuery) GetAnalyzer

func (o *MetaMatchQuery) GetAnalyzer() string

GetAnalyzer returns the Analyzer field value if set, zero value otherwise.

func (*MetaMatchQuery) GetAnalyzerOk

func (o *MetaMatchQuery) GetAnalyzerOk() (*string, bool)

GetAnalyzerOk returns a tuple with the Analyzer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaMatchQuery) GetBoost

func (o *MetaMatchQuery) GetBoost() float32

GetBoost returns the Boost field value if set, zero value otherwise.

func (*MetaMatchQuery) GetBoostOk

func (o *MetaMatchQuery) GetBoostOk() (*float32, bool)

GetBoostOk returns a tuple with the Boost field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaMatchQuery) GetFuzziness

func (o *MetaMatchQuery) GetFuzziness() map[string]interface{}

GetFuzziness returns the Fuzziness field value if set, zero value otherwise.

func (*MetaMatchQuery) GetFuzzinessOk

func (o *MetaMatchQuery) GetFuzzinessOk() (map[string]interface{}, bool)

GetFuzzinessOk returns a tuple with the Fuzziness field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaMatchQuery) GetOperator

func (o *MetaMatchQuery) GetOperator() string

GetOperator returns the Operator field value if set, zero value otherwise.

func (*MetaMatchQuery) GetOperatorOk

func (o *MetaMatchQuery) GetOperatorOk() (*string, bool)

GetOperatorOk returns a tuple with the Operator field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaMatchQuery) GetPrefixLength

func (o *MetaMatchQuery) GetPrefixLength() float32

GetPrefixLength returns the PrefixLength field value if set, zero value otherwise.

func (*MetaMatchQuery) GetPrefixLengthOk

func (o *MetaMatchQuery) GetPrefixLengthOk() (*float32, bool)

GetPrefixLengthOk returns a tuple with the PrefixLength field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaMatchQuery) GetQuery

func (o *MetaMatchQuery) GetQuery() string

GetQuery returns the Query field value if set, zero value otherwise.

func (*MetaMatchQuery) GetQueryOk

func (o *MetaMatchQuery) GetQueryOk() (*string, bool)

GetQueryOk returns a tuple with the Query field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaMatchQuery) HasAnalyzer

func (o *MetaMatchQuery) HasAnalyzer() bool

HasAnalyzer returns a boolean if a field has been set.

func (*MetaMatchQuery) HasBoost

func (o *MetaMatchQuery) HasBoost() bool

HasBoost returns a boolean if a field has been set.

func (*MetaMatchQuery) HasFuzziness

func (o *MetaMatchQuery) HasFuzziness() bool

HasFuzziness returns a boolean if a field has been set.

func (*MetaMatchQuery) HasOperator

func (o *MetaMatchQuery) HasOperator() bool

HasOperator returns a boolean if a field has been set.

func (*MetaMatchQuery) HasPrefixLength

func (o *MetaMatchQuery) HasPrefixLength() bool

HasPrefixLength returns a boolean if a field has been set.

func (*MetaMatchQuery) HasQuery

func (o *MetaMatchQuery) HasQuery() bool

HasQuery returns a boolean if a field has been set.

func (MetaMatchQuery) MarshalJSON

func (o MetaMatchQuery) MarshalJSON() ([]byte, error)

func (*MetaMatchQuery) SetAnalyzer

func (o *MetaMatchQuery) SetAnalyzer(v string)

SetAnalyzer gets a reference to the given string and assigns it to the Analyzer field.

func (*MetaMatchQuery) SetBoost

func (o *MetaMatchQuery) SetBoost(v float32)

SetBoost gets a reference to the given float32 and assigns it to the Boost field.

func (*MetaMatchQuery) SetFuzziness

func (o *MetaMatchQuery) SetFuzziness(v map[string]interface{})

SetFuzziness gets a reference to the given map[string]interface{} and assigns it to the Fuzziness field.

func (*MetaMatchQuery) SetOperator

func (o *MetaMatchQuery) SetOperator(v string)

SetOperator gets a reference to the given string and assigns it to the Operator field.

func (*MetaMatchQuery) SetPrefixLength

func (o *MetaMatchQuery) SetPrefixLength(v float32)

SetPrefixLength gets a reference to the given float32 and assigns it to the PrefixLength field.

func (*MetaMatchQuery) SetQuery

func (o *MetaMatchQuery) SetQuery(v string)

SetQuery gets a reference to the given string and assigns it to the Query field.

type MetaMultiMatchQuery

type MetaMultiMatchQuery struct {
	Analyzer           *string  `json:"analyzer,omitempty"`
	Boost              *float32 `json:"boost,omitempty"`
	Fields             []string `json:"fields,omitempty"`
	MinimumShouldMatch *float32 `json:"minimum_should_match,omitempty"`
	// or(default), and
	Operator *string `json:"operator,omitempty"`
	Query    *string `json:"query,omitempty"`
	// best_fields(default), most_fields, cross_fields, phrase, phrase_prefix, bool_prefix
	Type *string `json:"type,omitempty"`
}

MetaMultiMatchQuery struct for MetaMultiMatchQuery

func NewMetaMultiMatchQuery

func NewMetaMultiMatchQuery() *MetaMultiMatchQuery

NewMetaMultiMatchQuery instantiates a new MetaMultiMatchQuery object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaMultiMatchQueryWithDefaults

func NewMetaMultiMatchQueryWithDefaults() *MetaMultiMatchQuery

NewMetaMultiMatchQueryWithDefaults instantiates a new MetaMultiMatchQuery object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaMultiMatchQuery) GetAnalyzer

func (o *MetaMultiMatchQuery) GetAnalyzer() string

GetAnalyzer returns the Analyzer field value if set, zero value otherwise.

func (*MetaMultiMatchQuery) GetAnalyzerOk

func (o *MetaMultiMatchQuery) GetAnalyzerOk() (*string, bool)

GetAnalyzerOk returns a tuple with the Analyzer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaMultiMatchQuery) GetBoost

func (o *MetaMultiMatchQuery) GetBoost() float32

GetBoost returns the Boost field value if set, zero value otherwise.

func (*MetaMultiMatchQuery) GetBoostOk

func (o *MetaMultiMatchQuery) GetBoostOk() (*float32, bool)

GetBoostOk returns a tuple with the Boost field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaMultiMatchQuery) GetFields

func (o *MetaMultiMatchQuery) GetFields() []string

GetFields returns the Fields field value if set, zero value otherwise.

func (*MetaMultiMatchQuery) GetFieldsOk

func (o *MetaMultiMatchQuery) GetFieldsOk() ([]string, bool)

GetFieldsOk returns a tuple with the Fields field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaMultiMatchQuery) GetMinimumShouldMatch

func (o *MetaMultiMatchQuery) GetMinimumShouldMatch() float32

GetMinimumShouldMatch returns the MinimumShouldMatch field value if set, zero value otherwise.

func (*MetaMultiMatchQuery) GetMinimumShouldMatchOk

func (o *MetaMultiMatchQuery) GetMinimumShouldMatchOk() (*float32, bool)

GetMinimumShouldMatchOk returns a tuple with the MinimumShouldMatch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaMultiMatchQuery) GetOperator

func (o *MetaMultiMatchQuery) GetOperator() string

GetOperator returns the Operator field value if set, zero value otherwise.

func (*MetaMultiMatchQuery) GetOperatorOk

func (o *MetaMultiMatchQuery) GetOperatorOk() (*string, bool)

GetOperatorOk returns a tuple with the Operator field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaMultiMatchQuery) GetQuery

func (o *MetaMultiMatchQuery) GetQuery() string

GetQuery returns the Query field value if set, zero value otherwise.

func (*MetaMultiMatchQuery) GetQueryOk

func (o *MetaMultiMatchQuery) GetQueryOk() (*string, bool)

GetQueryOk returns a tuple with the Query field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaMultiMatchQuery) GetType

func (o *MetaMultiMatchQuery) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*MetaMultiMatchQuery) GetTypeOk

func (o *MetaMultiMatchQuery) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaMultiMatchQuery) HasAnalyzer

func (o *MetaMultiMatchQuery) HasAnalyzer() bool

HasAnalyzer returns a boolean if a field has been set.

func (*MetaMultiMatchQuery) HasBoost

func (o *MetaMultiMatchQuery) HasBoost() bool

HasBoost returns a boolean if a field has been set.

func (*MetaMultiMatchQuery) HasFields

func (o *MetaMultiMatchQuery) HasFields() bool

HasFields returns a boolean if a field has been set.

func (*MetaMultiMatchQuery) HasMinimumShouldMatch

func (o *MetaMultiMatchQuery) HasMinimumShouldMatch() bool

HasMinimumShouldMatch returns a boolean if a field has been set.

func (*MetaMultiMatchQuery) HasOperator

func (o *MetaMultiMatchQuery) HasOperator() bool

HasOperator returns a boolean if a field has been set.

func (*MetaMultiMatchQuery) HasQuery

func (o *MetaMultiMatchQuery) HasQuery() bool

HasQuery returns a boolean if a field has been set.

func (*MetaMultiMatchQuery) HasType

func (o *MetaMultiMatchQuery) HasType() bool

HasType returns a boolean if a field has been set.

func (MetaMultiMatchQuery) MarshalJSON

func (o MetaMultiMatchQuery) MarshalJSON() ([]byte, error)

func (*MetaMultiMatchQuery) SetAnalyzer

func (o *MetaMultiMatchQuery) SetAnalyzer(v string)

SetAnalyzer gets a reference to the given string and assigns it to the Analyzer field.

func (*MetaMultiMatchQuery) SetBoost

func (o *MetaMultiMatchQuery) SetBoost(v float32)

SetBoost gets a reference to the given float32 and assigns it to the Boost field.

func (*MetaMultiMatchQuery) SetFields

func (o *MetaMultiMatchQuery) SetFields(v []string)

SetFields gets a reference to the given []string and assigns it to the Fields field.

func (*MetaMultiMatchQuery) SetMinimumShouldMatch

func (o *MetaMultiMatchQuery) SetMinimumShouldMatch(v float32)

SetMinimumShouldMatch gets a reference to the given float32 and assigns it to the MinimumShouldMatch field.

func (*MetaMultiMatchQuery) SetOperator

func (o *MetaMultiMatchQuery) SetOperator(v string)

SetOperator gets a reference to the given string and assigns it to the Operator field.

func (*MetaMultiMatchQuery) SetQuery

func (o *MetaMultiMatchQuery) SetQuery(v string)

SetQuery gets a reference to the given string and assigns it to the Query field.

func (*MetaMultiMatchQuery) SetType

func (o *MetaMultiMatchQuery) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type MetaPage

type MetaPage struct {
	PageNum  *int32 `json:"page_num,omitempty"`
	PageSize *int32 `json:"page_size,omitempty"`
	Total    *int32 `json:"total,omitempty"`
}

MetaPage struct for MetaPage

func NewMetaPage

func NewMetaPage() *MetaPage

NewMetaPage instantiates a new MetaPage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaPageWithDefaults

func NewMetaPageWithDefaults() *MetaPage

NewMetaPageWithDefaults instantiates a new MetaPage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaPage) GetPageNum

func (o *MetaPage) GetPageNum() int32

GetPageNum returns the PageNum field value if set, zero value otherwise.

func (*MetaPage) GetPageNumOk

func (o *MetaPage) GetPageNumOk() (*int32, bool)

GetPageNumOk returns a tuple with the PageNum field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaPage) GetPageSize

func (o *MetaPage) GetPageSize() int32

GetPageSize returns the PageSize field value if set, zero value otherwise.

func (*MetaPage) GetPageSizeOk

func (o *MetaPage) GetPageSizeOk() (*int32, bool)

GetPageSizeOk returns a tuple with the PageSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaPage) GetTotal

func (o *MetaPage) GetTotal() int32

GetTotal returns the Total field value if set, zero value otherwise.

func (*MetaPage) GetTotalOk

func (o *MetaPage) GetTotalOk() (*int32, bool)

GetTotalOk returns a tuple with the Total field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaPage) HasPageNum

func (o *MetaPage) HasPageNum() bool

HasPageNum returns a boolean if a field has been set.

func (*MetaPage) HasPageSize

func (o *MetaPage) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (*MetaPage) HasTotal

func (o *MetaPage) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (MetaPage) MarshalJSON

func (o MetaPage) MarshalJSON() ([]byte, error)

func (*MetaPage) SetPageNum

func (o *MetaPage) SetPageNum(v int32)

SetPageNum gets a reference to the given int32 and assigns it to the PageNum field.

func (*MetaPage) SetPageSize

func (o *MetaPage) SetPageSize(v int32)

SetPageSize gets a reference to the given int32 and assigns it to the PageSize field.

func (*MetaPage) SetTotal

func (o *MetaPage) SetTotal(v int32)

SetTotal gets a reference to the given int32 and assigns it to the Total field.

type MetaPrefixQuery

type MetaPrefixQuery struct {
	Boost *float32 `json:"boost,omitempty"`
	// You can speed up prefix queries using the index_prefixes mapping parameter.
	Value *string `json:"value,omitempty"`
}

MetaPrefixQuery struct for MetaPrefixQuery

func NewMetaPrefixQuery

func NewMetaPrefixQuery() *MetaPrefixQuery

NewMetaPrefixQuery instantiates a new MetaPrefixQuery object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaPrefixQueryWithDefaults

func NewMetaPrefixQueryWithDefaults() *MetaPrefixQuery

NewMetaPrefixQueryWithDefaults instantiates a new MetaPrefixQuery object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaPrefixQuery) GetBoost

func (o *MetaPrefixQuery) GetBoost() float32

GetBoost returns the Boost field value if set, zero value otherwise.

func (*MetaPrefixQuery) GetBoostOk

func (o *MetaPrefixQuery) GetBoostOk() (*float32, bool)

GetBoostOk returns a tuple with the Boost field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaPrefixQuery) GetValue

func (o *MetaPrefixQuery) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*MetaPrefixQuery) GetValueOk

func (o *MetaPrefixQuery) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaPrefixQuery) HasBoost

func (o *MetaPrefixQuery) HasBoost() bool

HasBoost returns a boolean if a field has been set.

func (*MetaPrefixQuery) HasValue

func (o *MetaPrefixQuery) HasValue() bool

HasValue returns a boolean if a field has been set.

func (MetaPrefixQuery) MarshalJSON

func (o MetaPrefixQuery) MarshalJSON() ([]byte, error)

func (*MetaPrefixQuery) SetBoost

func (o *MetaPrefixQuery) SetBoost(v float32)

SetBoost gets a reference to the given float32 and assigns it to the Boost field.

func (*MetaPrefixQuery) SetValue

func (o *MetaPrefixQuery) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

type MetaProperty

type MetaProperty struct {
	Aggregatable *bool   `json:"aggregatable,omitempty"`
	Analyzer     *string `json:"analyzer,omitempty"`
	// Fields allow the same string value to be indexed in multiple ways for different purposes, such as one field for search and a multi-field for sorting and aggregations, or the same string value analyzed by different analyzers. If the Fields property is defined within a sub-field, it will be ignored.  Currently, only \"text\" fields support the Fields parameter.
	Fields *map[string]MetaProperty `json:"fields,omitempty"`
	// date format yyyy-MM-dd HH:mm:ss || yyyy-MM-dd || epoch_millis
	Format         *string `json:"format,omitempty"`
	Highlightable  *bool   `json:"highlightable,omitempty"`
	Index          *bool   `json:"index,omitempty"`
	SearchAnalyzer *string `json:"search_analyzer,omitempty"`
	Sortable       *bool   `json:"sortable,omitempty"`
	Store          *bool   `json:"store,omitempty"`
	// date format time_zone
	TimeZone *string `json:"time_zone,omitempty"`
	// text, keyword, date, numeric, boolean, geo_point
	Type *string `json:"type,omitempty"`
}

MetaProperty struct for MetaProperty

func NewMetaProperty

func NewMetaProperty() *MetaProperty

NewMetaProperty instantiates a new MetaProperty object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaPropertyWithDefaults

func NewMetaPropertyWithDefaults() *MetaProperty

NewMetaPropertyWithDefaults instantiates a new MetaProperty object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaProperty) GetAggregatable

func (o *MetaProperty) GetAggregatable() bool

GetAggregatable returns the Aggregatable field value if set, zero value otherwise.

func (*MetaProperty) GetAggregatableOk

func (o *MetaProperty) GetAggregatableOk() (*bool, bool)

GetAggregatableOk returns a tuple with the Aggregatable field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaProperty) GetAnalyzer

func (o *MetaProperty) GetAnalyzer() string

GetAnalyzer returns the Analyzer field value if set, zero value otherwise.

func (*MetaProperty) GetAnalyzerOk

func (o *MetaProperty) GetAnalyzerOk() (*string, bool)

GetAnalyzerOk returns a tuple with the Analyzer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaProperty) GetFields

func (o *MetaProperty) GetFields() map[string]MetaProperty

GetFields returns the Fields field value if set, zero value otherwise.

func (*MetaProperty) GetFieldsOk

func (o *MetaProperty) GetFieldsOk() (*map[string]MetaProperty, bool)

GetFieldsOk returns a tuple with the Fields field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaProperty) GetFormat

func (o *MetaProperty) GetFormat() string

GetFormat returns the Format field value if set, zero value otherwise.

func (*MetaProperty) GetFormatOk

func (o *MetaProperty) GetFormatOk() (*string, bool)

GetFormatOk returns a tuple with the Format field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaProperty) GetHighlightable

func (o *MetaProperty) GetHighlightable() bool

GetHighlightable returns the Highlightable field value if set, zero value otherwise.

func (*MetaProperty) GetHighlightableOk

func (o *MetaProperty) GetHighlightableOk() (*bool, bool)

GetHighlightableOk returns a tuple with the Highlightable field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaProperty) GetIndex

func (o *MetaProperty) GetIndex() bool

GetIndex returns the Index field value if set, zero value otherwise.

func (*MetaProperty) GetIndexOk

func (o *MetaProperty) GetIndexOk() (*bool, bool)

GetIndexOk returns a tuple with the Index field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaProperty) GetSearchAnalyzer

func (o *MetaProperty) GetSearchAnalyzer() string

GetSearchAnalyzer returns the SearchAnalyzer field value if set, zero value otherwise.

func (*MetaProperty) GetSearchAnalyzerOk

func (o *MetaProperty) GetSearchAnalyzerOk() (*string, bool)

GetSearchAnalyzerOk returns a tuple with the SearchAnalyzer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaProperty) GetSortable

func (o *MetaProperty) GetSortable() bool

GetSortable returns the Sortable field value if set, zero value otherwise.

func (*MetaProperty) GetSortableOk

func (o *MetaProperty) GetSortableOk() (*bool, bool)

GetSortableOk returns a tuple with the Sortable field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaProperty) GetStore

func (o *MetaProperty) GetStore() bool

GetStore returns the Store field value if set, zero value otherwise.

func (*MetaProperty) GetStoreOk

func (o *MetaProperty) GetStoreOk() (*bool, bool)

GetStoreOk returns a tuple with the Store field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaProperty) GetTimeZone

func (o *MetaProperty) GetTimeZone() string

GetTimeZone returns the TimeZone field value if set, zero value otherwise.

func (*MetaProperty) GetTimeZoneOk

func (o *MetaProperty) GetTimeZoneOk() (*string, bool)

GetTimeZoneOk returns a tuple with the TimeZone field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaProperty) GetType

func (o *MetaProperty) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*MetaProperty) GetTypeOk

func (o *MetaProperty) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaProperty) HasAggregatable

func (o *MetaProperty) HasAggregatable() bool

HasAggregatable returns a boolean if a field has been set.

func (*MetaProperty) HasAnalyzer

func (o *MetaProperty) HasAnalyzer() bool

HasAnalyzer returns a boolean if a field has been set.

func (*MetaProperty) HasFields

func (o *MetaProperty) HasFields() bool

HasFields returns a boolean if a field has been set.

func (*MetaProperty) HasFormat

func (o *MetaProperty) HasFormat() bool

HasFormat returns a boolean if a field has been set.

func (*MetaProperty) HasHighlightable

func (o *MetaProperty) HasHighlightable() bool

HasHighlightable returns a boolean if a field has been set.

func (*MetaProperty) HasIndex

func (o *MetaProperty) HasIndex() bool

HasIndex returns a boolean if a field has been set.

func (*MetaProperty) HasSearchAnalyzer

func (o *MetaProperty) HasSearchAnalyzer() bool

HasSearchAnalyzer returns a boolean if a field has been set.

func (*MetaProperty) HasSortable

func (o *MetaProperty) HasSortable() bool

HasSortable returns a boolean if a field has been set.

func (*MetaProperty) HasStore

func (o *MetaProperty) HasStore() bool

HasStore returns a boolean if a field has been set.

func (*MetaProperty) HasTimeZone

func (o *MetaProperty) HasTimeZone() bool

HasTimeZone returns a boolean if a field has been set.

func (*MetaProperty) HasType

func (o *MetaProperty) HasType() bool

HasType returns a boolean if a field has been set.

func (MetaProperty) MarshalJSON

func (o MetaProperty) MarshalJSON() ([]byte, error)

func (*MetaProperty) SetAggregatable

func (o *MetaProperty) SetAggregatable(v bool)

SetAggregatable gets a reference to the given bool and assigns it to the Aggregatable field.

func (*MetaProperty) SetAnalyzer

func (o *MetaProperty) SetAnalyzer(v string)

SetAnalyzer gets a reference to the given string and assigns it to the Analyzer field.

func (*MetaProperty) SetFields

func (o *MetaProperty) SetFields(v map[string]MetaProperty)

SetFields gets a reference to the given map[string]MetaProperty and assigns it to the Fields field.

func (*MetaProperty) SetFormat

func (o *MetaProperty) SetFormat(v string)

SetFormat gets a reference to the given string and assigns it to the Format field.

func (*MetaProperty) SetHighlightable

func (o *MetaProperty) SetHighlightable(v bool)

SetHighlightable gets a reference to the given bool and assigns it to the Highlightable field.

func (*MetaProperty) SetIndex

func (o *MetaProperty) SetIndex(v bool)

SetIndex gets a reference to the given bool and assigns it to the Index field.

func (*MetaProperty) SetSearchAnalyzer

func (o *MetaProperty) SetSearchAnalyzer(v string)

SetSearchAnalyzer gets a reference to the given string and assigns it to the SearchAnalyzer field.

func (*MetaProperty) SetSortable

func (o *MetaProperty) SetSortable(v bool)

SetSortable gets a reference to the given bool and assigns it to the Sortable field.

func (*MetaProperty) SetStore

func (o *MetaProperty) SetStore(v bool)

SetStore gets a reference to the given bool and assigns it to the Store field.

func (*MetaProperty) SetTimeZone

func (o *MetaProperty) SetTimeZone(v string)

SetTimeZone gets a reference to the given string and assigns it to the TimeZone field.

func (*MetaProperty) SetType

func (o *MetaProperty) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type MetaQuery

type MetaQuery struct {
	Bool   *MetaBoolQuery   `json:"bool,omitempty"`
	Exists *MetaExistsQuery `json:"exists,omitempty"`
	// simple, PrefixQuery
	Fuzzy *map[string]MetaFuzzyQuery `json:"fuzzy,omitempty"`
	Ids   *MetaIdsQuery              `json:"ids,omitempty"`
	// simple, MatchQuery
	Match    *map[string]MetaMatchQuery `json:"match,omitempty"`
	MatchAll map[string]interface{}     `json:"match_all,omitempty"`
	// simple, MatchBoolPrefixQuery
	MatchBoolPrefix *map[string]MetaMatchBoolPrefixQuery `json:"match_bool_prefix,omitempty"`
	MatchNone       map[string]interface{}               `json:"match_none,omitempty"`
	// simple, MatchPhraseQuery
	MatchPhrase *map[string]MetaMatchPhraseQuery `json:"match_phrase,omitempty"`
	// simple, MatchPhrasePrefixQuery
	MatchPhrasePrefix *map[string]MetaMatchPhrasePrefixQuery `json:"match_phrase_prefix,omitempty"`
	MultiMatch        *MetaMultiMatchQuery                   `json:"multi_match,omitempty"`
	// .
	Prefix      *map[string]MetaPrefixQuery `json:"prefix,omitempty"`
	QueryString *MetaQueryStringQuery       `json:"query_string,omitempty"`
	// simple, FuzzyQuery
	Range *map[string]MetaRangeQuery `json:"range,omitempty"`
	// simple, FuzzyQuery
	Regexp            *map[string]MetaRegexpQuery `json:"regexp,omitempty"`
	SimpleQueryString *MetaSimpleQueryStringQuery `json:"simple_query_string,omitempty"`
	// simple, TermQuery
	Term *map[string]MetaTermQuery `json:"term,omitempty"`
	// .
	Terms *map[string]map[string]interface{} `json:"terms,omitempty"`
	// simple, WildcardQuery
	Wildcard *map[string]MetaWildcardQuery `json:"wildcard,omitempty"`
}

MetaQuery struct for MetaQuery

func NewMetaQuery

func NewMetaQuery() *MetaQuery

NewMetaQuery instantiates a new MetaQuery object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaQueryWithDefaults

func NewMetaQueryWithDefaults() *MetaQuery

NewMetaQueryWithDefaults instantiates a new MetaQuery object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaQuery) GetBool

func (o *MetaQuery) GetBool() MetaBoolQuery

GetBool returns the Bool field value if set, zero value otherwise.

func (*MetaQuery) GetBoolOk

func (o *MetaQuery) GetBoolOk() (*MetaBoolQuery, bool)

GetBoolOk returns a tuple with the Bool field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaQuery) GetExists

func (o *MetaQuery) GetExists() MetaExistsQuery

GetExists returns the Exists field value if set, zero value otherwise.

func (*MetaQuery) GetExistsOk

func (o *MetaQuery) GetExistsOk() (*MetaExistsQuery, bool)

GetExistsOk returns a tuple with the Exists field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaQuery) GetFuzzy

func (o *MetaQuery) GetFuzzy() map[string]MetaFuzzyQuery

GetFuzzy returns the Fuzzy field value if set, zero value otherwise.

func (*MetaQuery) GetFuzzyOk

func (o *MetaQuery) GetFuzzyOk() (*map[string]MetaFuzzyQuery, bool)

GetFuzzyOk returns a tuple with the Fuzzy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaQuery) GetIds

func (o *MetaQuery) GetIds() MetaIdsQuery

GetIds returns the Ids field value if set, zero value otherwise.

func (*MetaQuery) GetIdsOk

func (o *MetaQuery) GetIdsOk() (*MetaIdsQuery, bool)

GetIdsOk returns a tuple with the Ids field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaQuery) GetMatch

func (o *MetaQuery) GetMatch() map[string]MetaMatchQuery

GetMatch returns the Match field value if set, zero value otherwise.

func (*MetaQuery) GetMatchAll

func (o *MetaQuery) GetMatchAll() map[string]interface{}

GetMatchAll returns the MatchAll field value if set, zero value otherwise.

func (*MetaQuery) GetMatchAllOk

func (o *MetaQuery) GetMatchAllOk() (map[string]interface{}, bool)

GetMatchAllOk returns a tuple with the MatchAll field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaQuery) GetMatchBoolPrefix

func (o *MetaQuery) GetMatchBoolPrefix() map[string]MetaMatchBoolPrefixQuery

GetMatchBoolPrefix returns the MatchBoolPrefix field value if set, zero value otherwise.

func (*MetaQuery) GetMatchBoolPrefixOk

func (o *MetaQuery) GetMatchBoolPrefixOk() (*map[string]MetaMatchBoolPrefixQuery, bool)

GetMatchBoolPrefixOk returns a tuple with the MatchBoolPrefix field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaQuery) GetMatchNone

func (o *MetaQuery) GetMatchNone() map[string]interface{}

GetMatchNone returns the MatchNone field value if set, zero value otherwise.

func (*MetaQuery) GetMatchNoneOk

func (o *MetaQuery) GetMatchNoneOk() (map[string]interface{}, bool)

GetMatchNoneOk returns a tuple with the MatchNone field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaQuery) GetMatchOk

func (o *MetaQuery) GetMatchOk() (*map[string]MetaMatchQuery, bool)

GetMatchOk returns a tuple with the Match field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaQuery) GetMatchPhrase

func (o *MetaQuery) GetMatchPhrase() map[string]MetaMatchPhraseQuery

GetMatchPhrase returns the MatchPhrase field value if set, zero value otherwise.

func (*MetaQuery) GetMatchPhraseOk

func (o *MetaQuery) GetMatchPhraseOk() (*map[string]MetaMatchPhraseQuery, bool)

GetMatchPhraseOk returns a tuple with the MatchPhrase field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaQuery) GetMatchPhrasePrefix

func (o *MetaQuery) GetMatchPhrasePrefix() map[string]MetaMatchPhrasePrefixQuery

GetMatchPhrasePrefix returns the MatchPhrasePrefix field value if set, zero value otherwise.

func (*MetaQuery) GetMatchPhrasePrefixOk

func (o *MetaQuery) GetMatchPhrasePrefixOk() (*map[string]MetaMatchPhrasePrefixQuery, bool)

GetMatchPhrasePrefixOk returns a tuple with the MatchPhrasePrefix field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaQuery) GetMultiMatch

func (o *MetaQuery) GetMultiMatch() MetaMultiMatchQuery

GetMultiMatch returns the MultiMatch field value if set, zero value otherwise.

func (*MetaQuery) GetMultiMatchOk

func (o *MetaQuery) GetMultiMatchOk() (*MetaMultiMatchQuery, bool)

GetMultiMatchOk returns a tuple with the MultiMatch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaQuery) GetPrefix

func (o *MetaQuery) GetPrefix() map[string]MetaPrefixQuery

GetPrefix returns the Prefix field value if set, zero value otherwise.

func (*MetaQuery) GetPrefixOk

func (o *MetaQuery) GetPrefixOk() (*map[string]MetaPrefixQuery, bool)

GetPrefixOk returns a tuple with the Prefix field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaQuery) GetQueryString

func (o *MetaQuery) GetQueryString() MetaQueryStringQuery

GetQueryString returns the QueryString field value if set, zero value otherwise.

func (*MetaQuery) GetQueryStringOk

func (o *MetaQuery) GetQueryStringOk() (*MetaQueryStringQuery, bool)

GetQueryStringOk returns a tuple with the QueryString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaQuery) GetRange

func (o *MetaQuery) GetRange() map[string]MetaRangeQuery

GetRange returns the Range field value if set, zero value otherwise.

func (*MetaQuery) GetRangeOk

func (o *MetaQuery) GetRangeOk() (*map[string]MetaRangeQuery, bool)

GetRangeOk returns a tuple with the Range field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaQuery) GetRegexp

func (o *MetaQuery) GetRegexp() map[string]MetaRegexpQuery

GetRegexp returns the Regexp field value if set, zero value otherwise.

func (*MetaQuery) GetRegexpOk

func (o *MetaQuery) GetRegexpOk() (*map[string]MetaRegexpQuery, bool)

GetRegexpOk returns a tuple with the Regexp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaQuery) GetSimpleQueryString

func (o *MetaQuery) GetSimpleQueryString() MetaSimpleQueryStringQuery

GetSimpleQueryString returns the SimpleQueryString field value if set, zero value otherwise.

func (*MetaQuery) GetSimpleQueryStringOk

func (o *MetaQuery) GetSimpleQueryStringOk() (*MetaSimpleQueryStringQuery, bool)

GetSimpleQueryStringOk returns a tuple with the SimpleQueryString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaQuery) GetTerm

func (o *MetaQuery) GetTerm() map[string]MetaTermQuery

GetTerm returns the Term field value if set, zero value otherwise.

func (*MetaQuery) GetTermOk

func (o *MetaQuery) GetTermOk() (*map[string]MetaTermQuery, bool)

GetTermOk returns a tuple with the Term field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaQuery) GetTerms

func (o *MetaQuery) GetTerms() map[string]map[string]interface{}

GetTerms returns the Terms field value if set, zero value otherwise.

func (*MetaQuery) GetTermsOk

func (o *MetaQuery) GetTermsOk() (*map[string]map[string]interface{}, bool)

GetTermsOk returns a tuple with the Terms field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaQuery) GetWildcard

func (o *MetaQuery) GetWildcard() map[string]MetaWildcardQuery

GetWildcard returns the Wildcard field value if set, zero value otherwise.

func (*MetaQuery) GetWildcardOk

func (o *MetaQuery) GetWildcardOk() (*map[string]MetaWildcardQuery, bool)

GetWildcardOk returns a tuple with the Wildcard field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaQuery) HasBool

func (o *MetaQuery) HasBool() bool

HasBool returns a boolean if a field has been set.

func (*MetaQuery) HasExists

func (o *MetaQuery) HasExists() bool

HasExists returns a boolean if a field has been set.

func (*MetaQuery) HasFuzzy

func (o *MetaQuery) HasFuzzy() bool

HasFuzzy returns a boolean if a field has been set.

func (*MetaQuery) HasIds

func (o *MetaQuery) HasIds() bool

HasIds returns a boolean if a field has been set.

func (*MetaQuery) HasMatch

func (o *MetaQuery) HasMatch() bool

HasMatch returns a boolean if a field has been set.

func (*MetaQuery) HasMatchAll

func (o *MetaQuery) HasMatchAll() bool

HasMatchAll returns a boolean if a field has been set.

func (*MetaQuery) HasMatchBoolPrefix

func (o *MetaQuery) HasMatchBoolPrefix() bool

HasMatchBoolPrefix returns a boolean if a field has been set.

func (*MetaQuery) HasMatchNone

func (o *MetaQuery) HasMatchNone() bool

HasMatchNone returns a boolean if a field has been set.

func (*MetaQuery) HasMatchPhrase

func (o *MetaQuery) HasMatchPhrase() bool

HasMatchPhrase returns a boolean if a field has been set.

func (*MetaQuery) HasMatchPhrasePrefix

func (o *MetaQuery) HasMatchPhrasePrefix() bool

HasMatchPhrasePrefix returns a boolean if a field has been set.

func (*MetaQuery) HasMultiMatch

func (o *MetaQuery) HasMultiMatch() bool

HasMultiMatch returns a boolean if a field has been set.

func (*MetaQuery) HasPrefix

func (o *MetaQuery) HasPrefix() bool

HasPrefix returns a boolean if a field has been set.

func (*MetaQuery) HasQueryString

func (o *MetaQuery) HasQueryString() bool

HasQueryString returns a boolean if a field has been set.

func (*MetaQuery) HasRange

func (o *MetaQuery) HasRange() bool

HasRange returns a boolean if a field has been set.

func (*MetaQuery) HasRegexp

func (o *MetaQuery) HasRegexp() bool

HasRegexp returns a boolean if a field has been set.

func (*MetaQuery) HasSimpleQueryString

func (o *MetaQuery) HasSimpleQueryString() bool

HasSimpleQueryString returns a boolean if a field has been set.

func (*MetaQuery) HasTerm

func (o *MetaQuery) HasTerm() bool

HasTerm returns a boolean if a field has been set.

func (*MetaQuery) HasTerms

func (o *MetaQuery) HasTerms() bool

HasTerms returns a boolean if a field has been set.

func (*MetaQuery) HasWildcard

func (o *MetaQuery) HasWildcard() bool

HasWildcard returns a boolean if a field has been set.

func (MetaQuery) MarshalJSON

func (o MetaQuery) MarshalJSON() ([]byte, error)

func (*MetaQuery) SetBool

func (o *MetaQuery) SetBool(v MetaBoolQuery)

SetBool gets a reference to the given MetaBoolQuery and assigns it to the Bool field.

func (*MetaQuery) SetExists

func (o *MetaQuery) SetExists(v MetaExistsQuery)

SetExists gets a reference to the given MetaExistsQuery and assigns it to the Exists field.

func (*MetaQuery) SetFuzzy

func (o *MetaQuery) SetFuzzy(v map[string]MetaFuzzyQuery)

SetFuzzy gets a reference to the given map[string]MetaFuzzyQuery and assigns it to the Fuzzy field.

func (*MetaQuery) SetIds

func (o *MetaQuery) SetIds(v MetaIdsQuery)

SetIds gets a reference to the given MetaIdsQuery and assigns it to the Ids field.

func (*MetaQuery) SetMatch

func (o *MetaQuery) SetMatch(v map[string]MetaMatchQuery)

SetMatch gets a reference to the given map[string]MetaMatchQuery and assigns it to the Match field.

func (*MetaQuery) SetMatchAll

func (o *MetaQuery) SetMatchAll(v map[string]interface{})

SetMatchAll gets a reference to the given map[string]interface{} and assigns it to the MatchAll field.

func (*MetaQuery) SetMatchBoolPrefix

func (o *MetaQuery) SetMatchBoolPrefix(v map[string]MetaMatchBoolPrefixQuery)

SetMatchBoolPrefix gets a reference to the given map[string]MetaMatchBoolPrefixQuery and assigns it to the MatchBoolPrefix field.

func (*MetaQuery) SetMatchNone

func (o *MetaQuery) SetMatchNone(v map[string]interface{})

SetMatchNone gets a reference to the given map[string]interface{} and assigns it to the MatchNone field.

func (*MetaQuery) SetMatchPhrase

func (o *MetaQuery) SetMatchPhrase(v map[string]MetaMatchPhraseQuery)

SetMatchPhrase gets a reference to the given map[string]MetaMatchPhraseQuery and assigns it to the MatchPhrase field.

func (*MetaQuery) SetMatchPhrasePrefix

func (o *MetaQuery) SetMatchPhrasePrefix(v map[string]MetaMatchPhrasePrefixQuery)

SetMatchPhrasePrefix gets a reference to the given map[string]MetaMatchPhrasePrefixQuery and assigns it to the MatchPhrasePrefix field.

func (*MetaQuery) SetMultiMatch

func (o *MetaQuery) SetMultiMatch(v MetaMultiMatchQuery)

SetMultiMatch gets a reference to the given MetaMultiMatchQuery and assigns it to the MultiMatch field.

func (*MetaQuery) SetPrefix

func (o *MetaQuery) SetPrefix(v map[string]MetaPrefixQuery)

SetPrefix gets a reference to the given map[string]MetaPrefixQuery and assigns it to the Prefix field.

func (*MetaQuery) SetQueryString

func (o *MetaQuery) SetQueryString(v MetaQueryStringQuery)

SetQueryString gets a reference to the given MetaQueryStringQuery and assigns it to the QueryString field.

func (*MetaQuery) SetRange

func (o *MetaQuery) SetRange(v map[string]MetaRangeQuery)

SetRange gets a reference to the given map[string]MetaRangeQuery and assigns it to the Range field.

func (*MetaQuery) SetRegexp

func (o *MetaQuery) SetRegexp(v map[string]MetaRegexpQuery)

SetRegexp gets a reference to the given map[string]MetaRegexpQuery and assigns it to the Regexp field.

func (*MetaQuery) SetSimpleQueryString

func (o *MetaQuery) SetSimpleQueryString(v MetaSimpleQueryStringQuery)

SetSimpleQueryString gets a reference to the given MetaSimpleQueryStringQuery and assigns it to the SimpleQueryString field.

func (*MetaQuery) SetTerm

func (o *MetaQuery) SetTerm(v map[string]MetaTermQuery)

SetTerm gets a reference to the given map[string]MetaTermQuery and assigns it to the Term field.

func (*MetaQuery) SetTerms

func (o *MetaQuery) SetTerms(v map[string]map[string]interface{})

SetTerms gets a reference to the given map[string]map[string]interface{} and assigns it to the Terms field.

func (*MetaQuery) SetWildcard

func (o *MetaQuery) SetWildcard(v map[string]MetaWildcardQuery)

SetWildcard gets a reference to the given map[string]MetaWildcardQuery and assigns it to the Wildcard field.

type MetaQueryStringQuery

type MetaQueryStringQuery struct {
	Analyzer     *string  `json:"analyzer,omitempty"`
	Boost        *float32 `json:"boost,omitempty"`
	DefaultField *string  `json:"default_field,omitempty"`
	// or(default), and
	DefaultOperator *string  `json:"default_operator,omitempty"`
	Fields          []string `json:"fields,omitempty"`
	Query           *string  `json:"query,omitempty"`
}

MetaQueryStringQuery struct for MetaQueryStringQuery

func NewMetaQueryStringQuery

func NewMetaQueryStringQuery() *MetaQueryStringQuery

NewMetaQueryStringQuery instantiates a new MetaQueryStringQuery object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaQueryStringQueryWithDefaults

func NewMetaQueryStringQueryWithDefaults() *MetaQueryStringQuery

NewMetaQueryStringQueryWithDefaults instantiates a new MetaQueryStringQuery object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaQueryStringQuery) GetAnalyzer

func (o *MetaQueryStringQuery) GetAnalyzer() string

GetAnalyzer returns the Analyzer field value if set, zero value otherwise.

func (*MetaQueryStringQuery) GetAnalyzerOk

func (o *MetaQueryStringQuery) GetAnalyzerOk() (*string, bool)

GetAnalyzerOk returns a tuple with the Analyzer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaQueryStringQuery) GetBoost

func (o *MetaQueryStringQuery) GetBoost() float32

GetBoost returns the Boost field value if set, zero value otherwise.

func (*MetaQueryStringQuery) GetBoostOk

func (o *MetaQueryStringQuery) GetBoostOk() (*float32, bool)

GetBoostOk returns a tuple with the Boost field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaQueryStringQuery) GetDefaultField

func (o *MetaQueryStringQuery) GetDefaultField() string

GetDefaultField returns the DefaultField field value if set, zero value otherwise.

func (*MetaQueryStringQuery) GetDefaultFieldOk

func (o *MetaQueryStringQuery) GetDefaultFieldOk() (*string, bool)

GetDefaultFieldOk returns a tuple with the DefaultField field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaQueryStringQuery) GetDefaultOperator

func (o *MetaQueryStringQuery) GetDefaultOperator() string

GetDefaultOperator returns the DefaultOperator field value if set, zero value otherwise.

func (*MetaQueryStringQuery) GetDefaultOperatorOk

func (o *MetaQueryStringQuery) GetDefaultOperatorOk() (*string, bool)

GetDefaultOperatorOk returns a tuple with the DefaultOperator field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaQueryStringQuery) GetFields

func (o *MetaQueryStringQuery) GetFields() []string

GetFields returns the Fields field value if set, zero value otherwise.

func (*MetaQueryStringQuery) GetFieldsOk

func (o *MetaQueryStringQuery) GetFieldsOk() ([]string, bool)

GetFieldsOk returns a tuple with the Fields field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaQueryStringQuery) GetQuery

func (o *MetaQueryStringQuery) GetQuery() string

GetQuery returns the Query field value if set, zero value otherwise.

func (*MetaQueryStringQuery) GetQueryOk

func (o *MetaQueryStringQuery) GetQueryOk() (*string, bool)

GetQueryOk returns a tuple with the Query field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaQueryStringQuery) HasAnalyzer

func (o *MetaQueryStringQuery) HasAnalyzer() bool

HasAnalyzer returns a boolean if a field has been set.

func (*MetaQueryStringQuery) HasBoost

func (o *MetaQueryStringQuery) HasBoost() bool

HasBoost returns a boolean if a field has been set.

func (*MetaQueryStringQuery) HasDefaultField

func (o *MetaQueryStringQuery) HasDefaultField() bool

HasDefaultField returns a boolean if a field has been set.

func (*MetaQueryStringQuery) HasDefaultOperator

func (o *MetaQueryStringQuery) HasDefaultOperator() bool

HasDefaultOperator returns a boolean if a field has been set.

func (*MetaQueryStringQuery) HasFields

func (o *MetaQueryStringQuery) HasFields() bool

HasFields returns a boolean if a field has been set.

func (*MetaQueryStringQuery) HasQuery

func (o *MetaQueryStringQuery) HasQuery() bool

HasQuery returns a boolean if a field has been set.

func (MetaQueryStringQuery) MarshalJSON

func (o MetaQueryStringQuery) MarshalJSON() ([]byte, error)

func (*MetaQueryStringQuery) SetAnalyzer

func (o *MetaQueryStringQuery) SetAnalyzer(v string)

SetAnalyzer gets a reference to the given string and assigns it to the Analyzer field.

func (*MetaQueryStringQuery) SetBoost

func (o *MetaQueryStringQuery) SetBoost(v float32)

SetBoost gets a reference to the given float32 and assigns it to the Boost field.

func (*MetaQueryStringQuery) SetDefaultField

func (o *MetaQueryStringQuery) SetDefaultField(v string)

SetDefaultField gets a reference to the given string and assigns it to the DefaultField field.

func (*MetaQueryStringQuery) SetDefaultOperator

func (o *MetaQueryStringQuery) SetDefaultOperator(v string)

SetDefaultOperator gets a reference to the given string and assigns it to the DefaultOperator field.

func (*MetaQueryStringQuery) SetFields

func (o *MetaQueryStringQuery) SetFields(v []string)

SetFields gets a reference to the given []string and assigns it to the Fields field.

func (*MetaQueryStringQuery) SetQuery

func (o *MetaQueryStringQuery) SetQuery(v string)

SetQuery gets a reference to the given string and assigns it to the Query field.

type MetaRange

type MetaRange struct {
	From *float32 `json:"from,omitempty"`
	To   *float32 `json:"to,omitempty"`
}

MetaRange struct for MetaRange

func NewMetaRange

func NewMetaRange() *MetaRange

NewMetaRange instantiates a new MetaRange object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaRangeWithDefaults

func NewMetaRangeWithDefaults() *MetaRange

NewMetaRangeWithDefaults instantiates a new MetaRange object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaRange) GetFrom

func (o *MetaRange) GetFrom() float32

GetFrom returns the From field value if set, zero value otherwise.

func (*MetaRange) GetFromOk

func (o *MetaRange) GetFromOk() (*float32, bool)

GetFromOk returns a tuple with the From field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaRange) GetTo

func (o *MetaRange) GetTo() float32

GetTo returns the To field value if set, zero value otherwise.

func (*MetaRange) GetToOk

func (o *MetaRange) GetToOk() (*float32, bool)

GetToOk returns a tuple with the To field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaRange) HasFrom

func (o *MetaRange) HasFrom() bool

HasFrom returns a boolean if a field has been set.

func (*MetaRange) HasTo

func (o *MetaRange) HasTo() bool

HasTo returns a boolean if a field has been set.

func (MetaRange) MarshalJSON

func (o MetaRange) MarshalJSON() ([]byte, error)

func (*MetaRange) SetFrom

func (o *MetaRange) SetFrom(v float32)

SetFrom gets a reference to the given float32 and assigns it to the From field.

func (*MetaRange) SetTo

func (o *MetaRange) SetTo(v float32)

SetTo gets a reference to the given float32 and assigns it to the To field.

type MetaRangeQuery

type MetaRangeQuery struct {
	Boost *float32 `json:"boost,omitempty"`
	// Date format used to convert date values in the query.
	Format *string `json:"format,omitempty"`
	// string, float64
	Gt *string `json:"gt,omitempty"`
	// string, float64
	Gte *string `json:"gte,omitempty"`
	// string, float64
	Lt *string `json:"lt,omitempty"`
	// string, float64
	Lte *string `json:"lte,omitempty"`
	// used to convert date values in the query to UTC.
	TimeZone *string `json:"time_zone,omitempty"`
}

MetaRangeQuery struct for MetaRangeQuery

func NewMetaRangeQuery

func NewMetaRangeQuery() *MetaRangeQuery

NewMetaRangeQuery instantiates a new MetaRangeQuery object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaRangeQueryWithDefaults

func NewMetaRangeQueryWithDefaults() *MetaRangeQuery

NewMetaRangeQueryWithDefaults instantiates a new MetaRangeQuery object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaRangeQuery) GetBoost

func (o *MetaRangeQuery) GetBoost() float32

GetBoost returns the Boost field value if set, zero value otherwise.

func (*MetaRangeQuery) GetBoostOk

func (o *MetaRangeQuery) GetBoostOk() (*float32, bool)

GetBoostOk returns a tuple with the Boost field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaRangeQuery) GetFormat

func (o *MetaRangeQuery) GetFormat() string

GetFormat returns the Format field value if set, zero value otherwise.

func (*MetaRangeQuery) GetFormatOk

func (o *MetaRangeQuery) GetFormatOk() (*string, bool)

GetFormatOk returns a tuple with the Format field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaRangeQuery) GetGt

func (o *MetaRangeQuery) GetGt() string

GetGt returns the Gt field value if set, zero value otherwise.

func (*MetaRangeQuery) GetGtOk

func (o *MetaRangeQuery) GetGtOk() (*string, bool)

GetGtOk returns a tuple with the Gt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaRangeQuery) GetGte

func (o *MetaRangeQuery) GetGte() string

GetGte returns the Gte field value if set, zero value otherwise.

func (*MetaRangeQuery) GetGteOk

func (o *MetaRangeQuery) GetGteOk() (*string, bool)

GetGteOk returns a tuple with the Gte field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaRangeQuery) GetLt

func (o *MetaRangeQuery) GetLt() string

GetLt returns the Lt field value if set, zero value otherwise.

func (*MetaRangeQuery) GetLtOk

func (o *MetaRangeQuery) GetLtOk() (*string, bool)

GetLtOk returns a tuple with the Lt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaRangeQuery) GetLte

func (o *MetaRangeQuery) GetLte() string

GetLte returns the Lte field value if set, zero value otherwise.

func (*MetaRangeQuery) GetLteOk

func (o *MetaRangeQuery) GetLteOk() (*string, bool)

GetLteOk returns a tuple with the Lte field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaRangeQuery) GetTimeZone

func (o *MetaRangeQuery) GetTimeZone() string

GetTimeZone returns the TimeZone field value if set, zero value otherwise.

func (*MetaRangeQuery) GetTimeZoneOk

func (o *MetaRangeQuery) GetTimeZoneOk() (*string, bool)

GetTimeZoneOk returns a tuple with the TimeZone field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaRangeQuery) HasBoost

func (o *MetaRangeQuery) HasBoost() bool

HasBoost returns a boolean if a field has been set.

func (*MetaRangeQuery) HasFormat

func (o *MetaRangeQuery) HasFormat() bool

HasFormat returns a boolean if a field has been set.

func (*MetaRangeQuery) HasGt

func (o *MetaRangeQuery) HasGt() bool

HasGt returns a boolean if a field has been set.

func (*MetaRangeQuery) HasGte

func (o *MetaRangeQuery) HasGte() bool

HasGte returns a boolean if a field has been set.

func (*MetaRangeQuery) HasLt

func (o *MetaRangeQuery) HasLt() bool

HasLt returns a boolean if a field has been set.

func (*MetaRangeQuery) HasLte

func (o *MetaRangeQuery) HasLte() bool

HasLte returns a boolean if a field has been set.

func (*MetaRangeQuery) HasTimeZone

func (o *MetaRangeQuery) HasTimeZone() bool

HasTimeZone returns a boolean if a field has been set.

func (MetaRangeQuery) MarshalJSON

func (o MetaRangeQuery) MarshalJSON() ([]byte, error)

func (*MetaRangeQuery) SetBoost

func (o *MetaRangeQuery) SetBoost(v float32)

SetBoost gets a reference to the given float32 and assigns it to the Boost field.

func (*MetaRangeQuery) SetFormat

func (o *MetaRangeQuery) SetFormat(v string)

SetFormat gets a reference to the given string and assigns it to the Format field.

func (*MetaRangeQuery) SetGt

func (o *MetaRangeQuery) SetGt(v string)

SetGt gets a reference to the given string and assigns it to the Gt field.

func (*MetaRangeQuery) SetGte

func (o *MetaRangeQuery) SetGte(v string)

SetGte gets a reference to the given string and assigns it to the Gte field.

func (*MetaRangeQuery) SetLt

func (o *MetaRangeQuery) SetLt(v string)

SetLt gets a reference to the given string and assigns it to the Lt field.

func (*MetaRangeQuery) SetLte

func (o *MetaRangeQuery) SetLte(v string)

SetLte gets a reference to the given string and assigns it to the Lte field.

func (*MetaRangeQuery) SetTimeZone

func (o *MetaRangeQuery) SetTimeZone(v string)

SetTimeZone gets a reference to the given string and assigns it to the TimeZone field.

type MetaRegexpQuery

type MetaRegexpQuery struct {
	Boost *float32 `json:"boost,omitempty"`
	Flags *string  `json:"flags,omitempty"`
	Value *string  `json:"value,omitempty"`
}

MetaRegexpQuery struct for MetaRegexpQuery

func NewMetaRegexpQuery

func NewMetaRegexpQuery() *MetaRegexpQuery

NewMetaRegexpQuery instantiates a new MetaRegexpQuery object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaRegexpQueryWithDefaults

func NewMetaRegexpQueryWithDefaults() *MetaRegexpQuery

NewMetaRegexpQueryWithDefaults instantiates a new MetaRegexpQuery object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaRegexpQuery) GetBoost

func (o *MetaRegexpQuery) GetBoost() float32

GetBoost returns the Boost field value if set, zero value otherwise.

func (*MetaRegexpQuery) GetBoostOk

func (o *MetaRegexpQuery) GetBoostOk() (*float32, bool)

GetBoostOk returns a tuple with the Boost field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaRegexpQuery) GetFlags

func (o *MetaRegexpQuery) GetFlags() string

GetFlags returns the Flags field value if set, zero value otherwise.

func (*MetaRegexpQuery) GetFlagsOk

func (o *MetaRegexpQuery) GetFlagsOk() (*string, bool)

GetFlagsOk returns a tuple with the Flags field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaRegexpQuery) GetValue

func (o *MetaRegexpQuery) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*MetaRegexpQuery) GetValueOk

func (o *MetaRegexpQuery) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaRegexpQuery) HasBoost

func (o *MetaRegexpQuery) HasBoost() bool

HasBoost returns a boolean if a field has been set.

func (*MetaRegexpQuery) HasFlags

func (o *MetaRegexpQuery) HasFlags() bool

HasFlags returns a boolean if a field has been set.

func (*MetaRegexpQuery) HasValue

func (o *MetaRegexpQuery) HasValue() bool

HasValue returns a boolean if a field has been set.

func (MetaRegexpQuery) MarshalJSON

func (o MetaRegexpQuery) MarshalJSON() ([]byte, error)

func (*MetaRegexpQuery) SetBoost

func (o *MetaRegexpQuery) SetBoost(v float32)

SetBoost gets a reference to the given float32 and assigns it to the Boost field.

func (*MetaRegexpQuery) SetFlags

func (o *MetaRegexpQuery) SetFlags(v string)

SetFlags gets a reference to the given string and assigns it to the Flags field.

func (*MetaRegexpQuery) SetValue

func (o *MetaRegexpQuery) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

type MetaSearchResponse

type MetaSearchResponse struct {
	Shards       *MetaShards                         `json:"_shards,omitempty"`
	Aggregations *map[string]MetaAggregationResponse `json:"aggregations,omitempty"`
	Error        *string                             `json:"error,omitempty"`
	Hits         *MetaHits                           `json:"hits,omitempty"`
	TimedOut     *bool                               `json:"timed_out,omitempty"`
	// Time it took to generate the response
	Took *int32 `json:"took,omitempty"`
}

MetaSearchResponse struct for MetaSearchResponse

func NewMetaSearchResponse

func NewMetaSearchResponse() *MetaSearchResponse

NewMetaSearchResponse instantiates a new MetaSearchResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaSearchResponseWithDefaults

func NewMetaSearchResponseWithDefaults() *MetaSearchResponse

NewMetaSearchResponseWithDefaults instantiates a new MetaSearchResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaSearchResponse) GetAggregations

func (o *MetaSearchResponse) GetAggregations() map[string]MetaAggregationResponse

GetAggregations returns the Aggregations field value if set, zero value otherwise.

func (*MetaSearchResponse) GetAggregationsOk

func (o *MetaSearchResponse) GetAggregationsOk() (*map[string]MetaAggregationResponse, bool)

GetAggregationsOk returns a tuple with the Aggregations field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaSearchResponse) GetError

func (o *MetaSearchResponse) GetError() string

GetError returns the Error field value if set, zero value otherwise.

func (*MetaSearchResponse) GetErrorOk

func (o *MetaSearchResponse) GetErrorOk() (*string, bool)

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaSearchResponse) GetHits

func (o *MetaSearchResponse) GetHits() MetaHits

GetHits returns the Hits field value if set, zero value otherwise.

func (*MetaSearchResponse) GetHitsOk

func (o *MetaSearchResponse) GetHitsOk() (*MetaHits, bool)

GetHitsOk returns a tuple with the Hits field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaSearchResponse) GetShards

func (o *MetaSearchResponse) GetShards() MetaShards

GetShards returns the Shards field value if set, zero value otherwise.

func (*MetaSearchResponse) GetShardsOk

func (o *MetaSearchResponse) GetShardsOk() (*MetaShards, bool)

GetShardsOk returns a tuple with the Shards field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaSearchResponse) GetTimedOut

func (o *MetaSearchResponse) GetTimedOut() bool

GetTimedOut returns the TimedOut field value if set, zero value otherwise.

func (*MetaSearchResponse) GetTimedOutOk

func (o *MetaSearchResponse) GetTimedOutOk() (*bool, bool)

GetTimedOutOk returns a tuple with the TimedOut field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaSearchResponse) GetTook

func (o *MetaSearchResponse) GetTook() int32

GetTook returns the Took field value if set, zero value otherwise.

func (*MetaSearchResponse) GetTookOk

func (o *MetaSearchResponse) GetTookOk() (*int32, bool)

GetTookOk returns a tuple with the Took field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaSearchResponse) HasAggregations

func (o *MetaSearchResponse) HasAggregations() bool

HasAggregations returns a boolean if a field has been set.

func (*MetaSearchResponse) HasError

func (o *MetaSearchResponse) HasError() bool

HasError returns a boolean if a field has been set.

func (*MetaSearchResponse) HasHits

func (o *MetaSearchResponse) HasHits() bool

HasHits returns a boolean if a field has been set.

func (*MetaSearchResponse) HasShards

func (o *MetaSearchResponse) HasShards() bool

HasShards returns a boolean if a field has been set.

func (*MetaSearchResponse) HasTimedOut

func (o *MetaSearchResponse) HasTimedOut() bool

HasTimedOut returns a boolean if a field has been set.

func (*MetaSearchResponse) HasTook

func (o *MetaSearchResponse) HasTook() bool

HasTook returns a boolean if a field has been set.

func (MetaSearchResponse) MarshalJSON

func (o MetaSearchResponse) MarshalJSON() ([]byte, error)

func (MetaSearchResponse) ScanSource

func (o MetaSearchResponse) ScanSource(aryPointer any) error

func (*MetaSearchResponse) SetAggregations

func (o *MetaSearchResponse) SetAggregations(v map[string]MetaAggregationResponse)

SetAggregations gets a reference to the given map[string]MetaAggregationResponse and assigns it to the Aggregations field.

func (*MetaSearchResponse) SetError

func (o *MetaSearchResponse) SetError(v string)

SetError gets a reference to the given string and assigns it to the Error field.

func (*MetaSearchResponse) SetHits

func (o *MetaSearchResponse) SetHits(v MetaHits)

SetHits gets a reference to the given MetaHits and assigns it to the Hits field.

func (*MetaSearchResponse) SetShards

func (o *MetaSearchResponse) SetShards(v MetaShards)

SetShards gets a reference to the given MetaShards and assigns it to the Shards field.

func (*MetaSearchResponse) SetTimedOut

func (o *MetaSearchResponse) SetTimedOut(v bool)

SetTimedOut gets a reference to the given bool and assigns it to the TimedOut field.

func (*MetaSearchResponse) SetTook

func (o *MetaSearchResponse) SetTook(v int32)

SetTook gets a reference to the given int32 and assigns it to the Took field.

type MetaShards

type MetaShards struct {
	Failed     *int32 `json:"failed,omitempty"`
	Skipped    *int32 `json:"skipped,omitempty"`
	Successful *int32 `json:"successful,omitempty"`
	Total      *int32 `json:"total,omitempty"`
}

MetaShards struct for MetaShards

func NewMetaShards

func NewMetaShards() *MetaShards

NewMetaShards instantiates a new MetaShards object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaShardsWithDefaults

func NewMetaShardsWithDefaults() *MetaShards

NewMetaShardsWithDefaults instantiates a new MetaShards object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaShards) GetFailed

func (o *MetaShards) GetFailed() int32

GetFailed returns the Failed field value if set, zero value otherwise.

func (*MetaShards) GetFailedOk

func (o *MetaShards) GetFailedOk() (*int32, bool)

GetFailedOk returns a tuple with the Failed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaShards) GetSkipped

func (o *MetaShards) GetSkipped() int32

GetSkipped returns the Skipped field value if set, zero value otherwise.

func (*MetaShards) GetSkippedOk

func (o *MetaShards) GetSkippedOk() (*int32, bool)

GetSkippedOk returns a tuple with the Skipped field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaShards) GetSuccessful

func (o *MetaShards) GetSuccessful() int32

GetSuccessful returns the Successful field value if set, zero value otherwise.

func (*MetaShards) GetSuccessfulOk

func (o *MetaShards) GetSuccessfulOk() (*int32, bool)

GetSuccessfulOk returns a tuple with the Successful field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaShards) GetTotal

func (o *MetaShards) GetTotal() int32

GetTotal returns the Total field value if set, zero value otherwise.

func (*MetaShards) GetTotalOk

func (o *MetaShards) GetTotalOk() (*int32, bool)

GetTotalOk returns a tuple with the Total field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaShards) HasFailed

func (o *MetaShards) HasFailed() bool

HasFailed returns a boolean if a field has been set.

func (*MetaShards) HasSkipped

func (o *MetaShards) HasSkipped() bool

HasSkipped returns a boolean if a field has been set.

func (*MetaShards) HasSuccessful

func (o *MetaShards) HasSuccessful() bool

HasSuccessful returns a boolean if a field has been set.

func (*MetaShards) HasTotal

func (o *MetaShards) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (MetaShards) MarshalJSON

func (o MetaShards) MarshalJSON() ([]byte, error)

func (*MetaShards) SetFailed

func (o *MetaShards) SetFailed(v int32)

SetFailed gets a reference to the given int32 and assigns it to the Failed field.

func (*MetaShards) SetSkipped

func (o *MetaShards) SetSkipped(v int32)

SetSkipped gets a reference to the given int32 and assigns it to the Skipped field.

func (*MetaShards) SetSuccessful

func (o *MetaShards) SetSuccessful(v int32)

SetSuccessful gets a reference to the given int32 and assigns it to the Successful field.

func (*MetaShards) SetTotal

func (o *MetaShards) SetTotal(v int32)

SetTotal gets a reference to the given int32 and assigns it to the Total field.

type MetaSimpleQueryStringQuery

type MetaSimpleQueryStringQuery struct {
	AllFields *bool    `json:"all_fields,omitempty"`
	Analyzer  *string  `json:"analyzer,omitempty"`
	Boost     *float32 `json:"boost,omitempty"`
	// or(default), and
	DefaultOperator *string  `json:"default_operator,omitempty"`
	Fields          []string `json:"fields,omitempty"`
	Query           *string  `json:"query,omitempty"`
}

MetaSimpleQueryStringQuery struct for MetaSimpleQueryStringQuery

func NewMetaSimpleQueryStringQuery

func NewMetaSimpleQueryStringQuery() *MetaSimpleQueryStringQuery

NewMetaSimpleQueryStringQuery instantiates a new MetaSimpleQueryStringQuery object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaSimpleQueryStringQueryWithDefaults

func NewMetaSimpleQueryStringQueryWithDefaults() *MetaSimpleQueryStringQuery

NewMetaSimpleQueryStringQueryWithDefaults instantiates a new MetaSimpleQueryStringQuery object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaSimpleQueryStringQuery) GetAllFields

func (o *MetaSimpleQueryStringQuery) GetAllFields() bool

GetAllFields returns the AllFields field value if set, zero value otherwise.

func (*MetaSimpleQueryStringQuery) GetAllFieldsOk

func (o *MetaSimpleQueryStringQuery) GetAllFieldsOk() (*bool, bool)

GetAllFieldsOk returns a tuple with the AllFields field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaSimpleQueryStringQuery) GetAnalyzer

func (o *MetaSimpleQueryStringQuery) GetAnalyzer() string

GetAnalyzer returns the Analyzer field value if set, zero value otherwise.

func (*MetaSimpleQueryStringQuery) GetAnalyzerOk

func (o *MetaSimpleQueryStringQuery) GetAnalyzerOk() (*string, bool)

GetAnalyzerOk returns a tuple with the Analyzer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaSimpleQueryStringQuery) GetBoost

func (o *MetaSimpleQueryStringQuery) GetBoost() float32

GetBoost returns the Boost field value if set, zero value otherwise.

func (*MetaSimpleQueryStringQuery) GetBoostOk

func (o *MetaSimpleQueryStringQuery) GetBoostOk() (*float32, bool)

GetBoostOk returns a tuple with the Boost field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaSimpleQueryStringQuery) GetDefaultOperator

func (o *MetaSimpleQueryStringQuery) GetDefaultOperator() string

GetDefaultOperator returns the DefaultOperator field value if set, zero value otherwise.

func (*MetaSimpleQueryStringQuery) GetDefaultOperatorOk

func (o *MetaSimpleQueryStringQuery) GetDefaultOperatorOk() (*string, bool)

GetDefaultOperatorOk returns a tuple with the DefaultOperator field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaSimpleQueryStringQuery) GetFields

func (o *MetaSimpleQueryStringQuery) GetFields() []string

GetFields returns the Fields field value if set, zero value otherwise.

func (*MetaSimpleQueryStringQuery) GetFieldsOk

func (o *MetaSimpleQueryStringQuery) GetFieldsOk() ([]string, bool)

GetFieldsOk returns a tuple with the Fields field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaSimpleQueryStringQuery) GetQuery

func (o *MetaSimpleQueryStringQuery) GetQuery() string

GetQuery returns the Query field value if set, zero value otherwise.

func (*MetaSimpleQueryStringQuery) GetQueryOk

func (o *MetaSimpleQueryStringQuery) GetQueryOk() (*string, bool)

GetQueryOk returns a tuple with the Query field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaSimpleQueryStringQuery) HasAllFields

func (o *MetaSimpleQueryStringQuery) HasAllFields() bool

HasAllFields returns a boolean if a field has been set.

func (*MetaSimpleQueryStringQuery) HasAnalyzer

func (o *MetaSimpleQueryStringQuery) HasAnalyzer() bool

HasAnalyzer returns a boolean if a field has been set.

func (*MetaSimpleQueryStringQuery) HasBoost

func (o *MetaSimpleQueryStringQuery) HasBoost() bool

HasBoost returns a boolean if a field has been set.

func (*MetaSimpleQueryStringQuery) HasDefaultOperator

func (o *MetaSimpleQueryStringQuery) HasDefaultOperator() bool

HasDefaultOperator returns a boolean if a field has been set.

func (*MetaSimpleQueryStringQuery) HasFields

func (o *MetaSimpleQueryStringQuery) HasFields() bool

HasFields returns a boolean if a field has been set.

func (*MetaSimpleQueryStringQuery) HasQuery

func (o *MetaSimpleQueryStringQuery) HasQuery() bool

HasQuery returns a boolean if a field has been set.

func (MetaSimpleQueryStringQuery) MarshalJSON

func (o MetaSimpleQueryStringQuery) MarshalJSON() ([]byte, error)

func (*MetaSimpleQueryStringQuery) SetAllFields

func (o *MetaSimpleQueryStringQuery) SetAllFields(v bool)

SetAllFields gets a reference to the given bool and assigns it to the AllFields field.

func (*MetaSimpleQueryStringQuery) SetAnalyzer

func (o *MetaSimpleQueryStringQuery) SetAnalyzer(v string)

SetAnalyzer gets a reference to the given string and assigns it to the Analyzer field.

func (*MetaSimpleQueryStringQuery) SetBoost

func (o *MetaSimpleQueryStringQuery) SetBoost(v float32)

SetBoost gets a reference to the given float32 and assigns it to the Boost field.

func (*MetaSimpleQueryStringQuery) SetDefaultOperator

func (o *MetaSimpleQueryStringQuery) SetDefaultOperator(v string)

SetDefaultOperator gets a reference to the given string and assigns it to the DefaultOperator field.

func (*MetaSimpleQueryStringQuery) SetFields

func (o *MetaSimpleQueryStringQuery) SetFields(v []string)

SetFields gets a reference to the given []string and assigns it to the Fields field.

func (*MetaSimpleQueryStringQuery) SetQuery

func (o *MetaSimpleQueryStringQuery) SetQuery(v string)

SetQuery gets a reference to the given string and assigns it to the Query field.

type MetaTemplate

type MetaTemplate struct {
	IndexTemplate *MetaIndexTemplate `json:"index_template,omitempty"`
	Name          *string            `json:"name,omitempty"`
}

MetaTemplate struct for MetaTemplate

func NewMetaTemplate

func NewMetaTemplate() *MetaTemplate

NewMetaTemplate instantiates a new MetaTemplate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaTemplateWithDefaults

func NewMetaTemplateWithDefaults() *MetaTemplate

NewMetaTemplateWithDefaults instantiates a new MetaTemplate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaTemplate) GetIndexTemplate

func (o *MetaTemplate) GetIndexTemplate() MetaIndexTemplate

GetIndexTemplate returns the IndexTemplate field value if set, zero value otherwise.

func (*MetaTemplate) GetIndexTemplateOk

func (o *MetaTemplate) GetIndexTemplateOk() (*MetaIndexTemplate, bool)

GetIndexTemplateOk returns a tuple with the IndexTemplate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaTemplate) GetName

func (o *MetaTemplate) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*MetaTemplate) GetNameOk

func (o *MetaTemplate) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaTemplate) HasIndexTemplate

func (o *MetaTemplate) HasIndexTemplate() bool

HasIndexTemplate returns a boolean if a field has been set.

func (*MetaTemplate) HasName

func (o *MetaTemplate) HasName() bool

HasName returns a boolean if a field has been set.

func (MetaTemplate) MarshalJSON

func (o MetaTemplate) MarshalJSON() ([]byte, error)

func (*MetaTemplate) SetIndexTemplate

func (o *MetaTemplate) SetIndexTemplate(v MetaIndexTemplate)

SetIndexTemplate gets a reference to the given MetaIndexTemplate and assigns it to the IndexTemplate field.

func (*MetaTemplate) SetName

func (o *MetaTemplate) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

type MetaTemplateTemplate

type MetaTemplateTemplate struct {
	Mappings *MetaMappings      `json:"mappings,omitempty"`
	Settings *MetaIndexSettings `json:"settings,omitempty"`
}

MetaTemplateTemplate struct for MetaTemplateTemplate

func NewMetaTemplateTemplate

func NewMetaTemplateTemplate() *MetaTemplateTemplate

NewMetaTemplateTemplate instantiates a new MetaTemplateTemplate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaTemplateTemplateWithDefaults

func NewMetaTemplateTemplateWithDefaults() *MetaTemplateTemplate

NewMetaTemplateTemplateWithDefaults instantiates a new MetaTemplateTemplate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaTemplateTemplate) GetMappings

func (o *MetaTemplateTemplate) GetMappings() MetaMappings

GetMappings returns the Mappings field value if set, zero value otherwise.

func (*MetaTemplateTemplate) GetMappingsOk

func (o *MetaTemplateTemplate) GetMappingsOk() (*MetaMappings, bool)

GetMappingsOk returns a tuple with the Mappings field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaTemplateTemplate) GetSettings

func (o *MetaTemplateTemplate) GetSettings() MetaIndexSettings

GetSettings returns the Settings field value if set, zero value otherwise.

func (*MetaTemplateTemplate) GetSettingsOk

func (o *MetaTemplateTemplate) GetSettingsOk() (*MetaIndexSettings, bool)

GetSettingsOk returns a tuple with the Settings field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaTemplateTemplate) HasMappings

func (o *MetaTemplateTemplate) HasMappings() bool

HasMappings returns a boolean if a field has been set.

func (*MetaTemplateTemplate) HasSettings

func (o *MetaTemplateTemplate) HasSettings() bool

HasSettings returns a boolean if a field has been set.

func (MetaTemplateTemplate) MarshalJSON

func (o MetaTemplateTemplate) MarshalJSON() ([]byte, error)

func (*MetaTemplateTemplate) SetMappings

func (o *MetaTemplateTemplate) SetMappings(v MetaMappings)

SetMappings gets a reference to the given MetaMappings and assigns it to the Mappings field.

func (*MetaTemplateTemplate) SetSettings

func (o *MetaTemplateTemplate) SetSettings(v MetaIndexSettings)

SetSettings gets a reference to the given MetaIndexSettings and assigns it to the Settings field.

type MetaTermQuery

type MetaTermQuery struct {
	Boost           *float32 `json:"boost,omitempty"`
	CaseInsensitive *bool    `json:"case_insensitive,omitempty"`
	Value           *string  `json:"value,omitempty"`
}

MetaTermQuery struct for MetaTermQuery

func NewMetaTermQuery

func NewMetaTermQuery() *MetaTermQuery

NewMetaTermQuery instantiates a new MetaTermQuery object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaTermQueryWithDefaults

func NewMetaTermQueryWithDefaults() *MetaTermQuery

NewMetaTermQueryWithDefaults instantiates a new MetaTermQuery object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaTermQuery) GetBoost

func (o *MetaTermQuery) GetBoost() float32

GetBoost returns the Boost field value if set, zero value otherwise.

func (*MetaTermQuery) GetBoostOk

func (o *MetaTermQuery) GetBoostOk() (*float32, bool)

GetBoostOk returns a tuple with the Boost field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaTermQuery) GetCaseInsensitive

func (o *MetaTermQuery) GetCaseInsensitive() bool

GetCaseInsensitive returns the CaseInsensitive field value if set, zero value otherwise.

func (*MetaTermQuery) GetCaseInsensitiveOk

func (o *MetaTermQuery) GetCaseInsensitiveOk() (*bool, bool)

GetCaseInsensitiveOk returns a tuple with the CaseInsensitive field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaTermQuery) GetValue

func (o *MetaTermQuery) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*MetaTermQuery) GetValueOk

func (o *MetaTermQuery) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaTermQuery) HasBoost

func (o *MetaTermQuery) HasBoost() bool

HasBoost returns a boolean if a field has been set.

func (*MetaTermQuery) HasCaseInsensitive

func (o *MetaTermQuery) HasCaseInsensitive() bool

HasCaseInsensitive returns a boolean if a field has been set.

func (*MetaTermQuery) HasValue

func (o *MetaTermQuery) HasValue() bool

HasValue returns a boolean if a field has been set.

func (MetaTermQuery) MarshalJSON

func (o MetaTermQuery) MarshalJSON() ([]byte, error)

func (*MetaTermQuery) SetBoost

func (o *MetaTermQuery) SetBoost(v float32)

SetBoost gets a reference to the given float32 and assigns it to the Boost field.

func (*MetaTermQuery) SetCaseInsensitive

func (o *MetaTermQuery) SetCaseInsensitive(v bool)

SetCaseInsensitive gets a reference to the given bool and assigns it to the CaseInsensitive field.

func (*MetaTermQuery) SetValue

func (o *MetaTermQuery) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

type MetaTotal

type MetaTotal struct {
	// Count of documents returned
	Value *int32 `json:"value,omitempty"`
}

MetaTotal struct for MetaTotal

func NewMetaTotal

func NewMetaTotal() *MetaTotal

NewMetaTotal instantiates a new MetaTotal object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaTotalWithDefaults

func NewMetaTotalWithDefaults() *MetaTotal

NewMetaTotalWithDefaults instantiates a new MetaTotal object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaTotal) GetValue

func (o *MetaTotal) GetValue() int32

GetValue returns the Value field value if set, zero value otherwise.

func (*MetaTotal) GetValueOk

func (o *MetaTotal) GetValueOk() (*int32, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaTotal) HasValue

func (o *MetaTotal) HasValue() bool

HasValue returns a boolean if a field has been set.

func (MetaTotal) MarshalJSON

func (o MetaTotal) MarshalJSON() ([]byte, error)

func (*MetaTotal) SetValue

func (o *MetaTotal) SetValue(v int32)

SetValue gets a reference to the given int32 and assigns it to the Value field.

type MetaUser

type MetaUser struct {
	Id        *string `json:"_id,omitempty"`
	CreatedAt *string `json:"created_at,omitempty"`
	Name      *string `json:"name,omitempty"`
	Password  *string `json:"password,omitempty"`
	Role      *string `json:"role,omitempty"`
	Salt      *string `json:"salt,omitempty"`
	UpdatedAt *string `json:"updated_at,omitempty"`
}

MetaUser struct for MetaUser

func NewMetaUser

func NewMetaUser() *MetaUser

NewMetaUser instantiates a new MetaUser object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaUserWithDefaults

func NewMetaUserWithDefaults() *MetaUser

NewMetaUserWithDefaults instantiates a new MetaUser object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaUser) GetCreatedAt

func (o *MetaUser) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*MetaUser) GetCreatedAtOk

func (o *MetaUser) GetCreatedAtOk() (*string, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaUser) GetId

func (o *MetaUser) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*MetaUser) GetIdOk

func (o *MetaUser) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaUser) GetName

func (o *MetaUser) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*MetaUser) GetNameOk

func (o *MetaUser) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaUser) GetPassword

func (o *MetaUser) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*MetaUser) GetPasswordOk

func (o *MetaUser) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaUser) GetRole

func (o *MetaUser) GetRole() string

GetRole returns the Role field value if set, zero value otherwise.

func (*MetaUser) GetRoleOk

func (o *MetaUser) GetRoleOk() (*string, bool)

GetRoleOk returns a tuple with the Role field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaUser) GetSalt

func (o *MetaUser) GetSalt() string

GetSalt returns the Salt field value if set, zero value otherwise.

func (*MetaUser) GetSaltOk

func (o *MetaUser) GetSaltOk() (*string, bool)

GetSaltOk returns a tuple with the Salt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaUser) GetUpdatedAt

func (o *MetaUser) GetUpdatedAt() string

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*MetaUser) GetUpdatedAtOk

func (o *MetaUser) GetUpdatedAtOk() (*string, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaUser) HasCreatedAt

func (o *MetaUser) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*MetaUser) HasId

func (o *MetaUser) HasId() bool

HasId returns a boolean if a field has been set.

func (*MetaUser) HasName

func (o *MetaUser) HasName() bool

HasName returns a boolean if a field has been set.

func (*MetaUser) HasPassword

func (o *MetaUser) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*MetaUser) HasRole

func (o *MetaUser) HasRole() bool

HasRole returns a boolean if a field has been set.

func (*MetaUser) HasSalt

func (o *MetaUser) HasSalt() bool

HasSalt returns a boolean if a field has been set.

func (*MetaUser) HasUpdatedAt

func (o *MetaUser) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (MetaUser) MarshalJSON

func (o MetaUser) MarshalJSON() ([]byte, error)

func (*MetaUser) SetCreatedAt

func (o *MetaUser) SetCreatedAt(v string)

SetCreatedAt gets a reference to the given string and assigns it to the CreatedAt field.

func (*MetaUser) SetId

func (o *MetaUser) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*MetaUser) SetName

func (o *MetaUser) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*MetaUser) SetPassword

func (o *MetaUser) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*MetaUser) SetRole

func (o *MetaUser) SetRole(v string)

SetRole gets a reference to the given string and assigns it to the Role field.

func (*MetaUser) SetSalt

func (o *MetaUser) SetSalt(v string)

SetSalt gets a reference to the given string and assigns it to the Salt field.

func (*MetaUser) SetUpdatedAt

func (o *MetaUser) SetUpdatedAt(v string)

SetUpdatedAt gets a reference to the given string and assigns it to the UpdatedAt field.

type MetaVersionResponse

type MetaVersionResponse struct {
	Branch     *string `json:"branch,omitempty"`
	Build      *string `json:"build,omitempty"`
	BuildDate  *string `json:"build_date,omitempty"`
	CommitHash *string `json:"commit_hash,omitempty"`
	Version    *string `json:"version,omitempty"`
}

MetaVersionResponse struct for MetaVersionResponse

func NewMetaVersionResponse

func NewMetaVersionResponse() *MetaVersionResponse

NewMetaVersionResponse instantiates a new MetaVersionResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaVersionResponseWithDefaults

func NewMetaVersionResponseWithDefaults() *MetaVersionResponse

NewMetaVersionResponseWithDefaults instantiates a new MetaVersionResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaVersionResponse) GetBranch

func (o *MetaVersionResponse) GetBranch() string

GetBranch returns the Branch field value if set, zero value otherwise.

func (*MetaVersionResponse) GetBranchOk

func (o *MetaVersionResponse) GetBranchOk() (*string, bool)

GetBranchOk returns a tuple with the Branch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaVersionResponse) GetBuild

func (o *MetaVersionResponse) GetBuild() string

GetBuild returns the Build field value if set, zero value otherwise.

func (*MetaVersionResponse) GetBuildDate

func (o *MetaVersionResponse) GetBuildDate() string

GetBuildDate returns the BuildDate field value if set, zero value otherwise.

func (*MetaVersionResponse) GetBuildDateOk

func (o *MetaVersionResponse) GetBuildDateOk() (*string, bool)

GetBuildDateOk returns a tuple with the BuildDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaVersionResponse) GetBuildOk

func (o *MetaVersionResponse) GetBuildOk() (*string, bool)

GetBuildOk returns a tuple with the Build field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaVersionResponse) GetCommitHash

func (o *MetaVersionResponse) GetCommitHash() string

GetCommitHash returns the CommitHash field value if set, zero value otherwise.

func (*MetaVersionResponse) GetCommitHashOk

func (o *MetaVersionResponse) GetCommitHashOk() (*string, bool)

GetCommitHashOk returns a tuple with the CommitHash field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaVersionResponse) GetVersion

func (o *MetaVersionResponse) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*MetaVersionResponse) GetVersionOk

func (o *MetaVersionResponse) GetVersionOk() (*string, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaVersionResponse) HasBranch

func (o *MetaVersionResponse) HasBranch() bool

HasBranch returns a boolean if a field has been set.

func (*MetaVersionResponse) HasBuild

func (o *MetaVersionResponse) HasBuild() bool

HasBuild returns a boolean if a field has been set.

func (*MetaVersionResponse) HasBuildDate

func (o *MetaVersionResponse) HasBuildDate() bool

HasBuildDate returns a boolean if a field has been set.

func (*MetaVersionResponse) HasCommitHash

func (o *MetaVersionResponse) HasCommitHash() bool

HasCommitHash returns a boolean if a field has been set.

func (*MetaVersionResponse) HasVersion

func (o *MetaVersionResponse) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (MetaVersionResponse) MarshalJSON

func (o MetaVersionResponse) MarshalJSON() ([]byte, error)

func (*MetaVersionResponse) SetBranch

func (o *MetaVersionResponse) SetBranch(v string)

SetBranch gets a reference to the given string and assigns it to the Branch field.

func (*MetaVersionResponse) SetBuild

func (o *MetaVersionResponse) SetBuild(v string)

SetBuild gets a reference to the given string and assigns it to the Build field.

func (*MetaVersionResponse) SetBuildDate

func (o *MetaVersionResponse) SetBuildDate(v string)

SetBuildDate gets a reference to the given string and assigns it to the BuildDate field.

func (*MetaVersionResponse) SetCommitHash

func (o *MetaVersionResponse) SetCommitHash(v string)

SetCommitHash gets a reference to the given string and assigns it to the CommitHash field.

func (*MetaVersionResponse) SetVersion

func (o *MetaVersionResponse) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

type MetaWildcardQuery

type MetaWildcardQuery struct {
	Boost *float32 `json:"boost,omitempty"`
	Value *string  `json:"value,omitempty"`
}

MetaWildcardQuery struct for MetaWildcardQuery

func NewMetaWildcardQuery

func NewMetaWildcardQuery() *MetaWildcardQuery

NewMetaWildcardQuery instantiates a new MetaWildcardQuery object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaWildcardQueryWithDefaults

func NewMetaWildcardQueryWithDefaults() *MetaWildcardQuery

NewMetaWildcardQueryWithDefaults instantiates a new MetaWildcardQuery object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaWildcardQuery) GetBoost

func (o *MetaWildcardQuery) GetBoost() float32

GetBoost returns the Boost field value if set, zero value otherwise.

func (*MetaWildcardQuery) GetBoostOk

func (o *MetaWildcardQuery) GetBoostOk() (*float32, bool)

GetBoostOk returns a tuple with the Boost field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaWildcardQuery) GetValue

func (o *MetaWildcardQuery) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*MetaWildcardQuery) GetValueOk

func (o *MetaWildcardQuery) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaWildcardQuery) HasBoost

func (o *MetaWildcardQuery) HasBoost() bool

HasBoost returns a boolean if a field has been set.

func (*MetaWildcardQuery) HasValue

func (o *MetaWildcardQuery) HasValue() bool

HasValue returns a boolean if a field has been set.

func (MetaWildcardQuery) MarshalJSON

func (o MetaWildcardQuery) MarshalJSON() ([]byte, error)

func (*MetaWildcardQuery) SetBoost

func (o *MetaWildcardQuery) SetBoost(v float32)

SetBoost gets a reference to the given float32 and assigns it to the Boost field.

func (*MetaWildcardQuery) SetValue

func (o *MetaWildcardQuery) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

type MetaZincQuery

type MetaZincQuery struct {
	// true, false, [\"field1\", \"field2.*\"]
	Source  []string                     `json:"_source,omitempty"`
	Aggs    *map[string]MetaAggregations `json:"aggs,omitempty"`
	Explain *bool                        `json:"explain,omitempty"`
	// [\"field1\", \"field2.*\", {\"field\": \"fieldName\", \"format\": \"epoch_millis\"}]
	Fields    []string       `json:"fields,omitempty"`
	From      *int32         `json:"from,omitempty"`
	Highlight *MetaHighlight `json:"highlight,omitempty"`
	Query     *MetaQuery     `json:"query,omitempty"`
	Size      *int32         `json:"size,omitempty"`
	// \"_sorce\", [\"+Year\",\"-Year\", {\"Year\": \"desc\"}, \"Date\": {\"order\": \"asc\"\", \"format\": \"yyyy-MM-dd\"}}\"}]
	Sort           []string `json:"sort,omitempty"`
	Timeout        *int32   `json:"timeout,omitempty"`
	TrackTotalHits *bool    `json:"track_total_hits,omitempty"`
}

MetaZincQuery struct for MetaZincQuery

func NewMetaZincQuery

func NewMetaZincQuery() *MetaZincQuery

NewMetaZincQuery instantiates a new MetaZincQuery object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetaZincQueryWithDefaults

func NewMetaZincQueryWithDefaults() *MetaZincQuery

NewMetaZincQueryWithDefaults instantiates a new MetaZincQuery object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetaZincQuery) GetAggs

func (o *MetaZincQuery) GetAggs() map[string]MetaAggregations

GetAggs returns the Aggs field value if set, zero value otherwise.

func (*MetaZincQuery) GetAggsOk

func (o *MetaZincQuery) GetAggsOk() (*map[string]MetaAggregations, bool)

GetAggsOk returns a tuple with the Aggs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaZincQuery) GetExplain

func (o *MetaZincQuery) GetExplain() bool

GetExplain returns the Explain field value if set, zero value otherwise.

func (*MetaZincQuery) GetExplainOk

func (o *MetaZincQuery) GetExplainOk() (*bool, bool)

GetExplainOk returns a tuple with the Explain field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaZincQuery) GetFields

func (o *MetaZincQuery) GetFields() []string

GetFields returns the Fields field value if set, zero value otherwise.

func (*MetaZincQuery) GetFieldsOk

func (o *MetaZincQuery) GetFieldsOk() ([]string, bool)

GetFieldsOk returns a tuple with the Fields field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaZincQuery) GetFrom

func (o *MetaZincQuery) GetFrom() int32

GetFrom returns the From field value if set, zero value otherwise.

func (*MetaZincQuery) GetFromOk

func (o *MetaZincQuery) GetFromOk() (*int32, bool)

GetFromOk returns a tuple with the From field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaZincQuery) GetHighlight

func (o *MetaZincQuery) GetHighlight() MetaHighlight

GetHighlight returns the Highlight field value if set, zero value otherwise.

func (*MetaZincQuery) GetHighlightOk

func (o *MetaZincQuery) GetHighlightOk() (*MetaHighlight, bool)

GetHighlightOk returns a tuple with the Highlight field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaZincQuery) GetQuery

func (o *MetaZincQuery) GetQuery() MetaQuery

GetQuery returns the Query field value if set, zero value otherwise.

func (*MetaZincQuery) GetQueryOk

func (o *MetaZincQuery) GetQueryOk() (*MetaQuery, bool)

GetQueryOk returns a tuple with the Query field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaZincQuery) GetSize

func (o *MetaZincQuery) GetSize() int32

GetSize returns the Size field value if set, zero value otherwise.

func (*MetaZincQuery) GetSizeOk

func (o *MetaZincQuery) GetSizeOk() (*int32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaZincQuery) GetSort

func (o *MetaZincQuery) GetSort() []string

GetSort returns the Sort field value if set, zero value otherwise.

func (*MetaZincQuery) GetSortOk

func (o *MetaZincQuery) GetSortOk() ([]string, bool)

GetSortOk returns a tuple with the Sort field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaZincQuery) GetSource

func (o *MetaZincQuery) GetSource() []string

GetSource returns the Source field value if set, zero value otherwise.

func (*MetaZincQuery) GetSourceOk

func (o *MetaZincQuery) GetSourceOk() ([]string, bool)

GetSourceOk returns a tuple with the Source field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaZincQuery) GetTimeout

func (o *MetaZincQuery) GetTimeout() int32

GetTimeout returns the Timeout field value if set, zero value otherwise.

func (*MetaZincQuery) GetTimeoutOk

func (o *MetaZincQuery) GetTimeoutOk() (*int32, bool)

GetTimeoutOk returns a tuple with the Timeout field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaZincQuery) GetTrackTotalHits

func (o *MetaZincQuery) GetTrackTotalHits() bool

GetTrackTotalHits returns the TrackTotalHits field value if set, zero value otherwise.

func (*MetaZincQuery) GetTrackTotalHitsOk

func (o *MetaZincQuery) GetTrackTotalHitsOk() (*bool, bool)

GetTrackTotalHitsOk returns a tuple with the TrackTotalHits field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MetaZincQuery) HasAggs

func (o *MetaZincQuery) HasAggs() bool

HasAggs returns a boolean if a field has been set.

func (*MetaZincQuery) HasExplain

func (o *MetaZincQuery) HasExplain() bool

HasExplain returns a boolean if a field has been set.

func (*MetaZincQuery) HasFields

func (o *MetaZincQuery) HasFields() bool

HasFields returns a boolean if a field has been set.

func (*MetaZincQuery) HasFrom

func (o *MetaZincQuery) HasFrom() bool

HasFrom returns a boolean if a field has been set.

func (*MetaZincQuery) HasHighlight

func (o *MetaZincQuery) HasHighlight() bool

HasHighlight returns a boolean if a field has been set.

func (*MetaZincQuery) HasQuery

func (o *MetaZincQuery) HasQuery() bool

HasQuery returns a boolean if a field has been set.

func (*MetaZincQuery) HasSize

func (o *MetaZincQuery) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*MetaZincQuery) HasSort

func (o *MetaZincQuery) HasSort() bool

HasSort returns a boolean if a field has been set.

func (*MetaZincQuery) HasSource

func (o *MetaZincQuery) HasSource() bool

HasSource returns a boolean if a field has been set.

func (*MetaZincQuery) HasTimeout

func (o *MetaZincQuery) HasTimeout() bool

HasTimeout returns a boolean if a field has been set.

func (*MetaZincQuery) HasTrackTotalHits

func (o *MetaZincQuery) HasTrackTotalHits() bool

HasTrackTotalHits returns a boolean if a field has been set.

func (MetaZincQuery) MarshalJSON

func (o MetaZincQuery) MarshalJSON() ([]byte, error)

func (*MetaZincQuery) SetAggs

func (o *MetaZincQuery) SetAggs(v map[string]MetaAggregations)

SetAggs gets a reference to the given map[string]MetaAggregations and assigns it to the Aggs field.

func (*MetaZincQuery) SetExplain

func (o *MetaZincQuery) SetExplain(v bool)

SetExplain gets a reference to the given bool and assigns it to the Explain field.

func (*MetaZincQuery) SetFields

func (o *MetaZincQuery) SetFields(v []string)

SetFields gets a reference to the given []string and assigns it to the Fields field.

func (*MetaZincQuery) SetFrom

func (o *MetaZincQuery) SetFrom(v int32)

SetFrom gets a reference to the given int32 and assigns it to the From field.

func (*MetaZincQuery) SetHighlight

func (o *MetaZincQuery) SetHighlight(v MetaHighlight)

SetHighlight gets a reference to the given MetaHighlight and assigns it to the Highlight field.

func (*MetaZincQuery) SetQuery

func (o *MetaZincQuery) SetQuery(v MetaQuery)

SetQuery gets a reference to the given MetaQuery and assigns it to the Query field.

func (*MetaZincQuery) SetSize

func (o *MetaZincQuery) SetSize(v int32)

SetSize gets a reference to the given int32 and assigns it to the Size field.

func (*MetaZincQuery) SetSort

func (o *MetaZincQuery) SetSort(v []string)

SetSort gets a reference to the given []string and assigns it to the Sort field.

func (*MetaZincQuery) SetSource

func (o *MetaZincQuery) SetSource(v []string)

SetSource gets a reference to the given []string and assigns it to the Source field.

func (*MetaZincQuery) SetTimeout

func (o *MetaZincQuery) SetTimeout(v int32)

SetTimeout gets a reference to the given int32 and assigns it to the Timeout field.

func (*MetaZincQuery) SetTrackTotalHits

func (o *MetaZincQuery) SetTrackTotalHits(v bool)

SetTrackTotalHits gets a reference to the given bool and assigns it to the TrackTotalHits field.

type NullableAggregationHistogramBound

type NullableAggregationHistogramBound struct {
	// contains filtered or unexported fields
}

func (NullableAggregationHistogramBound) Get

func (NullableAggregationHistogramBound) IsSet

func (NullableAggregationHistogramBound) MarshalJSON

func (v NullableAggregationHistogramBound) MarshalJSON() ([]byte, error)

func (*NullableAggregationHistogramBound) Set

func (*NullableAggregationHistogramBound) UnmarshalJSON

func (v *NullableAggregationHistogramBound) UnmarshalJSON(src []byte) error

func (*NullableAggregationHistogramBound) Unset

type NullableAuthLoginRequest

type NullableAuthLoginRequest struct {
	// contains filtered or unexported fields
}

func NewNullableAuthLoginRequest

func NewNullableAuthLoginRequest(val *AuthLoginRequest) *NullableAuthLoginRequest

func (NullableAuthLoginRequest) Get

func (NullableAuthLoginRequest) IsSet

func (v NullableAuthLoginRequest) IsSet() bool

func (NullableAuthLoginRequest) MarshalJSON

func (v NullableAuthLoginRequest) MarshalJSON() ([]byte, error)

func (*NullableAuthLoginRequest) Set

func (*NullableAuthLoginRequest) UnmarshalJSON

func (v *NullableAuthLoginRequest) UnmarshalJSON(src []byte) error

func (*NullableAuthLoginRequest) Unset

func (v *NullableAuthLoginRequest) Unset()

type NullableAuthLoginResponse

type NullableAuthLoginResponse struct {
	// contains filtered or unexported fields
}

func NewNullableAuthLoginResponse

func NewNullableAuthLoginResponse(val *AuthLoginResponse) *NullableAuthLoginResponse

func (NullableAuthLoginResponse) Get

func (NullableAuthLoginResponse) IsSet

func (v NullableAuthLoginResponse) IsSet() bool

func (NullableAuthLoginResponse) MarshalJSON

func (v NullableAuthLoginResponse) MarshalJSON() ([]byte, error)

func (*NullableAuthLoginResponse) Set

func (*NullableAuthLoginResponse) UnmarshalJSON

func (v *NullableAuthLoginResponse) UnmarshalJSON(src []byte) error

func (*NullableAuthLoginResponse) Unset

func (v *NullableAuthLoginResponse) Unset()

type NullableAuthLoginUser

type NullableAuthLoginUser struct {
	// contains filtered or unexported fields
}

func NewNullableAuthLoginUser

func NewNullableAuthLoginUser(val *AuthLoginUser) *NullableAuthLoginUser

func (NullableAuthLoginUser) Get

func (NullableAuthLoginUser) IsSet

func (v NullableAuthLoginUser) IsSet() bool

func (NullableAuthLoginUser) MarshalJSON

func (v NullableAuthLoginUser) MarshalJSON() ([]byte, error)

func (*NullableAuthLoginUser) Set

func (v *NullableAuthLoginUser) Set(val *AuthLoginUser)

func (*NullableAuthLoginUser) UnmarshalJSON

func (v *NullableAuthLoginUser) UnmarshalJSON(src []byte) error

func (*NullableAuthLoginUser) Unset

func (v *NullableAuthLoginUser) Unset()

type NullableBool

type NullableBool struct {
	// contains filtered or unexported fields
}

func NewNullableBool

func NewNullableBool(val *bool) *NullableBool

func (NullableBool) Get

func (v NullableBool) Get() *bool

func (NullableBool) IsSet

func (v NullableBool) IsSet() bool

func (NullableBool) MarshalJSON

func (v NullableBool) MarshalJSON() ([]byte, error)

func (*NullableBool) Set

func (v *NullableBool) Set(val *bool)

func (*NullableBool) UnmarshalJSON

func (v *NullableBool) UnmarshalJSON(src []byte) error

func (*NullableBool) Unset

func (v *NullableBool) Unset()

type NullableFloat32

type NullableFloat32 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat32

func NewNullableFloat32(val *float32) *NullableFloat32

func (NullableFloat32) Get

func (v NullableFloat32) Get() *float32

func (NullableFloat32) IsSet

func (v NullableFloat32) IsSet() bool

func (NullableFloat32) MarshalJSON

func (v NullableFloat32) MarshalJSON() ([]byte, error)

func (*NullableFloat32) Set

func (v *NullableFloat32) Set(val *float32)

func (*NullableFloat32) UnmarshalJSON

func (v *NullableFloat32) UnmarshalJSON(src []byte) error

func (*NullableFloat32) Unset

func (v *NullableFloat32) Unset()

type NullableFloat64

type NullableFloat64 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat64

func NewNullableFloat64(val *float64) *NullableFloat64

func (NullableFloat64) Get

func (v NullableFloat64) Get() *float64

func (NullableFloat64) IsSet

func (v NullableFloat64) IsSet() bool

func (NullableFloat64) MarshalJSON

func (v NullableFloat64) MarshalJSON() ([]byte, error)

func (*NullableFloat64) Set

func (v *NullableFloat64) Set(val *float64)

func (*NullableFloat64) UnmarshalJSON

func (v *NullableFloat64) UnmarshalJSON(src []byte) error

func (*NullableFloat64) Unset

func (v *NullableFloat64) Unset()

type NullableIndexAnalyzeResponse

type NullableIndexAnalyzeResponse struct {
	// contains filtered or unexported fields
}

func NewNullableIndexAnalyzeResponse

func NewNullableIndexAnalyzeResponse(val *IndexAnalyzeResponse) *NullableIndexAnalyzeResponse

func (NullableIndexAnalyzeResponse) Get

func (NullableIndexAnalyzeResponse) IsSet

func (NullableIndexAnalyzeResponse) MarshalJSON

func (v NullableIndexAnalyzeResponse) MarshalJSON() ([]byte, error)

func (*NullableIndexAnalyzeResponse) Set

func (*NullableIndexAnalyzeResponse) UnmarshalJSON

func (v *NullableIndexAnalyzeResponse) UnmarshalJSON(src []byte) error

func (*NullableIndexAnalyzeResponse) Unset

func (v *NullableIndexAnalyzeResponse) Unset()

type NullableIndexAnalyzeResponseToken

type NullableIndexAnalyzeResponseToken struct {
	// contains filtered or unexported fields
}

func (NullableIndexAnalyzeResponseToken) Get

func (NullableIndexAnalyzeResponseToken) IsSet

func (NullableIndexAnalyzeResponseToken) MarshalJSON

func (v NullableIndexAnalyzeResponseToken) MarshalJSON() ([]byte, error)

func (*NullableIndexAnalyzeResponseToken) Set

func (*NullableIndexAnalyzeResponseToken) UnmarshalJSON

func (v *NullableIndexAnalyzeResponseToken) UnmarshalJSON(src []byte) error

func (*NullableIndexAnalyzeResponseToken) Unset

type NullableIndexIndexListResponse

type NullableIndexIndexListResponse struct {
	// contains filtered or unexported fields
}

func (NullableIndexIndexListResponse) Get

func (NullableIndexIndexListResponse) IsSet

func (NullableIndexIndexListResponse) MarshalJSON

func (v NullableIndexIndexListResponse) MarshalJSON() ([]byte, error)

func (*NullableIndexIndexListResponse) Set

func (*NullableIndexIndexListResponse) UnmarshalJSON

func (v *NullableIndexIndexListResponse) UnmarshalJSON(src []byte) error

func (*NullableIndexIndexListResponse) Unset

func (v *NullableIndexIndexListResponse) Unset()

type NullableInt

type NullableInt struct {
	// contains filtered or unexported fields
}

func NewNullableInt

func NewNullableInt(val *int) *NullableInt

func (NullableInt) Get

func (v NullableInt) Get() *int

func (NullableInt) IsSet

func (v NullableInt) IsSet() bool

func (NullableInt) MarshalJSON

func (v NullableInt) MarshalJSON() ([]byte, error)

func (*NullableInt) Set

func (v *NullableInt) Set(val *int)

func (*NullableInt) UnmarshalJSON

func (v *NullableInt) UnmarshalJSON(src []byte) error

func (*NullableInt) Unset

func (v *NullableInt) Unset()

type NullableInt32

type NullableInt32 struct {
	// contains filtered or unexported fields
}

func NewNullableInt32

func NewNullableInt32(val *int32) *NullableInt32

func (NullableInt32) Get

func (v NullableInt32) Get() *int32

func (NullableInt32) IsSet

func (v NullableInt32) IsSet() bool

func (NullableInt32) MarshalJSON

func (v NullableInt32) MarshalJSON() ([]byte, error)

func (*NullableInt32) Set

func (v *NullableInt32) Set(val *int32)

func (*NullableInt32) UnmarshalJSON

func (v *NullableInt32) UnmarshalJSON(src []byte) error

func (*NullableInt32) Unset

func (v *NullableInt32) Unset()

type NullableInt64

type NullableInt64 struct {
	// contains filtered or unexported fields
}

func NewNullableInt64

func NewNullableInt64(val *int64) *NullableInt64

func (NullableInt64) Get

func (v NullableInt64) Get() *int64

func (NullableInt64) IsSet

func (v NullableInt64) IsSet() bool

func (NullableInt64) MarshalJSON

func (v NullableInt64) MarshalJSON() ([]byte, error)

func (*NullableInt64) Set

func (v *NullableInt64) Set(val *int64)

func (*NullableInt64) UnmarshalJSON

func (v *NullableInt64) UnmarshalJSON(src []byte) error

func (*NullableInt64) Unset

func (v *NullableInt64) Unset()

type NullableMetaAggregationAutoDateHistogram

type NullableMetaAggregationAutoDateHistogram struct {
	// contains filtered or unexported fields
}

func (NullableMetaAggregationAutoDateHistogram) Get

func (NullableMetaAggregationAutoDateHistogram) IsSet

func (NullableMetaAggregationAutoDateHistogram) MarshalJSON

func (*NullableMetaAggregationAutoDateHistogram) Set

func (*NullableMetaAggregationAutoDateHistogram) UnmarshalJSON

func (v *NullableMetaAggregationAutoDateHistogram) UnmarshalJSON(src []byte) error

func (*NullableMetaAggregationAutoDateHistogram) Unset

type NullableMetaAggregationDateHistogram

type NullableMetaAggregationDateHistogram struct {
	// contains filtered or unexported fields
}

func (NullableMetaAggregationDateHistogram) Get

func (NullableMetaAggregationDateHistogram) IsSet

func (NullableMetaAggregationDateHistogram) MarshalJSON

func (v NullableMetaAggregationDateHistogram) MarshalJSON() ([]byte, error)

func (*NullableMetaAggregationDateHistogram) Set

func (*NullableMetaAggregationDateHistogram) UnmarshalJSON

func (v *NullableMetaAggregationDateHistogram) UnmarshalJSON(src []byte) error

func (*NullableMetaAggregationDateHistogram) Unset

type NullableMetaAggregationDateRange

type NullableMetaAggregationDateRange struct {
	// contains filtered or unexported fields
}

func (NullableMetaAggregationDateRange) Get

func (NullableMetaAggregationDateRange) IsSet

func (NullableMetaAggregationDateRange) MarshalJSON

func (v NullableMetaAggregationDateRange) MarshalJSON() ([]byte, error)

func (*NullableMetaAggregationDateRange) Set

func (*NullableMetaAggregationDateRange) UnmarshalJSON

func (v *NullableMetaAggregationDateRange) UnmarshalJSON(src []byte) error

func (*NullableMetaAggregationDateRange) Unset

type NullableMetaAggregationHistogram

type NullableMetaAggregationHistogram struct {
	// contains filtered or unexported fields
}

func (NullableMetaAggregationHistogram) Get

func (NullableMetaAggregationHistogram) IsSet

func (NullableMetaAggregationHistogram) MarshalJSON

func (v NullableMetaAggregationHistogram) MarshalJSON() ([]byte, error)

func (*NullableMetaAggregationHistogram) Set

func (*NullableMetaAggregationHistogram) UnmarshalJSON

func (v *NullableMetaAggregationHistogram) UnmarshalJSON(src []byte) error

func (*NullableMetaAggregationHistogram) Unset

type NullableMetaAggregationIPRange

type NullableMetaAggregationIPRange struct {
	// contains filtered or unexported fields
}

func (NullableMetaAggregationIPRange) Get

func (NullableMetaAggregationIPRange) IsSet

func (NullableMetaAggregationIPRange) MarshalJSON

func (v NullableMetaAggregationIPRange) MarshalJSON() ([]byte, error)

func (*NullableMetaAggregationIPRange) Set

func (*NullableMetaAggregationIPRange) UnmarshalJSON

func (v *NullableMetaAggregationIPRange) UnmarshalJSON(src []byte) error

func (*NullableMetaAggregationIPRange) Unset

func (v *NullableMetaAggregationIPRange) Unset()

type NullableMetaAggregationMetric

type NullableMetaAggregationMetric struct {
	// contains filtered or unexported fields
}

func (NullableMetaAggregationMetric) Get

func (NullableMetaAggregationMetric) IsSet

func (NullableMetaAggregationMetric) MarshalJSON

func (v NullableMetaAggregationMetric) MarshalJSON() ([]byte, error)

func (*NullableMetaAggregationMetric) Set

func (*NullableMetaAggregationMetric) UnmarshalJSON

func (v *NullableMetaAggregationMetric) UnmarshalJSON(src []byte) error

func (*NullableMetaAggregationMetric) Unset

func (v *NullableMetaAggregationMetric) Unset()

type NullableMetaAggregationRange

type NullableMetaAggregationRange struct {
	// contains filtered or unexported fields
}

func NewNullableMetaAggregationRange

func NewNullableMetaAggregationRange(val *MetaAggregationRange) *NullableMetaAggregationRange

func (NullableMetaAggregationRange) Get

func (NullableMetaAggregationRange) IsSet

func (NullableMetaAggregationRange) MarshalJSON

func (v NullableMetaAggregationRange) MarshalJSON() ([]byte, error)

func (*NullableMetaAggregationRange) Set

func (*NullableMetaAggregationRange) UnmarshalJSON

func (v *NullableMetaAggregationRange) UnmarshalJSON(src []byte) error

func (*NullableMetaAggregationRange) Unset

func (v *NullableMetaAggregationRange) Unset()

type NullableMetaAggregationResponse

type NullableMetaAggregationResponse struct {
	// contains filtered or unexported fields
}

func (NullableMetaAggregationResponse) Get

func (NullableMetaAggregationResponse) IsSet

func (NullableMetaAggregationResponse) MarshalJSON

func (v NullableMetaAggregationResponse) MarshalJSON() ([]byte, error)

func (*NullableMetaAggregationResponse) Set

func (*NullableMetaAggregationResponse) UnmarshalJSON

func (v *NullableMetaAggregationResponse) UnmarshalJSON(src []byte) error

func (*NullableMetaAggregationResponse) Unset

type NullableMetaAggregations

type NullableMetaAggregations struct {
	// contains filtered or unexported fields
}

func NewNullableMetaAggregations

func NewNullableMetaAggregations(val *MetaAggregations) *NullableMetaAggregations

func (NullableMetaAggregations) Get

func (NullableMetaAggregations) IsSet

func (v NullableMetaAggregations) IsSet() bool

func (NullableMetaAggregations) MarshalJSON

func (v NullableMetaAggregations) MarshalJSON() ([]byte, error)

func (*NullableMetaAggregations) Set

func (*NullableMetaAggregations) UnmarshalJSON

func (v *NullableMetaAggregations) UnmarshalJSON(src []byte) error

func (*NullableMetaAggregations) Unset

func (v *NullableMetaAggregations) Unset()

type NullableMetaAggregationsTerms

type NullableMetaAggregationsTerms struct {
	// contains filtered or unexported fields
}

func (NullableMetaAggregationsTerms) Get

func (NullableMetaAggregationsTerms) IsSet

func (NullableMetaAggregationsTerms) MarshalJSON

func (v NullableMetaAggregationsTerms) MarshalJSON() ([]byte, error)

func (*NullableMetaAggregationsTerms) Set

func (*NullableMetaAggregationsTerms) UnmarshalJSON

func (v *NullableMetaAggregationsTerms) UnmarshalJSON(src []byte) error

func (*NullableMetaAggregationsTerms) Unset

func (v *NullableMetaAggregationsTerms) Unset()

type NullableMetaAnalyzer

type NullableMetaAnalyzer struct {
	// contains filtered or unexported fields
}

func NewNullableMetaAnalyzer

func NewNullableMetaAnalyzer(val *MetaAnalyzer) *NullableMetaAnalyzer

func (NullableMetaAnalyzer) Get

func (NullableMetaAnalyzer) IsSet

func (v NullableMetaAnalyzer) IsSet() bool

func (NullableMetaAnalyzer) MarshalJSON

func (v NullableMetaAnalyzer) MarshalJSON() ([]byte, error)

func (*NullableMetaAnalyzer) Set

func (v *NullableMetaAnalyzer) Set(val *MetaAnalyzer)

func (*NullableMetaAnalyzer) UnmarshalJSON

func (v *NullableMetaAnalyzer) UnmarshalJSON(src []byte) error

func (*NullableMetaAnalyzer) Unset

func (v *NullableMetaAnalyzer) Unset()

type NullableMetaBoolQuery

type NullableMetaBoolQuery struct {
	// contains filtered or unexported fields
}

func NewNullableMetaBoolQuery

func NewNullableMetaBoolQuery(val *MetaBoolQuery) *NullableMetaBoolQuery

func (NullableMetaBoolQuery) Get

func (NullableMetaBoolQuery) IsSet

func (v NullableMetaBoolQuery) IsSet() bool

func (NullableMetaBoolQuery) MarshalJSON

func (v NullableMetaBoolQuery) MarshalJSON() ([]byte, error)

func (*NullableMetaBoolQuery) Set

func (v *NullableMetaBoolQuery) Set(val *MetaBoolQuery)

func (*NullableMetaBoolQuery) UnmarshalJSON

func (v *NullableMetaBoolQuery) UnmarshalJSON(src []byte) error

func (*NullableMetaBoolQuery) Unset

func (v *NullableMetaBoolQuery) Unset()

type NullableMetaDateRange

type NullableMetaDateRange struct {
	// contains filtered or unexported fields
}

func NewNullableMetaDateRange

func NewNullableMetaDateRange(val *MetaDateRange) *NullableMetaDateRange

func (NullableMetaDateRange) Get

func (NullableMetaDateRange) IsSet

func (v NullableMetaDateRange) IsSet() bool

func (NullableMetaDateRange) MarshalJSON

func (v NullableMetaDateRange) MarshalJSON() ([]byte, error)

func (*NullableMetaDateRange) Set

func (v *NullableMetaDateRange) Set(val *MetaDateRange)

func (*NullableMetaDateRange) UnmarshalJSON

func (v *NullableMetaDateRange) UnmarshalJSON(src []byte) error

func (*NullableMetaDateRange) Unset

func (v *NullableMetaDateRange) Unset()

type NullableMetaExistsQuery

type NullableMetaExistsQuery struct {
	// contains filtered or unexported fields
}

func NewNullableMetaExistsQuery

func NewNullableMetaExistsQuery(val *MetaExistsQuery) *NullableMetaExistsQuery

func (NullableMetaExistsQuery) Get

func (NullableMetaExistsQuery) IsSet

func (v NullableMetaExistsQuery) IsSet() bool

func (NullableMetaExistsQuery) MarshalJSON

func (v NullableMetaExistsQuery) MarshalJSON() ([]byte, error)

func (*NullableMetaExistsQuery) Set

func (*NullableMetaExistsQuery) UnmarshalJSON

func (v *NullableMetaExistsQuery) UnmarshalJSON(src []byte) error

func (*NullableMetaExistsQuery) Unset

func (v *NullableMetaExistsQuery) Unset()

type NullableMetaFuzzyQuery

type NullableMetaFuzzyQuery struct {
	// contains filtered or unexported fields
}

func NewNullableMetaFuzzyQuery

func NewNullableMetaFuzzyQuery(val *MetaFuzzyQuery) *NullableMetaFuzzyQuery

func (NullableMetaFuzzyQuery) Get

func (NullableMetaFuzzyQuery) IsSet

func (v NullableMetaFuzzyQuery) IsSet() bool

func (NullableMetaFuzzyQuery) MarshalJSON

func (v NullableMetaFuzzyQuery) MarshalJSON() ([]byte, error)

func (*NullableMetaFuzzyQuery) Set

func (*NullableMetaFuzzyQuery) UnmarshalJSON

func (v *NullableMetaFuzzyQuery) UnmarshalJSON(src []byte) error

func (*NullableMetaFuzzyQuery) Unset

func (v *NullableMetaFuzzyQuery) Unset()

type NullableMetaHTTPResponse

type NullableMetaHTTPResponse struct {
	// contains filtered or unexported fields
}

func NewNullableMetaHTTPResponse

func NewNullableMetaHTTPResponse(val *MetaHTTPResponse) *NullableMetaHTTPResponse

func (NullableMetaHTTPResponse) Get

func (NullableMetaHTTPResponse) IsSet

func (v NullableMetaHTTPResponse) IsSet() bool

func (NullableMetaHTTPResponse) MarshalJSON

func (v NullableMetaHTTPResponse) MarshalJSON() ([]byte, error)

func (*NullableMetaHTTPResponse) Set

func (*NullableMetaHTTPResponse) UnmarshalJSON

func (v *NullableMetaHTTPResponse) UnmarshalJSON(src []byte) error

func (*NullableMetaHTTPResponse) Unset

func (v *NullableMetaHTTPResponse) Unset()

type NullableMetaHTTPResponseDeleteByQuery

type NullableMetaHTTPResponseDeleteByQuery struct {
	// contains filtered or unexported fields
}

func (NullableMetaHTTPResponseDeleteByQuery) Get

func (NullableMetaHTTPResponseDeleteByQuery) IsSet

func (NullableMetaHTTPResponseDeleteByQuery) MarshalJSON

func (v NullableMetaHTTPResponseDeleteByQuery) MarshalJSON() ([]byte, error)

func (*NullableMetaHTTPResponseDeleteByQuery) Set

func (*NullableMetaHTTPResponseDeleteByQuery) UnmarshalJSON

func (v *NullableMetaHTTPResponseDeleteByQuery) UnmarshalJSON(src []byte) error

func (*NullableMetaHTTPResponseDeleteByQuery) Unset

type NullableMetaHTTPResponseDocument

type NullableMetaHTTPResponseDocument struct {
	// contains filtered or unexported fields
}

func (NullableMetaHTTPResponseDocument) Get

func (NullableMetaHTTPResponseDocument) IsSet

func (NullableMetaHTTPResponseDocument) MarshalJSON

func (v NullableMetaHTTPResponseDocument) MarshalJSON() ([]byte, error)

func (*NullableMetaHTTPResponseDocument) Set

func (*NullableMetaHTTPResponseDocument) UnmarshalJSON

func (v *NullableMetaHTTPResponseDocument) UnmarshalJSON(src []byte) error

func (*NullableMetaHTTPResponseDocument) Unset

type NullableMetaHTTPResponseError

type NullableMetaHTTPResponseError struct {
	// contains filtered or unexported fields
}

func (NullableMetaHTTPResponseError) Get

func (NullableMetaHTTPResponseError) IsSet

func (NullableMetaHTTPResponseError) MarshalJSON

func (v NullableMetaHTTPResponseError) MarshalJSON() ([]byte, error)

func (*NullableMetaHTTPResponseError) Set

func (*NullableMetaHTTPResponseError) UnmarshalJSON

func (v *NullableMetaHTTPResponseError) UnmarshalJSON(src []byte) error

func (*NullableMetaHTTPResponseError) Unset

func (v *NullableMetaHTTPResponseError) Unset()

type NullableMetaHTTPResponseID

type NullableMetaHTTPResponseID struct {
	// contains filtered or unexported fields
}

func NewNullableMetaHTTPResponseID

func NewNullableMetaHTTPResponseID(val *MetaHTTPResponseID) *NullableMetaHTTPResponseID

func (NullableMetaHTTPResponseID) Get

func (NullableMetaHTTPResponseID) IsSet

func (v NullableMetaHTTPResponseID) IsSet() bool

func (NullableMetaHTTPResponseID) MarshalJSON

func (v NullableMetaHTTPResponseID) MarshalJSON() ([]byte, error)

func (*NullableMetaHTTPResponseID) Set

func (*NullableMetaHTTPResponseID) UnmarshalJSON

func (v *NullableMetaHTTPResponseID) UnmarshalJSON(src []byte) error

func (*NullableMetaHTTPResponseID) Unset

func (v *NullableMetaHTTPResponseID) Unset()

type NullableMetaHTTPResponseIndex

type NullableMetaHTTPResponseIndex struct {
	// contains filtered or unexported fields
}

func (NullableMetaHTTPResponseIndex) Get

func (NullableMetaHTTPResponseIndex) IsSet

func (NullableMetaHTTPResponseIndex) MarshalJSON

func (v NullableMetaHTTPResponseIndex) MarshalJSON() ([]byte, error)

func (*NullableMetaHTTPResponseIndex) Set

func (*NullableMetaHTTPResponseIndex) UnmarshalJSON

func (v *NullableMetaHTTPResponseIndex) UnmarshalJSON(src []byte) error

func (*NullableMetaHTTPResponseIndex) Unset

func (v *NullableMetaHTTPResponseIndex) Unset()

type NullableMetaHTTPResponseRecordCount

type NullableMetaHTTPResponseRecordCount struct {
	// contains filtered or unexported fields
}

func (NullableMetaHTTPResponseRecordCount) Get

func (NullableMetaHTTPResponseRecordCount) IsSet

func (NullableMetaHTTPResponseRecordCount) MarshalJSON

func (v NullableMetaHTTPResponseRecordCount) MarshalJSON() ([]byte, error)

func (*NullableMetaHTTPResponseRecordCount) Set

func (*NullableMetaHTTPResponseRecordCount) UnmarshalJSON

func (v *NullableMetaHTTPResponseRecordCount) UnmarshalJSON(src []byte) error

func (*NullableMetaHTTPResponseRecordCount) Unset

type NullableMetaHTTPResponseTemplate

type NullableMetaHTTPResponseTemplate struct {
	// contains filtered or unexported fields
}

func (NullableMetaHTTPResponseTemplate) Get

func (NullableMetaHTTPResponseTemplate) IsSet

func (NullableMetaHTTPResponseTemplate) MarshalJSON

func (v NullableMetaHTTPResponseTemplate) MarshalJSON() ([]byte, error)

func (*NullableMetaHTTPResponseTemplate) Set

func (*NullableMetaHTTPResponseTemplate) UnmarshalJSON

func (v *NullableMetaHTTPResponseTemplate) UnmarshalJSON(src []byte) error

func (*NullableMetaHTTPResponseTemplate) Unset

type NullableMetaHealthzResponse

type NullableMetaHealthzResponse struct {
	// contains filtered or unexported fields
}

func NewNullableMetaHealthzResponse

func NewNullableMetaHealthzResponse(val *MetaHealthzResponse) *NullableMetaHealthzResponse

func (NullableMetaHealthzResponse) Get

func (NullableMetaHealthzResponse) IsSet

func (NullableMetaHealthzResponse) MarshalJSON

func (v NullableMetaHealthzResponse) MarshalJSON() ([]byte, error)

func (*NullableMetaHealthzResponse) Set

func (*NullableMetaHealthzResponse) UnmarshalJSON

func (v *NullableMetaHealthzResponse) UnmarshalJSON(src []byte) error

func (*NullableMetaHealthzResponse) Unset

func (v *NullableMetaHealthzResponse) Unset()

type NullableMetaHighlight

type NullableMetaHighlight struct {
	// contains filtered or unexported fields
}

func NewNullableMetaHighlight

func NewNullableMetaHighlight(val *MetaHighlight) *NullableMetaHighlight

func (NullableMetaHighlight) Get

func (NullableMetaHighlight) IsSet

func (v NullableMetaHighlight) IsSet() bool

func (NullableMetaHighlight) MarshalJSON

func (v NullableMetaHighlight) MarshalJSON() ([]byte, error)

func (*NullableMetaHighlight) Set

func (v *NullableMetaHighlight) Set(val *MetaHighlight)

func (*NullableMetaHighlight) UnmarshalJSON

func (v *NullableMetaHighlight) UnmarshalJSON(src []byte) error

func (*NullableMetaHighlight) Unset

func (v *NullableMetaHighlight) Unset()

type NullableMetaHit

type NullableMetaHit struct {
	// contains filtered or unexported fields
}

func NewNullableMetaHit

func NewNullableMetaHit(val *MetaHit) *NullableMetaHit

func (NullableMetaHit) Get

func (v NullableMetaHit) Get() *MetaHit

func (NullableMetaHit) IsSet

func (v NullableMetaHit) IsSet() bool

func (NullableMetaHit) MarshalJSON

func (v NullableMetaHit) MarshalJSON() ([]byte, error)

func (*NullableMetaHit) Set

func (v *NullableMetaHit) Set(val *MetaHit)

func (*NullableMetaHit) UnmarshalJSON

func (v *NullableMetaHit) UnmarshalJSON(src []byte) error

func (*NullableMetaHit) Unset

func (v *NullableMetaHit) Unset()

type NullableMetaHits

type NullableMetaHits struct {
	// contains filtered or unexported fields
}

func NewNullableMetaHits

func NewNullableMetaHits(val *MetaHits) *NullableMetaHits

func (NullableMetaHits) Get

func (v NullableMetaHits) Get() *MetaHits

func (NullableMetaHits) IsSet

func (v NullableMetaHits) IsSet() bool

func (NullableMetaHits) MarshalJSON

func (v NullableMetaHits) MarshalJSON() ([]byte, error)

func (*NullableMetaHits) Set

func (v *NullableMetaHits) Set(val *MetaHits)

func (*NullableMetaHits) UnmarshalJSON

func (v *NullableMetaHits) UnmarshalJSON(src []byte) error

func (*NullableMetaHits) Unset

func (v *NullableMetaHits) Unset()

type NullableMetaHttpRetriesResponse

type NullableMetaHttpRetriesResponse struct {
	// contains filtered or unexported fields
}

func (NullableMetaHttpRetriesResponse) Get

func (NullableMetaHttpRetriesResponse) IsSet

func (NullableMetaHttpRetriesResponse) MarshalJSON

func (v NullableMetaHttpRetriesResponse) MarshalJSON() ([]byte, error)

func (*NullableMetaHttpRetriesResponse) Set

func (*NullableMetaHttpRetriesResponse) UnmarshalJSON

func (v *NullableMetaHttpRetriesResponse) UnmarshalJSON(src []byte) error

func (*NullableMetaHttpRetriesResponse) Unset

type NullableMetaIPRange

type NullableMetaIPRange struct {
	// contains filtered or unexported fields
}

func NewNullableMetaIPRange

func NewNullableMetaIPRange(val *MetaIPRange) *NullableMetaIPRange

func (NullableMetaIPRange) Get

func (NullableMetaIPRange) IsSet

func (v NullableMetaIPRange) IsSet() bool

func (NullableMetaIPRange) MarshalJSON

func (v NullableMetaIPRange) MarshalJSON() ([]byte, error)

func (*NullableMetaIPRange) Set

func (v *NullableMetaIPRange) Set(val *MetaIPRange)

func (*NullableMetaIPRange) UnmarshalJSON

func (v *NullableMetaIPRange) UnmarshalJSON(src []byte) error

func (*NullableMetaIPRange) Unset

func (v *NullableMetaIPRange) Unset()

type NullableMetaIdsQuery

type NullableMetaIdsQuery struct {
	// contains filtered or unexported fields
}

func NewNullableMetaIdsQuery

func NewNullableMetaIdsQuery(val *MetaIdsQuery) *NullableMetaIdsQuery

func (NullableMetaIdsQuery) Get

func (NullableMetaIdsQuery) IsSet

func (v NullableMetaIdsQuery) IsSet() bool

func (NullableMetaIdsQuery) MarshalJSON

func (v NullableMetaIdsQuery) MarshalJSON() ([]byte, error)

func (*NullableMetaIdsQuery) Set

func (v *NullableMetaIdsQuery) Set(val *MetaIdsQuery)

func (*NullableMetaIdsQuery) UnmarshalJSON

func (v *NullableMetaIdsQuery) UnmarshalJSON(src []byte) error

func (*NullableMetaIdsQuery) Unset

func (v *NullableMetaIdsQuery) Unset()

type NullableMetaIndexAnalysis

type NullableMetaIndexAnalysis struct {
	// contains filtered or unexported fields
}

func NewNullableMetaIndexAnalysis

func NewNullableMetaIndexAnalysis(val *MetaIndexAnalysis) *NullableMetaIndexAnalysis

func (NullableMetaIndexAnalysis) Get

func (NullableMetaIndexAnalysis) IsSet

func (v NullableMetaIndexAnalysis) IsSet() bool

func (NullableMetaIndexAnalysis) MarshalJSON

func (v NullableMetaIndexAnalysis) MarshalJSON() ([]byte, error)

func (*NullableMetaIndexAnalysis) Set

func (*NullableMetaIndexAnalysis) UnmarshalJSON

func (v *NullableMetaIndexAnalysis) UnmarshalJSON(src []byte) error

func (*NullableMetaIndexAnalysis) Unset

func (v *NullableMetaIndexAnalysis) Unset()

type NullableMetaIndexSettings

type NullableMetaIndexSettings struct {
	// contains filtered or unexported fields
}

func NewNullableMetaIndexSettings

func NewNullableMetaIndexSettings(val *MetaIndexSettings) *NullableMetaIndexSettings

func (NullableMetaIndexSettings) Get

func (NullableMetaIndexSettings) IsSet

func (v NullableMetaIndexSettings) IsSet() bool

func (NullableMetaIndexSettings) MarshalJSON

func (v NullableMetaIndexSettings) MarshalJSON() ([]byte, error)

func (*NullableMetaIndexSettings) Set

func (*NullableMetaIndexSettings) UnmarshalJSON

func (v *NullableMetaIndexSettings) UnmarshalJSON(src []byte) error

func (*NullableMetaIndexSettings) Unset

func (v *NullableMetaIndexSettings) Unset()

type NullableMetaIndexSimple

type NullableMetaIndexSimple struct {
	// contains filtered or unexported fields
}

func NewNullableMetaIndexSimple

func NewNullableMetaIndexSimple(val *MetaIndexSimple) *NullableMetaIndexSimple

func (NullableMetaIndexSimple) Get

func (NullableMetaIndexSimple) IsSet

func (v NullableMetaIndexSimple) IsSet() bool

func (NullableMetaIndexSimple) MarshalJSON

func (v NullableMetaIndexSimple) MarshalJSON() ([]byte, error)

func (*NullableMetaIndexSimple) Set

func (*NullableMetaIndexSimple) UnmarshalJSON

func (v *NullableMetaIndexSimple) UnmarshalJSON(src []byte) error

func (*NullableMetaIndexSimple) Unset

func (v *NullableMetaIndexSimple) Unset()

type NullableMetaIndexTemplate

type NullableMetaIndexTemplate struct {
	// contains filtered or unexported fields
}

func NewNullableMetaIndexTemplate

func NewNullableMetaIndexTemplate(val *MetaIndexTemplate) *NullableMetaIndexTemplate

func (NullableMetaIndexTemplate) Get

func (NullableMetaIndexTemplate) IsSet

func (v NullableMetaIndexTemplate) IsSet() bool

func (NullableMetaIndexTemplate) MarshalJSON

func (v NullableMetaIndexTemplate) MarshalJSON() ([]byte, error)

func (*NullableMetaIndexTemplate) Set

func (*NullableMetaIndexTemplate) UnmarshalJSON

func (v *NullableMetaIndexTemplate) UnmarshalJSON(src []byte) error

func (*NullableMetaIndexTemplate) Unset

func (v *NullableMetaIndexTemplate) Unset()

type NullableMetaJSONIngest

type NullableMetaJSONIngest struct {
	// contains filtered or unexported fields
}

func NewNullableMetaJSONIngest

func NewNullableMetaJSONIngest(val *MetaJSONIngest) *NullableMetaJSONIngest

func (NullableMetaJSONIngest) Get

func (NullableMetaJSONIngest) IsSet

func (v NullableMetaJSONIngest) IsSet() bool

func (NullableMetaJSONIngest) MarshalJSON

func (v NullableMetaJSONIngest) MarshalJSON() ([]byte, error)

func (*NullableMetaJSONIngest) Set

func (*NullableMetaJSONIngest) UnmarshalJSON

func (v *NullableMetaJSONIngest) UnmarshalJSON(src []byte) error

func (*NullableMetaJSONIngest) Unset

func (v *NullableMetaJSONIngest) Unset()

type NullableMetaMappings

type NullableMetaMappings struct {
	// contains filtered or unexported fields
}

func NewNullableMetaMappings

func NewNullableMetaMappings(val *MetaMappings) *NullableMetaMappings

func (NullableMetaMappings) Get

func (NullableMetaMappings) IsSet

func (v NullableMetaMappings) IsSet() bool

func (NullableMetaMappings) MarshalJSON

func (v NullableMetaMappings) MarshalJSON() ([]byte, error)

func (*NullableMetaMappings) Set

func (v *NullableMetaMappings) Set(val *MetaMappings)

func (*NullableMetaMappings) UnmarshalJSON

func (v *NullableMetaMappings) UnmarshalJSON(src []byte) error

func (*NullableMetaMappings) Unset

func (v *NullableMetaMappings) Unset()

type NullableMetaMatchBoolPrefixQuery

type NullableMetaMatchBoolPrefixQuery struct {
	// contains filtered or unexported fields
}

func (NullableMetaMatchBoolPrefixQuery) Get

func (NullableMetaMatchBoolPrefixQuery) IsSet

func (NullableMetaMatchBoolPrefixQuery) MarshalJSON

func (v NullableMetaMatchBoolPrefixQuery) MarshalJSON() ([]byte, error)

func (*NullableMetaMatchBoolPrefixQuery) Set

func (*NullableMetaMatchBoolPrefixQuery) UnmarshalJSON

func (v *NullableMetaMatchBoolPrefixQuery) UnmarshalJSON(src []byte) error

func (*NullableMetaMatchBoolPrefixQuery) Unset

type NullableMetaMatchPhrasePrefixQuery

type NullableMetaMatchPhrasePrefixQuery struct {
	// contains filtered or unexported fields
}

func (NullableMetaMatchPhrasePrefixQuery) Get

func (NullableMetaMatchPhrasePrefixQuery) IsSet

func (NullableMetaMatchPhrasePrefixQuery) MarshalJSON

func (v NullableMetaMatchPhrasePrefixQuery) MarshalJSON() ([]byte, error)

func (*NullableMetaMatchPhrasePrefixQuery) Set

func (*NullableMetaMatchPhrasePrefixQuery) UnmarshalJSON

func (v *NullableMetaMatchPhrasePrefixQuery) UnmarshalJSON(src []byte) error

func (*NullableMetaMatchPhrasePrefixQuery) Unset

type NullableMetaMatchPhraseQuery

type NullableMetaMatchPhraseQuery struct {
	// contains filtered or unexported fields
}

func NewNullableMetaMatchPhraseQuery

func NewNullableMetaMatchPhraseQuery(val *MetaMatchPhraseQuery) *NullableMetaMatchPhraseQuery

func (NullableMetaMatchPhraseQuery) Get

func (NullableMetaMatchPhraseQuery) IsSet

func (NullableMetaMatchPhraseQuery) MarshalJSON

func (v NullableMetaMatchPhraseQuery) MarshalJSON() ([]byte, error)

func (*NullableMetaMatchPhraseQuery) Set

func (*NullableMetaMatchPhraseQuery) UnmarshalJSON

func (v *NullableMetaMatchPhraseQuery) UnmarshalJSON(src []byte) error

func (*NullableMetaMatchPhraseQuery) Unset

func (v *NullableMetaMatchPhraseQuery) Unset()

type NullableMetaMatchQuery

type NullableMetaMatchQuery struct {
	// contains filtered or unexported fields
}

func NewNullableMetaMatchQuery

func NewNullableMetaMatchQuery(val *MetaMatchQuery) *NullableMetaMatchQuery

func (NullableMetaMatchQuery) Get

func (NullableMetaMatchQuery) IsSet

func (v NullableMetaMatchQuery) IsSet() bool

func (NullableMetaMatchQuery) MarshalJSON

func (v NullableMetaMatchQuery) MarshalJSON() ([]byte, error)

func (*NullableMetaMatchQuery) Set

func (*NullableMetaMatchQuery) UnmarshalJSON

func (v *NullableMetaMatchQuery) UnmarshalJSON(src []byte) error

func (*NullableMetaMatchQuery) Unset

func (v *NullableMetaMatchQuery) Unset()

type NullableMetaMultiMatchQuery

type NullableMetaMultiMatchQuery struct {
	// contains filtered or unexported fields
}

func NewNullableMetaMultiMatchQuery

func NewNullableMetaMultiMatchQuery(val *MetaMultiMatchQuery) *NullableMetaMultiMatchQuery

func (NullableMetaMultiMatchQuery) Get

func (NullableMetaMultiMatchQuery) IsSet

func (NullableMetaMultiMatchQuery) MarshalJSON

func (v NullableMetaMultiMatchQuery) MarshalJSON() ([]byte, error)

func (*NullableMetaMultiMatchQuery) Set

func (*NullableMetaMultiMatchQuery) UnmarshalJSON

func (v *NullableMetaMultiMatchQuery) UnmarshalJSON(src []byte) error

func (*NullableMetaMultiMatchQuery) Unset

func (v *NullableMetaMultiMatchQuery) Unset()

type NullableMetaPage

type NullableMetaPage struct {
	// contains filtered or unexported fields
}

func NewNullableMetaPage

func NewNullableMetaPage(val *MetaPage) *NullableMetaPage

func (NullableMetaPage) Get

func (v NullableMetaPage) Get() *MetaPage

func (NullableMetaPage) IsSet

func (v NullableMetaPage) IsSet() bool

func (NullableMetaPage) MarshalJSON

func (v NullableMetaPage) MarshalJSON() ([]byte, error)

func (*NullableMetaPage) Set

func (v *NullableMetaPage) Set(val *MetaPage)

func (*NullableMetaPage) UnmarshalJSON

func (v *NullableMetaPage) UnmarshalJSON(src []byte) error

func (*NullableMetaPage) Unset

func (v *NullableMetaPage) Unset()

type NullableMetaPrefixQuery

type NullableMetaPrefixQuery struct {
	// contains filtered or unexported fields
}

func NewNullableMetaPrefixQuery

func NewNullableMetaPrefixQuery(val *MetaPrefixQuery) *NullableMetaPrefixQuery

func (NullableMetaPrefixQuery) Get

func (NullableMetaPrefixQuery) IsSet

func (v NullableMetaPrefixQuery) IsSet() bool

func (NullableMetaPrefixQuery) MarshalJSON

func (v NullableMetaPrefixQuery) MarshalJSON() ([]byte, error)

func (*NullableMetaPrefixQuery) Set

func (*NullableMetaPrefixQuery) UnmarshalJSON

func (v *NullableMetaPrefixQuery) UnmarshalJSON(src []byte) error

func (*NullableMetaPrefixQuery) Unset

func (v *NullableMetaPrefixQuery) Unset()

type NullableMetaProperty

type NullableMetaProperty struct {
	// contains filtered or unexported fields
}

func NewNullableMetaProperty

func NewNullableMetaProperty(val *MetaProperty) *NullableMetaProperty

func (NullableMetaProperty) Get

func (NullableMetaProperty) IsSet

func (v NullableMetaProperty) IsSet() bool

func (NullableMetaProperty) MarshalJSON

func (v NullableMetaProperty) MarshalJSON() ([]byte, error)

func (*NullableMetaProperty) Set

func (v *NullableMetaProperty) Set(val *MetaProperty)

func (*NullableMetaProperty) UnmarshalJSON

func (v *NullableMetaProperty) UnmarshalJSON(src []byte) error

func (*NullableMetaProperty) Unset

func (v *NullableMetaProperty) Unset()

type NullableMetaQuery

type NullableMetaQuery struct {
	// contains filtered or unexported fields
}

func NewNullableMetaQuery

func NewNullableMetaQuery(val *MetaQuery) *NullableMetaQuery

func (NullableMetaQuery) Get

func (v NullableMetaQuery) Get() *MetaQuery

func (NullableMetaQuery) IsSet

func (v NullableMetaQuery) IsSet() bool

func (NullableMetaQuery) MarshalJSON

func (v NullableMetaQuery) MarshalJSON() ([]byte, error)

func (*NullableMetaQuery) Set

func (v *NullableMetaQuery) Set(val *MetaQuery)

func (*NullableMetaQuery) UnmarshalJSON

func (v *NullableMetaQuery) UnmarshalJSON(src []byte) error

func (*NullableMetaQuery) Unset

func (v *NullableMetaQuery) Unset()

type NullableMetaQueryStringQuery

type NullableMetaQueryStringQuery struct {
	// contains filtered or unexported fields
}

func NewNullableMetaQueryStringQuery

func NewNullableMetaQueryStringQuery(val *MetaQueryStringQuery) *NullableMetaQueryStringQuery

func (NullableMetaQueryStringQuery) Get

func (NullableMetaQueryStringQuery) IsSet

func (NullableMetaQueryStringQuery) MarshalJSON

func (v NullableMetaQueryStringQuery) MarshalJSON() ([]byte, error)

func (*NullableMetaQueryStringQuery) Set

func (*NullableMetaQueryStringQuery) UnmarshalJSON

func (v *NullableMetaQueryStringQuery) UnmarshalJSON(src []byte) error

func (*NullableMetaQueryStringQuery) Unset

func (v *NullableMetaQueryStringQuery) Unset()

type NullableMetaRange

type NullableMetaRange struct {
	// contains filtered or unexported fields
}

func NewNullableMetaRange

func NewNullableMetaRange(val *MetaRange) *NullableMetaRange

func (NullableMetaRange) Get

func (v NullableMetaRange) Get() *MetaRange

func (NullableMetaRange) IsSet

func (v NullableMetaRange) IsSet() bool

func (NullableMetaRange) MarshalJSON

func (v NullableMetaRange) MarshalJSON() ([]byte, error)

func (*NullableMetaRange) Set

func (v *NullableMetaRange) Set(val *MetaRange)

func (*NullableMetaRange) UnmarshalJSON

func (v *NullableMetaRange) UnmarshalJSON(src []byte) error

func (*NullableMetaRange) Unset

func (v *NullableMetaRange) Unset()

type NullableMetaRangeQuery

type NullableMetaRangeQuery struct {
	// contains filtered or unexported fields
}

func NewNullableMetaRangeQuery

func NewNullableMetaRangeQuery(val *MetaRangeQuery) *NullableMetaRangeQuery

func (NullableMetaRangeQuery) Get

func (NullableMetaRangeQuery) IsSet

func (v NullableMetaRangeQuery) IsSet() bool

func (NullableMetaRangeQuery) MarshalJSON

func (v NullableMetaRangeQuery) MarshalJSON() ([]byte, error)

func (*NullableMetaRangeQuery) Set

func (*NullableMetaRangeQuery) UnmarshalJSON

func (v *NullableMetaRangeQuery) UnmarshalJSON(src []byte) error

func (*NullableMetaRangeQuery) Unset

func (v *NullableMetaRangeQuery) Unset()

type NullableMetaRegexpQuery

type NullableMetaRegexpQuery struct {
	// contains filtered or unexported fields
}

func NewNullableMetaRegexpQuery

func NewNullableMetaRegexpQuery(val *MetaRegexpQuery) *NullableMetaRegexpQuery

func (NullableMetaRegexpQuery) Get

func (NullableMetaRegexpQuery) IsSet

func (v NullableMetaRegexpQuery) IsSet() bool

func (NullableMetaRegexpQuery) MarshalJSON

func (v NullableMetaRegexpQuery) MarshalJSON() ([]byte, error)

func (*NullableMetaRegexpQuery) Set

func (*NullableMetaRegexpQuery) UnmarshalJSON

func (v *NullableMetaRegexpQuery) UnmarshalJSON(src []byte) error

func (*NullableMetaRegexpQuery) Unset

func (v *NullableMetaRegexpQuery) Unset()

type NullableMetaSearchResponse

type NullableMetaSearchResponse struct {
	// contains filtered or unexported fields
}

func NewNullableMetaSearchResponse

func NewNullableMetaSearchResponse(val *MetaSearchResponse) *NullableMetaSearchResponse

func (NullableMetaSearchResponse) Get

func (NullableMetaSearchResponse) IsSet

func (v NullableMetaSearchResponse) IsSet() bool

func (NullableMetaSearchResponse) MarshalJSON

func (v NullableMetaSearchResponse) MarshalJSON() ([]byte, error)

func (*NullableMetaSearchResponse) Set

func (*NullableMetaSearchResponse) UnmarshalJSON

func (v *NullableMetaSearchResponse) UnmarshalJSON(src []byte) error

func (*NullableMetaSearchResponse) Unset

func (v *NullableMetaSearchResponse) Unset()

type NullableMetaShards

type NullableMetaShards struct {
	// contains filtered or unexported fields
}

func NewNullableMetaShards

func NewNullableMetaShards(val *MetaShards) *NullableMetaShards

func (NullableMetaShards) Get

func (v NullableMetaShards) Get() *MetaShards

func (NullableMetaShards) IsSet

func (v NullableMetaShards) IsSet() bool

func (NullableMetaShards) MarshalJSON

func (v NullableMetaShards) MarshalJSON() ([]byte, error)

func (*NullableMetaShards) Set

func (v *NullableMetaShards) Set(val *MetaShards)

func (*NullableMetaShards) UnmarshalJSON

func (v *NullableMetaShards) UnmarshalJSON(src []byte) error

func (*NullableMetaShards) Unset

func (v *NullableMetaShards) Unset()

type NullableMetaSimpleQueryStringQuery

type NullableMetaSimpleQueryStringQuery struct {
	// contains filtered or unexported fields
}

func (NullableMetaSimpleQueryStringQuery) Get

func (NullableMetaSimpleQueryStringQuery) IsSet

func (NullableMetaSimpleQueryStringQuery) MarshalJSON

func (v NullableMetaSimpleQueryStringQuery) MarshalJSON() ([]byte, error)

func (*NullableMetaSimpleQueryStringQuery) Set

func (*NullableMetaSimpleQueryStringQuery) UnmarshalJSON

func (v *NullableMetaSimpleQueryStringQuery) UnmarshalJSON(src []byte) error

func (*NullableMetaSimpleQueryStringQuery) Unset

type NullableMetaTemplate

type NullableMetaTemplate struct {
	// contains filtered or unexported fields
}

func NewNullableMetaTemplate

func NewNullableMetaTemplate(val *MetaTemplate) *NullableMetaTemplate

func (NullableMetaTemplate) Get

func (NullableMetaTemplate) IsSet

func (v NullableMetaTemplate) IsSet() bool

func (NullableMetaTemplate) MarshalJSON

func (v NullableMetaTemplate) MarshalJSON() ([]byte, error)

func (*NullableMetaTemplate) Set

func (v *NullableMetaTemplate) Set(val *MetaTemplate)

func (*NullableMetaTemplate) UnmarshalJSON

func (v *NullableMetaTemplate) UnmarshalJSON(src []byte) error

func (*NullableMetaTemplate) Unset

func (v *NullableMetaTemplate) Unset()

type NullableMetaTemplateTemplate

type NullableMetaTemplateTemplate struct {
	// contains filtered or unexported fields
}

func NewNullableMetaTemplateTemplate

func NewNullableMetaTemplateTemplate(val *MetaTemplateTemplate) *NullableMetaTemplateTemplate

func (NullableMetaTemplateTemplate) Get

func (NullableMetaTemplateTemplate) IsSet

func (NullableMetaTemplateTemplate) MarshalJSON

func (v NullableMetaTemplateTemplate) MarshalJSON() ([]byte, error)

func (*NullableMetaTemplateTemplate) Set

func (*NullableMetaTemplateTemplate) UnmarshalJSON

func (v *NullableMetaTemplateTemplate) UnmarshalJSON(src []byte) error

func (*NullableMetaTemplateTemplate) Unset

func (v *NullableMetaTemplateTemplate) Unset()

type NullableMetaTermQuery

type NullableMetaTermQuery struct {
	// contains filtered or unexported fields
}

func NewNullableMetaTermQuery

func NewNullableMetaTermQuery(val *MetaTermQuery) *NullableMetaTermQuery

func (NullableMetaTermQuery) Get

func (NullableMetaTermQuery) IsSet

func (v NullableMetaTermQuery) IsSet() bool

func (NullableMetaTermQuery) MarshalJSON

func (v NullableMetaTermQuery) MarshalJSON() ([]byte, error)

func (*NullableMetaTermQuery) Set

func (v *NullableMetaTermQuery) Set(val *MetaTermQuery)

func (*NullableMetaTermQuery) UnmarshalJSON

func (v *NullableMetaTermQuery) UnmarshalJSON(src []byte) error

func (*NullableMetaTermQuery) Unset

func (v *NullableMetaTermQuery) Unset()

type NullableMetaTotal

type NullableMetaTotal struct {
	// contains filtered or unexported fields
}

func NewNullableMetaTotal

func NewNullableMetaTotal(val *MetaTotal) *NullableMetaTotal

func (NullableMetaTotal) Get

func (v NullableMetaTotal) Get() *MetaTotal

func (NullableMetaTotal) IsSet

func (v NullableMetaTotal) IsSet() bool

func (NullableMetaTotal) MarshalJSON

func (v NullableMetaTotal) MarshalJSON() ([]byte, error)

func (*NullableMetaTotal) Set

func (v *NullableMetaTotal) Set(val *MetaTotal)

func (*NullableMetaTotal) UnmarshalJSON

func (v *NullableMetaTotal) UnmarshalJSON(src []byte) error

func (*NullableMetaTotal) Unset

func (v *NullableMetaTotal) Unset()

type NullableMetaUser

type NullableMetaUser struct {
	// contains filtered or unexported fields
}

func NewNullableMetaUser

func NewNullableMetaUser(val *MetaUser) *NullableMetaUser

func (NullableMetaUser) Get

func (v NullableMetaUser) Get() *MetaUser

func (NullableMetaUser) IsSet

func (v NullableMetaUser) IsSet() bool

func (NullableMetaUser) MarshalJSON

func (v NullableMetaUser) MarshalJSON() ([]byte, error)

func (*NullableMetaUser) Set

func (v *NullableMetaUser) Set(val *MetaUser)

func (*NullableMetaUser) UnmarshalJSON

func (v *NullableMetaUser) UnmarshalJSON(src []byte) error

func (*NullableMetaUser) Unset

func (v *NullableMetaUser) Unset()

type NullableMetaVersionResponse

type NullableMetaVersionResponse struct {
	// contains filtered or unexported fields
}

func NewNullableMetaVersionResponse

func NewNullableMetaVersionResponse(val *MetaVersionResponse) *NullableMetaVersionResponse

func (NullableMetaVersionResponse) Get

func (NullableMetaVersionResponse) IsSet

func (NullableMetaVersionResponse) MarshalJSON

func (v NullableMetaVersionResponse) MarshalJSON() ([]byte, error)

func (*NullableMetaVersionResponse) Set

func (*NullableMetaVersionResponse) UnmarshalJSON

func (v *NullableMetaVersionResponse) UnmarshalJSON(src []byte) error

func (*NullableMetaVersionResponse) Unset

func (v *NullableMetaVersionResponse) Unset()

type NullableMetaWildcardQuery

type NullableMetaWildcardQuery struct {
	// contains filtered or unexported fields
}

func NewNullableMetaWildcardQuery

func NewNullableMetaWildcardQuery(val *MetaWildcardQuery) *NullableMetaWildcardQuery

func (NullableMetaWildcardQuery) Get

func (NullableMetaWildcardQuery) IsSet

func (v NullableMetaWildcardQuery) IsSet() bool

func (NullableMetaWildcardQuery) MarshalJSON

func (v NullableMetaWildcardQuery) MarshalJSON() ([]byte, error)

func (*NullableMetaWildcardQuery) Set

func (*NullableMetaWildcardQuery) UnmarshalJSON

func (v *NullableMetaWildcardQuery) UnmarshalJSON(src []byte) error

func (*NullableMetaWildcardQuery) Unset

func (v *NullableMetaWildcardQuery) Unset()

type NullableMetaZincQuery

type NullableMetaZincQuery struct {
	// contains filtered or unexported fields
}

func NewNullableMetaZincQuery

func NewNullableMetaZincQuery(val *MetaZincQuery) *NullableMetaZincQuery

func (NullableMetaZincQuery) Get

func (NullableMetaZincQuery) IsSet

func (v NullableMetaZincQuery) IsSet() bool

func (NullableMetaZincQuery) MarshalJSON

func (v NullableMetaZincQuery) MarshalJSON() ([]byte, error)

func (*NullableMetaZincQuery) Set

func (v *NullableMetaZincQuery) Set(val *MetaZincQuery)

func (*NullableMetaZincQuery) UnmarshalJSON

func (v *NullableMetaZincQuery) UnmarshalJSON(src []byte) error

func (*NullableMetaZincQuery) Unset

func (v *NullableMetaZincQuery) Unset()

type NullableString

type NullableString struct {
	// contains filtered or unexported fields
}

func NewNullableString

func NewNullableString(val *string) *NullableString

func (NullableString) Get

func (v NullableString) Get() *string

func (NullableString) IsSet

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON

func (v NullableString) MarshalJSON() ([]byte, error)

func (*NullableString) Set

func (v *NullableString) Set(val *string)

func (*NullableString) UnmarshalJSON

func (v *NullableString) UnmarshalJSON(src []byte) error

func (*NullableString) Unset

func (v *NullableString) Unset()

type NullableTime

type NullableTime struct {
	// contains filtered or unexported fields
}

func NewNullableTime

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get

func (v NullableTime) Get() *time.Time

func (NullableTime) IsSet

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON

func (v NullableTime) MarshalJSON() ([]byte, error)

func (*NullableTime) Set

func (v *NullableTime) Set(val *time.Time)

func (*NullableTime) UnmarshalJSON

func (v *NullableTime) UnmarshalJSON(src []byte) error

func (*NullableTime) Unset

func (v *NullableTime) Unset()

type NullableV1AggregationDateRange

type NullableV1AggregationDateRange struct {
	// contains filtered or unexported fields
}

func (NullableV1AggregationDateRange) Get

func (NullableV1AggregationDateRange) IsSet

func (NullableV1AggregationDateRange) MarshalJSON

func (v NullableV1AggregationDateRange) MarshalJSON() ([]byte, error)

func (*NullableV1AggregationDateRange) Set

func (*NullableV1AggregationDateRange) UnmarshalJSON

func (v *NullableV1AggregationDateRange) UnmarshalJSON(src []byte) error

func (*NullableV1AggregationDateRange) Unset

func (v *NullableV1AggregationDateRange) Unset()

type NullableV1AggregationNumberRange

type NullableV1AggregationNumberRange struct {
	// contains filtered or unexported fields
}

func (NullableV1AggregationNumberRange) Get

func (NullableV1AggregationNumberRange) IsSet

func (NullableV1AggregationNumberRange) MarshalJSON

func (v NullableV1AggregationNumberRange) MarshalJSON() ([]byte, error)

func (*NullableV1AggregationNumberRange) Set

func (*NullableV1AggregationNumberRange) UnmarshalJSON

func (v *NullableV1AggregationNumberRange) UnmarshalJSON(src []byte) error

func (*NullableV1AggregationNumberRange) Unset

type NullableV1AggregationParams

type NullableV1AggregationParams struct {
	// contains filtered or unexported fields
}

func NewNullableV1AggregationParams

func NewNullableV1AggregationParams(val *V1AggregationParams) *NullableV1AggregationParams

func (NullableV1AggregationParams) Get

func (NullableV1AggregationParams) IsSet

func (NullableV1AggregationParams) MarshalJSON

func (v NullableV1AggregationParams) MarshalJSON() ([]byte, error)

func (*NullableV1AggregationParams) Set

func (*NullableV1AggregationParams) UnmarshalJSON

func (v *NullableV1AggregationParams) UnmarshalJSON(src []byte) error

func (*NullableV1AggregationParams) Unset

func (v *NullableV1AggregationParams) Unset()

type NullableV1QueryParams

type NullableV1QueryParams struct {
	// contains filtered or unexported fields
}

func NewNullableV1QueryParams

func NewNullableV1QueryParams(val *V1QueryParams) *NullableV1QueryParams

func (NullableV1QueryParams) Get

func (NullableV1QueryParams) IsSet

func (v NullableV1QueryParams) IsSet() bool

func (NullableV1QueryParams) MarshalJSON

func (v NullableV1QueryParams) MarshalJSON() ([]byte, error)

func (*NullableV1QueryParams) Set

func (v *NullableV1QueryParams) Set(val *V1QueryParams)

func (*NullableV1QueryParams) UnmarshalJSON

func (v *NullableV1QueryParams) UnmarshalJSON(src []byte) error

func (*NullableV1QueryParams) Unset

func (v *NullableV1QueryParams) Unset()

type NullableV1ZincQuery

type NullableV1ZincQuery struct {
	// contains filtered or unexported fields
}

func NewNullableV1ZincQuery

func NewNullableV1ZincQuery(val *V1ZincQuery) *NullableV1ZincQuery

func (NullableV1ZincQuery) Get

func (NullableV1ZincQuery) IsSet

func (v NullableV1ZincQuery) IsSet() bool

func (NullableV1ZincQuery) MarshalJSON

func (v NullableV1ZincQuery) MarshalJSON() ([]byte, error)

func (*NullableV1ZincQuery) Set

func (v *NullableV1ZincQuery) Set(val *V1ZincQuery)

func (*NullableV1ZincQuery) UnmarshalJSON

func (v *NullableV1ZincQuery) UnmarshalJSON(src []byte) error

func (*NullableV1ZincQuery) Unset

func (v *NullableV1ZincQuery) Unset()
type Search interface {

	/*
		DeleteByQuery Searches the index and deletes all matched documents

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param index Index
		@return SearchDeleteByQueryRequest
	*/
	DeleteByQuery(ctx context.Context, index string) SearchDeleteByQueryRequest

	// DeleteByQueryExecute executes the request
	//  @return MetaHTTPResponseDeleteByQuery
	DeleteByQueryExecute(r SearchDeleteByQueryRequest) (*MetaHTTPResponseDeleteByQuery, *http.Response, error)

	/*
		MSearch Search V2 MultipleSearch for compatible ES

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return SearchMSearchRequest
	*/
	MSearch(ctx context.Context) SearchMSearchRequest

	// MSearchExecute executes the request
	//  @return MetaSearchResponse
	MSearchExecute(r SearchMSearchRequest) (*MetaSearchResponse, *http.Response, error)

	/*
		Search Search V2 DSL for compatible ES

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param index Index
		@return SearchSearchRequest
	*/
	Search(ctx context.Context, index string) SearchSearchRequest

	// SearchExecute executes the request
	//  @return MetaSearchResponse
	SearchExecute(r SearchSearchRequest) (*MetaSearchResponse, *http.Response, error)

	/*
		SearchV1 Search V1

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param index Index
		@return SearchSearchV1Request
	*/
	SearchV1(ctx context.Context, index string) SearchSearchV1Request

	// SearchV1Execute executes the request
	//  @return MetaSearchResponse
	SearchV1Execute(r SearchSearchV1Request) (*MetaSearchResponse, *http.Response, error)
}

type SearchDeleteByQueryRequest

type SearchDeleteByQueryRequest struct {
	ApiService Search
	// contains filtered or unexported fields
}

func (SearchDeleteByQueryRequest) Execute

func (SearchDeleteByQueryRequest) Query

Query

type SearchMSearchRequest

type SearchMSearchRequest struct {
	ApiService Search
	// contains filtered or unexported fields
}

func (SearchMSearchRequest) Execute

func (SearchMSearchRequest) Query

Query

type SearchSearchRequest

type SearchSearchRequest struct {
	ApiService Search
	// contains filtered or unexported fields
}

func (SearchSearchRequest) Execute

func (SearchSearchRequest) Query

Query

type SearchSearchV1Request

type SearchSearchV1Request struct {
	ApiService Search
	// contains filtered or unexported fields
}

func (SearchSearchV1Request) Execute

func (SearchSearchV1Request) Query

Query

type SearchService

type SearchService service

SearchService Search service

func (*SearchService) DeleteByQuery

func (a *SearchService) DeleteByQuery(ctx context.Context, index string) SearchDeleteByQueryRequest

DeleteByQuery Searches the index and deletes all matched documents

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param index Index
@return SearchDeleteByQueryRequest

func (*SearchService) DeleteByQueryExecute

Execute executes the request

@return MetaHTTPResponseDeleteByQuery

func (*SearchService) MSearch

MSearch Search V2 MultipleSearch for compatible ES

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return SearchMSearchRequest

func (*SearchService) MSearchExecute

Execute executes the request

@return MetaSearchResponse

func (*SearchService) Search

func (a *SearchService) Search(ctx context.Context, index string) SearchSearchRequest

Search Search V2 DSL for compatible ES

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param index Index
@return SearchSearchRequest

func (*SearchService) SearchExecute

Execute executes the request

@return MetaSearchResponse

func (*SearchService) SearchV1

func (a *SearchService) SearchV1(ctx context.Context, index string) SearchSearchV1Request

SearchV1 Search V1

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param index Index
@return SearchSearchV1Request

func (*SearchService) SearchV1Execute

Execute executes the request

@return MetaSearchResponse

type ServerConfiguration

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error)

URL formats template on a index using given variables

type ServerVariable

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type User

type User interface {

	/*
		Create Create user

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return UserCreateRequest
	*/
	Create(ctx context.Context) UserCreateRequest

	// CreateExecute executes the request
	//  @return MetaHTTPResponseID
	CreateExecute(r UserCreateRequest) (*MetaHTTPResponseID, *http.Response, error)

	/*
		Delete Delete user

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id User id
		@return UserDeleteRequest
	*/
	Delete(ctx context.Context, id string) UserDeleteRequest

	// DeleteExecute executes the request
	//  @return MetaHTTPResponseID
	DeleteExecute(r UserDeleteRequest) (*MetaHTTPResponseID, *http.Response, error)

	/*
		List List user

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return UserListRequest
	*/
	List(ctx context.Context) UserListRequest

	// ListExecute executes the request
	//  @return []MetaUser
	ListExecute(r UserListRequest) ([]MetaUser, *http.Response, error)

	/*
		Login Login

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return UserLoginRequest
	*/
	Login(ctx context.Context) UserLoginRequest

	// LoginExecute executes the request
	//  @return AuthLoginResponse
	LoginExecute(r UserLoginRequest) (*AuthLoginResponse, *http.Response, error)

	/*
		Update Update user

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return UserUpdateRequest
	*/
	Update(ctx context.Context) UserUpdateRequest

	// UpdateExecute executes the request
	//  @return MetaHTTPResponseID
	UpdateExecute(r UserUpdateRequest) (*MetaHTTPResponseID, *http.Response, error)
}

type UserCreateRequest

type UserCreateRequest struct {
	ApiService User
	// contains filtered or unexported fields
}

func (UserCreateRequest) Execute

func (UserCreateRequest) User

User data

type UserDeleteRequest

type UserDeleteRequest struct {
	ApiService User
	// contains filtered or unexported fields
}

func (UserDeleteRequest) Execute

type UserListRequest

type UserListRequest struct {
	ApiService User
	// contains filtered or unexported fields
}

func (UserListRequest) Execute

func (r UserListRequest) Execute() ([]MetaUser, *http.Response, error)

type UserLoginRequest

type UserLoginRequest struct {
	ApiService User
	// contains filtered or unexported fields
}

func (UserLoginRequest) Execute

func (UserLoginRequest) Login

Login credentials

type UserService

type UserService service

UserService User service

func (*UserService) Create

Create Create user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return UserCreateRequest

func (*UserService) CreateExecute

Execute executes the request

@return MetaHTTPResponseID

func (*UserService) Delete

func (a *UserService) Delete(ctx context.Context, id string) UserDeleteRequest

Delete Delete user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id User id
@return UserDeleteRequest

func (*UserService) DeleteExecute

Execute executes the request

@return MetaHTTPResponseID

func (*UserService) List

List List user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return UserListRequest

func (*UserService) ListExecute

func (a *UserService) ListExecute(r UserListRequest) ([]MetaUser, *http.Response, error)

Execute executes the request

@return []MetaUser

func (*UserService) Login

Login Login

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return UserLoginRequest

func (*UserService) LoginExecute

Execute executes the request

@return AuthLoginResponse

func (*UserService) Update

Update Update user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return UserUpdateRequest

func (*UserService) UpdateExecute

Execute executes the request

@return MetaHTTPResponseID

type UserUpdateRequest

type UserUpdateRequest struct {
	ApiService User
	// contains filtered or unexported fields
}

func (UserUpdateRequest) Execute

func (UserUpdateRequest) User

User data

type V1AggregationDateRange

type V1AggregationDateRange struct {
	From *string `json:"from,omitempty"`
	To   *string `json:"to,omitempty"`
}

V1AggregationDateRange struct for V1AggregationDateRange

func NewV1AggregationDateRange

func NewV1AggregationDateRange() *V1AggregationDateRange

NewV1AggregationDateRange instantiates a new V1AggregationDateRange object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewV1AggregationDateRangeWithDefaults

func NewV1AggregationDateRangeWithDefaults() *V1AggregationDateRange

NewV1AggregationDateRangeWithDefaults instantiates a new V1AggregationDateRange object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*V1AggregationDateRange) GetFrom

func (o *V1AggregationDateRange) GetFrom() string

GetFrom returns the From field value if set, zero value otherwise.

func (*V1AggregationDateRange) GetFromOk

func (o *V1AggregationDateRange) GetFromOk() (*string, bool)

GetFromOk returns a tuple with the From field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1AggregationDateRange) GetTo

func (o *V1AggregationDateRange) GetTo() string

GetTo returns the To field value if set, zero value otherwise.

func (*V1AggregationDateRange) GetToOk

func (o *V1AggregationDateRange) GetToOk() (*string, bool)

GetToOk returns a tuple with the To field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1AggregationDateRange) HasFrom

func (o *V1AggregationDateRange) HasFrom() bool

HasFrom returns a boolean if a field has been set.

func (*V1AggregationDateRange) HasTo

func (o *V1AggregationDateRange) HasTo() bool

HasTo returns a boolean if a field has been set.

func (V1AggregationDateRange) MarshalJSON

func (o V1AggregationDateRange) MarshalJSON() ([]byte, error)

func (*V1AggregationDateRange) SetFrom

func (o *V1AggregationDateRange) SetFrom(v string)

SetFrom gets a reference to the given string and assigns it to the From field.

func (*V1AggregationDateRange) SetTo

func (o *V1AggregationDateRange) SetTo(v string)

SetTo gets a reference to the given string and assigns it to the To field.

type V1AggregationNumberRange

type V1AggregationNumberRange struct {
	From *float32 `json:"from,omitempty"`
	To   *float32 `json:"to,omitempty"`
}

V1AggregationNumberRange struct for V1AggregationNumberRange

func NewV1AggregationNumberRange

func NewV1AggregationNumberRange() *V1AggregationNumberRange

NewV1AggregationNumberRange instantiates a new V1AggregationNumberRange object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewV1AggregationNumberRangeWithDefaults

func NewV1AggregationNumberRangeWithDefaults() *V1AggregationNumberRange

NewV1AggregationNumberRangeWithDefaults instantiates a new V1AggregationNumberRange object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*V1AggregationNumberRange) GetFrom

func (o *V1AggregationNumberRange) GetFrom() float32

GetFrom returns the From field value if set, zero value otherwise.

func (*V1AggregationNumberRange) GetFromOk

func (o *V1AggregationNumberRange) GetFromOk() (*float32, bool)

GetFromOk returns a tuple with the From field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1AggregationNumberRange) GetTo

func (o *V1AggregationNumberRange) GetTo() float32

GetTo returns the To field value if set, zero value otherwise.

func (*V1AggregationNumberRange) GetToOk

func (o *V1AggregationNumberRange) GetToOk() (*float32, bool)

GetToOk returns a tuple with the To field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1AggregationNumberRange) HasFrom

func (o *V1AggregationNumberRange) HasFrom() bool

HasFrom returns a boolean if a field has been set.

func (*V1AggregationNumberRange) HasTo

func (o *V1AggregationNumberRange) HasTo() bool

HasTo returns a boolean if a field has been set.

func (V1AggregationNumberRange) MarshalJSON

func (o V1AggregationNumberRange) MarshalJSON() ([]byte, error)

func (*V1AggregationNumberRange) SetFrom

func (o *V1AggregationNumberRange) SetFrom(v float32)

SetFrom gets a reference to the given float32 and assigns it to the From field.

func (*V1AggregationNumberRange) SetTo

func (o *V1AggregationNumberRange) SetTo(v float32)

SetTo gets a reference to the given float32 and assigns it to the To field.

type V1AggregationParams

type V1AggregationParams struct {
	AggType    *string                         `json:"agg_type,omitempty"`
	Aggs       *map[string]V1AggregationParams `json:"aggs,omitempty"`
	DateRanges []V1AggregationDateRange        `json:"date_ranges,omitempty"`
	Field      *string                         `json:"field,omitempty"`
	Ranges     []V1AggregationNumberRange      `json:"ranges,omitempty"`
	Size       *int32                          `json:"size,omitempty"`
	// Field name to be used for setting weight for primary field for weighted average aggregation
	WeightField *string `json:"weight_field,omitempty"`
}

V1AggregationParams struct for V1AggregationParams

func NewV1AggregationParams

func NewV1AggregationParams() *V1AggregationParams

NewV1AggregationParams instantiates a new V1AggregationParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewV1AggregationParamsWithDefaults

func NewV1AggregationParamsWithDefaults() *V1AggregationParams

NewV1AggregationParamsWithDefaults instantiates a new V1AggregationParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*V1AggregationParams) GetAggType

func (o *V1AggregationParams) GetAggType() string

GetAggType returns the AggType field value if set, zero value otherwise.

func (*V1AggregationParams) GetAggTypeOk

func (o *V1AggregationParams) GetAggTypeOk() (*string, bool)

GetAggTypeOk returns a tuple with the AggType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1AggregationParams) GetAggs

GetAggs returns the Aggs field value if set, zero value otherwise.

func (*V1AggregationParams) GetAggsOk

func (o *V1AggregationParams) GetAggsOk() (*map[string]V1AggregationParams, bool)

GetAggsOk returns a tuple with the Aggs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1AggregationParams) GetDateRanges

func (o *V1AggregationParams) GetDateRanges() []V1AggregationDateRange

GetDateRanges returns the DateRanges field value if set, zero value otherwise.

func (*V1AggregationParams) GetDateRangesOk

func (o *V1AggregationParams) GetDateRangesOk() ([]V1AggregationDateRange, bool)

GetDateRangesOk returns a tuple with the DateRanges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1AggregationParams) GetField

func (o *V1AggregationParams) GetField() string

GetField returns the Field field value if set, zero value otherwise.

func (*V1AggregationParams) GetFieldOk

func (o *V1AggregationParams) GetFieldOk() (*string, bool)

GetFieldOk returns a tuple with the Field field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1AggregationParams) GetRanges

GetRanges returns the Ranges field value if set, zero value otherwise.

func (*V1AggregationParams) GetRangesOk

func (o *V1AggregationParams) GetRangesOk() ([]V1AggregationNumberRange, bool)

GetRangesOk returns a tuple with the Ranges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1AggregationParams) GetSize

func (o *V1AggregationParams) GetSize() int32

GetSize returns the Size field value if set, zero value otherwise.

func (*V1AggregationParams) GetSizeOk

func (o *V1AggregationParams) GetSizeOk() (*int32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1AggregationParams) GetWeightField

func (o *V1AggregationParams) GetWeightField() string

GetWeightField returns the WeightField field value if set, zero value otherwise.

func (*V1AggregationParams) GetWeightFieldOk

func (o *V1AggregationParams) GetWeightFieldOk() (*string, bool)

GetWeightFieldOk returns a tuple with the WeightField field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1AggregationParams) HasAggType

func (o *V1AggregationParams) HasAggType() bool

HasAggType returns a boolean if a field has been set.

func (*V1AggregationParams) HasAggs

func (o *V1AggregationParams) HasAggs() bool

HasAggs returns a boolean if a field has been set.

func (*V1AggregationParams) HasDateRanges

func (o *V1AggregationParams) HasDateRanges() bool

HasDateRanges returns a boolean if a field has been set.

func (*V1AggregationParams) HasField

func (o *V1AggregationParams) HasField() bool

HasField returns a boolean if a field has been set.

func (*V1AggregationParams) HasRanges

func (o *V1AggregationParams) HasRanges() bool

HasRanges returns a boolean if a field has been set.

func (*V1AggregationParams) HasSize

func (o *V1AggregationParams) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*V1AggregationParams) HasWeightField

func (o *V1AggregationParams) HasWeightField() bool

HasWeightField returns a boolean if a field has been set.

func (V1AggregationParams) MarshalJSON

func (o V1AggregationParams) MarshalJSON() ([]byte, error)

func (*V1AggregationParams) SetAggType

func (o *V1AggregationParams) SetAggType(v string)

SetAggType gets a reference to the given string and assigns it to the AggType field.

func (*V1AggregationParams) SetAggs

SetAggs gets a reference to the given map[string]V1AggregationParams and assigns it to the Aggs field.

func (*V1AggregationParams) SetDateRanges

func (o *V1AggregationParams) SetDateRanges(v []V1AggregationDateRange)

SetDateRanges gets a reference to the given []V1AggregationDateRange and assigns it to the DateRanges field.

func (*V1AggregationParams) SetField

func (o *V1AggregationParams) SetField(v string)

SetField gets a reference to the given string and assigns it to the Field field.

func (*V1AggregationParams) SetRanges

SetRanges gets a reference to the given []V1AggregationNumberRange and assigns it to the Ranges field.

func (*V1AggregationParams) SetSize

func (o *V1AggregationParams) SetSize(v int32)

SetSize gets a reference to the given int32 and assigns it to the Size field.

func (*V1AggregationParams) SetWeightField

func (o *V1AggregationParams) SetWeightField(v string)

SetWeightField gets a reference to the given string and assigns it to the WeightField field.

type V1QueryParams

type V1QueryParams struct {
	Boost     *int32  `json:"boost,omitempty"`
	EndTime   *string `json:"end_time,omitempty"`
	Field     *string `json:"field,omitempty"`
	StartTime *string `json:"start_time,omitempty"`
	Term      *string `json:"term,omitempty"`
	// For multi phrase query
	Terms [][]string `json:"terms,omitempty"`
}

V1QueryParams struct for V1QueryParams

func NewV1QueryParams

func NewV1QueryParams() *V1QueryParams

NewV1QueryParams instantiates a new V1QueryParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewV1QueryParamsWithDefaults

func NewV1QueryParamsWithDefaults() *V1QueryParams

NewV1QueryParamsWithDefaults instantiates a new V1QueryParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*V1QueryParams) GetBoost

func (o *V1QueryParams) GetBoost() int32

GetBoost returns the Boost field value if set, zero value otherwise.

func (*V1QueryParams) GetBoostOk

func (o *V1QueryParams) GetBoostOk() (*int32, bool)

GetBoostOk returns a tuple with the Boost field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1QueryParams) GetEndTime

func (o *V1QueryParams) GetEndTime() string

GetEndTime returns the EndTime field value if set, zero value otherwise.

func (*V1QueryParams) GetEndTimeOk

func (o *V1QueryParams) GetEndTimeOk() (*string, bool)

GetEndTimeOk returns a tuple with the EndTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1QueryParams) GetField

func (o *V1QueryParams) GetField() string

GetField returns the Field field value if set, zero value otherwise.

func (*V1QueryParams) GetFieldOk

func (o *V1QueryParams) GetFieldOk() (*string, bool)

GetFieldOk returns a tuple with the Field field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1QueryParams) GetStartTime

func (o *V1QueryParams) GetStartTime() string

GetStartTime returns the StartTime field value if set, zero value otherwise.

func (*V1QueryParams) GetStartTimeOk

func (o *V1QueryParams) GetStartTimeOk() (*string, bool)

GetStartTimeOk returns a tuple with the StartTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1QueryParams) GetTerm

func (o *V1QueryParams) GetTerm() string

GetTerm returns the Term field value if set, zero value otherwise.

func (*V1QueryParams) GetTermOk

func (o *V1QueryParams) GetTermOk() (*string, bool)

GetTermOk returns a tuple with the Term field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1QueryParams) GetTerms

func (o *V1QueryParams) GetTerms() [][]string

GetTerms returns the Terms field value if set, zero value otherwise.

func (*V1QueryParams) GetTermsOk

func (o *V1QueryParams) GetTermsOk() ([][]string, bool)

GetTermsOk returns a tuple with the Terms field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1QueryParams) HasBoost

func (o *V1QueryParams) HasBoost() bool

HasBoost returns a boolean if a field has been set.

func (*V1QueryParams) HasEndTime

func (o *V1QueryParams) HasEndTime() bool

HasEndTime returns a boolean if a field has been set.

func (*V1QueryParams) HasField

func (o *V1QueryParams) HasField() bool

HasField returns a boolean if a field has been set.

func (*V1QueryParams) HasStartTime

func (o *V1QueryParams) HasStartTime() bool

HasStartTime returns a boolean if a field has been set.

func (*V1QueryParams) HasTerm

func (o *V1QueryParams) HasTerm() bool

HasTerm returns a boolean if a field has been set.

func (*V1QueryParams) HasTerms

func (o *V1QueryParams) HasTerms() bool

HasTerms returns a boolean if a field has been set.

func (V1QueryParams) MarshalJSON

func (o V1QueryParams) MarshalJSON() ([]byte, error)

func (*V1QueryParams) SetBoost

func (o *V1QueryParams) SetBoost(v int32)

SetBoost gets a reference to the given int32 and assigns it to the Boost field.

func (*V1QueryParams) SetEndTime

func (o *V1QueryParams) SetEndTime(v string)

SetEndTime gets a reference to the given string and assigns it to the EndTime field.

func (*V1QueryParams) SetField

func (o *V1QueryParams) SetField(v string)

SetField gets a reference to the given string and assigns it to the Field field.

func (*V1QueryParams) SetStartTime

func (o *V1QueryParams) SetStartTime(v string)

SetStartTime gets a reference to the given string and assigns it to the StartTime field.

func (*V1QueryParams) SetTerm

func (o *V1QueryParams) SetTerm(v string)

SetTerm gets a reference to the given string and assigns it to the Term field.

func (*V1QueryParams) SetTerms

func (o *V1QueryParams) SetTerms(v [][]string)

SetTerms gets a reference to the given [][]string and assigns it to the Terms field.

type V1ZincQuery

type V1ZincQuery struct {
	Source     []string                        `json:"_source,omitempty"`
	Aggs       *map[string]V1AggregationParams `json:"aggs,omitempty"`
	Explain    *bool                           `json:"explain,omitempty"`
	From       *int32                          `json:"from,omitempty"`
	Highlight  *MetaHighlight                  `json:"highlight,omitempty"`
	MaxResults *int32                          `json:"max_results,omitempty"`
	Query      *V1QueryParams                  `json:"query,omitempty"`
	// SearchType is the type of search to perform. Can be match, match_phrase, query_string, etc
	SearchType *string  `json:"search_type,omitempty"`
	SortFields []string `json:"sort_fields,omitempty"`
}

V1ZincQuery struct for V1ZincQuery

func NewV1ZincQuery

func NewV1ZincQuery() *V1ZincQuery

NewV1ZincQuery instantiates a new V1ZincQuery object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewV1ZincQueryWithDefaults

func NewV1ZincQueryWithDefaults() *V1ZincQuery

NewV1ZincQueryWithDefaults instantiates a new V1ZincQuery object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*V1ZincQuery) GetAggs

func (o *V1ZincQuery) GetAggs() map[string]V1AggregationParams

GetAggs returns the Aggs field value if set, zero value otherwise.

func (*V1ZincQuery) GetAggsOk

func (o *V1ZincQuery) GetAggsOk() (*map[string]V1AggregationParams, bool)

GetAggsOk returns a tuple with the Aggs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1ZincQuery) GetExplain

func (o *V1ZincQuery) GetExplain() bool

GetExplain returns the Explain field value if set, zero value otherwise.

func (*V1ZincQuery) GetExplainOk

func (o *V1ZincQuery) GetExplainOk() (*bool, bool)

GetExplainOk returns a tuple with the Explain field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1ZincQuery) GetFrom

func (o *V1ZincQuery) GetFrom() int32

GetFrom returns the From field value if set, zero value otherwise.

func (*V1ZincQuery) GetFromOk

func (o *V1ZincQuery) GetFromOk() (*int32, bool)

GetFromOk returns a tuple with the From field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1ZincQuery) GetHighlight

func (o *V1ZincQuery) GetHighlight() MetaHighlight

GetHighlight returns the Highlight field value if set, zero value otherwise.

func (*V1ZincQuery) GetHighlightOk

func (o *V1ZincQuery) GetHighlightOk() (*MetaHighlight, bool)

GetHighlightOk returns a tuple with the Highlight field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1ZincQuery) GetMaxResults

func (o *V1ZincQuery) GetMaxResults() int32

GetMaxResults returns the MaxResults field value if set, zero value otherwise.

func (*V1ZincQuery) GetMaxResultsOk

func (o *V1ZincQuery) GetMaxResultsOk() (*int32, bool)

GetMaxResultsOk returns a tuple with the MaxResults field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1ZincQuery) GetQuery

func (o *V1ZincQuery) GetQuery() V1QueryParams

GetQuery returns the Query field value if set, zero value otherwise.

func (*V1ZincQuery) GetQueryOk

func (o *V1ZincQuery) GetQueryOk() (*V1QueryParams, bool)

GetQueryOk returns a tuple with the Query field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1ZincQuery) GetSearchType

func (o *V1ZincQuery) GetSearchType() string

GetSearchType returns the SearchType field value if set, zero value otherwise.

func (*V1ZincQuery) GetSearchTypeOk

func (o *V1ZincQuery) GetSearchTypeOk() (*string, bool)

GetSearchTypeOk returns a tuple with the SearchType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1ZincQuery) GetSortFields

func (o *V1ZincQuery) GetSortFields() []string

GetSortFields returns the SortFields field value if set, zero value otherwise.

func (*V1ZincQuery) GetSortFieldsOk

func (o *V1ZincQuery) GetSortFieldsOk() ([]string, bool)

GetSortFieldsOk returns a tuple with the SortFields field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1ZincQuery) GetSource

func (o *V1ZincQuery) GetSource() []string

GetSource returns the Source field value if set, zero value otherwise.

func (*V1ZincQuery) GetSourceOk

func (o *V1ZincQuery) GetSourceOk() ([]string, bool)

GetSourceOk returns a tuple with the Source field value if set, nil otherwise and a boolean to check if the value has been set.

func (*V1ZincQuery) HasAggs

func (o *V1ZincQuery) HasAggs() bool

HasAggs returns a boolean if a field has been set.

func (*V1ZincQuery) HasExplain

func (o *V1ZincQuery) HasExplain() bool

HasExplain returns a boolean if a field has been set.

func (*V1ZincQuery) HasFrom

func (o *V1ZincQuery) HasFrom() bool

HasFrom returns a boolean if a field has been set.

func (*V1ZincQuery) HasHighlight

func (o *V1ZincQuery) HasHighlight() bool

HasHighlight returns a boolean if a field has been set.

func (*V1ZincQuery) HasMaxResults

func (o *V1ZincQuery) HasMaxResults() bool

HasMaxResults returns a boolean if a field has been set.

func (*V1ZincQuery) HasQuery

func (o *V1ZincQuery) HasQuery() bool

HasQuery returns a boolean if a field has been set.

func (*V1ZincQuery) HasSearchType

func (o *V1ZincQuery) HasSearchType() bool

HasSearchType returns a boolean if a field has been set.

func (*V1ZincQuery) HasSortFields

func (o *V1ZincQuery) HasSortFields() bool

HasSortFields returns a boolean if a field has been set.

func (*V1ZincQuery) HasSource

func (o *V1ZincQuery) HasSource() bool

HasSource returns a boolean if a field has been set.

func (V1ZincQuery) MarshalJSON

func (o V1ZincQuery) MarshalJSON() ([]byte, error)

func (*V1ZincQuery) SetAggs

func (o *V1ZincQuery) SetAggs(v map[string]V1AggregationParams)

SetAggs gets a reference to the given map[string]V1AggregationParams and assigns it to the Aggs field.

func (*V1ZincQuery) SetExplain

func (o *V1ZincQuery) SetExplain(v bool)

SetExplain gets a reference to the given bool and assigns it to the Explain field.

func (*V1ZincQuery) SetFrom

func (o *V1ZincQuery) SetFrom(v int32)

SetFrom gets a reference to the given int32 and assigns it to the From field.

func (*V1ZincQuery) SetHighlight

func (o *V1ZincQuery) SetHighlight(v MetaHighlight)

SetHighlight gets a reference to the given MetaHighlight and assigns it to the Highlight field.

func (*V1ZincQuery) SetMaxResults

func (o *V1ZincQuery) SetMaxResults(v int32)

SetMaxResults gets a reference to the given int32 and assigns it to the MaxResults field.

func (*V1ZincQuery) SetQuery

func (o *V1ZincQuery) SetQuery(v V1QueryParams)

SetQuery gets a reference to the given V1QueryParams and assigns it to the Query field.

func (*V1ZincQuery) SetSearchType

func (o *V1ZincQuery) SetSearchType(v string)

SetSearchType gets a reference to the given string and assigns it to the SearchType field.

func (*V1ZincQuery) SetSortFields

func (o *V1ZincQuery) SetSortFields(v []string)

SetSortFields gets a reference to the given []string and assigns it to the SortFields field.

func (*V1ZincQuery) SetSource

func (o *V1ZincQuery) SetSource(v []string)

SetSource gets a reference to the given []string and assigns it to the Source field.

Source Files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL