Versions in this module Expand all Collapse all v1 v1.9.0 Jul 3, 2025 v1.8.0 Apr 1, 2025 v1.7.0 Feb 13, 2025 v1.6.0 Jan 31, 2025 v1.0.0 Feb 2, 2024 Changes in this version + var ContextOperationServerIndices = contextKey("serverOperationIndices") + var ContextOperationServerVariables = contextKey("serverOperationVariables") + var ContextServerIndex = contextKey("serverIndex") + var ContextServerVariables = contextKey("serverVariables") + var JsonCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?json)`) + var XmlCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?xml)`) + func CacheExpires(r *http.Response) time.Time + func IsNil(i interface{}) bool + func PtrBool(v bool) *bool + func PtrFloat32(v float32) *float32 + func PtrFloat64(v float64) *float64 + func PtrInt(v int) *int + func PtrInt32(v int32) *int32 + func PtrInt64(v int64) *int64 + func PtrString(v string) *string + func PtrTime(v time.Time) *time.Time + type APIClient struct + IndexAPI *IndexAPIService + SearchAPI *SearchAPIService + UtilsAPI *UtilsAPIService + func NewAPIClient(cfg *Configuration) *APIClient + func (c *APIClient) GetConfig() *Configuration + type APIKey struct + Key string + Prefix string + type APIResponse struct + Message string + Method string + Operation string + Payload []byte + RequestURL string + func NewAPIResponse(r *http.Response) *APIResponse + func NewAPIResponseWithError(errorMessage string) *APIResponse + type Aggregation struct + Sort []map[string]AggregationSortInnerValue + Terms *AggregationTerms + func NewAggregation() *Aggregation + func NewAggregationWithDefaults() *Aggregation + func (o *Aggregation) GetSort() []map[string]AggregationSortInnerValue + func (o *Aggregation) GetSortOk() ([]map[string]AggregationSortInnerValue, bool) + func (o *Aggregation) GetTerms() AggregationTerms + func (o *Aggregation) GetTermsOk() (*AggregationTerms, bool) + func (o *Aggregation) HasSort() bool + func (o *Aggregation) HasTerms() bool + func (o *Aggregation) SetSort(v []map[string]AggregationSortInnerValue) + func (o *Aggregation) SetTerms(v AggregationTerms) + func (o Aggregation) MarshalJSON() ([]byte, error) + func (o Aggregation) ToMap() (map[string]interface{}, error) + type AggregationSortInnerValue struct + Order *string + func NewAggregationSortInnerValue() *AggregationSortInnerValue + func NewAggregationSortInnerValueWithDefaults() *AggregationSortInnerValue + func (o *AggregationSortInnerValue) GetOrder() string + func (o *AggregationSortInnerValue) GetOrderOk() (*string, bool) + func (o *AggregationSortInnerValue) HasOrder() bool + func (o *AggregationSortInnerValue) SetOrder(v string) + func (o AggregationSortInnerValue) MarshalJSON() ([]byte, error) + func (o AggregationSortInnerValue) ToMap() (map[string]interface{}, error) + type AggregationTerms struct + Field *string + Size *int32 + func NewAggregationTerms() *AggregationTerms + func NewAggregationTermsWithDefaults() *AggregationTerms + func (o *AggregationTerms) GetField() string + func (o *AggregationTerms) GetFieldOk() (*string, bool) + func (o *AggregationTerms) GetSize() int32 + func (o *AggregationTerms) GetSizeOk() (*int32, bool) + func (o *AggregationTerms) HasField() bool + func (o *AggregationTerms) HasSize() bool + func (o *AggregationTerms) SetField(v string) + func (o *AggregationTerms) SetSize(v int32) + func (o AggregationTerms) MarshalJSON() ([]byte, error) + func (o AggregationTerms) ToMap() (map[string]interface{}, error) + type ApiBulkRequest struct + ApiService *IndexAPIService + func (r ApiBulkRequest) Body(body string) ApiBulkRequest + func (r ApiBulkRequest) Execute() (*BulkResponse, *http.Response, error) + type ApiDeleteRequest struct + ApiService *IndexAPIService + func (r ApiDeleteRequest) DeleteDocumentRequest(deleteDocumentRequest DeleteDocumentRequest) ApiDeleteRequest + func (r ApiDeleteRequest) Execute() (*DeleteResponse, *http.Response, error) + type ApiInsertRequest struct + ApiService *IndexAPIService + func (r ApiInsertRequest) Execute() (*SuccessResponse, *http.Response, error) + func (r ApiInsertRequest) InsertDocumentRequest(insertDocumentRequest InsertDocumentRequest) ApiInsertRequest + type ApiPercolateRequest struct + ApiService *SearchAPIService + func (r ApiPercolateRequest) Execute() (*SearchResponse, *http.Response, error) + func (r ApiPercolateRequest) PercolateRequest(percolateRequest PercolateRequest) ApiPercolateRequest + type ApiReplaceRequest struct + ApiService *IndexAPIService + func (r ApiReplaceRequest) Execute() (*SuccessResponse, *http.Response, error) + func (r ApiReplaceRequest) InsertDocumentRequest(insertDocumentRequest InsertDocumentRequest) ApiReplaceRequest + type ApiSearchRequest struct + ApiService *SearchAPIService + func (r ApiSearchRequest) Execute() (*SearchResponse, *http.Response, error) + func (r ApiSearchRequest) SearchRequest(searchRequest SearchRequest) ApiSearchRequest + type ApiSqlRequest struct + ApiService *UtilsAPIService + func (r ApiSqlRequest) Body(body string) ApiSqlRequest + func (r ApiSqlRequest) Execute() ([]map[string]interface{}, *http.Response, error) + func (r ApiSqlRequest) RawResponse(rawResponse bool) ApiSqlRequest + type ApiUpdateRequest struct + ApiService *IndexAPIService + func (r ApiUpdateRequest) Execute() (*UpdateResponse, *http.Response, error) + func (r ApiUpdateRequest) UpdateDocumentRequest(updateDocumentRequest UpdateDocumentRequest) ApiUpdateRequest + type BasicAuth struct + Password string + UserName string + type BoolFilter struct + Must []map[string]interface{} + MustNot []map[string]interface{} + Should []map[string]interface{} + func NewBoolFilter() *BoolFilter + func NewBoolFilterWithDefaults() *BoolFilter + func (o *BoolFilter) GetMust() []map[string]interface{} + func (o *BoolFilter) GetMustNot() []map[string]interface{} + func (o *BoolFilter) GetMustNotOk() ([]map[string]interface{}, bool) + func (o *BoolFilter) GetMustOk() ([]map[string]interface{}, bool) + func (o *BoolFilter) GetShould() []map[string]interface{} + func (o *BoolFilter) GetShouldOk() ([]map[string]interface{}, bool) + func (o *BoolFilter) HasMust() bool + func (o *BoolFilter) HasMustNot() bool + func (o *BoolFilter) HasShould() bool + func (o *BoolFilter) SetMust(v []map[string]interface{}) + func (o *BoolFilter) SetMustNot(v []map[string]interface{}) + func (o *BoolFilter) SetShould(v []map[string]interface{}) + func (o BoolFilter) MarshalJSON() ([]byte, error) + func (o BoolFilter) ToMap() (map[string]interface{}, error) + type BulkResponse struct + AdditionalProperties map[string]interface{} + Error *string + Errors *bool + Items []map[string]interface{} + func NewBulkResponse() *BulkResponse + func NewBulkResponseWithDefaults() *BulkResponse + func (o *BulkResponse) GetError() string + func (o *BulkResponse) GetErrorOk() (*string, bool) + func (o *BulkResponse) GetErrors() bool + func (o *BulkResponse) GetErrorsOk() (*bool, bool) + func (o *BulkResponse) GetItems() []map[string]interface{} + func (o *BulkResponse) GetItemsOk() ([]map[string]interface{}, bool) + func (o *BulkResponse) HasError() bool + func (o *BulkResponse) HasErrors() bool + func (o *BulkResponse) HasItems() bool + func (o *BulkResponse) SetError(v string) + func (o *BulkResponse) SetErrors(v bool) + func (o *BulkResponse) SetItems(v []map[string]interface{}) + func (o *BulkResponse) UnmarshalJSON(data []byte) (err error) + func (o BulkResponse) MarshalJSON() ([]byte, error) + func (o BulkResponse) ToMap() (map[string]interface{}, error) + type Configuration struct + Debug bool + DefaultHeader map[string]string + HTTPClient *http.Client + Host string + OperationServers map[string]ServerConfigurations + Scheme string + Servers ServerConfigurations + UserAgent string + func NewConfiguration() *Configuration + func (c *Configuration) AddDefaultHeader(key string, value string) + func (c *Configuration) ServerURL(index int, variables map[string]string) (string, error) + func (c *Configuration) ServerURLWithContext(ctx context.Context, endpoint string) (string, error) + type DeleteDocumentRequest struct + Cluster *string + Id *int64 + Index string + Query map[string]interface{} + func NewDeleteDocumentRequest(index string) *DeleteDocumentRequest + func NewDeleteDocumentRequestWithDefaults() *DeleteDocumentRequest + func (o *DeleteDocumentRequest) GetCluster() string + func (o *DeleteDocumentRequest) GetClusterOk() (*string, bool) + func (o *DeleteDocumentRequest) GetId() int64 + func (o *DeleteDocumentRequest) GetIdOk() (*int64, bool) + func (o *DeleteDocumentRequest) GetIndex() string + func (o *DeleteDocumentRequest) GetIndexOk() (*string, bool) + func (o *DeleteDocumentRequest) GetQuery() map[string]interface{} + func (o *DeleteDocumentRequest) GetQueryOk() (map[string]interface{}, bool) + func (o *DeleteDocumentRequest) HasCluster() bool + func (o *DeleteDocumentRequest) HasId() bool + func (o *DeleteDocumentRequest) HasQuery() bool + func (o *DeleteDocumentRequest) SetCluster(v string) + func (o *DeleteDocumentRequest) SetId(v int64) + func (o *DeleteDocumentRequest) SetIndex(v string) + func (o *DeleteDocumentRequest) SetQuery(v map[string]interface{}) + func (o *DeleteDocumentRequest) UnmarshalJSON(data []byte) (err error) + func (o DeleteDocumentRequest) MarshalJSON() ([]byte, error) + func (o DeleteDocumentRequest) ToMap() (map[string]interface{}, error) + type DeleteResponse struct + Deleted *int32 + Id *int64 + Index *string + Result *string + func NewDeleteResponse() *DeleteResponse + func NewDeleteResponseWithDefaults() *DeleteResponse + func (o *DeleteResponse) GetDeleted() int32 + func (o *DeleteResponse) GetDeletedOk() (*int32, bool) + func (o *DeleteResponse) GetId() int64 + func (o *DeleteResponse) GetIdOk() (*int64, bool) + func (o *DeleteResponse) GetIndex() string + func (o *DeleteResponse) GetIndexOk() (*string, bool) + func (o *DeleteResponse) GetResult() string + func (o *DeleteResponse) GetResultOk() (*string, bool) + func (o *DeleteResponse) HasDeleted() bool + func (o *DeleteResponse) HasId() bool + func (o *DeleteResponse) HasIndex() bool + func (o *DeleteResponse) HasResult() bool + func (o *DeleteResponse) SetDeleted(v int32) + func (o *DeleteResponse) SetId(v int64) + func (o *DeleteResponse) SetIndex(v string) + func (o *DeleteResponse) SetResult(v string) + func (o DeleteResponse) MarshalJSON() ([]byte, error) + func (o DeleteResponse) ToMap() (map[string]interface{}, error) + type EqualsFilter struct + Field string + Value map[string]interface{} + func NewEqualsFilter(field string, value map[string]interface{}) *EqualsFilter + func NewEqualsFilterWithDefaults() *EqualsFilter + func (o *EqualsFilter) GetField() string + func (o *EqualsFilter) GetFieldOk() (*string, bool) + func (o *EqualsFilter) GetValue() map[string]interface{} + func (o *EqualsFilter) GetValueOk() (map[string]interface{}, bool) + func (o *EqualsFilter) SetField(v string) + func (o *EqualsFilter) SetValue(v map[string]interface{}) + func (o *EqualsFilter) UnmarshalJSON(data []byte) (err error) + func (o EqualsFilter) MarshalJSON() ([]byte, error) + func (o EqualsFilter) ToMap() (map[string]interface{}, error) + type ErrorResponse struct + Error map[string]interface{} + Status *int32 + func NewErrorResponse(error_ map[string]interface{}) *ErrorResponse + func NewErrorResponseWithDefaults() *ErrorResponse + func (o *ErrorResponse) GetError() map[string]interface{} + func (o *ErrorResponse) GetErrorOk() (map[string]interface{}, bool) + func (o *ErrorResponse) GetStatus() int32 + func (o *ErrorResponse) GetStatusOk() (*int32, bool) + func (o *ErrorResponse) HasStatus() bool + func (o *ErrorResponse) SetError(v map[string]interface{}) + func (o *ErrorResponse) SetStatus(v int32) + func (o *ErrorResponse) UnmarshalJSON(data []byte) (err error) + func (o ErrorResponse) MarshalJSON() ([]byte, error) + func (o ErrorResponse) ToMap() (map[string]interface{}, error) + type ErrorResponseString struct + Error string + func NewErrorResponseString(error_ string) *ErrorResponseString + func NewErrorResponseStringWithDefaults() *ErrorResponseString + func (o *ErrorResponseString) GetError() string + func (o *ErrorResponseString) GetErrorOk() (*string, bool) + func (o *ErrorResponseString) SetError(v string) + func (o *ErrorResponseString) UnmarshalJSON(data []byte) (err error) + func (o ErrorResponseString) MarshalJSON() ([]byte, error) + func (o ErrorResponseString) ToMap() (map[string]interface{}, error) + type Facet struct + Alias *string + Attr string + Limit *int32 + func NewFacet(attr string) *Facet + func NewFacetWithDefaults() *Facet + func (o *Facet) GetAlias() string + func (o *Facet) GetAliasOk() (*string, bool) + func (o *Facet) GetAttr() string + func (o *Facet) GetAttrOk() (*string, bool) + func (o *Facet) GetLimit() int32 + func (o *Facet) GetLimitOk() (*int32, bool) + func (o *Facet) HasAlias() bool + func (o *Facet) HasLimit() bool + func (o *Facet) SetAlias(v string) + func (o *Facet) SetAttr(v string) + func (o *Facet) SetLimit(v int32) + func (o *Facet) UnmarshalJSON(data []byte) (err error) + func (o Facet) MarshalJSON() ([]byte, error) + func (o Facet) ToMap() (map[string]interface{}, error) + type FilterBoolean struct + FilterField string + FilterValue bool + Operation string + func NewFilterBoolean(filterField string, operation string, filterValue bool) *FilterBoolean + func NewFilterBooleanWithDefaults() *FilterBoolean + func (o *FilterBoolean) GetFilterField() string + func (o *FilterBoolean) GetFilterFieldOk() (*string, bool) + func (o *FilterBoolean) GetFilterValue() bool + func (o *FilterBoolean) GetFilterValueOk() (*bool, bool) + func (o *FilterBoolean) GetOperation() string + func (o *FilterBoolean) GetOperationOk() (*string, bool) + func (o *FilterBoolean) SetFilterField(v string) + func (o *FilterBoolean) SetFilterValue(v bool) + func (o *FilterBoolean) SetOperation(v string) + func (o *FilterBoolean) UnmarshalJSON(data []byte) (err error) + func (o FilterBoolean) MarshalJSON() ([]byte, error) + func (o FilterBoolean) ToMap() (map[string]interface{}, error) + type FilterNumber struct + FilterField string + FilterValue float32 + Operation string + func NewFilterNumber(filterField string, operation string, filterValue float32) *FilterNumber + func NewFilterNumberWithDefaults() *FilterNumber + func (o *FilterNumber) GetFilterField() string + func (o *FilterNumber) GetFilterFieldOk() (*string, bool) + func (o *FilterNumber) GetFilterValue() float32 + func (o *FilterNumber) GetFilterValueOk() (*float32, bool) + func (o *FilterNumber) GetOperation() string + func (o *FilterNumber) GetOperationOk() (*string, bool) + func (o *FilterNumber) SetFilterField(v string) + func (o *FilterNumber) SetFilterValue(v float32) + func (o *FilterNumber) SetOperation(v string) + func (o *FilterNumber) UnmarshalJSON(data []byte) (err error) + func (o FilterNumber) MarshalJSON() ([]byte, error) + func (o FilterNumber) ToMap() (map[string]interface{}, error) + type FilterString struct + FilterField string + FilterValue string + Operation string + func NewFilterString(filterField string, operation string, filterValue string) *FilterString + func NewFilterStringWithDefaults() *FilterString + func (o *FilterString) GetFilterField() string + func (o *FilterString) GetFilterFieldOk() (*string, bool) + func (o *FilterString) GetFilterValue() string + func (o *FilterString) GetFilterValueOk() (*string, bool) + func (o *FilterString) GetOperation() string + func (o *FilterString) GetOperationOk() (*string, bool) + func (o *FilterString) SetFilterField(v string) + func (o *FilterString) SetFilterValue(v string) + func (o *FilterString) SetOperation(v string) + func (o *FilterString) UnmarshalJSON(data []byte) (err error) + func (o FilterString) MarshalJSON() ([]byte, error) + func (o FilterString) ToMap() (map[string]interface{}, error) + type GenericOpenAPIError struct + func (e GenericOpenAPIError) Body() []byte + func (e GenericOpenAPIError) Error() string + func (e GenericOpenAPIError) Model() interface{} + type GeoDistanceFilter struct + Distance *string + DistanceType *string + LocationAnchor *GeoDistanceFilterLocationAnchor + LocationSource *string + func NewGeoDistanceFilter() *GeoDistanceFilter + func NewGeoDistanceFilterWithDefaults() *GeoDistanceFilter + func (o *GeoDistanceFilter) GetDistance() string + func (o *GeoDistanceFilter) GetDistanceOk() (*string, bool) + func (o *GeoDistanceFilter) GetDistanceType() string + func (o *GeoDistanceFilter) GetDistanceTypeOk() (*string, bool) + func (o *GeoDistanceFilter) GetLocationAnchor() GeoDistanceFilterLocationAnchor + func (o *GeoDistanceFilter) GetLocationAnchorOk() (*GeoDistanceFilterLocationAnchor, bool) + func (o *GeoDistanceFilter) GetLocationSource() string + func (o *GeoDistanceFilter) GetLocationSourceOk() (*string, bool) + func (o *GeoDistanceFilter) HasDistance() bool + func (o *GeoDistanceFilter) HasDistanceType() bool + func (o *GeoDistanceFilter) HasLocationAnchor() bool + func (o *GeoDistanceFilter) HasLocationSource() bool + func (o *GeoDistanceFilter) SetDistance(v string) + func (o *GeoDistanceFilter) SetDistanceType(v string) + func (o *GeoDistanceFilter) SetLocationAnchor(v GeoDistanceFilterLocationAnchor) + func (o *GeoDistanceFilter) SetLocationSource(v string) + func (o GeoDistanceFilter) MarshalJSON() ([]byte, error) + func (o GeoDistanceFilter) ToMap() (map[string]interface{}, error) + type GeoDistanceFilterLocationAnchor struct + Lat *float32 + Lon *float32 + func NewGeoDistanceFilterLocationAnchor() *GeoDistanceFilterLocationAnchor + func NewGeoDistanceFilterLocationAnchorWithDefaults() *GeoDistanceFilterLocationAnchor + func (o *GeoDistanceFilterLocationAnchor) GetLat() float32 + func (o *GeoDistanceFilterLocationAnchor) GetLatOk() (*float32, bool) + func (o *GeoDistanceFilterLocationAnchor) GetLon() float32 + func (o *GeoDistanceFilterLocationAnchor) GetLonOk() (*float32, bool) + func (o *GeoDistanceFilterLocationAnchor) HasLat() bool + func (o *GeoDistanceFilterLocationAnchor) HasLon() bool + func (o *GeoDistanceFilterLocationAnchor) SetLat(v float32) + func (o *GeoDistanceFilterLocationAnchor) SetLon(v float32) + func (o GeoDistanceFilterLocationAnchor) MarshalJSON() ([]byte, error) + func (o GeoDistanceFilterLocationAnchor) ToMap() (map[string]interface{}, error) + type Highlight struct + AllowEmpty *bool + Around *int32 + EmitZones *bool + Encoder *string + Fieldnames []string + Fields []HighlightField + ForceAllWords *bool + ForceSnippets *bool + FragmentSize *int32 + HighlightQuery map[string]interface{} + HtmlStripMode *string + Limit *int32 + LimitSnippets *int32 + LimitWords *int32 + LimitsPerField *bool + NoMatchSize *int32 + NumberOfFragments *int32 + PostTags *string + PreTags *string + SnippetBoundary *string + StartSnippetId *int32 + UseBoundaries *bool + func NewHighlight() *Highlight + func NewHighlightWithDefaults() *Highlight + func (o *Highlight) GetAllowEmpty() bool + func (o *Highlight) GetAllowEmptyOk() (*bool, bool) + func (o *Highlight) GetAround() int32 + func (o *Highlight) GetAroundOk() (*int32, bool) + func (o *Highlight) GetEmitZones() bool + func (o *Highlight) GetEmitZonesOk() (*bool, bool) + func (o *Highlight) GetEncoder() string + func (o *Highlight) GetEncoderOk() (*string, bool) + func (o *Highlight) GetFieldnames() []string + func (o *Highlight) GetFieldnamesOk() ([]string, bool) + func (o *Highlight) GetFields() []HighlightField + func (o *Highlight) GetFieldsOk() ([]HighlightField, bool) + func (o *Highlight) GetForceAllWords() bool + func (o *Highlight) GetForceAllWordsOk() (*bool, bool) + func (o *Highlight) GetForceSnippets() bool + func (o *Highlight) GetForceSnippetsOk() (*bool, bool) + func (o *Highlight) GetFragmentSize() int32 + func (o *Highlight) GetFragmentSizeOk() (*int32, bool) + func (o *Highlight) GetHighlightQuery() map[string]interface{} + func (o *Highlight) GetHighlightQueryOk() (map[string]interface{}, bool) + func (o *Highlight) GetHtmlStripMode() string + func (o *Highlight) GetHtmlStripModeOk() (*string, bool) + func (o *Highlight) GetLimit() int32 + func (o *Highlight) GetLimitOk() (*int32, bool) + func (o *Highlight) GetLimitSnippets() int32 + func (o *Highlight) GetLimitSnippetsOk() (*int32, bool) + func (o *Highlight) GetLimitWords() int32 + func (o *Highlight) GetLimitWordsOk() (*int32, bool) + func (o *Highlight) GetLimitsPerField() bool + func (o *Highlight) GetLimitsPerFieldOk() (*bool, bool) + func (o *Highlight) GetNoMatchSize() int32 + func (o *Highlight) GetNoMatchSizeOk() (*int32, bool) + func (o *Highlight) GetNumberOfFragments() int32 + func (o *Highlight) GetNumberOfFragmentsOk() (*int32, bool) + func (o *Highlight) GetPostTags() string + func (o *Highlight) GetPostTagsOk() (*string, bool) + func (o *Highlight) GetPreTags() string + func (o *Highlight) GetPreTagsOk() (*string, bool) + func (o *Highlight) GetSnippetBoundary() string + func (o *Highlight) GetSnippetBoundaryOk() (*string, bool) + func (o *Highlight) GetStartSnippetId() int32 + func (o *Highlight) GetStartSnippetIdOk() (*int32, bool) + func (o *Highlight) GetUseBoundaries() bool + func (o *Highlight) GetUseBoundariesOk() (*bool, bool) + func (o *Highlight) HasAllowEmpty() bool + func (o *Highlight) HasAround() bool + func (o *Highlight) HasEmitZones() bool + func (o *Highlight) HasEncoder() bool + func (o *Highlight) HasFieldnames() bool + func (o *Highlight) HasFields() bool + func (o *Highlight) HasForceAllWords() bool + func (o *Highlight) HasForceSnippets() bool + func (o *Highlight) HasFragmentSize() bool + func (o *Highlight) HasHighlightQuery() bool + func (o *Highlight) HasHtmlStripMode() bool + func (o *Highlight) HasLimit() bool + func (o *Highlight) HasLimitSnippets() bool + func (o *Highlight) HasLimitWords() bool + func (o *Highlight) HasLimitsPerField() bool + func (o *Highlight) HasNoMatchSize() bool + func (o *Highlight) HasNumberOfFragments() bool + func (o *Highlight) HasPostTags() bool + func (o *Highlight) HasPreTags() bool + func (o *Highlight) HasSnippetBoundary() bool + func (o *Highlight) HasStartSnippetId() bool + func (o *Highlight) HasUseBoundaries() bool + func (o *Highlight) SetAllowEmpty(v bool) + func (o *Highlight) SetAround(v int32) + func (o *Highlight) SetEmitZones(v bool) + func (o *Highlight) SetEncoder(v string) + func (o *Highlight) SetFieldnames(v []string) + func (o *Highlight) SetFields(v []HighlightField) + func (o *Highlight) SetForceAllWords(v bool) + func (o *Highlight) SetForceSnippets(v bool) + func (o *Highlight) SetFragmentSize(v int32) + func (o *Highlight) SetHighlightQuery(v map[string]interface{}) + func (o *Highlight) SetHtmlStripMode(v string) + func (o *Highlight) SetLimit(v int32) + func (o *Highlight) SetLimitSnippets(v int32) + func (o *Highlight) SetLimitWords(v int32) + func (o *Highlight) SetLimitsPerField(v bool) + func (o *Highlight) SetNoMatchSize(v int32) + func (o *Highlight) SetNumberOfFragments(v int32) + func (o *Highlight) SetPostTags(v string) + func (o *Highlight) SetPreTags(v string) + func (o *Highlight) SetSnippetBoundary(v string) + func (o *Highlight) SetStartSnippetId(v int32) + func (o *Highlight) SetUseBoundaries(v bool) + func (o Highlight) MarshalJSON() ([]byte, error) + func (o Highlight) ToMap() (map[string]interface{}, error) + type HighlightField struct + Limit *int32 + LimitSnippets *int32 + LimitWords *int32 + Name string + func NewHighlightField(name string) *HighlightField + func NewHighlightFieldWithDefaults() *HighlightField + func (o *HighlightField) GetLimit() int32 + func (o *HighlightField) GetLimitOk() (*int32, bool) + func (o *HighlightField) GetLimitSnippets() int32 + func (o *HighlightField) GetLimitSnippetsOk() (*int32, bool) + func (o *HighlightField) GetLimitWords() int32 + func (o *HighlightField) GetLimitWordsOk() (*int32, bool) + func (o *HighlightField) GetName() string + func (o *HighlightField) GetNameOk() (*string, bool) + func (o *HighlightField) HasLimit() bool + func (o *HighlightField) HasLimitSnippets() bool + func (o *HighlightField) HasLimitWords() bool + func (o *HighlightField) SetLimit(v int32) + func (o *HighlightField) SetLimitSnippets(v int32) + func (o *HighlightField) SetLimitWords(v int32) + func (o *HighlightField) SetName(v string) + func (o *HighlightField) UnmarshalJSON(data []byte) (err error) + func (o HighlightField) MarshalJSON() ([]byte, error) + func (o HighlightField) ToMap() (map[string]interface{}, error) + type InFilter struct + Field string + Values []map[string]interface{} + func NewInFilter(field string, values []map[string]interface{}) *InFilter + func NewInFilterWithDefaults() *InFilter + func (o *InFilter) GetField() string + func (o *InFilter) GetFieldOk() (*string, bool) + func (o *InFilter) GetValues() []map[string]interface{} + func (o *InFilter) GetValuesOk() ([]map[string]interface{}, bool) + func (o *InFilter) SetField(v string) + func (o *InFilter) SetValues(v []map[string]interface{}) + func (o *InFilter) UnmarshalJSON(data []byte) (err error) + func (o InFilter) MarshalJSON() ([]byte, error) + func (o InFilter) ToMap() (map[string]interface{}, error) + type IndexAPIService service + func (a *IndexAPIService) Bulk(ctx context.Context) ApiBulkRequest + func (a *IndexAPIService) BulkExecute(r ApiBulkRequest) (*BulkResponse, *http.Response, error) + func (a *IndexAPIService) Delete(ctx context.Context) ApiDeleteRequest + func (a *IndexAPIService) DeleteExecute(r ApiDeleteRequest) (*DeleteResponse, *http.Response, error) + func (a *IndexAPIService) Insert(ctx context.Context) ApiInsertRequest + func (a *IndexAPIService) InsertExecute(r ApiInsertRequest) (*SuccessResponse, *http.Response, error) + func (a *IndexAPIService) Replace(ctx context.Context) ApiReplaceRequest + func (a *IndexAPIService) ReplaceExecute(r ApiReplaceRequest) (*SuccessResponse, *http.Response, error) + func (a *IndexAPIService) Update(ctx context.Context) ApiUpdateRequest + func (a *IndexAPIService) UpdateExecute(r ApiUpdateRequest) (*UpdateResponse, *http.Response, error) + type InsertDocumentRequest struct + Cluster *string + Doc map[string]interface{} + Id *int64 + Index string + func NewInsertDocumentRequest(index string, doc map[string]interface{}) *InsertDocumentRequest + func NewInsertDocumentRequestWithDefaults() *InsertDocumentRequest + func (o *InsertDocumentRequest) GetCluster() string + func (o *InsertDocumentRequest) GetClusterOk() (*string, bool) + func (o *InsertDocumentRequest) GetDoc() map[string]interface{} + func (o *InsertDocumentRequest) GetDocOk() (map[string]interface{}, bool) + func (o *InsertDocumentRequest) GetId() int64 + func (o *InsertDocumentRequest) GetIdOk() (*int64, bool) + func (o *InsertDocumentRequest) GetIndex() string + func (o *InsertDocumentRequest) GetIndexOk() (*string, bool) + func (o *InsertDocumentRequest) HasCluster() bool + func (o *InsertDocumentRequest) HasId() bool + func (o *InsertDocumentRequest) SetCluster(v string) + func (o *InsertDocumentRequest) SetDoc(v map[string]interface{}) + func (o *InsertDocumentRequest) SetId(v int64) + func (o *InsertDocumentRequest) SetIndex(v string) + func (o *InsertDocumentRequest) UnmarshalJSON(data []byte) (err error) + func (o InsertDocumentRequest) MarshalJSON() ([]byte, error) + func (o InsertDocumentRequest) ToMap() (map[string]interface{}, error) + type KnnSearchRequestByDocId struct + Aggs *map[string]Aggregation + AttrFilter map[string]interface{} + DocId int32 + Expressions *map[string]string + Field string + FulltextFilter map[string]interface{} + Highlight *Highlight + Index string + K int32 + Limit *int32 + MaxMatches *int32 + Offset *int32 + Options map[string]interface{} + Profile *bool + Sort []map[string]interface{} + Source map[string]interface{} + TrackScores *bool + func NewKnnSearchRequestByDocId(index string, field string, docId int32, k int32) *KnnSearchRequestByDocId + func NewKnnSearchRequestByDocIdWithDefaults() *KnnSearchRequestByDocId + func (o *KnnSearchRequestByDocId) GetAggs() map[string]Aggregation + func (o *KnnSearchRequestByDocId) GetAggsOk() (*map[string]Aggregation, bool) + func (o *KnnSearchRequestByDocId) GetAttrFilter() map[string]interface{} + func (o *KnnSearchRequestByDocId) GetAttrFilterOk() (map[string]interface{}, bool) + func (o *KnnSearchRequestByDocId) GetDocId() int32 + func (o *KnnSearchRequestByDocId) GetDocIdOk() (*int32, bool) + func (o *KnnSearchRequestByDocId) GetExpressions() map[string]string + func (o *KnnSearchRequestByDocId) GetExpressionsOk() (*map[string]string, bool) + func (o *KnnSearchRequestByDocId) GetField() string + func (o *KnnSearchRequestByDocId) GetFieldOk() (*string, bool) + func (o *KnnSearchRequestByDocId) GetFulltextFilter() map[string]interface{} + func (o *KnnSearchRequestByDocId) GetFulltextFilterOk() (map[string]interface{}, bool) + func (o *KnnSearchRequestByDocId) GetHighlight() Highlight + func (o *KnnSearchRequestByDocId) GetHighlightOk() (*Highlight, bool) + func (o *KnnSearchRequestByDocId) GetIndex() string + func (o *KnnSearchRequestByDocId) GetIndexOk() (*string, bool) + func (o *KnnSearchRequestByDocId) GetK() int32 + func (o *KnnSearchRequestByDocId) GetKOk() (*int32, bool) + func (o *KnnSearchRequestByDocId) GetLimit() int32 + func (o *KnnSearchRequestByDocId) GetLimitOk() (*int32, bool) + func (o *KnnSearchRequestByDocId) GetMaxMatches() int32 + func (o *KnnSearchRequestByDocId) GetMaxMatchesOk() (*int32, bool) + func (o *KnnSearchRequestByDocId) GetOffset() int32 + func (o *KnnSearchRequestByDocId) GetOffsetOk() (*int32, bool) + func (o *KnnSearchRequestByDocId) GetOptions() map[string]interface{} + func (o *KnnSearchRequestByDocId) GetOptionsOk() (map[string]interface{}, bool) + func (o *KnnSearchRequestByDocId) GetProfile() bool + func (o *KnnSearchRequestByDocId) GetProfileOk() (*bool, bool) + func (o *KnnSearchRequestByDocId) GetSort() []map[string]interface{} + func (o *KnnSearchRequestByDocId) GetSortOk() ([]map[string]interface{}, bool) + func (o *KnnSearchRequestByDocId) GetSource() map[string]interface{} + func (o *KnnSearchRequestByDocId) GetSourceOk() (map[string]interface{}, bool) + func (o *KnnSearchRequestByDocId) GetTrackScores() bool + func (o *KnnSearchRequestByDocId) GetTrackScoresOk() (*bool, bool) + func (o *KnnSearchRequestByDocId) HasAggs() bool + func (o *KnnSearchRequestByDocId) HasAttrFilter() bool + func (o *KnnSearchRequestByDocId) HasExpressions() bool + func (o *KnnSearchRequestByDocId) HasFulltextFilter() bool + func (o *KnnSearchRequestByDocId) HasHighlight() bool + func (o *KnnSearchRequestByDocId) HasLimit() bool + func (o *KnnSearchRequestByDocId) HasMaxMatches() bool + func (o *KnnSearchRequestByDocId) HasOffset() bool + func (o *KnnSearchRequestByDocId) HasOptions() bool + func (o *KnnSearchRequestByDocId) HasProfile() bool + func (o *KnnSearchRequestByDocId) HasSort() bool + func (o *KnnSearchRequestByDocId) HasSource() bool + func (o *KnnSearchRequestByDocId) HasTrackScores() bool + func (o *KnnSearchRequestByDocId) SetAggs(v map[string]Aggregation) + func (o *KnnSearchRequestByDocId) SetAttrFilter(v map[string]interface{}) + func (o *KnnSearchRequestByDocId) SetDocId(v int32) + func (o *KnnSearchRequestByDocId) SetExpressions(v map[string]string) + func (o *KnnSearchRequestByDocId) SetField(v string) + func (o *KnnSearchRequestByDocId) SetFulltextFilter(v map[string]interface{}) + func (o *KnnSearchRequestByDocId) SetHighlight(v Highlight) + func (o *KnnSearchRequestByDocId) SetIndex(v string) + func (o *KnnSearchRequestByDocId) SetK(v int32) + func (o *KnnSearchRequestByDocId) SetLimit(v int32) + func (o *KnnSearchRequestByDocId) SetMaxMatches(v int32) + func (o *KnnSearchRequestByDocId) SetOffset(v int32) + func (o *KnnSearchRequestByDocId) SetOptions(v map[string]interface{}) + func (o *KnnSearchRequestByDocId) SetProfile(v bool) + func (o *KnnSearchRequestByDocId) SetSort(v []map[string]interface{}) + func (o *KnnSearchRequestByDocId) SetSource(v map[string]interface{}) + func (o *KnnSearchRequestByDocId) SetTrackScores(v bool) + func (o *KnnSearchRequestByDocId) UnmarshalJSON(data []byte) (err error) + func (o KnnSearchRequestByDocId) MarshalJSON() ([]byte, error) + func (o KnnSearchRequestByDocId) ToMap() (map[string]interface{}, error) + type KnnSearchRequestByVector struct + Aggs *map[string]Aggregation + AttrFilter map[string]interface{} + Expressions *map[string]string + Field string + FulltextFilter map[string]interface{} + Highlight *Highlight + Index string + K int32 + Limit *int32 + MaxMatches *int32 + Offset *int32 + Options map[string]interface{} + Profile *bool + QueryVector []float32 + Sort []map[string]interface{} + Source map[string]interface{} + TrackScores *bool + func NewKnnSearchRequestByVector(index string, field string, queryVector []float32, k int32) *KnnSearchRequestByVector + func NewKnnSearchRequestByVectorWithDefaults() *KnnSearchRequestByVector + func (o *KnnSearchRequestByVector) GetAggs() map[string]Aggregation + func (o *KnnSearchRequestByVector) GetAggsOk() (*map[string]Aggregation, bool) + func (o *KnnSearchRequestByVector) GetAttrFilter() map[string]interface{} + func (o *KnnSearchRequestByVector) GetAttrFilterOk() (map[string]interface{}, bool) + func (o *KnnSearchRequestByVector) GetExpressions() map[string]string + func (o *KnnSearchRequestByVector) GetExpressionsOk() (*map[string]string, bool) + func (o *KnnSearchRequestByVector) GetField() string + func (o *KnnSearchRequestByVector) GetFieldOk() (*string, bool) + func (o *KnnSearchRequestByVector) GetFulltextFilter() map[string]interface{} + func (o *KnnSearchRequestByVector) GetFulltextFilterOk() (map[string]interface{}, bool) + func (o *KnnSearchRequestByVector) GetHighlight() Highlight + func (o *KnnSearchRequestByVector) GetHighlightOk() (*Highlight, bool) + func (o *KnnSearchRequestByVector) GetIndex() string + func (o *KnnSearchRequestByVector) GetIndexOk() (*string, bool) + func (o *KnnSearchRequestByVector) GetK() int32 + func (o *KnnSearchRequestByVector) GetKOk() (*int32, bool) + func (o *KnnSearchRequestByVector) GetLimit() int32 + func (o *KnnSearchRequestByVector) GetLimitOk() (*int32, bool) + func (o *KnnSearchRequestByVector) GetMaxMatches() int32 + func (o *KnnSearchRequestByVector) GetMaxMatchesOk() (*int32, bool) + func (o *KnnSearchRequestByVector) GetOffset() int32 + func (o *KnnSearchRequestByVector) GetOffsetOk() (*int32, bool) + func (o *KnnSearchRequestByVector) GetOptions() map[string]interface{} + func (o *KnnSearchRequestByVector) GetOptionsOk() (map[string]interface{}, bool) + func (o *KnnSearchRequestByVector) GetProfile() bool + func (o *KnnSearchRequestByVector) GetProfileOk() (*bool, bool) + func (o *KnnSearchRequestByVector) GetQueryVector() []float32 + func (o *KnnSearchRequestByVector) GetQueryVectorOk() ([]float32, bool) + func (o *KnnSearchRequestByVector) GetSort() []map[string]interface{} + func (o *KnnSearchRequestByVector) GetSortOk() ([]map[string]interface{}, bool) + func (o *KnnSearchRequestByVector) GetSource() map[string]interface{} + func (o *KnnSearchRequestByVector) GetSourceOk() (map[string]interface{}, bool) + func (o *KnnSearchRequestByVector) GetTrackScores() bool + func (o *KnnSearchRequestByVector) GetTrackScoresOk() (*bool, bool) + func (o *KnnSearchRequestByVector) HasAggs() bool + func (o *KnnSearchRequestByVector) HasAttrFilter() bool + func (o *KnnSearchRequestByVector) HasExpressions() bool + func (o *KnnSearchRequestByVector) HasFulltextFilter() bool + func (o *KnnSearchRequestByVector) HasHighlight() bool + func (o *KnnSearchRequestByVector) HasLimit() bool + func (o *KnnSearchRequestByVector) HasMaxMatches() bool + func (o *KnnSearchRequestByVector) HasOffset() bool + func (o *KnnSearchRequestByVector) HasOptions() bool + func (o *KnnSearchRequestByVector) HasProfile() bool + func (o *KnnSearchRequestByVector) HasSort() bool + func (o *KnnSearchRequestByVector) HasSource() bool + func (o *KnnSearchRequestByVector) HasTrackScores() bool + func (o *KnnSearchRequestByVector) SetAggs(v map[string]Aggregation) + func (o *KnnSearchRequestByVector) SetAttrFilter(v map[string]interface{}) + func (o *KnnSearchRequestByVector) SetExpressions(v map[string]string) + func (o *KnnSearchRequestByVector) SetField(v string) + func (o *KnnSearchRequestByVector) SetFulltextFilter(v map[string]interface{}) + func (o *KnnSearchRequestByVector) SetHighlight(v Highlight) + func (o *KnnSearchRequestByVector) SetIndex(v string) + func (o *KnnSearchRequestByVector) SetK(v int32) + func (o *KnnSearchRequestByVector) SetLimit(v int32) + func (o *KnnSearchRequestByVector) SetMaxMatches(v int32) + func (o *KnnSearchRequestByVector) SetOffset(v int32) + func (o *KnnSearchRequestByVector) SetOptions(v map[string]interface{}) + func (o *KnnSearchRequestByVector) SetProfile(v bool) + func (o *KnnSearchRequestByVector) SetQueryVector(v []float32) + func (o *KnnSearchRequestByVector) SetSort(v []map[string]interface{}) + func (o *KnnSearchRequestByVector) SetSource(v map[string]interface{}) + func (o *KnnSearchRequestByVector) SetTrackScores(v bool) + func (o *KnnSearchRequestByVector) UnmarshalJSON(data []byte) (err error) + func (o KnnSearchRequestByVector) MarshalJSON() ([]byte, error) + func (o KnnSearchRequestByVector) ToMap() (map[string]interface{}, error) + type MappedNullable interface + ToMap func() (map[string]interface{}, error) + type MatchFilter struct + QueryFields string + QueryString string + func NewMatchFilter(queryString string, queryFields string) *MatchFilter + func NewMatchFilterWithDefaults() *MatchFilter + func (o *MatchFilter) GetQueryFields() string + func (o *MatchFilter) GetQueryFieldsOk() (*string, bool) + func (o *MatchFilter) GetQueryString() string + func (o *MatchFilter) GetQueryStringOk() (*string, bool) + func (o *MatchFilter) SetQueryFields(v string) + func (o *MatchFilter) SetQueryString(v string) + func (o *MatchFilter) UnmarshalJSON(data []byte) (err error) + func (o MatchFilter) MarshalJSON() ([]byte, error) + func (o MatchFilter) ToMap() (map[string]interface{}, error) + type MatchOp struct + QueryInfo map[string]interface{} + func NewMatchOp(queryInfo map[string]interface{}) *MatchOp + func NewMatchOpWithDefaults() *MatchOp + func (o *MatchOp) GetQueryInfo() map[string]interface{} + func (o *MatchOp) GetQueryInfoOk() (map[string]interface{}, bool) + func (o *MatchOp) SetQueryInfo(v map[string]interface{}) + func (o *MatchOp) UnmarshalJSON(data []byte) (err error) + func (o MatchOp) MarshalJSON() ([]byte, error) + func (o MatchOp) ToMap() (map[string]interface{}, error) + type MatchOpFilter struct + Operator string + QueryFields string + QueryString string + func NewMatchOpFilter(queryString string, queryFields string, operator string) *MatchOpFilter + func NewMatchOpFilterWithDefaults() *MatchOpFilter + func (o *MatchOpFilter) GetOperator() string + func (o *MatchOpFilter) GetOperatorOk() (*string, bool) + func (o *MatchOpFilter) GetQueryFields() string + func (o *MatchOpFilter) GetQueryFieldsOk() (*string, bool) + func (o *MatchOpFilter) GetQueryString() string + func (o *MatchOpFilter) GetQueryStringOk() (*string, bool) + func (o *MatchOpFilter) SetOperator(v string) + func (o *MatchOpFilter) SetQueryFields(v string) + func (o *MatchOpFilter) SetQueryString(v string) + func (o *MatchOpFilter) UnmarshalJSON(data []byte) (err error) + func (o MatchOpFilter) MarshalJSON() ([]byte, error) + func (o MatchOpFilter) ToMap() (map[string]interface{}, error) + type MatchPhraseFilter struct + QueryFields string + QueryPhrase string + func NewMatchPhraseFilter(queryPhrase string, queryFields string) *MatchPhraseFilter + func NewMatchPhraseFilterWithDefaults() *MatchPhraseFilter + func (o *MatchPhraseFilter) GetQueryFields() string + func (o *MatchPhraseFilter) GetQueryFieldsOk() (*string, bool) + func (o *MatchPhraseFilter) GetQueryPhrase() string + func (o *MatchPhraseFilter) GetQueryPhraseOk() (*string, bool) + func (o *MatchPhraseFilter) SetQueryFields(v string) + func (o *MatchPhraseFilter) SetQueryPhrase(v string) + func (o *MatchPhraseFilter) UnmarshalJSON(data []byte) (err error) + func (o MatchPhraseFilter) MarshalJSON() ([]byte, error) + func (o MatchPhraseFilter) ToMap() (map[string]interface{}, error) + type NotFilterBoolean struct + FilterField string + FilterValue bool + Operation string + func NewNotFilterBoolean(filterField string, operation string, filterValue bool) *NotFilterBoolean + func NewNotFilterBooleanWithDefaults() *NotFilterBoolean + func (o *NotFilterBoolean) GetFilterField() string + func (o *NotFilterBoolean) GetFilterFieldOk() (*string, bool) + func (o *NotFilterBoolean) GetFilterValue() bool + func (o *NotFilterBoolean) GetFilterValueOk() (*bool, bool) + func (o *NotFilterBoolean) GetOperation() string + func (o *NotFilterBoolean) GetOperationOk() (*string, bool) + func (o *NotFilterBoolean) SetFilterField(v string) + func (o *NotFilterBoolean) SetFilterValue(v bool) + func (o *NotFilterBoolean) SetOperation(v string) + func (o *NotFilterBoolean) UnmarshalJSON(data []byte) (err error) + func (o NotFilterBoolean) MarshalJSON() ([]byte, error) + func (o NotFilterBoolean) ToMap() (map[string]interface{}, error) + type NotFilterNumber struct + FilterField string + FilterValue float32 + Operation string + func NewNotFilterNumber(filterField string, operation string, filterValue float32) *NotFilterNumber + func NewNotFilterNumberWithDefaults() *NotFilterNumber + func (o *NotFilterNumber) GetFilterField() string + func (o *NotFilterNumber) GetFilterFieldOk() (*string, bool) + func (o *NotFilterNumber) GetFilterValue() float32 + func (o *NotFilterNumber) GetFilterValueOk() (*float32, bool) + func (o *NotFilterNumber) GetOperation() string + func (o *NotFilterNumber) GetOperationOk() (*string, bool) + func (o *NotFilterNumber) SetFilterField(v string) + func (o *NotFilterNumber) SetFilterValue(v float32) + func (o *NotFilterNumber) SetOperation(v string) + func (o *NotFilterNumber) UnmarshalJSON(data []byte) (err error) + func (o NotFilterNumber) MarshalJSON() ([]byte, error) + func (o NotFilterNumber) ToMap() (map[string]interface{}, error) + type NotFilterString struct + FilterField string + FilterValue string + Operation string + func NewNotFilterString(filterField string, operation string, filterValue string) *NotFilterString + func NewNotFilterStringWithDefaults() *NotFilterString + func (o *NotFilterString) GetFilterField() string + func (o *NotFilterString) GetFilterFieldOk() (*string, bool) + func (o *NotFilterString) GetFilterValue() string + func (o *NotFilterString) GetFilterValueOk() (*string, bool) + func (o *NotFilterString) GetOperation() string + func (o *NotFilterString) GetOperationOk() (*string, bool) + func (o *NotFilterString) SetFilterField(v string) + func (o *NotFilterString) SetFilterValue(v string) + func (o *NotFilterString) SetOperation(v string) + func (o *NotFilterString) UnmarshalJSON(data []byte) (err error) + func (o NotFilterString) MarshalJSON() ([]byte, error) + func (o NotFilterString) ToMap() (map[string]interface{}, error) + type NullableAggregation struct + func NewNullableAggregation(val *Aggregation) *NullableAggregation + func (v *NullableAggregation) Set(val *Aggregation) + func (v *NullableAggregation) UnmarshalJSON(src []byte) error + func (v *NullableAggregation) Unset() + func (v NullableAggregation) Get() *Aggregation + func (v NullableAggregation) IsSet() bool + func (v NullableAggregation) MarshalJSON() ([]byte, error) + type NullableAggregationSortInnerValue struct + func NewNullableAggregationSortInnerValue(val *AggregationSortInnerValue) *NullableAggregationSortInnerValue + func (v *NullableAggregationSortInnerValue) Set(val *AggregationSortInnerValue) + func (v *NullableAggregationSortInnerValue) UnmarshalJSON(src []byte) error + func (v *NullableAggregationSortInnerValue) Unset() + func (v NullableAggregationSortInnerValue) Get() *AggregationSortInnerValue + func (v NullableAggregationSortInnerValue) IsSet() bool + func (v NullableAggregationSortInnerValue) MarshalJSON() ([]byte, error) + type NullableAggregationTerms struct + func NewNullableAggregationTerms(val *AggregationTerms) *NullableAggregationTerms + func (v *NullableAggregationTerms) Set(val *AggregationTerms) + func (v *NullableAggregationTerms) UnmarshalJSON(src []byte) error + func (v *NullableAggregationTerms) Unset() + func (v NullableAggregationTerms) Get() *AggregationTerms + func (v NullableAggregationTerms) IsSet() bool + func (v NullableAggregationTerms) MarshalJSON() ([]byte, error) + type NullableBool struct + func NewNullableBool(val *bool) *NullableBool + func (v *NullableBool) Set(val *bool) + func (v *NullableBool) UnmarshalJSON(src []byte) error + func (v *NullableBool) Unset() + func (v NullableBool) Get() *bool + func (v NullableBool) IsSet() bool + func (v NullableBool) MarshalJSON() ([]byte, error) + type NullableBoolFilter struct + func NewNullableBoolFilter(val *BoolFilter) *NullableBoolFilter + func (v *NullableBoolFilter) Set(val *BoolFilter) + func (v *NullableBoolFilter) UnmarshalJSON(src []byte) error + func (v *NullableBoolFilter) Unset() + func (v NullableBoolFilter) Get() *BoolFilter + func (v NullableBoolFilter) IsSet() bool + func (v NullableBoolFilter) MarshalJSON() ([]byte, error) + type NullableBulkResponse struct + func NewNullableBulkResponse(val *BulkResponse) *NullableBulkResponse + func (v *NullableBulkResponse) Set(val *BulkResponse) + func (v *NullableBulkResponse) UnmarshalJSON(src []byte) error + func (v *NullableBulkResponse) Unset() + func (v NullableBulkResponse) Get() *BulkResponse + func (v NullableBulkResponse) IsSet() bool + func (v NullableBulkResponse) MarshalJSON() ([]byte, error) + type NullableDeleteDocumentRequest struct + func NewNullableDeleteDocumentRequest(val *DeleteDocumentRequest) *NullableDeleteDocumentRequest + func (v *NullableDeleteDocumentRequest) Set(val *DeleteDocumentRequest) + func (v *NullableDeleteDocumentRequest) UnmarshalJSON(src []byte) error + func (v *NullableDeleteDocumentRequest) Unset() + func (v NullableDeleteDocumentRequest) Get() *DeleteDocumentRequest + func (v NullableDeleteDocumentRequest) IsSet() bool + func (v NullableDeleteDocumentRequest) MarshalJSON() ([]byte, error) + type NullableDeleteResponse struct + func NewNullableDeleteResponse(val *DeleteResponse) *NullableDeleteResponse + func (v *NullableDeleteResponse) Set(val *DeleteResponse) + func (v *NullableDeleteResponse) UnmarshalJSON(src []byte) error + func (v *NullableDeleteResponse) Unset() + func (v NullableDeleteResponse) Get() *DeleteResponse + func (v NullableDeleteResponse) IsSet() bool + func (v NullableDeleteResponse) MarshalJSON() ([]byte, error) + type NullableEqualsFilter struct + func NewNullableEqualsFilter(val *EqualsFilter) *NullableEqualsFilter + func (v *NullableEqualsFilter) Set(val *EqualsFilter) + func (v *NullableEqualsFilter) UnmarshalJSON(src []byte) error + func (v *NullableEqualsFilter) Unset() + func (v NullableEqualsFilter) Get() *EqualsFilter + func (v NullableEqualsFilter) IsSet() bool + func (v NullableEqualsFilter) MarshalJSON() ([]byte, error) + type NullableErrorResponse struct + func NewNullableErrorResponse(val *ErrorResponse) *NullableErrorResponse + func (v *NullableErrorResponse) Set(val *ErrorResponse) + func (v *NullableErrorResponse) UnmarshalJSON(src []byte) error + func (v *NullableErrorResponse) Unset() + func (v NullableErrorResponse) Get() *ErrorResponse + func (v NullableErrorResponse) IsSet() bool + func (v NullableErrorResponse) MarshalJSON() ([]byte, error) + type NullableErrorResponseString struct + func NewNullableErrorResponseString(val *ErrorResponseString) *NullableErrorResponseString + func (v *NullableErrorResponseString) Set(val *ErrorResponseString) + func (v *NullableErrorResponseString) UnmarshalJSON(src []byte) error + func (v *NullableErrorResponseString) Unset() + func (v NullableErrorResponseString) Get() *ErrorResponseString + func (v NullableErrorResponseString) IsSet() bool + func (v NullableErrorResponseString) MarshalJSON() ([]byte, error) + type NullableFacet struct + func NewNullableFacet(val *Facet) *NullableFacet + func (v *NullableFacet) Set(val *Facet) + func (v *NullableFacet) UnmarshalJSON(src []byte) error + func (v *NullableFacet) Unset() + func (v NullableFacet) Get() *Facet + func (v NullableFacet) IsSet() bool + func (v NullableFacet) MarshalJSON() ([]byte, error) + type NullableFilterBoolean struct + func NewNullableFilterBoolean(val *FilterBoolean) *NullableFilterBoolean + func (v *NullableFilterBoolean) Set(val *FilterBoolean) + func (v *NullableFilterBoolean) UnmarshalJSON(src []byte) error + func (v *NullableFilterBoolean) Unset() + func (v NullableFilterBoolean) Get() *FilterBoolean + func (v NullableFilterBoolean) IsSet() bool + func (v NullableFilterBoolean) MarshalJSON() ([]byte, error) + type NullableFilterNumber struct + func NewNullableFilterNumber(val *FilterNumber) *NullableFilterNumber + func (v *NullableFilterNumber) Set(val *FilterNumber) + func (v *NullableFilterNumber) UnmarshalJSON(src []byte) error + func (v *NullableFilterNumber) Unset() + func (v NullableFilterNumber) Get() *FilterNumber + func (v NullableFilterNumber) IsSet() bool + func (v NullableFilterNumber) MarshalJSON() ([]byte, error) + type NullableFilterString struct + func NewNullableFilterString(val *FilterString) *NullableFilterString + func (v *NullableFilterString) Set(val *FilterString) + func (v *NullableFilterString) UnmarshalJSON(src []byte) error + func (v *NullableFilterString) Unset() + func (v NullableFilterString) Get() *FilterString + func (v NullableFilterString) IsSet() bool + func (v NullableFilterString) MarshalJSON() ([]byte, error) + type NullableFloat32 struct + func NewNullableFloat32(val *float32) *NullableFloat32 + func (v *NullableFloat32) Set(val *float32) + func (v *NullableFloat32) UnmarshalJSON(src []byte) error + func (v *NullableFloat32) Unset() + func (v NullableFloat32) Get() *float32 + func (v NullableFloat32) IsSet() bool + func (v NullableFloat32) MarshalJSON() ([]byte, error) + type NullableFloat64 struct + func NewNullableFloat64(val *float64) *NullableFloat64 + func (v *NullableFloat64) Set(val *float64) + func (v *NullableFloat64) UnmarshalJSON(src []byte) error + func (v *NullableFloat64) Unset() + func (v NullableFloat64) Get() *float64 + func (v NullableFloat64) IsSet() bool + func (v NullableFloat64) MarshalJSON() ([]byte, error) + type NullableGeoDistanceFilter struct + func NewNullableGeoDistanceFilter(val *GeoDistanceFilter) *NullableGeoDistanceFilter + func (v *NullableGeoDistanceFilter) Set(val *GeoDistanceFilter) + func (v *NullableGeoDistanceFilter) UnmarshalJSON(src []byte) error + func (v *NullableGeoDistanceFilter) Unset() + func (v NullableGeoDistanceFilter) Get() *GeoDistanceFilter + func (v NullableGeoDistanceFilter) IsSet() bool + func (v NullableGeoDistanceFilter) MarshalJSON() ([]byte, error) + type NullableGeoDistanceFilterLocationAnchor struct + func NewNullableGeoDistanceFilterLocationAnchor(val *GeoDistanceFilterLocationAnchor) *NullableGeoDistanceFilterLocationAnchor + func (v *NullableGeoDistanceFilterLocationAnchor) Set(val *GeoDistanceFilterLocationAnchor) + func (v *NullableGeoDistanceFilterLocationAnchor) UnmarshalJSON(src []byte) error + func (v *NullableGeoDistanceFilterLocationAnchor) Unset() + func (v NullableGeoDistanceFilterLocationAnchor) Get() *GeoDistanceFilterLocationAnchor + func (v NullableGeoDistanceFilterLocationAnchor) IsSet() bool + func (v NullableGeoDistanceFilterLocationAnchor) MarshalJSON() ([]byte, error) + type NullableHighlight struct + func NewNullableHighlight(val *Highlight) *NullableHighlight + func (v *NullableHighlight) Set(val *Highlight) + func (v *NullableHighlight) UnmarshalJSON(src []byte) error + func (v *NullableHighlight) Unset() + func (v NullableHighlight) Get() *Highlight + func (v NullableHighlight) IsSet() bool + func (v NullableHighlight) MarshalJSON() ([]byte, error) + type NullableHighlightField struct + func NewNullableHighlightField(val *HighlightField) *NullableHighlightField + func (v *NullableHighlightField) Set(val *HighlightField) + func (v *NullableHighlightField) UnmarshalJSON(src []byte) error + func (v *NullableHighlightField) Unset() + func (v NullableHighlightField) Get() *HighlightField + func (v NullableHighlightField) IsSet() bool + func (v NullableHighlightField) MarshalJSON() ([]byte, error) + type NullableInFilter struct + func NewNullableInFilter(val *InFilter) *NullableInFilter + func (v *NullableInFilter) Set(val *InFilter) + func (v *NullableInFilter) UnmarshalJSON(src []byte) error + func (v *NullableInFilter) Unset() + func (v NullableInFilter) Get() *InFilter + func (v NullableInFilter) IsSet() bool + func (v NullableInFilter) MarshalJSON() ([]byte, error) + type NullableInsertDocumentRequest struct + func NewNullableInsertDocumentRequest(val *InsertDocumentRequest) *NullableInsertDocumentRequest + func (v *NullableInsertDocumentRequest) Set(val *InsertDocumentRequest) + func (v *NullableInsertDocumentRequest) UnmarshalJSON(src []byte) error + func (v *NullableInsertDocumentRequest) Unset() + func (v NullableInsertDocumentRequest) Get() *InsertDocumentRequest + func (v NullableInsertDocumentRequest) IsSet() bool + func (v NullableInsertDocumentRequest) MarshalJSON() ([]byte, error) + type NullableInt struct + func NewNullableInt(val *int) *NullableInt + func (v *NullableInt) Set(val *int) + func (v *NullableInt) UnmarshalJSON(src []byte) error + func (v *NullableInt) Unset() + func (v NullableInt) Get() *int + func (v NullableInt) IsSet() bool + func (v NullableInt) MarshalJSON() ([]byte, error) + type NullableInt32 struct + func NewNullableInt32(val *int32) *NullableInt32 + func (v *NullableInt32) Set(val *int32) + func (v *NullableInt32) UnmarshalJSON(src []byte) error + func (v *NullableInt32) Unset() + func (v NullableInt32) Get() *int32 + func (v NullableInt32) IsSet() bool + func (v NullableInt32) MarshalJSON() ([]byte, error) + type NullableInt64 struct + func NewNullableInt64(val *int64) *NullableInt64 + func (v *NullableInt64) Set(val *int64) + func (v *NullableInt64) UnmarshalJSON(src []byte) error + func (v *NullableInt64) Unset() + func (v NullableInt64) Get() *int64 + func (v NullableInt64) IsSet() bool + func (v NullableInt64) MarshalJSON() ([]byte, error) + type NullableKnnSearchRequestByDocId struct + func NewNullableKnnSearchRequestByDocId(val *KnnSearchRequestByDocId) *NullableKnnSearchRequestByDocId + func (v *NullableKnnSearchRequestByDocId) Set(val *KnnSearchRequestByDocId) + func (v *NullableKnnSearchRequestByDocId) UnmarshalJSON(src []byte) error + func (v *NullableKnnSearchRequestByDocId) Unset() + func (v NullableKnnSearchRequestByDocId) Get() *KnnSearchRequestByDocId + func (v NullableKnnSearchRequestByDocId) IsSet() bool + func (v NullableKnnSearchRequestByDocId) MarshalJSON() ([]byte, error) + type NullableKnnSearchRequestByVector struct + func NewNullableKnnSearchRequestByVector(val *KnnSearchRequestByVector) *NullableKnnSearchRequestByVector + func (v *NullableKnnSearchRequestByVector) Set(val *KnnSearchRequestByVector) + func (v *NullableKnnSearchRequestByVector) UnmarshalJSON(src []byte) error + func (v *NullableKnnSearchRequestByVector) Unset() + func (v NullableKnnSearchRequestByVector) Get() *KnnSearchRequestByVector + func (v NullableKnnSearchRequestByVector) IsSet() bool + func (v NullableKnnSearchRequestByVector) MarshalJSON() ([]byte, error) + type NullableMatchFilter struct + func NewNullableMatchFilter(val *MatchFilter) *NullableMatchFilter + func (v *NullableMatchFilter) Set(val *MatchFilter) + func (v *NullableMatchFilter) UnmarshalJSON(src []byte) error + func (v *NullableMatchFilter) Unset() + func (v NullableMatchFilter) Get() *MatchFilter + func (v NullableMatchFilter) IsSet() bool + func (v NullableMatchFilter) MarshalJSON() ([]byte, error) + type NullableMatchOp struct + func NewNullableMatchOp(val *MatchOp) *NullableMatchOp + func (v *NullableMatchOp) Set(val *MatchOp) + func (v *NullableMatchOp) UnmarshalJSON(src []byte) error + func (v *NullableMatchOp) Unset() + func (v NullableMatchOp) Get() *MatchOp + func (v NullableMatchOp) IsSet() bool + func (v NullableMatchOp) MarshalJSON() ([]byte, error) + type NullableMatchOpFilter struct + func NewNullableMatchOpFilter(val *MatchOpFilter) *NullableMatchOpFilter + func (v *NullableMatchOpFilter) Set(val *MatchOpFilter) + func (v *NullableMatchOpFilter) UnmarshalJSON(src []byte) error + func (v *NullableMatchOpFilter) Unset() + func (v NullableMatchOpFilter) Get() *MatchOpFilter + func (v NullableMatchOpFilter) IsSet() bool + func (v NullableMatchOpFilter) MarshalJSON() ([]byte, error) + type NullableMatchPhraseFilter struct + func NewNullableMatchPhraseFilter(val *MatchPhraseFilter) *NullableMatchPhraseFilter + func (v *NullableMatchPhraseFilter) Set(val *MatchPhraseFilter) + func (v *NullableMatchPhraseFilter) UnmarshalJSON(src []byte) error + func (v *NullableMatchPhraseFilter) Unset() + func (v NullableMatchPhraseFilter) Get() *MatchPhraseFilter + func (v NullableMatchPhraseFilter) IsSet() bool + func (v NullableMatchPhraseFilter) MarshalJSON() ([]byte, error) + type NullableNotFilterBoolean struct + func NewNullableNotFilterBoolean(val *NotFilterBoolean) *NullableNotFilterBoolean + func (v *NullableNotFilterBoolean) Set(val *NotFilterBoolean) + func (v *NullableNotFilterBoolean) UnmarshalJSON(src []byte) error + func (v *NullableNotFilterBoolean) Unset() + func (v NullableNotFilterBoolean) Get() *NotFilterBoolean + func (v NullableNotFilterBoolean) IsSet() bool + func (v NullableNotFilterBoolean) MarshalJSON() ([]byte, error) + type NullableNotFilterNumber struct + func NewNullableNotFilterNumber(val *NotFilterNumber) *NullableNotFilterNumber + func (v *NullableNotFilterNumber) Set(val *NotFilterNumber) + func (v *NullableNotFilterNumber) UnmarshalJSON(src []byte) error + func (v *NullableNotFilterNumber) Unset() + func (v NullableNotFilterNumber) Get() *NotFilterNumber + func (v NullableNotFilterNumber) IsSet() bool + func (v NullableNotFilterNumber) MarshalJSON() ([]byte, error) + type NullableNotFilterString struct + func NewNullableNotFilterString(val *NotFilterString) *NullableNotFilterString + func (v *NullableNotFilterString) Set(val *NotFilterString) + func (v *NullableNotFilterString) UnmarshalJSON(src []byte) error + func (v *NullableNotFilterString) Unset() + func (v NullableNotFilterString) Get() *NotFilterString + func (v NullableNotFilterString) IsSet() bool + func (v NullableNotFilterString) MarshalJSON() ([]byte, error) + type NullablePercolateRequest struct + func NewNullablePercolateRequest(val *PercolateRequest) *NullablePercolateRequest + func (v *NullablePercolateRequest) Set(val *PercolateRequest) + func (v *NullablePercolateRequest) UnmarshalJSON(src []byte) error + func (v *NullablePercolateRequest) Unset() + func (v NullablePercolateRequest) Get() *PercolateRequest + func (v NullablePercolateRequest) IsSet() bool + func (v NullablePercolateRequest) MarshalJSON() ([]byte, error) + type NullablePercolateRequestQuery struct + func NewNullablePercolateRequestQuery(val *PercolateRequestQuery) *NullablePercolateRequestQuery + func (v *NullablePercolateRequestQuery) Set(val *PercolateRequestQuery) + func (v *NullablePercolateRequestQuery) UnmarshalJSON(src []byte) error + func (v *NullablePercolateRequestQuery) Unset() + func (v NullablePercolateRequestQuery) Get() *PercolateRequestQuery + func (v NullablePercolateRequestQuery) IsSet() bool + func (v NullablePercolateRequestQuery) MarshalJSON() ([]byte, error) + type NullableQueryFilter struct + func NewNullableQueryFilter(val *QueryFilter) *NullableQueryFilter + func (v *NullableQueryFilter) Set(val *QueryFilter) + func (v *NullableQueryFilter) UnmarshalJSON(src []byte) error + func (v *NullableQueryFilter) Unset() + func (v NullableQueryFilter) Get() *QueryFilter + func (v NullableQueryFilter) IsSet() bool + func (v NullableQueryFilter) MarshalJSON() ([]byte, error) + type NullableRangeFilter struct + func NewNullableRangeFilter(val *RangeFilter) *NullableRangeFilter + func (v *NullableRangeFilter) Set(val *RangeFilter) + func (v *NullableRangeFilter) UnmarshalJSON(src []byte) error + func (v *NullableRangeFilter) Unset() + func (v NullableRangeFilter) Get() *RangeFilter + func (v NullableRangeFilter) IsSet() bool + func (v NullableRangeFilter) MarshalJSON() ([]byte, error) + type NullableSearchRequest struct + func NewNullableSearchRequest(val *SearchRequest) *NullableSearchRequest + func (v *NullableSearchRequest) Set(val *SearchRequest) + func (v *NullableSearchRequest) UnmarshalJSON(src []byte) error + func (v *NullableSearchRequest) Unset() + func (v NullableSearchRequest) Get() *SearchRequest + func (v NullableSearchRequest) IsSet() bool + func (v NullableSearchRequest) MarshalJSON() ([]byte, error) + type NullableSearchResponse struct + func NewNullableSearchResponse(val *SearchResponse) *NullableSearchResponse + func (v *NullableSearchResponse) Set(val *SearchResponse) + func (v *NullableSearchResponse) UnmarshalJSON(src []byte) error + func (v *NullableSearchResponse) Unset() + func (v NullableSearchResponse) Get() *SearchResponse + func (v NullableSearchResponse) IsSet() bool + func (v NullableSearchResponse) MarshalJSON() ([]byte, error) + type NullableSearchResponseHits struct + func NewNullableSearchResponseHits(val *SearchResponseHits) *NullableSearchResponseHits + func (v *NullableSearchResponseHits) Set(val *SearchResponseHits) + func (v *NullableSearchResponseHits) UnmarshalJSON(src []byte) error + func (v *NullableSearchResponseHits) Unset() + func (v NullableSearchResponseHits) Get() *SearchResponseHits + func (v NullableSearchResponseHits) IsSet() bool + func (v NullableSearchResponseHits) MarshalJSON() ([]byte, error) + type NullableSortMVA struct + func NewNullableSortMVA(val *SortMVA) *NullableSortMVA + func (v *NullableSortMVA) Set(val *SortMVA) + func (v *NullableSortMVA) UnmarshalJSON(src []byte) error + func (v *NullableSortMVA) Unset() + func (v NullableSortMVA) Get() *SortMVA + func (v NullableSortMVA) IsSet() bool + func (v NullableSortMVA) MarshalJSON() ([]byte, error) + type NullableSortMultiple struct + func NewNullableSortMultiple(val *SortMultiple) *NullableSortMultiple + func (v *NullableSortMultiple) Set(val *SortMultiple) + func (v *NullableSortMultiple) UnmarshalJSON(src []byte) error + func (v *NullableSortMultiple) Unset() + func (v NullableSortMultiple) Get() *SortMultiple + func (v NullableSortMultiple) IsSet() bool + func (v NullableSortMultiple) MarshalJSON() ([]byte, error) + type NullableSortOrder struct + func NewNullableSortOrder(val *SortOrder) *NullableSortOrder + func (v *NullableSortOrder) Set(val *SortOrder) + func (v *NullableSortOrder) UnmarshalJSON(src []byte) error + func (v *NullableSortOrder) Unset() + func (v NullableSortOrder) Get() *SortOrder + func (v NullableSortOrder) IsSet() bool + func (v NullableSortOrder) MarshalJSON() ([]byte, error) + type NullableSourceByRules struct + func NewNullableSourceByRules(val *SourceByRules) *NullableSourceByRules + func (v *NullableSourceByRules) Set(val *SourceByRules) + func (v *NullableSourceByRules) UnmarshalJSON(src []byte) error + func (v *NullableSourceByRules) Unset() + func (v NullableSourceByRules) Get() *SourceByRules + func (v NullableSourceByRules) IsSet() bool + func (v NullableSourceByRules) MarshalJSON() ([]byte, error) + type NullableSqlDefaultResponse struct + func NewNullableSqlDefaultResponse(val *SqlDefaultResponse) *NullableSqlDefaultResponse + func (v *NullableSqlDefaultResponse) Set(val *SqlDefaultResponse) + func (v *NullableSqlDefaultResponse) UnmarshalJSON(src []byte) error + func (v *NullableSqlDefaultResponse) Unset() + func (v NullableSqlDefaultResponse) Get() *SqlDefaultResponse + func (v NullableSqlDefaultResponse) IsSet() bool + func (v NullableSqlDefaultResponse) MarshalJSON() ([]byte, error) + type NullableString struct + func NewNullableString(val *string) *NullableString + func (v *NullableString) Set(val *string) + func (v *NullableString) UnmarshalJSON(src []byte) error + func (v *NullableString) Unset() + func (v NullableString) Get() *string + func (v NullableString) IsSet() bool + func (v NullableString) MarshalJSON() ([]byte, error) + type NullableSuccessResponse struct + func NewNullableSuccessResponse(val *SuccessResponse) *NullableSuccessResponse + func (v *NullableSuccessResponse) Set(val *SuccessResponse) + func (v *NullableSuccessResponse) UnmarshalJSON(src []byte) error + func (v *NullableSuccessResponse) Unset() + func (v NullableSuccessResponse) Get() *SuccessResponse + func (v NullableSuccessResponse) IsSet() bool + func (v NullableSuccessResponse) MarshalJSON() ([]byte, error) + type NullableTime struct + func NewNullableTime(val *time.Time) *NullableTime + func (v *NullableTime) Set(val *time.Time) + func (v *NullableTime) UnmarshalJSON(src []byte) error + func (v *NullableTime) Unset() + func (v NullableTime) Get() *time.Time + func (v NullableTime) IsSet() bool + func (v NullableTime) MarshalJSON() ([]byte, error) + type NullableUpdateDocumentRequest struct + func NewNullableUpdateDocumentRequest(val *UpdateDocumentRequest) *NullableUpdateDocumentRequest + func (v *NullableUpdateDocumentRequest) Set(val *UpdateDocumentRequest) + func (v *NullableUpdateDocumentRequest) UnmarshalJSON(src []byte) error + func (v *NullableUpdateDocumentRequest) Unset() + func (v NullableUpdateDocumentRequest) Get() *UpdateDocumentRequest + func (v NullableUpdateDocumentRequest) IsSet() bool + func (v NullableUpdateDocumentRequest) MarshalJSON() ([]byte, error) + type NullableUpdateResponse struct + func NewNullableUpdateResponse(val *UpdateResponse) *NullableUpdateResponse + func (v *NullableUpdateResponse) Set(val *UpdateResponse) + func (v *NullableUpdateResponse) UnmarshalJSON(src []byte) error + func (v *NullableUpdateResponse) Unset() + func (v NullableUpdateResponse) Get() *UpdateResponse + func (v NullableUpdateResponse) IsSet() bool + func (v NullableUpdateResponse) MarshalJSON() ([]byte, error) + type PercolateRequest struct + Query PercolateRequestQuery + func NewPercolateRequest(query PercolateRequestQuery) *PercolateRequest + func NewPercolateRequestWithDefaults() *PercolateRequest + func (o *PercolateRequest) GetQuery() PercolateRequestQuery + func (o *PercolateRequest) GetQueryOk() (*PercolateRequestQuery, bool) + func (o *PercolateRequest) SetQuery(v PercolateRequestQuery) + func (o *PercolateRequest) UnmarshalJSON(data []byte) (err error) + func (o PercolateRequest) MarshalJSON() ([]byte, error) + func (o PercolateRequest) ToMap() (map[string]interface{}, error) + type PercolateRequestQuery struct + AdditionalProperties map[string]interface{} + Percolate map[string]interface{} + func NewPercolateRequestQuery(percolate map[string]interface{}) *PercolateRequestQuery + func NewPercolateRequestQueryWithDefaults() *PercolateRequestQuery + func (o *PercolateRequestQuery) GetPercolate() map[string]interface{} + func (o *PercolateRequestQuery) GetPercolateOk() (map[string]interface{}, bool) + func (o *PercolateRequestQuery) SetPercolate(v map[string]interface{}) + func (o *PercolateRequestQuery) UnmarshalJSON(data []byte) (err error) + func (o PercolateRequestQuery) MarshalJSON() ([]byte, error) + func (o PercolateRequestQuery) ToMap() (map[string]interface{}, error) + type QueryFilter struct + QueryString string + func NewQueryFilter(queryString string) *QueryFilter + func NewQueryFilterWithDefaults() *QueryFilter + func (o *QueryFilter) GetQueryString() string + func (o *QueryFilter) GetQueryStringOk() (*string, bool) + func (o *QueryFilter) SetQueryString(v string) + func (o *QueryFilter) UnmarshalJSON(data []byte) (err error) + func (o QueryFilter) MarshalJSON() ([]byte, error) + func (o QueryFilter) ToMap() (map[string]interface{}, error) + type RangeFilter struct + Field string + Gt NullableFloat32 + Gte NullableFloat32 + Lt NullableFloat32 + Lte NullableFloat32 + func NewRangeFilter(field string) *RangeFilter + func NewRangeFilterWithDefaults() *RangeFilter + func (o *RangeFilter) GetField() string + func (o *RangeFilter) GetFieldOk() (*string, bool) + func (o *RangeFilter) GetGt() float32 + func (o *RangeFilter) GetGtOk() (*float32, bool) + func (o *RangeFilter) GetGte() float32 + func (o *RangeFilter) GetGteOk() (*float32, bool) + func (o *RangeFilter) GetLt() float32 + func (o *RangeFilter) GetLtOk() (*float32, bool) + func (o *RangeFilter) GetLte() float32 + func (o *RangeFilter) GetLteOk() (*float32, bool) + func (o *RangeFilter) HasGt() bool + func (o *RangeFilter) HasGte() bool + func (o *RangeFilter) HasLt() bool + func (o *RangeFilter) HasLte() bool + func (o *RangeFilter) SetField(v string) + func (o *RangeFilter) SetGt(v float32) + func (o *RangeFilter) SetGtNil() + func (o *RangeFilter) SetGte(v float32) + func (o *RangeFilter) SetGteNil() + func (o *RangeFilter) SetLt(v float32) + func (o *RangeFilter) SetLtNil() + func (o *RangeFilter) SetLte(v float32) + func (o *RangeFilter) SetLteNil() + func (o *RangeFilter) UnmarshalJSON(data []byte) (err error) + func (o *RangeFilter) UnsetGt() + func (o *RangeFilter) UnsetGte() + func (o *RangeFilter) UnsetLt() + func (o *RangeFilter) UnsetLte() + func (o RangeFilter) MarshalJSON() ([]byte, error) + func (o RangeFilter) ToMap() (map[string]interface{}, error) + type SearchAPIService service + func (a *SearchAPIService) Percolate(ctx context.Context, index string) ApiPercolateRequest + func (a *SearchAPIService) PercolateExecute(r ApiPercolateRequest) (*SearchResponse, *http.Response, error) + func (a *SearchAPIService) Search(ctx context.Context) ApiSearchRequest + func (a *SearchAPIService) SearchExecute(r ApiSearchRequest) (*SearchResponse, *http.Response, error) + type SearchRequest struct + Aggs *map[string]Aggregation + AttrFilter map[string]interface{} + Expressions *map[string]string + FulltextFilter map[string]interface{} + Highlight *Highlight + Index string + Limit *int32 + MaxMatches *int32 + Offset *int32 + Options map[string]interface{} + Profile *bool + Query map[string]interface{} + Sort []map[string]interface{} + Source map[string]interface{} + TrackScores *bool + func NewSearchRequest(index string) *SearchRequest + func NewSearchRequestWithDefaults() *SearchRequest + func (o *SearchRequest) GetAggs() map[string]Aggregation + func (o *SearchRequest) GetAggsOk() (*map[string]Aggregation, bool) + func (o *SearchRequest) GetAttrFilter() map[string]interface{} + func (o *SearchRequest) GetAttrFilterOk() (map[string]interface{}, bool) + func (o *SearchRequest) GetExpressions() map[string]string + func (o *SearchRequest) GetExpressionsOk() (*map[string]string, bool) + func (o *SearchRequest) GetFulltextFilter() map[string]interface{} + func (o *SearchRequest) GetFulltextFilterOk() (map[string]interface{}, bool) + func (o *SearchRequest) GetHighlight() Highlight + func (o *SearchRequest) GetHighlightOk() (*Highlight, bool) + func (o *SearchRequest) GetIndex() string + func (o *SearchRequest) GetIndexOk() (*string, bool) + func (o *SearchRequest) GetLimit() int32 + func (o *SearchRequest) GetLimitOk() (*int32, bool) + func (o *SearchRequest) GetMaxMatches() int32 + func (o *SearchRequest) GetMaxMatchesOk() (*int32, bool) + func (o *SearchRequest) GetOffset() int32 + func (o *SearchRequest) GetOffsetOk() (*int32, bool) + func (o *SearchRequest) GetOptions() map[string]interface{} + func (o *SearchRequest) GetOptionsOk() (map[string]interface{}, bool) + func (o *SearchRequest) GetProfile() bool + func (o *SearchRequest) GetProfileOk() (*bool, bool) + func (o *SearchRequest) GetQuery() map[string]interface{} + func (o *SearchRequest) GetQueryOk() (map[string]interface{}, bool) + func (o *SearchRequest) GetSort() []map[string]interface{} + func (o *SearchRequest) GetSortOk() ([]map[string]interface{}, bool) + func (o *SearchRequest) GetSource() map[string]interface{} + func (o *SearchRequest) GetSourceOk() (map[string]interface{}, bool) + func (o *SearchRequest) GetTrackScores() bool + func (o *SearchRequest) GetTrackScoresOk() (*bool, bool) + func (o *SearchRequest) HasAggs() bool + func (o *SearchRequest) HasAttrFilter() bool + func (o *SearchRequest) HasExpressions() bool + func (o *SearchRequest) HasFulltextFilter() bool + func (o *SearchRequest) HasHighlight() bool + func (o *SearchRequest) HasLimit() bool + func (o *SearchRequest) HasMaxMatches() bool + func (o *SearchRequest) HasOffset() bool + func (o *SearchRequest) HasOptions() bool + func (o *SearchRequest) HasProfile() bool + func (o *SearchRequest) HasQuery() bool + func (o *SearchRequest) HasSort() bool + func (o *SearchRequest) HasSource() bool + func (o *SearchRequest) HasTrackScores() bool + func (o *SearchRequest) SetAggs(v map[string]Aggregation) + func (o *SearchRequest) SetAttrFilter(v map[string]interface{}) + func (o *SearchRequest) SetExpressions(v map[string]string) + func (o *SearchRequest) SetFulltextFilter(v map[string]interface{}) + func (o *SearchRequest) SetHighlight(v Highlight) + func (o *SearchRequest) SetIndex(v string) + func (o *SearchRequest) SetLimit(v int32) + func (o *SearchRequest) SetMaxMatches(v int32) + func (o *SearchRequest) SetOffset(v int32) + func (o *SearchRequest) SetOptions(v map[string]interface{}) + func (o *SearchRequest) SetProfile(v bool) + func (o *SearchRequest) SetQuery(v map[string]interface{}) + func (o *SearchRequest) SetSort(v []map[string]interface{}) + func (o *SearchRequest) SetSource(v map[string]interface{}) + func (o *SearchRequest) SetTrackScores(v bool) + func (o *SearchRequest) UnmarshalJSON(data []byte) (err error) + func (o SearchRequest) MarshalJSON() ([]byte, error) + func (o SearchRequest) ToMap() (map[string]interface{}, error) + type SearchResponse struct + Aggregations map[string]interface{} + Hits *SearchResponseHits + Profile map[string]interface{} + TimedOut *bool + Took *int32 + Warning map[string]interface{} + func NewSearchResponse() *SearchResponse + func NewSearchResponseWithDefaults() *SearchResponse + func (o *SearchResponse) GetAggregations() map[string]interface{} + func (o *SearchResponse) GetAggregationsOk() (map[string]interface{}, bool) + func (o *SearchResponse) GetHits() SearchResponseHits + func (o *SearchResponse) GetHitsOk() (*SearchResponseHits, bool) + func (o *SearchResponse) GetProfile() map[string]interface{} + func (o *SearchResponse) GetProfileOk() (map[string]interface{}, bool) + func (o *SearchResponse) GetTimedOut() bool + func (o *SearchResponse) GetTimedOutOk() (*bool, bool) + func (o *SearchResponse) GetTook() int32 + func (o *SearchResponse) GetTookOk() (*int32, bool) + func (o *SearchResponse) GetWarning() map[string]interface{} + func (o *SearchResponse) GetWarningOk() (map[string]interface{}, bool) + func (o *SearchResponse) HasAggregations() bool + func (o *SearchResponse) HasHits() bool + func (o *SearchResponse) HasProfile() bool + func (o *SearchResponse) HasTimedOut() bool + func (o *SearchResponse) HasTook() bool + func (o *SearchResponse) HasWarning() bool + func (o *SearchResponse) SetAggregations(v map[string]interface{}) + func (o *SearchResponse) SetHits(v SearchResponseHits) + func (o *SearchResponse) SetProfile(v map[string]interface{}) + func (o *SearchResponse) SetTimedOut(v bool) + func (o *SearchResponse) SetTook(v int32) + func (o *SearchResponse) SetWarning(v map[string]interface{}) + func (o SearchResponse) MarshalJSON() ([]byte, error) + func (o SearchResponse) ToMap() (map[string]interface{}, error) + type SearchResponseHits struct + Hits []map[string]interface{} + MaxScore *int32 + Total *int32 + TotalRelation *string + func NewSearchResponseHits() *SearchResponseHits + func NewSearchResponseHitsWithDefaults() *SearchResponseHits + func (o *SearchResponseHits) GetHits() []map[string]interface{} + func (o *SearchResponseHits) GetHitsOk() ([]map[string]interface{}, bool) + func (o *SearchResponseHits) GetMaxScore() int32 + func (o *SearchResponseHits) GetMaxScoreOk() (*int32, bool) + func (o *SearchResponseHits) GetTotal() int32 + func (o *SearchResponseHits) GetTotalOk() (*int32, bool) + func (o *SearchResponseHits) GetTotalRelation() string + func (o *SearchResponseHits) GetTotalRelationOk() (*string, bool) + func (o *SearchResponseHits) HasHits() bool + func (o *SearchResponseHits) HasMaxScore() bool + func (o *SearchResponseHits) HasTotal() bool + func (o *SearchResponseHits) HasTotalRelation() bool + func (o *SearchResponseHits) SetHits(v []map[string]interface{}) + func (o *SearchResponseHits) SetMaxScore(v int32) + func (o *SearchResponseHits) SetTotal(v int32) + func (o *SearchResponseHits) SetTotalRelation(v string) + func (o SearchResponseHits) MarshalJSON() ([]byte, error) + func (o SearchResponseHits) ToMap() (map[string]interface{}, error) + type ServerConfiguration struct + Description string + URL string + Variables map[string]ServerVariable + type ServerConfigurations []ServerConfiguration + func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error) + type ServerVariable struct + DefaultValue string + Description string + EnumValues []string + type SortMVA struct + Attr string + Mode string + Order string + func NewSortMVA(attr string, order string, mode string) *SortMVA + func NewSortMVAWithDefaults() *SortMVA + func (o *SortMVA) GetAttr() string + func (o *SortMVA) GetAttrOk() (*string, bool) + func (o *SortMVA) GetMode() string + func (o *SortMVA) GetModeOk() (*string, bool) + func (o *SortMVA) GetOrder() string + func (o *SortMVA) GetOrderOk() (*string, bool) + func (o *SortMVA) SetAttr(v string) + func (o *SortMVA) SetMode(v string) + func (o *SortMVA) SetOrder(v string) + func (o *SortMVA) UnmarshalJSON(data []byte) (err error) + func (o SortMVA) MarshalJSON() ([]byte, error) + func (o SortMVA) ToMap() (map[string]interface{}, error) + type SortMultiple struct + Attrs map[string]interface{} + Replace bool + func NewSortMultiple(attrs map[string]interface{}, replace bool) *SortMultiple + func NewSortMultipleWithDefaults() *SortMultiple + func (o *SortMultiple) GetAttrs() map[string]interface{} + func (o *SortMultiple) GetAttrsOk() (map[string]interface{}, bool) + func (o *SortMultiple) GetReplace() bool + func (o *SortMultiple) GetReplaceOk() (*bool, bool) + func (o *SortMultiple) SetAttrs(v map[string]interface{}) + func (o *SortMultiple) SetReplace(v bool) + func (o *SortMultiple) UnmarshalJSON(data []byte) (err error) + func (o SortMultiple) MarshalJSON() ([]byte, error) + func (o SortMultiple) ToMap() (map[string]interface{}, error) + type SortOrder struct + Attr string + Order string + func NewSortOrder(attr string, order string) *SortOrder + func NewSortOrderWithDefaults() *SortOrder + func (o *SortOrder) GetAttr() string + func (o *SortOrder) GetAttrOk() (*string, bool) + func (o *SortOrder) GetOrder() string + func (o *SortOrder) GetOrderOk() (*string, bool) + func (o *SortOrder) SetAttr(v string) + func (o *SortOrder) SetOrder(v string) + func (o *SortOrder) UnmarshalJSON(data []byte) (err error) + func (o SortOrder) MarshalJSON() ([]byte, error) + func (o SortOrder) ToMap() (map[string]interface{}, error) + type SourceByRules struct + Excludes []string + Includes []string + func NewSourceByRules(includes []string, excludes []string) *SourceByRules + func NewSourceByRulesWithDefaults() *SourceByRules + func (o *SourceByRules) GetExcludes() []string + func (o *SourceByRules) GetExcludesOk() ([]string, bool) + func (o *SourceByRules) GetIncludes() []string + func (o *SourceByRules) GetIncludesOk() ([]string, bool) + func (o *SourceByRules) SetExcludes(v []string) + func (o *SourceByRules) SetIncludes(v []string) + func (o *SourceByRules) UnmarshalJSON(data []byte) (err error) + func (o SourceByRules) MarshalJSON() ([]byte, error) + func (o SourceByRules) ToMap() (map[string]interface{}, error) + type SqlDefaultResponse struct + ErrorResponse *ErrorResponse + ErrorResponseString *ErrorResponseString + func ErrorResponseAsSqlDefaultResponse(v *ErrorResponse) SqlDefaultResponse + func ErrorResponseStringAsSqlDefaultResponse(v *ErrorResponseString) SqlDefaultResponse + func (dst *SqlDefaultResponse) UnmarshalJSON(data []byte) error + func (obj *SqlDefaultResponse) GetActualInstance() interface{} + func (src SqlDefaultResponse) MarshalJSON() ([]byte, error) + type SuccessResponse struct + Created *bool + Found *bool + Id *int64 + Index *string + Result *string + func NewSuccessResponse() *SuccessResponse + func NewSuccessResponseWithDefaults() *SuccessResponse + func (o *SuccessResponse) GetCreated() bool + func (o *SuccessResponse) GetCreatedOk() (*bool, bool) + func (o *SuccessResponse) GetFound() bool + func (o *SuccessResponse) GetFoundOk() (*bool, bool) + func (o *SuccessResponse) GetId() int64 + func (o *SuccessResponse) GetIdOk() (*int64, bool) + func (o *SuccessResponse) GetIndex() string + func (o *SuccessResponse) GetIndexOk() (*string, bool) + func (o *SuccessResponse) GetResult() string + func (o *SuccessResponse) GetResultOk() (*string, bool) + func (o *SuccessResponse) HasCreated() bool + func (o *SuccessResponse) HasFound() bool + func (o *SuccessResponse) HasId() bool + func (o *SuccessResponse) HasIndex() bool + func (o *SuccessResponse) HasResult() bool + func (o *SuccessResponse) SetCreated(v bool) + func (o *SuccessResponse) SetFound(v bool) + func (o *SuccessResponse) SetId(v int64) + func (o *SuccessResponse) SetIndex(v string) + func (o *SuccessResponse) SetResult(v string) + func (o SuccessResponse) MarshalJSON() ([]byte, error) + func (o SuccessResponse) ToMap() (map[string]interface{}, error) + type UpdateDocumentRequest struct + Doc map[string]interface{} + Id *int64 + Index string + Query map[string]interface{} + func NewUpdateDocumentRequest(index string, doc map[string]interface{}) *UpdateDocumentRequest + func NewUpdateDocumentRequestWithDefaults() *UpdateDocumentRequest + func (o *UpdateDocumentRequest) GetDoc() map[string]interface{} + func (o *UpdateDocumentRequest) GetDocOk() (map[string]interface{}, bool) + func (o *UpdateDocumentRequest) GetId() int64 + func (o *UpdateDocumentRequest) GetIdOk() (*int64, bool) + func (o *UpdateDocumentRequest) GetIndex() string + func (o *UpdateDocumentRequest) GetIndexOk() (*string, bool) + func (o *UpdateDocumentRequest) GetQuery() map[string]interface{} + func (o *UpdateDocumentRequest) GetQueryOk() (map[string]interface{}, bool) + func (o *UpdateDocumentRequest) HasId() bool + func (o *UpdateDocumentRequest) HasQuery() bool + func (o *UpdateDocumentRequest) SetDoc(v map[string]interface{}) + func (o *UpdateDocumentRequest) SetId(v int64) + func (o *UpdateDocumentRequest) SetIndex(v string) + func (o *UpdateDocumentRequest) SetQuery(v map[string]interface{}) + func (o *UpdateDocumentRequest) UnmarshalJSON(data []byte) (err error) + func (o UpdateDocumentRequest) MarshalJSON() ([]byte, error) + func (o UpdateDocumentRequest) ToMap() (map[string]interface{}, error) + type UpdateResponse struct + Id *int64 + Index *string + Result *string + Updated *int32 + func NewUpdateResponse() *UpdateResponse + func NewUpdateResponseWithDefaults() *UpdateResponse + func (o *UpdateResponse) GetId() int64 + func (o *UpdateResponse) GetIdOk() (*int64, bool) + func (o *UpdateResponse) GetIndex() string + func (o *UpdateResponse) GetIndexOk() (*string, bool) + func (o *UpdateResponse) GetResult() string + func (o *UpdateResponse) GetResultOk() (*string, bool) + func (o *UpdateResponse) GetUpdated() int32 + func (o *UpdateResponse) GetUpdatedOk() (*int32, bool) + func (o *UpdateResponse) HasId() bool + func (o *UpdateResponse) HasIndex() bool + func (o *UpdateResponse) HasResult() bool + func (o *UpdateResponse) HasUpdated() bool + func (o *UpdateResponse) SetId(v int64) + func (o *UpdateResponse) SetIndex(v string) + func (o *UpdateResponse) SetResult(v string) + func (o *UpdateResponse) SetUpdated(v int32) + func (o UpdateResponse) MarshalJSON() ([]byte, error) + func (o UpdateResponse) ToMap() (map[string]interface{}, error) + type UtilsAPIService service + func (a *UtilsAPIService) Sql(ctx context.Context) ApiSqlRequest + func (a *UtilsAPIService) SqlExecute(r ApiSqlRequest) ([]map[string]interface{}, *http.Response, error)