Documentation ¶
Index ¶
- Variables
- func CacheExpires(r *http.Response) time.Time
- 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
- type APIKey
- type APIResponse
- type AggregationHistogramBound
- func (o *AggregationHistogramBound) GetMax() float32
- func (o *AggregationHistogramBound) GetMaxOk() (*float32, bool)
- func (o *AggregationHistogramBound) GetMin() float32
- func (o *AggregationHistogramBound) GetMinOk() (*float32, bool)
- func (o *AggregationHistogramBound) HasMax() bool
- func (o *AggregationHistogramBound) HasMin() bool
- func (o AggregationHistogramBound) MarshalJSON() ([]byte, error)
- func (o *AggregationHistogramBound) SetMax(v float32)
- func (o *AggregationHistogramBound) SetMin(v float32)
- type AuthLoginRequest
- func (o *AuthLoginRequest) GetId() string
- func (o *AuthLoginRequest) GetIdOk() (*string, bool)
- func (o *AuthLoginRequest) GetPassword() string
- func (o *AuthLoginRequest) GetPasswordOk() (*string, bool)
- func (o *AuthLoginRequest) HasId() bool
- func (o *AuthLoginRequest) HasPassword() bool
- func (o AuthLoginRequest) MarshalJSON() ([]byte, error)
- func (o *AuthLoginRequest) SetId(v string)
- func (o *AuthLoginRequest) SetPassword(v string)
- type AuthLoginResponse
- func (o *AuthLoginResponse) GetUser() AuthLoginUser
- func (o *AuthLoginResponse) GetUserOk() (*AuthLoginUser, bool)
- func (o *AuthLoginResponse) GetValidated() bool
- func (o *AuthLoginResponse) GetValidatedOk() (*bool, bool)
- func (o *AuthLoginResponse) HasUser() bool
- func (o *AuthLoginResponse) HasValidated() bool
- func (o AuthLoginResponse) MarshalJSON() ([]byte, error)
- func (o *AuthLoginResponse) SetUser(v AuthLoginUser)
- func (o *AuthLoginResponse) SetValidated(v bool)
- type AuthLoginUser
- func (o *AuthLoginUser) GetId() string
- func (o *AuthLoginUser) GetIdOk() (*string, bool)
- func (o *AuthLoginUser) GetName() string
- func (o *AuthLoginUser) GetNameOk() (*string, bool)
- func (o *AuthLoginUser) GetRole() string
- func (o *AuthLoginUser) GetRoleOk() (*string, bool)
- func (o *AuthLoginUser) HasId() bool
- func (o *AuthLoginUser) HasName() bool
- func (o *AuthLoginUser) HasRole() bool
- func (o AuthLoginUser) MarshalJSON() ([]byte, error)
- func (o *AuthLoginUser) SetId(v string)
- func (o *AuthLoginUser) SetName(v string)
- func (o *AuthLoginUser) SetRole(v string)
- type BasicAuth
- type Configuration
- type Default
- type DefaultHealthzRequest
- type DefaultService
- func (a *DefaultService) Healthz(ctx context.Context) DefaultHealthzRequest
- func (a *DefaultService) HealthzExecute(r DefaultHealthzRequest) (*MetaHealthzResponse, *http.Response, error)
- func (a *DefaultService) Version(ctx context.Context) DefaultVersionRequest
- func (a *DefaultService) VersionExecute(r DefaultVersionRequest) (*MetaVersionResponse, *http.Response, error)
- type DefaultVersionRequest
- type Document
- type DocumentBulkRequest
- type DocumentBulkv2Request
- type DocumentDeleteRequest
- type DocumentESBulkRequest
- type DocumentIndexRequest
- type DocumentIndexWithIDRequest
- type DocumentMultiRequest
- type DocumentService
- func (a *DocumentService) Bulk(ctx context.Context) DocumentBulkRequest
- func (a *DocumentService) BulkExecute(r DocumentBulkRequest) (*MetaHTTPResponseRecordCount, *http.Response, error)
- func (a *DocumentService) Bulkv2(ctx context.Context) DocumentBulkv2Request
- func (a *DocumentService) Bulkv2Execute(r DocumentBulkv2Request) (*MetaHTTPResponseRecordCount, *http.Response, error)
- func (a *DocumentService) Delete(ctx context.Context, index string, id string) DocumentDeleteRequest
- func (a *DocumentService) DeleteExecute(r DocumentDeleteRequest) (*MetaHTTPResponseDocument, *http.Response, error)
- func (a *DocumentService) ESBulk(ctx context.Context) DocumentESBulkRequest
- func (a *DocumentService) ESBulkExecute(r DocumentESBulkRequest) (map[string]interface{}, *http.Response, error)
- func (a *DocumentService) Index(ctx context.Context, index string) DocumentIndexRequest
- func (a *DocumentService) IndexExecute(r DocumentIndexRequest) (*MetaHTTPResponseID, *http.Response, error)
- func (a *DocumentService) IndexWithID(ctx context.Context, index string, id string) DocumentIndexWithIDRequest
- func (a *DocumentService) IndexWithIDExecute(r DocumentIndexWithIDRequest) (*MetaHTTPResponseID, *http.Response, error)
- func (a *DocumentService) Multi(ctx context.Context, index string) DocumentMultiRequest
- func (a *DocumentService) MultiExecute(r DocumentMultiRequest) (*MetaHTTPResponseRecordCount, *http.Response, error)
- func (a *DocumentService) Update(ctx context.Context, index string, id string) DocumentUpdateRequest
- func (a *DocumentService) UpdateExecute(r DocumentUpdateRequest) (*MetaHTTPResponseID, *http.Response, error)
- type DocumentUpdateRequest
- type GenericOpenAPIError
- type Index
- type IndexAddOrRemoveESAliasRequest
- type IndexAnalyzeIndexRequest
- type IndexAnalyzeRequest
- type IndexAnalyzeResponse
- func (o *IndexAnalyzeResponse) GetTokens() []IndexAnalyzeResponseToken
- func (o *IndexAnalyzeResponse) GetTokensOk() ([]IndexAnalyzeResponseToken, bool)
- func (o *IndexAnalyzeResponse) HasTokens() bool
- func (o IndexAnalyzeResponse) MarshalJSON() ([]byte, error)
- func (o *IndexAnalyzeResponse) SetTokens(v []IndexAnalyzeResponseToken)
- type IndexAnalyzeResponseToken
- func (o *IndexAnalyzeResponseToken) GetEndOffset() int32
- func (o *IndexAnalyzeResponseToken) GetEndOffsetOk() (*int32, bool)
- func (o *IndexAnalyzeResponseToken) GetKeyword() bool
- func (o *IndexAnalyzeResponseToken) GetKeywordOk() (*bool, bool)
- func (o *IndexAnalyzeResponseToken) GetPosition() int32
- func (o *IndexAnalyzeResponseToken) GetPositionOk() (*int32, bool)
- func (o *IndexAnalyzeResponseToken) GetStartOffset() int32
- func (o *IndexAnalyzeResponseToken) GetStartOffsetOk() (*int32, bool)
- func (o *IndexAnalyzeResponseToken) GetToken() string
- func (o *IndexAnalyzeResponseToken) GetTokenOk() (*string, bool)
- func (o *IndexAnalyzeResponseToken) GetType() string
- func (o *IndexAnalyzeResponseToken) GetTypeOk() (*string, bool)
- func (o *IndexAnalyzeResponseToken) HasEndOffset() bool
- func (o *IndexAnalyzeResponseToken) HasKeyword() bool
- func (o *IndexAnalyzeResponseToken) HasPosition() bool
- func (o *IndexAnalyzeResponseToken) HasStartOffset() bool
- func (o *IndexAnalyzeResponseToken) HasToken() bool
- func (o *IndexAnalyzeResponseToken) HasType() bool
- func (o IndexAnalyzeResponseToken) MarshalJSON() ([]byte, error)
- func (o *IndexAnalyzeResponseToken) SetEndOffset(v int32)
- func (o *IndexAnalyzeResponseToken) SetKeyword(v bool)
- func (o *IndexAnalyzeResponseToken) SetPosition(v int32)
- func (o *IndexAnalyzeResponseToken) SetStartOffset(v int32)
- func (o *IndexAnalyzeResponseToken) SetToken(v string)
- func (o *IndexAnalyzeResponseToken) SetType(v string)
- type IndexCreateRequest
- type IndexCreateTemplateRequest
- type IndexDeleteRequest
- type IndexDeleteTemplateRequest
- type IndexESCreateIndexRequest
- type IndexESGetMappingRequest
- type IndexEsExistsRequest
- type IndexExistsRequest
- type IndexGetESAliasesRequest
- type IndexGetIndexRequest
- type IndexGetMappingRequest
- type IndexGetSettingsRequest
- type IndexGetTemplateRequest
- type IndexIndexListResponse
- func (o *IndexIndexListResponse) GetList() []map[string]interface{}
- func (o *IndexIndexListResponse) GetListOk() ([]map[string]interface{}, bool)
- func (o *IndexIndexListResponse) GetPage() MetaPage
- func (o *IndexIndexListResponse) GetPageOk() (*MetaPage, bool)
- func (o *IndexIndexListResponse) HasList() bool
- func (o *IndexIndexListResponse) HasPage() bool
- func (o IndexIndexListResponse) MarshalJSON() ([]byte, error)
- func (o *IndexIndexListResponse) SetList(v []map[string]interface{})
- func (o *IndexIndexListResponse) SetPage(v MetaPage)
- type IndexIndexNameListRequest
- type IndexListRequest
- func (r IndexListRequest) Desc(desc bool) IndexListRequest
- func (r IndexListRequest) Execute() (*IndexIndexListResponse, *http.Response, error)
- func (r IndexListRequest) Name(name string) IndexListRequest
- func (r IndexListRequest) PageNum(pageNum int32) IndexListRequest
- func (r IndexListRequest) PageSize(pageSize int32) IndexListRequest
- func (r IndexListRequest) SortBy(sortBy string) IndexListRequest
- type IndexListTemplatesRequest
- type IndexRefreshRequest
- type IndexService
- func (a *IndexService) AddOrRemoveESAlias(ctx context.Context) IndexAddOrRemoveESAliasRequest
- func (a *IndexService) AddOrRemoveESAliasExecute(r IndexAddOrRemoveESAliasRequest) (map[string]interface{}, *http.Response, error)
- func (a *IndexService) Analyze(ctx context.Context) IndexAnalyzeRequest
- func (a *IndexService) AnalyzeExecute(r IndexAnalyzeRequest) (*IndexAnalyzeResponse, *http.Response, error)
- func (a *IndexService) AnalyzeIndex(ctx context.Context, index string) IndexAnalyzeIndexRequest
- func (a *IndexService) AnalyzeIndexExecute(r IndexAnalyzeIndexRequest) (*IndexAnalyzeResponse, *http.Response, error)
- func (a *IndexService) Create(ctx context.Context) IndexCreateRequest
- func (a *IndexService) CreateExecute(r IndexCreateRequest) (*MetaHTTPResponseIndex, *http.Response, error)
- func (a *IndexService) CreateTemplate(ctx context.Context) IndexCreateTemplateRequest
- func (a *IndexService) CreateTemplateExecute(r IndexCreateTemplateRequest) (*MetaHTTPResponseTemplate, *http.Response, error)
- func (a *IndexService) Delete(ctx context.Context, index string) IndexDeleteRequest
- func (a *IndexService) DeleteExecute(r IndexDeleteRequest) (*MetaHTTPResponseIndex, *http.Response, error)
- func (a *IndexService) DeleteTemplate(ctx context.Context, name string) IndexDeleteTemplateRequest
- func (a *IndexService) DeleteTemplateExecute(r IndexDeleteTemplateRequest) (*MetaHTTPResponse, *http.Response, error)
- func (a *IndexService) ESCreateIndex(ctx context.Context, index string) IndexESCreateIndexRequest
- func (a *IndexService) ESCreateIndexExecute(r IndexESCreateIndexRequest) (map[string]interface{}, *http.Response, error)
- func (a *IndexService) ESGetMapping(ctx context.Context, index string) IndexESGetMappingRequest
- func (a *IndexService) ESGetMappingExecute(r IndexESGetMappingRequest) (map[string]interface{}, *http.Response, error)
- func (a *IndexService) EsExists(ctx context.Context, index string) IndexEsExistsRequest
- func (a *IndexService) EsExistsExecute(r IndexEsExistsRequest) (*MetaHTTPResponse, *http.Response, error)
- func (a *IndexService) Exists(ctx context.Context, index string) IndexExistsRequest
- func (a *IndexService) ExistsExecute(r IndexExistsRequest) (*MetaHTTPResponse, *http.Response, error)
- func (a *IndexService) GetESAliases(ctx context.Context, target string, targetAlias string) IndexGetESAliasesRequest
- func (a *IndexService) GetESAliasesExecute(r IndexGetESAliasesRequest) (map[string]interface{}, *http.Response, error)
- func (a *IndexService) GetIndex(ctx context.Context, index string) IndexGetIndexRequest
- func (a *IndexService) GetIndexExecute(r IndexGetIndexRequest) (map[string]interface{}, *http.Response, error)
- func (a *IndexService) GetMapping(ctx context.Context, index string) IndexGetMappingRequest
- func (a *IndexService) GetMappingExecute(r IndexGetMappingRequest) (map[string]interface{}, *http.Response, error)
- func (a *IndexService) GetSettings(ctx context.Context, index string) IndexGetSettingsRequest
- func (a *IndexService) GetSettingsExecute(r IndexGetSettingsRequest) (map[string]interface{}, *http.Response, error)
- func (a *IndexService) GetTemplate(ctx context.Context, name string) IndexGetTemplateRequest
- func (a *IndexService) GetTemplateExecute(r IndexGetTemplateRequest) (*MetaIndexTemplate, *http.Response, error)
- func (a *IndexService) IndexNameList(ctx context.Context) IndexIndexNameListRequest
- func (a *IndexService) IndexNameListExecute(r IndexIndexNameListRequest) ([]string, *http.Response, error)
- func (a *IndexService) List(ctx context.Context) IndexListRequest
- func (a *IndexService) ListExecute(r IndexListRequest) (*IndexIndexListResponse, *http.Response, error)
- func (a *IndexService) ListTemplates(ctx context.Context) IndexListTemplatesRequest
- func (a *IndexService) ListTemplatesExecute(r IndexListTemplatesRequest) ([]MetaTemplate, *http.Response, error)
- func (a *IndexService) Refresh(ctx context.Context, index string) IndexRefreshRequest
- func (a *IndexService) RefreshExecute(r IndexRefreshRequest) (*MetaHTTPResponse, *http.Response, error)
- func (a *IndexService) SetMapping(ctx context.Context, index string) IndexSetMappingRequest
- func (a *IndexService) SetMappingExecute(r IndexSetMappingRequest) (*MetaHTTPResponse, *http.Response, error)
- func (a *IndexService) SetSettings(ctx context.Context, index string) IndexSetSettingsRequest
- func (a *IndexService) SetSettingsExecute(r IndexSetSettingsRequest) (*MetaHTTPResponse, *http.Response, error)
- func (a *IndexService) UpdateTemplate(ctx context.Context, name string) IndexUpdateTemplateRequest
- func (a *IndexService) UpdateTemplateExecute(r IndexUpdateTemplateRequest) (*MetaHTTPResponseTemplate, *http.Response, error)
- type IndexSetMappingRequest
- type IndexSetSettingsRequest
- type IndexUpdateTemplateRequest
- type MetaAggregationAutoDateHistogram
- func (o *MetaAggregationAutoDateHistogram) GetBuckets() int32
- func (o *MetaAggregationAutoDateHistogram) GetBucketsOk() (*int32, bool)
- func (o *MetaAggregationAutoDateHistogram) GetField() string
- func (o *MetaAggregationAutoDateHistogram) GetFieldOk() (*string, bool)
- func (o *MetaAggregationAutoDateHistogram) GetFormat() string
- func (o *MetaAggregationAutoDateHistogram) GetFormatOk() (*string, bool)
- func (o *MetaAggregationAutoDateHistogram) GetKeyed() bool
- func (o *MetaAggregationAutoDateHistogram) GetKeyedOk() (*bool, bool)
- func (o *MetaAggregationAutoDateHistogram) GetMinimumInterval() string
- func (o *MetaAggregationAutoDateHistogram) GetMinimumIntervalOk() (*string, bool)
- func (o *MetaAggregationAutoDateHistogram) GetTimeZone() string
- func (o *MetaAggregationAutoDateHistogram) GetTimeZoneOk() (*string, bool)
- func (o *MetaAggregationAutoDateHistogram) HasBuckets() bool
- func (o *MetaAggregationAutoDateHistogram) HasField() bool
- func (o *MetaAggregationAutoDateHistogram) HasFormat() bool
- func (o *MetaAggregationAutoDateHistogram) HasKeyed() bool
- func (o *MetaAggregationAutoDateHistogram) HasMinimumInterval() bool
- func (o *MetaAggregationAutoDateHistogram) HasTimeZone() bool
- func (o MetaAggregationAutoDateHistogram) MarshalJSON() ([]byte, error)
- func (o *MetaAggregationAutoDateHistogram) SetBuckets(v int32)
- func (o *MetaAggregationAutoDateHistogram) SetField(v string)
- func (o *MetaAggregationAutoDateHistogram) SetFormat(v string)
- func (o *MetaAggregationAutoDateHistogram) SetKeyed(v bool)
- func (o *MetaAggregationAutoDateHistogram) SetMinimumInterval(v string)
- func (o *MetaAggregationAutoDateHistogram) SetTimeZone(v string)
- type MetaAggregationDateHistogram
- func (o *MetaAggregationDateHistogram) GetCalendarInterval() string
- func (o *MetaAggregationDateHistogram) GetCalendarIntervalOk() (*string, bool)
- func (o *MetaAggregationDateHistogram) GetExtendedBounds() AggregationHistogramBound
- func (o *MetaAggregationDateHistogram) GetExtendedBoundsOk() (*AggregationHistogramBound, bool)
- func (o *MetaAggregationDateHistogram) GetField() string
- func (o *MetaAggregationDateHistogram) GetFieldOk() (*string, bool)
- func (o *MetaAggregationDateHistogram) GetFixedInterval() string
- func (o *MetaAggregationDateHistogram) GetFixedIntervalOk() (*string, bool)
- func (o *MetaAggregationDateHistogram) GetFormat() string
- func (o *MetaAggregationDateHistogram) GetFormatOk() (*string, bool)
- func (o *MetaAggregationDateHistogram) GetHardBounds() AggregationHistogramBound
- func (o *MetaAggregationDateHistogram) GetHardBoundsOk() (*AggregationHistogramBound, bool)
- func (o *MetaAggregationDateHistogram) GetInterval() string
- func (o *MetaAggregationDateHistogram) GetIntervalOk() (*string, bool)
- func (o *MetaAggregationDateHistogram) GetKeyed() bool
- func (o *MetaAggregationDateHistogram) GetKeyedOk() (*bool, bool)
- func (o *MetaAggregationDateHistogram) GetMinDocCount() int32
- func (o *MetaAggregationDateHistogram) GetMinDocCountOk() (*int32, bool)
- func (o *MetaAggregationDateHistogram) GetSize() int32
- func (o *MetaAggregationDateHistogram) GetSizeOk() (*int32, bool)
- func (o *MetaAggregationDateHistogram) GetTimeZone() string
- func (o *MetaAggregationDateHistogram) GetTimeZoneOk() (*string, bool)
- func (o *MetaAggregationDateHistogram) HasCalendarInterval() bool
- func (o *MetaAggregationDateHistogram) HasExtendedBounds() bool
- func (o *MetaAggregationDateHistogram) HasField() bool
- func (o *MetaAggregationDateHistogram) HasFixedInterval() bool
- func (o *MetaAggregationDateHistogram) HasFormat() bool
- func (o *MetaAggregationDateHistogram) HasHardBounds() bool
- func (o *MetaAggregationDateHistogram) HasInterval() bool
- func (o *MetaAggregationDateHistogram) HasKeyed() bool
- func (o *MetaAggregationDateHistogram) HasMinDocCount() bool
- func (o *MetaAggregationDateHistogram) HasSize() bool
- func (o *MetaAggregationDateHistogram) HasTimeZone() bool
- func (o MetaAggregationDateHistogram) MarshalJSON() ([]byte, error)
- func (o *MetaAggregationDateHistogram) SetCalendarInterval(v string)
- func (o *MetaAggregationDateHistogram) SetExtendedBounds(v AggregationHistogramBound)
- func (o *MetaAggregationDateHistogram) SetField(v string)
- func (o *MetaAggregationDateHistogram) SetFixedInterval(v string)
- func (o *MetaAggregationDateHistogram) SetFormat(v string)
- func (o *MetaAggregationDateHistogram) SetHardBounds(v AggregationHistogramBound)
- func (o *MetaAggregationDateHistogram) SetInterval(v string)
- func (o *MetaAggregationDateHistogram) SetKeyed(v bool)
- func (o *MetaAggregationDateHistogram) SetMinDocCount(v int32)
- func (o *MetaAggregationDateHistogram) SetSize(v int32)
- func (o *MetaAggregationDateHistogram) SetTimeZone(v string)
- type MetaAggregationDateRange
- func (o *MetaAggregationDateRange) GetField() string
- func (o *MetaAggregationDateRange) GetFieldOk() (*string, bool)
- func (o *MetaAggregationDateRange) GetFormat() string
- func (o *MetaAggregationDateRange) GetFormatOk() (*string, bool)
- func (o *MetaAggregationDateRange) GetKeyed() bool
- func (o *MetaAggregationDateRange) GetKeyedOk() (*bool, bool)
- func (o *MetaAggregationDateRange) GetRanges() []MetaDateRange
- func (o *MetaAggregationDateRange) GetRangesOk() ([]MetaDateRange, bool)
- func (o *MetaAggregationDateRange) GetTimeZone() string
- func (o *MetaAggregationDateRange) GetTimeZoneOk() (*string, bool)
- func (o *MetaAggregationDateRange) HasField() bool
- func (o *MetaAggregationDateRange) HasFormat() bool
- func (o *MetaAggregationDateRange) HasKeyed() bool
- func (o *MetaAggregationDateRange) HasRanges() bool
- func (o *MetaAggregationDateRange) HasTimeZone() bool
- func (o MetaAggregationDateRange) MarshalJSON() ([]byte, error)
- func (o *MetaAggregationDateRange) SetField(v string)
- func (o *MetaAggregationDateRange) SetFormat(v string)
- func (o *MetaAggregationDateRange) SetKeyed(v bool)
- func (o *MetaAggregationDateRange) SetRanges(v []MetaDateRange)
- func (o *MetaAggregationDateRange) SetTimeZone(v string)
- type MetaAggregationHistogram
- func (o *MetaAggregationHistogram) GetExtendedBounds() AggregationHistogramBound
- func (o *MetaAggregationHistogram) GetExtendedBoundsOk() (*AggregationHistogramBound, bool)
- func (o *MetaAggregationHistogram) GetField() string
- func (o *MetaAggregationHistogram) GetFieldOk() (*string, bool)
- func (o *MetaAggregationHistogram) GetHardBounds() AggregationHistogramBound
- func (o *MetaAggregationHistogram) GetHardBoundsOk() (*AggregationHistogramBound, bool)
- func (o *MetaAggregationHistogram) GetInterval() float32
- func (o *MetaAggregationHistogram) GetIntervalOk() (*float32, bool)
- func (o *MetaAggregationHistogram) GetKeyed() bool
- func (o *MetaAggregationHistogram) GetKeyedOk() (*bool, bool)
- func (o *MetaAggregationHistogram) GetMinDocCount() int32
- func (o *MetaAggregationHistogram) GetMinDocCountOk() (*int32, bool)
- func (o *MetaAggregationHistogram) GetOffset() float32
- func (o *MetaAggregationHistogram) GetOffsetOk() (*float32, bool)
- func (o *MetaAggregationHistogram) GetSize() int32
- func (o *MetaAggregationHistogram) GetSizeOk() (*int32, bool)
- func (o *MetaAggregationHistogram) HasExtendedBounds() bool
- func (o *MetaAggregationHistogram) HasField() bool
- func (o *MetaAggregationHistogram) HasHardBounds() bool
- func (o *MetaAggregationHistogram) HasInterval() bool
- func (o *MetaAggregationHistogram) HasKeyed() bool
- func (o *MetaAggregationHistogram) HasMinDocCount() bool
- func (o *MetaAggregationHistogram) HasOffset() bool
- func (o *MetaAggregationHistogram) HasSize() bool
- func (o MetaAggregationHistogram) MarshalJSON() ([]byte, error)
- func (o *MetaAggregationHistogram) SetExtendedBounds(v AggregationHistogramBound)
- func (o *MetaAggregationHistogram) SetField(v string)
- func (o *MetaAggregationHistogram) SetHardBounds(v AggregationHistogramBound)
- func (o *MetaAggregationHistogram) SetInterval(v float32)
- func (o *MetaAggregationHistogram) SetKeyed(v bool)
- func (o *MetaAggregationHistogram) SetMinDocCount(v int32)
- func (o *MetaAggregationHistogram) SetOffset(v float32)
- func (o *MetaAggregationHistogram) SetSize(v int32)
- type MetaAggregationIPRange
- func (o *MetaAggregationIPRange) GetField() string
- func (o *MetaAggregationIPRange) GetFieldOk() (*string, bool)
- func (o *MetaAggregationIPRange) GetKeyed() bool
- func (o *MetaAggregationIPRange) GetKeyedOk() (*bool, bool)
- func (o *MetaAggregationIPRange) GetRanges() []MetaIPRange
- func (o *MetaAggregationIPRange) GetRangesOk() ([]MetaIPRange, bool)
- func (o *MetaAggregationIPRange) HasField() bool
- func (o *MetaAggregationIPRange) HasKeyed() bool
- func (o *MetaAggregationIPRange) HasRanges() bool
- func (o MetaAggregationIPRange) MarshalJSON() ([]byte, error)
- func (o *MetaAggregationIPRange) SetField(v string)
- func (o *MetaAggregationIPRange) SetKeyed(v bool)
- func (o *MetaAggregationIPRange) SetRanges(v []MetaIPRange)
- type MetaAggregationMetric
- func (o *MetaAggregationMetric) GetField() string
- func (o *MetaAggregationMetric) GetFieldOk() (*string, bool)
- func (o *MetaAggregationMetric) GetWeightField() string
- func (o *MetaAggregationMetric) GetWeightFieldOk() (*string, bool)
- func (o *MetaAggregationMetric) HasField() bool
- func (o *MetaAggregationMetric) HasWeightField() bool
- func (o MetaAggregationMetric) MarshalJSON() ([]byte, error)
- func (o *MetaAggregationMetric) SetField(v string)
- func (o *MetaAggregationMetric) SetWeightField(v string)
- type MetaAggregationRange
- func (o *MetaAggregationRange) GetField() string
- func (o *MetaAggregationRange) GetFieldOk() (*string, bool)
- func (o *MetaAggregationRange) GetKeyed() bool
- func (o *MetaAggregationRange) GetKeyedOk() (*bool, bool)
- func (o *MetaAggregationRange) GetRanges() []MetaRange
- func (o *MetaAggregationRange) GetRangesOk() ([]MetaRange, bool)
- func (o *MetaAggregationRange) HasField() bool
- func (o *MetaAggregationRange) HasKeyed() bool
- func (o *MetaAggregationRange) HasRanges() bool
- func (o MetaAggregationRange) MarshalJSON() ([]byte, error)
- func (o *MetaAggregationRange) SetField(v string)
- func (o *MetaAggregationRange) SetKeyed(v bool)
- func (o *MetaAggregationRange) SetRanges(v []MetaRange)
- type MetaAggregationResponse
- func (o *MetaAggregationResponse) GetBuckets() map[string]interface{}
- func (o *MetaAggregationResponse) GetBucketsOk() (map[string]interface{}, bool)
- func (o *MetaAggregationResponse) GetInterval() string
- func (o *MetaAggregationResponse) GetIntervalOk() (*string, bool)
- func (o *MetaAggregationResponse) GetValue() map[string]interface{}
- func (o *MetaAggregationResponse) GetValueOk() (map[string]interface{}, bool)
- func (o *MetaAggregationResponse) HasBuckets() bool
- func (o *MetaAggregationResponse) HasInterval() bool
- func (o *MetaAggregationResponse) HasValue() bool
- func (o MetaAggregationResponse) MarshalJSON() ([]byte, error)
- func (o *MetaAggregationResponse) SetBuckets(v map[string]interface{})
- func (o *MetaAggregationResponse) SetInterval(v string)
- func (o *MetaAggregationResponse) SetValue(v map[string]interface{})
- type MetaAggregations
- func (o *MetaAggregations) GetAggs() map[string]MetaAggregations
- func (o *MetaAggregations) GetAggsOk() (*map[string]MetaAggregations, bool)
- func (o *MetaAggregations) GetAutoDateHistogram() MetaAggregationAutoDateHistogram
- func (o *MetaAggregations) GetAutoDateHistogramOk() (*MetaAggregationAutoDateHistogram, bool)
- func (o *MetaAggregations) GetAvg() MetaAggregationMetric
- func (o *MetaAggregations) GetAvgOk() (*MetaAggregationMetric, bool)
- func (o *MetaAggregations) GetCardinality() MetaAggregationMetric
- func (o *MetaAggregations) GetCardinalityOk() (*MetaAggregationMetric, bool)
- func (o *MetaAggregations) GetCount() MetaAggregationMetric
- func (o *MetaAggregations) GetCountOk() (*MetaAggregationMetric, bool)
- func (o *MetaAggregations) GetDateHistogram() MetaAggregationDateHistogram
- func (o *MetaAggregations) GetDateHistogramOk() (*MetaAggregationDateHistogram, bool)
- func (o *MetaAggregations) GetDateRange() MetaAggregationDateRange
- func (o *MetaAggregations) GetDateRangeOk() (*MetaAggregationDateRange, bool)
- func (o *MetaAggregations) GetHistogram() MetaAggregationHistogram
- func (o *MetaAggregations) GetHistogramOk() (*MetaAggregationHistogram, bool)
- func (o *MetaAggregations) GetIpRange() MetaAggregationIPRange
- func (o *MetaAggregations) GetIpRangeOk() (*MetaAggregationIPRange, bool)
- func (o *MetaAggregations) GetMax() MetaAggregationMetric
- func (o *MetaAggregations) GetMaxOk() (*MetaAggregationMetric, bool)
- func (o *MetaAggregations) GetMin() MetaAggregationMetric
- func (o *MetaAggregations) GetMinOk() (*MetaAggregationMetric, bool)
- func (o *MetaAggregations) GetRange() MetaAggregationRange
- func (o *MetaAggregations) GetRangeOk() (*MetaAggregationRange, bool)
- func (o *MetaAggregations) GetSum() MetaAggregationMetric
- func (o *MetaAggregations) GetSumOk() (*MetaAggregationMetric, bool)
- func (o *MetaAggregations) GetTerms() MetaAggregationsTerms
- func (o *MetaAggregations) GetTermsOk() (*MetaAggregationsTerms, bool)
- func (o *MetaAggregations) GetWeightedAvg() MetaAggregationMetric
- func (o *MetaAggregations) GetWeightedAvgOk() (*MetaAggregationMetric, bool)
- func (o *MetaAggregations) HasAggs() bool
- func (o *MetaAggregations) HasAutoDateHistogram() bool
- func (o *MetaAggregations) HasAvg() bool
- func (o *MetaAggregations) HasCardinality() bool
- func (o *MetaAggregations) HasCount() bool
- func (o *MetaAggregations) HasDateHistogram() bool
- func (o *MetaAggregations) HasDateRange() bool
- func (o *MetaAggregations) HasHistogram() bool
- func (o *MetaAggregations) HasIpRange() bool
- func (o *MetaAggregations) HasMax() bool
- func (o *MetaAggregations) HasMin() bool
- func (o *MetaAggregations) HasRange() bool
- func (o *MetaAggregations) HasSum() bool
- func (o *MetaAggregations) HasTerms() bool
- func (o *MetaAggregations) HasWeightedAvg() bool
- func (o MetaAggregations) MarshalJSON() ([]byte, error)
- func (o *MetaAggregations) SetAggs(v map[string]MetaAggregations)
- func (o *MetaAggregations) SetAutoDateHistogram(v MetaAggregationAutoDateHistogram)
- func (o *MetaAggregations) SetAvg(v MetaAggregationMetric)
- func (o *MetaAggregations) SetCardinality(v MetaAggregationMetric)
- func (o *MetaAggregations) SetCount(v MetaAggregationMetric)
- func (o *MetaAggregations) SetDateHistogram(v MetaAggregationDateHistogram)
- func (o *MetaAggregations) SetDateRange(v MetaAggregationDateRange)
- func (o *MetaAggregations) SetHistogram(v MetaAggregationHistogram)
- func (o *MetaAggregations) SetIpRange(v MetaAggregationIPRange)
- func (o *MetaAggregations) SetMax(v MetaAggregationMetric)
- func (o *MetaAggregations) SetMin(v MetaAggregationMetric)
- func (o *MetaAggregations) SetRange(v MetaAggregationRange)
- func (o *MetaAggregations) SetSum(v MetaAggregationMetric)
- func (o *MetaAggregations) SetTerms(v MetaAggregationsTerms)
- func (o *MetaAggregations) SetWeightedAvg(v MetaAggregationMetric)
- type MetaAggregationsTerms
- func (o *MetaAggregationsTerms) GetField() string
- func (o *MetaAggregationsTerms) GetFieldOk() (*string, bool)
- func (o *MetaAggregationsTerms) GetOrder() map[string]string
- func (o *MetaAggregationsTerms) GetOrderOk() (*map[string]string, bool)
- func (o *MetaAggregationsTerms) GetSize() int32
- func (o *MetaAggregationsTerms) GetSizeOk() (*int32, bool)
- func (o *MetaAggregationsTerms) HasField() bool
- func (o *MetaAggregationsTerms) HasOrder() bool
- func (o *MetaAggregationsTerms) HasSize() bool
- func (o MetaAggregationsTerms) MarshalJSON() ([]byte, error)
- func (o *MetaAggregationsTerms) SetField(v string)
- func (o *MetaAggregationsTerms) SetOrder(v map[string]string)
- func (o *MetaAggregationsTerms) SetSize(v int32)
- type MetaAnalyzer
- func (o *MetaAnalyzer) GetCharFilter() []string
- func (o *MetaAnalyzer) GetCharFilterOk() ([]string, bool)
- func (o *MetaAnalyzer) GetFilter() []string
- func (o *MetaAnalyzer) GetFilterOk() ([]string, bool)
- func (o *MetaAnalyzer) GetLowercase() bool
- func (o *MetaAnalyzer) GetLowercaseOk() (*bool, bool)
- func (o *MetaAnalyzer) GetPattern() string
- func (o *MetaAnalyzer) GetPatternOk() (*string, bool)
- func (o *MetaAnalyzer) GetStopwords() []string
- func (o *MetaAnalyzer) GetStopwordsOk() ([]string, bool)
- func (o *MetaAnalyzer) GetTokenFilter() []string
- func (o *MetaAnalyzer) GetTokenFilterOk() ([]string, bool)
- func (o *MetaAnalyzer) GetTokenizer() string
- func (o *MetaAnalyzer) GetTokenizerOk() (*string, bool)
- func (o *MetaAnalyzer) GetType() string
- func (o *MetaAnalyzer) GetTypeOk() (*string, bool)
- func (o *MetaAnalyzer) HasCharFilter() bool
- func (o *MetaAnalyzer) HasFilter() bool
- func (o *MetaAnalyzer) HasLowercase() bool
- func (o *MetaAnalyzer) HasPattern() bool
- func (o *MetaAnalyzer) HasStopwords() bool
- func (o *MetaAnalyzer) HasTokenFilter() bool
- func (o *MetaAnalyzer) HasTokenizer() bool
- func (o *MetaAnalyzer) HasType() bool
- func (o MetaAnalyzer) MarshalJSON() ([]byte, error)
- func (o *MetaAnalyzer) SetCharFilter(v []string)
- func (o *MetaAnalyzer) SetFilter(v []string)
- func (o *MetaAnalyzer) SetLowercase(v bool)
- func (o *MetaAnalyzer) SetPattern(v string)
- func (o *MetaAnalyzer) SetStopwords(v []string)
- func (o *MetaAnalyzer) SetTokenFilter(v []string)
- func (o *MetaAnalyzer) SetTokenizer(v string)
- func (o *MetaAnalyzer) SetType(v string)
- type MetaBoolQuery
- func (o *MetaBoolQuery) GetFilter() []MetaQuery
- func (o *MetaBoolQuery) GetFilterOk() ([]MetaQuery, bool)
- func (o *MetaBoolQuery) GetMinimumShouldMatch() float32
- func (o *MetaBoolQuery) GetMinimumShouldMatchOk() (*float32, bool)
- func (o *MetaBoolQuery) GetMust() []MetaQuery
- func (o *MetaBoolQuery) GetMustNot() []MetaQuery
- func (o *MetaBoolQuery) GetMustNotOk() ([]MetaQuery, bool)
- func (o *MetaBoolQuery) GetMustOk() ([]MetaQuery, bool)
- func (o *MetaBoolQuery) GetShould() []MetaQuery
- func (o *MetaBoolQuery) GetShouldOk() ([]MetaQuery, bool)
- func (o *MetaBoolQuery) HasFilter() bool
- func (o *MetaBoolQuery) HasMinimumShouldMatch() bool
- func (o *MetaBoolQuery) HasMust() bool
- func (o *MetaBoolQuery) HasMustNot() bool
- func (o *MetaBoolQuery) HasShould() bool
- func (o MetaBoolQuery) MarshalJSON() ([]byte, error)
- func (o *MetaBoolQuery) SetFilter(v []MetaQuery)
- func (o *MetaBoolQuery) SetMinimumShouldMatch(v float32)
- func (o *MetaBoolQuery) SetMust(v []MetaQuery)
- func (o *MetaBoolQuery) SetMustNot(v []MetaQuery)
- func (o *MetaBoolQuery) SetShould(v []MetaQuery)
- type MetaDateRange
- func (o *MetaDateRange) GetFrom() string
- func (o *MetaDateRange) GetFromOk() (*string, bool)
- func (o *MetaDateRange) GetTo() string
- func (o *MetaDateRange) GetToOk() (*string, bool)
- func (o *MetaDateRange) HasFrom() bool
- func (o *MetaDateRange) HasTo() bool
- func (o MetaDateRange) MarshalJSON() ([]byte, error)
- func (o *MetaDateRange) SetFrom(v string)
- func (o *MetaDateRange) SetTo(v string)
- type MetaExistsQuery
- type MetaFuzzyQuery
- func (o *MetaFuzzyQuery) GetBoost() float32
- func (o *MetaFuzzyQuery) GetBoostOk() (*float32, bool)
- func (o *MetaFuzzyQuery) GetFuzziness() map[string]interface{}
- func (o *MetaFuzzyQuery) GetFuzzinessOk() (map[string]interface{}, bool)
- func (o *MetaFuzzyQuery) GetPrefixLength() float32
- func (o *MetaFuzzyQuery) GetPrefixLengthOk() (*float32, bool)
- func (o *MetaFuzzyQuery) GetValue() string
- func (o *MetaFuzzyQuery) GetValueOk() (*string, bool)
- func (o *MetaFuzzyQuery) HasBoost() bool
- func (o *MetaFuzzyQuery) HasFuzziness() bool
- func (o *MetaFuzzyQuery) HasPrefixLength() bool
- func (o *MetaFuzzyQuery) HasValue() bool
- func (o MetaFuzzyQuery) MarshalJSON() ([]byte, error)
- func (o *MetaFuzzyQuery) SetBoost(v float32)
- func (o *MetaFuzzyQuery) SetFuzziness(v map[string]interface{})
- func (o *MetaFuzzyQuery) SetPrefixLength(v float32)
- func (o *MetaFuzzyQuery) SetValue(v string)
- type MetaHTTPResponse
- type MetaHTTPResponseDeleteByQuery
- func (o *MetaHTTPResponseDeleteByQuery) GetBatches() int32
- func (o *MetaHTTPResponseDeleteByQuery) GetBatchesOk() (*int32, bool)
- func (o *MetaHTTPResponseDeleteByQuery) GetDeleted() int32
- func (o *MetaHTTPResponseDeleteByQuery) GetDeletedOk() (*int32, bool)
- func (o *MetaHTTPResponseDeleteByQuery) GetFailures() []string
- func (o *MetaHTTPResponseDeleteByQuery) GetFailuresOk() ([]string, bool)
- func (o *MetaHTTPResponseDeleteByQuery) GetNoops() int32
- func (o *MetaHTTPResponseDeleteByQuery) GetNoopsOk() (*int32, bool)
- func (o *MetaHTTPResponseDeleteByQuery) GetRequestsPerSecond() int32
- func (o *MetaHTTPResponseDeleteByQuery) GetRequestsPerSecondOk() (*int32, bool)
- func (o *MetaHTTPResponseDeleteByQuery) GetRetries() MetaHttpRetriesResponse
- func (o *MetaHTTPResponseDeleteByQuery) GetRetriesOk() (*MetaHttpRetriesResponse, bool)
- func (o *MetaHTTPResponseDeleteByQuery) GetThrottledMillis() int32
- func (o *MetaHTTPResponseDeleteByQuery) GetThrottledMillisOk() (*int32, bool)
- func (o *MetaHTTPResponseDeleteByQuery) GetThrottledUntilMillis() int32
- func (o *MetaHTTPResponseDeleteByQuery) GetThrottledUntilMillisOk() (*int32, bool)
- func (o *MetaHTTPResponseDeleteByQuery) GetTimeOut() bool
- func (o *MetaHTTPResponseDeleteByQuery) GetTimeOutOk() (*bool, bool)
- func (o *MetaHTTPResponseDeleteByQuery) GetTook() int32
- func (o *MetaHTTPResponseDeleteByQuery) GetTookOk() (*int32, bool)
- func (o *MetaHTTPResponseDeleteByQuery) GetTotal() int32
- func (o *MetaHTTPResponseDeleteByQuery) GetTotalOk() (*int32, bool)
- func (o *MetaHTTPResponseDeleteByQuery) GetVersionConflicts() int32
- func (o *MetaHTTPResponseDeleteByQuery) GetVersionConflictsOk() (*int32, bool)
- func (o *MetaHTTPResponseDeleteByQuery) HasBatches() bool
- func (o *MetaHTTPResponseDeleteByQuery) HasDeleted() bool
- func (o *MetaHTTPResponseDeleteByQuery) HasFailures() bool
- func (o *MetaHTTPResponseDeleteByQuery) HasNoops() bool
- func (o *MetaHTTPResponseDeleteByQuery) HasRequestsPerSecond() bool
- func (o *MetaHTTPResponseDeleteByQuery) HasRetries() bool
- func (o *MetaHTTPResponseDeleteByQuery) HasThrottledMillis() bool
- func (o *MetaHTTPResponseDeleteByQuery) HasThrottledUntilMillis() bool
- func (o *MetaHTTPResponseDeleteByQuery) HasTimeOut() bool
- func (o *MetaHTTPResponseDeleteByQuery) HasTook() bool
- func (o *MetaHTTPResponseDeleteByQuery) HasTotal() bool
- func (o *MetaHTTPResponseDeleteByQuery) HasVersionConflicts() bool
- func (o MetaHTTPResponseDeleteByQuery) MarshalJSON() ([]byte, error)
- func (o *MetaHTTPResponseDeleteByQuery) SetBatches(v int32)
- func (o *MetaHTTPResponseDeleteByQuery) SetDeleted(v int32)
- func (o *MetaHTTPResponseDeleteByQuery) SetFailures(v []string)
- func (o *MetaHTTPResponseDeleteByQuery) SetNoops(v int32)
- func (o *MetaHTTPResponseDeleteByQuery) SetRequestsPerSecond(v int32)
- func (o *MetaHTTPResponseDeleteByQuery) SetRetries(v MetaHttpRetriesResponse)
- func (o *MetaHTTPResponseDeleteByQuery) SetThrottledMillis(v int32)
- func (o *MetaHTTPResponseDeleteByQuery) SetThrottledUntilMillis(v int32)
- func (o *MetaHTTPResponseDeleteByQuery) SetTimeOut(v bool)
- func (o *MetaHTTPResponseDeleteByQuery) SetTook(v int32)
- func (o *MetaHTTPResponseDeleteByQuery) SetTotal(v int32)
- func (o *MetaHTTPResponseDeleteByQuery) SetVersionConflicts(v int32)
- type MetaHTTPResponseDocument
- func (o *MetaHTTPResponseDocument) GetId() string
- func (o *MetaHTTPResponseDocument) GetIdOk() (*string, bool)
- func (o *MetaHTTPResponseDocument) GetIndex() string
- func (o *MetaHTTPResponseDocument) GetIndexOk() (*string, bool)
- func (o *MetaHTTPResponseDocument) GetMessage() string
- func (o *MetaHTTPResponseDocument) GetMessageOk() (*string, bool)
- func (o *MetaHTTPResponseDocument) HasId() bool
- func (o *MetaHTTPResponseDocument) HasIndex() bool
- func (o *MetaHTTPResponseDocument) HasMessage() bool
- func (o MetaHTTPResponseDocument) MarshalJSON() ([]byte, error)
- func (o *MetaHTTPResponseDocument) SetId(v string)
- func (o *MetaHTTPResponseDocument) SetIndex(v string)
- func (o *MetaHTTPResponseDocument) SetMessage(v string)
- type MetaHTTPResponseError
- type MetaHTTPResponseID
- func (o *MetaHTTPResponseID) GetId() string
- func (o *MetaHTTPResponseID) GetIdOk() (*string, bool)
- func (o *MetaHTTPResponseID) GetMessage() string
- func (o *MetaHTTPResponseID) GetMessageOk() (*string, bool)
- func (o *MetaHTTPResponseID) HasId() bool
- func (o *MetaHTTPResponseID) HasMessage() bool
- func (o MetaHTTPResponseID) MarshalJSON() ([]byte, error)
- func (o *MetaHTTPResponseID) SetId(v string)
- func (o *MetaHTTPResponseID) SetMessage(v string)
- type MetaHTTPResponseIndex
- func (o *MetaHTTPResponseIndex) GetIndex() string
- func (o *MetaHTTPResponseIndex) GetIndexOk() (*string, bool)
- func (o *MetaHTTPResponseIndex) GetMessage() string
- func (o *MetaHTTPResponseIndex) GetMessageOk() (*string, bool)
- func (o *MetaHTTPResponseIndex) GetStorageType() string
- func (o *MetaHTTPResponseIndex) GetStorageTypeOk() (*string, bool)
- func (o *MetaHTTPResponseIndex) HasIndex() bool
- func (o *MetaHTTPResponseIndex) HasMessage() bool
- func (o *MetaHTTPResponseIndex) HasStorageType() bool
- func (o MetaHTTPResponseIndex) MarshalJSON() ([]byte, error)
- func (o *MetaHTTPResponseIndex) SetIndex(v string)
- func (o *MetaHTTPResponseIndex) SetMessage(v string)
- func (o *MetaHTTPResponseIndex) SetStorageType(v string)
- type MetaHTTPResponseRecordCount
- func (o *MetaHTTPResponseRecordCount) GetMessage() string
- func (o *MetaHTTPResponseRecordCount) GetMessageOk() (*string, bool)
- func (o *MetaHTTPResponseRecordCount) GetRecordCount() int32
- func (o *MetaHTTPResponseRecordCount) GetRecordCountOk() (*int32, bool)
- func (o *MetaHTTPResponseRecordCount) HasMessage() bool
- func (o *MetaHTTPResponseRecordCount) HasRecordCount() bool
- func (o MetaHTTPResponseRecordCount) MarshalJSON() ([]byte, error)
- func (o *MetaHTTPResponseRecordCount) SetMessage(v string)
- func (o *MetaHTTPResponseRecordCount) SetRecordCount(v int32)
- type MetaHTTPResponseTemplate
- func (o *MetaHTTPResponseTemplate) GetMessage() string
- func (o *MetaHTTPResponseTemplate) GetMessageOk() (*string, bool)
- func (o *MetaHTTPResponseTemplate) GetTemplate() string
- func (o *MetaHTTPResponseTemplate) GetTemplateOk() (*string, bool)
- func (o *MetaHTTPResponseTemplate) HasMessage() bool
- func (o *MetaHTTPResponseTemplate) HasTemplate() bool
- func (o MetaHTTPResponseTemplate) MarshalJSON() ([]byte, error)
- func (o *MetaHTTPResponseTemplate) SetMessage(v string)
- func (o *MetaHTTPResponseTemplate) SetTemplate(v string)
- type MetaHealthzResponse
- type MetaHighlight
- func (o *MetaHighlight) GetFields() map[string]MetaHighlight
- func (o *MetaHighlight) GetFieldsOk() (*map[string]MetaHighlight, bool)
- func (o *MetaHighlight) GetFragmentSize() int32
- func (o *MetaHighlight) GetFragmentSizeOk() (*int32, bool)
- func (o *MetaHighlight) GetNumberOfFragments() int32
- func (o *MetaHighlight) GetNumberOfFragmentsOk() (*int32, bool)
- func (o *MetaHighlight) GetPostTags() []string
- func (o *MetaHighlight) GetPostTagsOk() ([]string, bool)
- func (o *MetaHighlight) GetPreTags() []string
- func (o *MetaHighlight) GetPreTagsOk() ([]string, bool)
- func (o *MetaHighlight) HasFields() bool
- func (o *MetaHighlight) HasFragmentSize() bool
- func (o *MetaHighlight) HasNumberOfFragments() bool
- func (o *MetaHighlight) HasPostTags() bool
- func (o *MetaHighlight) HasPreTags() bool
- func (o MetaHighlight) MarshalJSON() ([]byte, error)
- func (o *MetaHighlight) SetFields(v map[string]MetaHighlight)
- func (o *MetaHighlight) SetFragmentSize(v int32)
- func (o *MetaHighlight) SetNumberOfFragments(v int32)
- func (o *MetaHighlight) SetPostTags(v []string)
- func (o *MetaHighlight) SetPreTags(v []string)
- type MetaHit
- func (o *MetaHit) GetFields() map[string]interface{}
- func (o *MetaHit) GetFieldsOk() (map[string]interface{}, bool)
- func (o *MetaHit) GetHighlight() map[string]interface{}
- func (o *MetaHit) GetHighlightOk() (map[string]interface{}, bool)
- func (o *MetaHit) GetId() string
- func (o *MetaHit) GetIdOk() (*string, bool)
- func (o *MetaHit) GetIndex() string
- func (o *MetaHit) GetIndexOk() (*string, bool)
- func (o *MetaHit) GetScore() float32
- func (o *MetaHit) GetScoreOk() (*float32, bool)
- func (o *MetaHit) GetSource() map[string]interface{}
- func (o *MetaHit) GetSourceOk() (map[string]interface{}, bool)
- func (o *MetaHit) GetTimestamp() string
- func (o *MetaHit) GetTimestampOk() (*string, bool)
- func (o *MetaHit) GetType() string
- func (o *MetaHit) GetTypeOk() (*string, bool)
- func (o *MetaHit) HasFields() bool
- func (o *MetaHit) HasHighlight() bool
- func (o *MetaHit) HasId() bool
- func (o *MetaHit) HasIndex() bool
- func (o *MetaHit) HasScore() bool
- func (o *MetaHit) HasSource() bool
- func (o *MetaHit) HasTimestamp() bool
- func (o *MetaHit) HasType() bool
- func (o MetaHit) MarshalJSON() ([]byte, error)
- func (o *MetaHit) SetFields(v map[string]interface{})
- func (o *MetaHit) SetHighlight(v map[string]interface{})
- func (o *MetaHit) SetId(v string)
- func (o *MetaHit) SetIndex(v string)
- func (o *MetaHit) SetScore(v float32)
- func (o *MetaHit) SetSource(v map[string]interface{})
- func (o *MetaHit) SetTimestamp(v string)
- func (o *MetaHit) SetType(v string)
- type MetaHits
- func (o *MetaHits) GetHits() []MetaHit
- func (o *MetaHits) GetHitsOk() ([]MetaHit, bool)
- func (o *MetaHits) GetMaxScore() float32
- func (o *MetaHits) GetMaxScoreOk() (*float32, bool)
- func (o *MetaHits) GetTotal() MetaTotal
- func (o *MetaHits) GetTotalOk() (*MetaTotal, bool)
- func (o *MetaHits) HasHits() bool
- func (o *MetaHits) HasMaxScore() bool
- func (o *MetaHits) HasTotal() bool
- func (o MetaHits) MarshalJSON() ([]byte, error)
- func (o *MetaHits) SetHits(v []MetaHit)
- func (o *MetaHits) SetMaxScore(v float32)
- func (o *MetaHits) SetTotal(v MetaTotal)
- type MetaHttpRetriesResponse
- func (o *MetaHttpRetriesResponse) GetBulk() int32
- func (o *MetaHttpRetriesResponse) GetBulkOk() (*int32, bool)
- func (o *MetaHttpRetriesResponse) GetSearch() int32
- func (o *MetaHttpRetriesResponse) GetSearchOk() (*int32, bool)
- func (o *MetaHttpRetriesResponse) HasBulk() bool
- func (o *MetaHttpRetriesResponse) HasSearch() bool
- func (o MetaHttpRetriesResponse) MarshalJSON() ([]byte, error)
- func (o *MetaHttpRetriesResponse) SetBulk(v int32)
- func (o *MetaHttpRetriesResponse) SetSearch(v int32)
- type MetaIPRange
- func (o *MetaIPRange) GetFrom() string
- func (o *MetaIPRange) GetFromOk() (*string, bool)
- func (o *MetaIPRange) GetTo() string
- func (o *MetaIPRange) GetToOk() (*string, bool)
- func (o *MetaIPRange) HasFrom() bool
- func (o *MetaIPRange) HasTo() bool
- func (o MetaIPRange) MarshalJSON() ([]byte, error)
- func (o *MetaIPRange) SetFrom(v string)
- func (o *MetaIPRange) SetTo(v string)
- type MetaIdsQuery
- type MetaIndexAnalysis
- func (o *MetaIndexAnalysis) GetAnalyzer() map[string]MetaAnalyzer
- func (o *MetaIndexAnalysis) GetAnalyzerOk() (*map[string]MetaAnalyzer, bool)
- func (o *MetaIndexAnalysis) GetCharFilter() map[string]interface{}
- func (o *MetaIndexAnalysis) GetCharFilterOk() (map[string]interface{}, bool)
- func (o *MetaIndexAnalysis) GetFilter() map[string]interface{}
- func (o *MetaIndexAnalysis) GetFilterOk() (map[string]interface{}, bool)
- func (o *MetaIndexAnalysis) GetTokenFilter() map[string]interface{}
- func (o *MetaIndexAnalysis) GetTokenFilterOk() (map[string]interface{}, bool)
- func (o *MetaIndexAnalysis) GetTokenizer() map[string]interface{}
- func (o *MetaIndexAnalysis) GetTokenizerOk() (map[string]interface{}, bool)
- func (o *MetaIndexAnalysis) HasAnalyzer() bool
- func (o *MetaIndexAnalysis) HasCharFilter() bool
- func (o *MetaIndexAnalysis) HasFilter() bool
- func (o *MetaIndexAnalysis) HasTokenFilter() bool
- func (o *MetaIndexAnalysis) HasTokenizer() bool
- func (o MetaIndexAnalysis) MarshalJSON() ([]byte, error)
- func (o *MetaIndexAnalysis) SetAnalyzer(v map[string]MetaAnalyzer)
- func (o *MetaIndexAnalysis) SetCharFilter(v map[string]interface{})
- func (o *MetaIndexAnalysis) SetFilter(v map[string]interface{})
- func (o *MetaIndexAnalysis) SetTokenFilter(v map[string]interface{})
- func (o *MetaIndexAnalysis) SetTokenizer(v map[string]interface{})
- type MetaIndexSettings
- func (o *MetaIndexSettings) GetAnalysis() MetaIndexAnalysis
- func (o *MetaIndexSettings) GetAnalysisOk() (*MetaIndexAnalysis, bool)
- func (o *MetaIndexSettings) GetNumberOfReplicas() int32
- func (o *MetaIndexSettings) GetNumberOfReplicasOk() (*int32, bool)
- func (o *MetaIndexSettings) GetNumberOfShards() int32
- func (o *MetaIndexSettings) GetNumberOfShardsOk() (*int32, bool)
- func (o *MetaIndexSettings) HasAnalysis() bool
- func (o *MetaIndexSettings) HasNumberOfReplicas() bool
- func (o *MetaIndexSettings) HasNumberOfShards() bool
- func (o MetaIndexSettings) MarshalJSON() ([]byte, error)
- func (o *MetaIndexSettings) SetAnalysis(v MetaIndexAnalysis)
- func (o *MetaIndexSettings) SetNumberOfReplicas(v int32)
- func (o *MetaIndexSettings) SetNumberOfShards(v int32)
- type MetaIndexSimple
- func (o *MetaIndexSimple) GetMappings() map[string]interface{}
- func (o *MetaIndexSimple) GetMappingsOk() (map[string]interface{}, bool)
- func (o *MetaIndexSimple) GetName() string
- func (o *MetaIndexSimple) GetNameOk() (*string, bool)
- func (o *MetaIndexSimple) GetSettings() MetaIndexSettings
- func (o *MetaIndexSimple) GetSettingsOk() (*MetaIndexSettings, bool)
- func (o *MetaIndexSimple) GetShardNum() int32
- func (o *MetaIndexSimple) GetShardNumOk() (*int32, bool)
- func (o *MetaIndexSimple) GetStorageType() string
- func (o *MetaIndexSimple) GetStorageTypeOk() (*string, bool)
- func (o *MetaIndexSimple) HasMappings() bool
- func (o *MetaIndexSimple) HasName() bool
- func (o *MetaIndexSimple) HasSettings() bool
- func (o *MetaIndexSimple) HasShardNum() bool
- func (o *MetaIndexSimple) HasStorageType() bool
- func (o MetaIndexSimple) MarshalJSON() ([]byte, error)
- func (o *MetaIndexSimple) SetMappings(v map[string]interface{})
- func (o *MetaIndexSimple) SetName(v string)
- func (o *MetaIndexSimple) SetSettings(v MetaIndexSettings)
- func (o *MetaIndexSimple) SetShardNum(v int32)
- func (o *MetaIndexSimple) SetStorageType(v string)
- type MetaIndexTemplate
- func (o *MetaIndexTemplate) GetCreatedAt() string
- func (o *MetaIndexTemplate) GetCreatedAtOk() (*string, bool)
- func (o *MetaIndexTemplate) GetIndexPatterns() []string
- func (o *MetaIndexTemplate) GetIndexPatternsOk() ([]string, bool)
- func (o *MetaIndexTemplate) GetPriority() int32
- func (o *MetaIndexTemplate) GetPriorityOk() (*int32, bool)
- func (o *MetaIndexTemplate) GetTemplate() MetaTemplateTemplate
- func (o *MetaIndexTemplate) GetTemplateOk() (*MetaTemplateTemplate, bool)
- func (o *MetaIndexTemplate) GetUpdatedAt() string
- func (o *MetaIndexTemplate) GetUpdatedAtOk() (*string, bool)
- func (o *MetaIndexTemplate) HasCreatedAt() bool
- func (o *MetaIndexTemplate) HasIndexPatterns() bool
- func (o *MetaIndexTemplate) HasPriority() bool
- func (o *MetaIndexTemplate) HasTemplate() bool
- func (o *MetaIndexTemplate) HasUpdatedAt() bool
- func (o MetaIndexTemplate) MarshalJSON() ([]byte, error)
- func (o *MetaIndexTemplate) SetCreatedAt(v string)
- func (o *MetaIndexTemplate) SetIndexPatterns(v []string)
- func (o *MetaIndexTemplate) SetPriority(v int32)
- func (o *MetaIndexTemplate) SetTemplate(v MetaTemplateTemplate)
- func (o *MetaIndexTemplate) SetUpdatedAt(v string)
- type MetaJSONIngest
- func (o *MetaJSONIngest) GetIndex() string
- func (o *MetaJSONIngest) GetIndexOk() (*string, bool)
- func (o *MetaJSONIngest) GetRecords() []map[string]interface{}
- func (o *MetaJSONIngest) GetRecordsOk() ([]map[string]interface{}, bool)
- func (o *MetaJSONIngest) HasIndex() bool
- func (o *MetaJSONIngest) HasRecords() bool
- func (o MetaJSONIngest) MarshalJSON() ([]byte, error)
- func (o *MetaJSONIngest) SetIndex(v string)
- func (o *MetaJSONIngest) SetRecords(v []map[string]interface{})
- type MetaMappings
- type MetaMatchBoolPrefixQuery
- func (o *MetaMatchBoolPrefixQuery) GetAnalyzer() string
- func (o *MetaMatchBoolPrefixQuery) GetAnalyzerOk() (*string, bool)
- func (o *MetaMatchBoolPrefixQuery) GetBoost() float32
- func (o *MetaMatchBoolPrefixQuery) GetBoostOk() (*float32, bool)
- func (o *MetaMatchBoolPrefixQuery) GetQuery() string
- func (o *MetaMatchBoolPrefixQuery) GetQueryOk() (*string, bool)
- func (o *MetaMatchBoolPrefixQuery) HasAnalyzer() bool
- func (o *MetaMatchBoolPrefixQuery) HasBoost() bool
- func (o *MetaMatchBoolPrefixQuery) HasQuery() bool
- func (o MetaMatchBoolPrefixQuery) MarshalJSON() ([]byte, error)
- func (o *MetaMatchBoolPrefixQuery) SetAnalyzer(v string)
- func (o *MetaMatchBoolPrefixQuery) SetBoost(v float32)
- func (o *MetaMatchBoolPrefixQuery) SetQuery(v string)
- type MetaMatchPhrasePrefixQuery
- func (o *MetaMatchPhrasePrefixQuery) GetAnalyzer() string
- func (o *MetaMatchPhrasePrefixQuery) GetAnalyzerOk() (*string, bool)
- func (o *MetaMatchPhrasePrefixQuery) GetBoost() float32
- func (o *MetaMatchPhrasePrefixQuery) GetBoostOk() (*float32, bool)
- func (o *MetaMatchPhrasePrefixQuery) GetQuery() string
- func (o *MetaMatchPhrasePrefixQuery) GetQueryOk() (*string, bool)
- func (o *MetaMatchPhrasePrefixQuery) HasAnalyzer() bool
- func (o *MetaMatchPhrasePrefixQuery) HasBoost() bool
- func (o *MetaMatchPhrasePrefixQuery) HasQuery() bool
- func (o MetaMatchPhrasePrefixQuery) MarshalJSON() ([]byte, error)
- func (o *MetaMatchPhrasePrefixQuery) SetAnalyzer(v string)
- func (o *MetaMatchPhrasePrefixQuery) SetBoost(v float32)
- func (o *MetaMatchPhrasePrefixQuery) SetQuery(v string)
- type MetaMatchPhraseQuery
- func (o *MetaMatchPhraseQuery) GetAnalyzer() string
- func (o *MetaMatchPhraseQuery) GetAnalyzerOk() (*string, bool)
- func (o *MetaMatchPhraseQuery) GetBoost() float32
- func (o *MetaMatchPhraseQuery) GetBoostOk() (*float32, bool)
- func (o *MetaMatchPhraseQuery) GetQuery() string
- func (o *MetaMatchPhraseQuery) GetQueryOk() (*string, bool)
- func (o *MetaMatchPhraseQuery) HasAnalyzer() bool
- func (o *MetaMatchPhraseQuery) HasBoost() bool
- func (o *MetaMatchPhraseQuery) HasQuery() bool
- func (o MetaMatchPhraseQuery) MarshalJSON() ([]byte, error)
- func (o *MetaMatchPhraseQuery) SetAnalyzer(v string)
- func (o *MetaMatchPhraseQuery) SetBoost(v float32)
- func (o *MetaMatchPhraseQuery) SetQuery(v string)
- type MetaMatchQuery
- func (o *MetaMatchQuery) GetAnalyzer() string
- func (o *MetaMatchQuery) GetAnalyzerOk() (*string, bool)
- func (o *MetaMatchQuery) GetBoost() float32
- func (o *MetaMatchQuery) GetBoostOk() (*float32, bool)
- func (o *MetaMatchQuery) GetFuzziness() map[string]interface{}
- func (o *MetaMatchQuery) GetFuzzinessOk() (map[string]interface{}, bool)
- func (o *MetaMatchQuery) GetOperator() string
- func (o *MetaMatchQuery) GetOperatorOk() (*string, bool)
- func (o *MetaMatchQuery) GetPrefixLength() float32
- func (o *MetaMatchQuery) GetPrefixLengthOk() (*float32, bool)
- func (o *MetaMatchQuery) GetQuery() string
- func (o *MetaMatchQuery) GetQueryOk() (*string, bool)
- func (o *MetaMatchQuery) HasAnalyzer() bool
- func (o *MetaMatchQuery) HasBoost() bool
- func (o *MetaMatchQuery) HasFuzziness() bool
- func (o *MetaMatchQuery) HasOperator() bool
- func (o *MetaMatchQuery) HasPrefixLength() bool
- func (o *MetaMatchQuery) HasQuery() bool
- func (o MetaMatchQuery) MarshalJSON() ([]byte, error)
- func (o *MetaMatchQuery) SetAnalyzer(v string)
- func (o *MetaMatchQuery) SetBoost(v float32)
- func (o *MetaMatchQuery) SetFuzziness(v map[string]interface{})
- func (o *MetaMatchQuery) SetOperator(v string)
- func (o *MetaMatchQuery) SetPrefixLength(v float32)
- func (o *MetaMatchQuery) SetQuery(v string)
- type MetaMultiMatchQuery
- func (o *MetaMultiMatchQuery) GetAnalyzer() string
- func (o *MetaMultiMatchQuery) GetAnalyzerOk() (*string, bool)
- func (o *MetaMultiMatchQuery) GetBoost() float32
- func (o *MetaMultiMatchQuery) GetBoostOk() (*float32, bool)
- func (o *MetaMultiMatchQuery) GetFields() []string
- func (o *MetaMultiMatchQuery) GetFieldsOk() ([]string, bool)
- func (o *MetaMultiMatchQuery) GetMinimumShouldMatch() float32
- func (o *MetaMultiMatchQuery) GetMinimumShouldMatchOk() (*float32, bool)
- func (o *MetaMultiMatchQuery) GetOperator() string
- func (o *MetaMultiMatchQuery) GetOperatorOk() (*string, bool)
- func (o *MetaMultiMatchQuery) GetQuery() string
- func (o *MetaMultiMatchQuery) GetQueryOk() (*string, bool)
- func (o *MetaMultiMatchQuery) GetType() string
- func (o *MetaMultiMatchQuery) GetTypeOk() (*string, bool)
- func (o *MetaMultiMatchQuery) HasAnalyzer() bool
- func (o *MetaMultiMatchQuery) HasBoost() bool
- func (o *MetaMultiMatchQuery) HasFields() bool
- func (o *MetaMultiMatchQuery) HasMinimumShouldMatch() bool
- func (o *MetaMultiMatchQuery) HasOperator() bool
- func (o *MetaMultiMatchQuery) HasQuery() bool
- func (o *MetaMultiMatchQuery) HasType() bool
- func (o MetaMultiMatchQuery) MarshalJSON() ([]byte, error)
- func (o *MetaMultiMatchQuery) SetAnalyzer(v string)
- func (o *MetaMultiMatchQuery) SetBoost(v float32)
- func (o *MetaMultiMatchQuery) SetFields(v []string)
- func (o *MetaMultiMatchQuery) SetMinimumShouldMatch(v float32)
- func (o *MetaMultiMatchQuery) SetOperator(v string)
- func (o *MetaMultiMatchQuery) SetQuery(v string)
- func (o *MetaMultiMatchQuery) SetType(v string)
- type MetaPage
- func (o *MetaPage) GetPageNum() int32
- func (o *MetaPage) GetPageNumOk() (*int32, bool)
- func (o *MetaPage) GetPageSize() int32
- func (o *MetaPage) GetPageSizeOk() (*int32, bool)
- func (o *MetaPage) GetTotal() int32
- func (o *MetaPage) GetTotalOk() (*int32, bool)
- func (o *MetaPage) HasPageNum() bool
- func (o *MetaPage) HasPageSize() bool
- func (o *MetaPage) HasTotal() bool
- func (o MetaPage) MarshalJSON() ([]byte, error)
- func (o *MetaPage) SetPageNum(v int32)
- func (o *MetaPage) SetPageSize(v int32)
- func (o *MetaPage) SetTotal(v int32)
- type MetaPrefixQuery
- func (o *MetaPrefixQuery) GetBoost() float32
- func (o *MetaPrefixQuery) GetBoostOk() (*float32, bool)
- func (o *MetaPrefixQuery) GetValue() string
- func (o *MetaPrefixQuery) GetValueOk() (*string, bool)
- func (o *MetaPrefixQuery) HasBoost() bool
- func (o *MetaPrefixQuery) HasValue() bool
- func (o MetaPrefixQuery) MarshalJSON() ([]byte, error)
- func (o *MetaPrefixQuery) SetBoost(v float32)
- func (o *MetaPrefixQuery) SetValue(v string)
- type MetaProperty
- func (o *MetaProperty) GetAggregatable() bool
- func (o *MetaProperty) GetAggregatableOk() (*bool, bool)
- func (o *MetaProperty) GetAnalyzer() string
- func (o *MetaProperty) GetAnalyzerOk() (*string, bool)
- func (o *MetaProperty) GetFields() map[string]MetaProperty
- func (o *MetaProperty) GetFieldsOk() (*map[string]MetaProperty, bool)
- func (o *MetaProperty) GetFormat() string
- func (o *MetaProperty) GetFormatOk() (*string, bool)
- func (o *MetaProperty) GetHighlightable() bool
- func (o *MetaProperty) GetHighlightableOk() (*bool, bool)
- func (o *MetaProperty) GetIndex() bool
- func (o *MetaProperty) GetIndexOk() (*bool, bool)
- func (o *MetaProperty) GetSearchAnalyzer() string
- func (o *MetaProperty) GetSearchAnalyzerOk() (*string, bool)
- func (o *MetaProperty) GetSortable() bool
- func (o *MetaProperty) GetSortableOk() (*bool, bool)
- func (o *MetaProperty) GetStore() bool
- func (o *MetaProperty) GetStoreOk() (*bool, bool)
- func (o *MetaProperty) GetTimeZone() string
- func (o *MetaProperty) GetTimeZoneOk() (*string, bool)
- func (o *MetaProperty) GetType() string
- func (o *MetaProperty) GetTypeOk() (*string, bool)
- func (o *MetaProperty) HasAggregatable() bool
- func (o *MetaProperty) HasAnalyzer() bool
- func (o *MetaProperty) HasFields() bool
- func (o *MetaProperty) HasFormat() bool
- func (o *MetaProperty) HasHighlightable() bool
- func (o *MetaProperty) HasIndex() bool
- func (o *MetaProperty) HasSearchAnalyzer() bool
- func (o *MetaProperty) HasSortable() bool
- func (o *MetaProperty) HasStore() bool
- func (o *MetaProperty) HasTimeZone() bool
- func (o *MetaProperty) HasType() bool
- func (o MetaProperty) MarshalJSON() ([]byte, error)
- func (o *MetaProperty) SetAggregatable(v bool)
- func (o *MetaProperty) SetAnalyzer(v string)
- func (o *MetaProperty) SetFields(v map[string]MetaProperty)
- func (o *MetaProperty) SetFormat(v string)
- func (o *MetaProperty) SetHighlightable(v bool)
- func (o *MetaProperty) SetIndex(v bool)
- func (o *MetaProperty) SetSearchAnalyzer(v string)
- func (o *MetaProperty) SetSortable(v bool)
- func (o *MetaProperty) SetStore(v bool)
- func (o *MetaProperty) SetTimeZone(v string)
- func (o *MetaProperty) SetType(v string)
- type MetaQuery
- func (o *MetaQuery) GetBool() MetaBoolQuery
- func (o *MetaQuery) GetBoolOk() (*MetaBoolQuery, bool)
- func (o *MetaQuery) GetExists() MetaExistsQuery
- func (o *MetaQuery) GetExistsOk() (*MetaExistsQuery, bool)
- func (o *MetaQuery) GetFuzzy() map[string]MetaFuzzyQuery
- func (o *MetaQuery) GetFuzzyOk() (*map[string]MetaFuzzyQuery, bool)
- func (o *MetaQuery) GetIds() MetaIdsQuery
- func (o *MetaQuery) GetIdsOk() (*MetaIdsQuery, bool)
- func (o *MetaQuery) GetMatch() map[string]MetaMatchQuery
- func (o *MetaQuery) GetMatchAll() map[string]interface{}
- func (o *MetaQuery) GetMatchAllOk() (map[string]interface{}, bool)
- func (o *MetaQuery) GetMatchBoolPrefix() map[string]MetaMatchBoolPrefixQuery
- func (o *MetaQuery) GetMatchBoolPrefixOk() (*map[string]MetaMatchBoolPrefixQuery, bool)
- func (o *MetaQuery) GetMatchNone() map[string]interface{}
- func (o *MetaQuery) GetMatchNoneOk() (map[string]interface{}, bool)
- func (o *MetaQuery) GetMatchOk() (*map[string]MetaMatchQuery, bool)
- func (o *MetaQuery) GetMatchPhrase() map[string]MetaMatchPhraseQuery
- func (o *MetaQuery) GetMatchPhraseOk() (*map[string]MetaMatchPhraseQuery, bool)
- func (o *MetaQuery) GetMatchPhrasePrefix() map[string]MetaMatchPhrasePrefixQuery
- func (o *MetaQuery) GetMatchPhrasePrefixOk() (*map[string]MetaMatchPhrasePrefixQuery, bool)
- func (o *MetaQuery) GetMultiMatch() MetaMultiMatchQuery
- func (o *MetaQuery) GetMultiMatchOk() (*MetaMultiMatchQuery, bool)
- func (o *MetaQuery) GetPrefix() map[string]MetaPrefixQuery
- func (o *MetaQuery) GetPrefixOk() (*map[string]MetaPrefixQuery, bool)
- func (o *MetaQuery) GetQueryString() MetaQueryStringQuery
- func (o *MetaQuery) GetQueryStringOk() (*MetaQueryStringQuery, bool)
- func (o *MetaQuery) GetRange() map[string]MetaRangeQuery
- func (o *MetaQuery) GetRangeOk() (*map[string]MetaRangeQuery, bool)
- func (o *MetaQuery) GetRegexp() map[string]MetaRegexpQuery
- func (o *MetaQuery) GetRegexpOk() (*map[string]MetaRegexpQuery, bool)
- func (o *MetaQuery) GetSimpleQueryString() MetaSimpleQueryStringQuery
- func (o *MetaQuery) GetSimpleQueryStringOk() (*MetaSimpleQueryStringQuery, bool)
- func (o *MetaQuery) GetTerm() map[string]MetaTermQuery
- func (o *MetaQuery) GetTermOk() (*map[string]MetaTermQuery, bool)
- func (o *MetaQuery) GetTerms() map[string]map[string]interface{}
- func (o *MetaQuery) GetTermsOk() (*map[string]map[string]interface{}, bool)
- func (o *MetaQuery) GetWildcard() map[string]MetaWildcardQuery
- func (o *MetaQuery) GetWildcardOk() (*map[string]MetaWildcardQuery, bool)
- func (o *MetaQuery) HasBool() bool
- func (o *MetaQuery) HasExists() bool
- func (o *MetaQuery) HasFuzzy() bool
- func (o *MetaQuery) HasIds() bool
- func (o *MetaQuery) HasMatch() bool
- func (o *MetaQuery) HasMatchAll() bool
- func (o *MetaQuery) HasMatchBoolPrefix() bool
- func (o *MetaQuery) HasMatchNone() bool
- func (o *MetaQuery) HasMatchPhrase() bool
- func (o *MetaQuery) HasMatchPhrasePrefix() bool
- func (o *MetaQuery) HasMultiMatch() bool
- func (o *MetaQuery) HasPrefix() bool
- func (o *MetaQuery) HasQueryString() bool
- func (o *MetaQuery) HasRange() bool
- func (o *MetaQuery) HasRegexp() bool
- func (o *MetaQuery) HasSimpleQueryString() bool
- func (o *MetaQuery) HasTerm() bool
- func (o *MetaQuery) HasTerms() bool
- func (o *MetaQuery) HasWildcard() bool
- func (o MetaQuery) MarshalJSON() ([]byte, error)
- func (o *MetaQuery) SetBool(v MetaBoolQuery)
- func (o *MetaQuery) SetExists(v MetaExistsQuery)
- func (o *MetaQuery) SetFuzzy(v map[string]MetaFuzzyQuery)
- func (o *MetaQuery) SetIds(v MetaIdsQuery)
- func (o *MetaQuery) SetMatch(v map[string]MetaMatchQuery)
- func (o *MetaQuery) SetMatchAll(v map[string]interface{})
- func (o *MetaQuery) SetMatchBoolPrefix(v map[string]MetaMatchBoolPrefixQuery)
- func (o *MetaQuery) SetMatchNone(v map[string]interface{})
- func (o *MetaQuery) SetMatchPhrase(v map[string]MetaMatchPhraseQuery)
- func (o *MetaQuery) SetMatchPhrasePrefix(v map[string]MetaMatchPhrasePrefixQuery)
- func (o *MetaQuery) SetMultiMatch(v MetaMultiMatchQuery)
- func (o *MetaQuery) SetPrefix(v map[string]MetaPrefixQuery)
- func (o *MetaQuery) SetQueryString(v MetaQueryStringQuery)
- func (o *MetaQuery) SetRange(v map[string]MetaRangeQuery)
- func (o *MetaQuery) SetRegexp(v map[string]MetaRegexpQuery)
- func (o *MetaQuery) SetSimpleQueryString(v MetaSimpleQueryStringQuery)
- func (o *MetaQuery) SetTerm(v map[string]MetaTermQuery)
- func (o *MetaQuery) SetTerms(v map[string]map[string]interface{})
- func (o *MetaQuery) SetWildcard(v map[string]MetaWildcardQuery)
- type MetaQueryStringQuery
- func (o *MetaQueryStringQuery) GetAnalyzer() string
- func (o *MetaQueryStringQuery) GetAnalyzerOk() (*string, bool)
- func (o *MetaQueryStringQuery) GetBoost() float32
- func (o *MetaQueryStringQuery) GetBoostOk() (*float32, bool)
- func (o *MetaQueryStringQuery) GetDefaultField() string
- func (o *MetaQueryStringQuery) GetDefaultFieldOk() (*string, bool)
- func (o *MetaQueryStringQuery) GetDefaultOperator() string
- func (o *MetaQueryStringQuery) GetDefaultOperatorOk() (*string, bool)
- func (o *MetaQueryStringQuery) GetFields() []string
- func (o *MetaQueryStringQuery) GetFieldsOk() ([]string, bool)
- func (o *MetaQueryStringQuery) GetQuery() string
- func (o *MetaQueryStringQuery) GetQueryOk() (*string, bool)
- func (o *MetaQueryStringQuery) HasAnalyzer() bool
- func (o *MetaQueryStringQuery) HasBoost() bool
- func (o *MetaQueryStringQuery) HasDefaultField() bool
- func (o *MetaQueryStringQuery) HasDefaultOperator() bool
- func (o *MetaQueryStringQuery) HasFields() bool
- func (o *MetaQueryStringQuery) HasQuery() bool
- func (o MetaQueryStringQuery) MarshalJSON() ([]byte, error)
- func (o *MetaQueryStringQuery) SetAnalyzer(v string)
- func (o *MetaQueryStringQuery) SetBoost(v float32)
- func (o *MetaQueryStringQuery) SetDefaultField(v string)
- func (o *MetaQueryStringQuery) SetDefaultOperator(v string)
- func (o *MetaQueryStringQuery) SetFields(v []string)
- func (o *MetaQueryStringQuery) SetQuery(v string)
- type MetaRange
- func (o *MetaRange) GetFrom() float32
- func (o *MetaRange) GetFromOk() (*float32, bool)
- func (o *MetaRange) GetTo() float32
- func (o *MetaRange) GetToOk() (*float32, bool)
- func (o *MetaRange) HasFrom() bool
- func (o *MetaRange) HasTo() bool
- func (o MetaRange) MarshalJSON() ([]byte, error)
- func (o *MetaRange) SetFrom(v float32)
- func (o *MetaRange) SetTo(v float32)
- type MetaRangeQuery
- func (o *MetaRangeQuery) GetBoost() float32
- func (o *MetaRangeQuery) GetBoostOk() (*float32, bool)
- func (o *MetaRangeQuery) GetFormat() string
- func (o *MetaRangeQuery) GetFormatOk() (*string, bool)
- func (o *MetaRangeQuery) GetGt() string
- func (o *MetaRangeQuery) GetGtOk() (*string, bool)
- func (o *MetaRangeQuery) GetGte() string
- func (o *MetaRangeQuery) GetGteOk() (*string, bool)
- func (o *MetaRangeQuery) GetLt() string
- func (o *MetaRangeQuery) GetLtOk() (*string, bool)
- func (o *MetaRangeQuery) GetLte() string
- func (o *MetaRangeQuery) GetLteOk() (*string, bool)
- func (o *MetaRangeQuery) GetTimeZone() string
- func (o *MetaRangeQuery) GetTimeZoneOk() (*string, bool)
- func (o *MetaRangeQuery) HasBoost() bool
- func (o *MetaRangeQuery) HasFormat() bool
- func (o *MetaRangeQuery) HasGt() bool
- func (o *MetaRangeQuery) HasGte() bool
- func (o *MetaRangeQuery) HasLt() bool
- func (o *MetaRangeQuery) HasLte() bool
- func (o *MetaRangeQuery) HasTimeZone() bool
- func (o MetaRangeQuery) MarshalJSON() ([]byte, error)
- func (o *MetaRangeQuery) SetBoost(v float32)
- func (o *MetaRangeQuery) SetFormat(v string)
- func (o *MetaRangeQuery) SetGt(v string)
- func (o *MetaRangeQuery) SetGte(v string)
- func (o *MetaRangeQuery) SetLt(v string)
- func (o *MetaRangeQuery) SetLte(v string)
- func (o *MetaRangeQuery) SetTimeZone(v string)
- type MetaRegexpQuery
- func (o *MetaRegexpQuery) GetBoost() float32
- func (o *MetaRegexpQuery) GetBoostOk() (*float32, bool)
- func (o *MetaRegexpQuery) GetFlags() string
- func (o *MetaRegexpQuery) GetFlagsOk() (*string, bool)
- func (o *MetaRegexpQuery) GetValue() string
- func (o *MetaRegexpQuery) GetValueOk() (*string, bool)
- func (o *MetaRegexpQuery) HasBoost() bool
- func (o *MetaRegexpQuery) HasFlags() bool
- func (o *MetaRegexpQuery) HasValue() bool
- func (o MetaRegexpQuery) MarshalJSON() ([]byte, error)
- func (o *MetaRegexpQuery) SetBoost(v float32)
- func (o *MetaRegexpQuery) SetFlags(v string)
- func (o *MetaRegexpQuery) SetValue(v string)
- type MetaSearchResponse
- func (o *MetaSearchResponse) GetAggregations() map[string]MetaAggregationResponse
- func (o *MetaSearchResponse) GetAggregationsOk() (*map[string]MetaAggregationResponse, bool)
- func (o *MetaSearchResponse) GetError() string
- func (o *MetaSearchResponse) GetErrorOk() (*string, bool)
- func (o *MetaSearchResponse) GetHits() MetaHits
- func (o *MetaSearchResponse) GetHitsOk() (*MetaHits, bool)
- func (o *MetaSearchResponse) GetShards() MetaShards
- func (o *MetaSearchResponse) GetShardsOk() (*MetaShards, bool)
- func (o *MetaSearchResponse) GetTimedOut() bool
- func (o *MetaSearchResponse) GetTimedOutOk() (*bool, bool)
- func (o *MetaSearchResponse) GetTook() int32
- func (o *MetaSearchResponse) GetTookOk() (*int32, bool)
- func (o *MetaSearchResponse) HasAggregations() bool
- func (o *MetaSearchResponse) HasError() bool
- func (o *MetaSearchResponse) HasHits() bool
- func (o *MetaSearchResponse) HasShards() bool
- func (o *MetaSearchResponse) HasTimedOut() bool
- func (o *MetaSearchResponse) HasTook() bool
- func (o MetaSearchResponse) MarshalJSON() ([]byte, error)
- func (o *MetaSearchResponse) SetAggregations(v map[string]MetaAggregationResponse)
- func (o *MetaSearchResponse) SetError(v string)
- func (o *MetaSearchResponse) SetHits(v MetaHits)
- func (o *MetaSearchResponse) SetShards(v MetaShards)
- func (o *MetaSearchResponse) SetTimedOut(v bool)
- func (o *MetaSearchResponse) SetTook(v int32)
- type MetaShards
- func (o *MetaShards) GetFailed() int32
- func (o *MetaShards) GetFailedOk() (*int32, bool)
- func (o *MetaShards) GetSkipped() int32
- func (o *MetaShards) GetSkippedOk() (*int32, bool)
- func (o *MetaShards) GetSuccessful() int32
- func (o *MetaShards) GetSuccessfulOk() (*int32, bool)
- func (o *MetaShards) GetTotal() int32
- func (o *MetaShards) GetTotalOk() (*int32, bool)
- func (o *MetaShards) HasFailed() bool
- func (o *MetaShards) HasSkipped() bool
- func (o *MetaShards) HasSuccessful() bool
- func (o *MetaShards) HasTotal() bool
- func (o MetaShards) MarshalJSON() ([]byte, error)
- func (o *MetaShards) SetFailed(v int32)
- func (o *MetaShards) SetSkipped(v int32)
- func (o *MetaShards) SetSuccessful(v int32)
- func (o *MetaShards) SetTotal(v int32)
- type MetaSimpleQueryStringQuery
- func (o *MetaSimpleQueryStringQuery) GetAllFields() bool
- func (o *MetaSimpleQueryStringQuery) GetAllFieldsOk() (*bool, bool)
- func (o *MetaSimpleQueryStringQuery) GetAnalyzer() string
- func (o *MetaSimpleQueryStringQuery) GetAnalyzerOk() (*string, bool)
- func (o *MetaSimpleQueryStringQuery) GetBoost() float32
- func (o *MetaSimpleQueryStringQuery) GetBoostOk() (*float32, bool)
- func (o *MetaSimpleQueryStringQuery) GetDefaultOperator() string
- func (o *MetaSimpleQueryStringQuery) GetDefaultOperatorOk() (*string, bool)
- func (o *MetaSimpleQueryStringQuery) GetFields() []string
- func (o *MetaSimpleQueryStringQuery) GetFieldsOk() ([]string, bool)
- func (o *MetaSimpleQueryStringQuery) GetQuery() string
- func (o *MetaSimpleQueryStringQuery) GetQueryOk() (*string, bool)
- func (o *MetaSimpleQueryStringQuery) HasAllFields() bool
- func (o *MetaSimpleQueryStringQuery) HasAnalyzer() bool
- func (o *MetaSimpleQueryStringQuery) HasBoost() bool
- func (o *MetaSimpleQueryStringQuery) HasDefaultOperator() bool
- func (o *MetaSimpleQueryStringQuery) HasFields() bool
- func (o *MetaSimpleQueryStringQuery) HasQuery() bool
- func (o MetaSimpleQueryStringQuery) MarshalJSON() ([]byte, error)
- func (o *MetaSimpleQueryStringQuery) SetAllFields(v bool)
- func (o *MetaSimpleQueryStringQuery) SetAnalyzer(v string)
- func (o *MetaSimpleQueryStringQuery) SetBoost(v float32)
- func (o *MetaSimpleQueryStringQuery) SetDefaultOperator(v string)
- func (o *MetaSimpleQueryStringQuery) SetFields(v []string)
- func (o *MetaSimpleQueryStringQuery) SetQuery(v string)
- type MetaTemplate
- func (o *MetaTemplate) GetIndexTemplate() MetaIndexTemplate
- func (o *MetaTemplate) GetIndexTemplateOk() (*MetaIndexTemplate, bool)
- func (o *MetaTemplate) GetName() string
- func (o *MetaTemplate) GetNameOk() (*string, bool)
- func (o *MetaTemplate) HasIndexTemplate() bool
- func (o *MetaTemplate) HasName() bool
- func (o MetaTemplate) MarshalJSON() ([]byte, error)
- func (o *MetaTemplate) SetIndexTemplate(v MetaIndexTemplate)
- func (o *MetaTemplate) SetName(v string)
- type MetaTemplateTemplate
- func (o *MetaTemplateTemplate) GetMappings() MetaMappings
- func (o *MetaTemplateTemplate) GetMappingsOk() (*MetaMappings, bool)
- func (o *MetaTemplateTemplate) GetSettings() MetaIndexSettings
- func (o *MetaTemplateTemplate) GetSettingsOk() (*MetaIndexSettings, bool)
- func (o *MetaTemplateTemplate) HasMappings() bool
- func (o *MetaTemplateTemplate) HasSettings() bool
- func (o MetaTemplateTemplate) MarshalJSON() ([]byte, error)
- func (o *MetaTemplateTemplate) SetMappings(v MetaMappings)
- func (o *MetaTemplateTemplate) SetSettings(v MetaIndexSettings)
- type MetaTermQuery
- func (o *MetaTermQuery) GetBoost() float32
- func (o *MetaTermQuery) GetBoostOk() (*float32, bool)
- func (o *MetaTermQuery) GetCaseInsensitive() bool
- func (o *MetaTermQuery) GetCaseInsensitiveOk() (*bool, bool)
- func (o *MetaTermQuery) GetValue() string
- func (o *MetaTermQuery) GetValueOk() (*string, bool)
- func (o *MetaTermQuery) HasBoost() bool
- func (o *MetaTermQuery) HasCaseInsensitive() bool
- func (o *MetaTermQuery) HasValue() bool
- func (o MetaTermQuery) MarshalJSON() ([]byte, error)
- func (o *MetaTermQuery) SetBoost(v float32)
- func (o *MetaTermQuery) SetCaseInsensitive(v bool)
- func (o *MetaTermQuery) SetValue(v string)
- type MetaTotal
- type MetaUser
- func (o *MetaUser) GetCreatedAt() string
- func (o *MetaUser) GetCreatedAtOk() (*string, bool)
- func (o *MetaUser) GetId() string
- func (o *MetaUser) GetIdOk() (*string, bool)
- func (o *MetaUser) GetName() string
- func (o *MetaUser) GetNameOk() (*string, bool)
- func (o *MetaUser) GetPassword() string
- func (o *MetaUser) GetPasswordOk() (*string, bool)
- func (o *MetaUser) GetRole() string
- func (o *MetaUser) GetRoleOk() (*string, bool)
- func (o *MetaUser) GetSalt() string
- func (o *MetaUser) GetSaltOk() (*string, bool)
- func (o *MetaUser) GetUpdatedAt() string
- func (o *MetaUser) GetUpdatedAtOk() (*string, bool)
- func (o *MetaUser) HasCreatedAt() bool
- func (o *MetaUser) HasId() bool
- func (o *MetaUser) HasName() bool
- func (o *MetaUser) HasPassword() bool
- func (o *MetaUser) HasRole() bool
- func (o *MetaUser) HasSalt() bool
- func (o *MetaUser) HasUpdatedAt() bool
- func (o MetaUser) MarshalJSON() ([]byte, error)
- func (o *MetaUser) SetCreatedAt(v string)
- func (o *MetaUser) SetId(v string)
- func (o *MetaUser) SetName(v string)
- func (o *MetaUser) SetPassword(v string)
- func (o *MetaUser) SetRole(v string)
- func (o *MetaUser) SetSalt(v string)
- func (o *MetaUser) SetUpdatedAt(v string)
- type MetaVersionResponse
- func (o *MetaVersionResponse) GetBranch() string
- func (o *MetaVersionResponse) GetBranchOk() (*string, bool)
- func (o *MetaVersionResponse) GetBuild() string
- func (o *MetaVersionResponse) GetBuildDate() string
- func (o *MetaVersionResponse) GetBuildDateOk() (*string, bool)
- func (o *MetaVersionResponse) GetBuildOk() (*string, bool)
- func (o *MetaVersionResponse) GetCommitHash() string
- func (o *MetaVersionResponse) GetCommitHashOk() (*string, bool)
- func (o *MetaVersionResponse) GetVersion() string
- func (o *MetaVersionResponse) GetVersionOk() (*string, bool)
- func (o *MetaVersionResponse) HasBranch() bool
- func (o *MetaVersionResponse) HasBuild() bool
- func (o *MetaVersionResponse) HasBuildDate() bool
- func (o *MetaVersionResponse) HasCommitHash() bool
- func (o *MetaVersionResponse) HasVersion() bool
- func (o MetaVersionResponse) MarshalJSON() ([]byte, error)
- func (o *MetaVersionResponse) SetBranch(v string)
- func (o *MetaVersionResponse) SetBuild(v string)
- func (o *MetaVersionResponse) SetBuildDate(v string)
- func (o *MetaVersionResponse) SetCommitHash(v string)
- func (o *MetaVersionResponse) SetVersion(v string)
- type MetaWildcardQuery
- func (o *MetaWildcardQuery) GetBoost() float32
- func (o *MetaWildcardQuery) GetBoostOk() (*float32, bool)
- func (o *MetaWildcardQuery) GetValue() string
- func (o *MetaWildcardQuery) GetValueOk() (*string, bool)
- func (o *MetaWildcardQuery) HasBoost() bool
- func (o *MetaWildcardQuery) HasValue() bool
- func (o MetaWildcardQuery) MarshalJSON() ([]byte, error)
- func (o *MetaWildcardQuery) SetBoost(v float32)
- func (o *MetaWildcardQuery) SetValue(v string)
- type MetaZincQuery
- func (o *MetaZincQuery) GetAggs() map[string]MetaAggregations
- func (o *MetaZincQuery) GetAggsOk() (*map[string]MetaAggregations, bool)
- func (o *MetaZincQuery) GetExplain() bool
- func (o *MetaZincQuery) GetExplainOk() (*bool, bool)
- func (o *MetaZincQuery) GetFields() []string
- func (o *MetaZincQuery) GetFieldsOk() ([]string, bool)
- func (o *MetaZincQuery) GetFrom() int32
- func (o *MetaZincQuery) GetFromOk() (*int32, bool)
- func (o *MetaZincQuery) GetHighlight() MetaHighlight
- func (o *MetaZincQuery) GetHighlightOk() (*MetaHighlight, bool)
- func (o *MetaZincQuery) GetQuery() MetaQuery
- func (o *MetaZincQuery) GetQueryOk() (*MetaQuery, bool)
- func (o *MetaZincQuery) GetSize() int32
- func (o *MetaZincQuery) GetSizeOk() (*int32, bool)
- func (o *MetaZincQuery) GetSort() []string
- func (o *MetaZincQuery) GetSortOk() ([]string, bool)
- func (o *MetaZincQuery) GetSource() []string
- func (o *MetaZincQuery) GetSourceOk() ([]string, bool)
- func (o *MetaZincQuery) GetTimeout() int32
- func (o *MetaZincQuery) GetTimeoutOk() (*int32, bool)
- func (o *MetaZincQuery) GetTrackTotalHits() bool
- func (o *MetaZincQuery) GetTrackTotalHitsOk() (*bool, bool)
- func (o *MetaZincQuery) HasAggs() bool
- func (o *MetaZincQuery) HasExplain() bool
- func (o *MetaZincQuery) HasFields() bool
- func (o *MetaZincQuery) HasFrom() bool
- func (o *MetaZincQuery) HasHighlight() bool
- func (o *MetaZincQuery) HasQuery() bool
- func (o *MetaZincQuery) HasSize() bool
- func (o *MetaZincQuery) HasSort() bool
- func (o *MetaZincQuery) HasSource() bool
- func (o *MetaZincQuery) HasTimeout() bool
- func (o *MetaZincQuery) HasTrackTotalHits() bool
- func (o MetaZincQuery) MarshalJSON() ([]byte, error)
- func (o *MetaZincQuery) SetAggs(v map[string]MetaAggregations)
- func (o *MetaZincQuery) SetExplain(v bool)
- func (o *MetaZincQuery) SetFields(v []string)
- func (o *MetaZincQuery) SetFrom(v int32)
- func (o *MetaZincQuery) SetHighlight(v MetaHighlight)
- func (o *MetaZincQuery) SetQuery(v MetaQuery)
- func (o *MetaZincQuery) SetSize(v int32)
- func (o *MetaZincQuery) SetSort(v []string)
- func (o *MetaZincQuery) SetSource(v []string)
- func (o *MetaZincQuery) SetTimeout(v int32)
- func (o *MetaZincQuery) SetTrackTotalHits(v bool)
- type NullableAggregationHistogramBound
- func (v NullableAggregationHistogramBound) Get() *AggregationHistogramBound
- func (v NullableAggregationHistogramBound) IsSet() bool
- func (v NullableAggregationHistogramBound) MarshalJSON() ([]byte, error)
- func (v *NullableAggregationHistogramBound) Set(val *AggregationHistogramBound)
- func (v *NullableAggregationHistogramBound) UnmarshalJSON(src []byte) error
- func (v *NullableAggregationHistogramBound) Unset()
- type NullableAuthLoginRequest
- func (v NullableAuthLoginRequest) Get() *AuthLoginRequest
- func (v NullableAuthLoginRequest) IsSet() bool
- func (v NullableAuthLoginRequest) MarshalJSON() ([]byte, error)
- func (v *NullableAuthLoginRequest) Set(val *AuthLoginRequest)
- func (v *NullableAuthLoginRequest) UnmarshalJSON(src []byte) error
- func (v *NullableAuthLoginRequest) Unset()
- type NullableAuthLoginResponse
- func (v NullableAuthLoginResponse) Get() *AuthLoginResponse
- func (v NullableAuthLoginResponse) IsSet() bool
- func (v NullableAuthLoginResponse) MarshalJSON() ([]byte, error)
- func (v *NullableAuthLoginResponse) Set(val *AuthLoginResponse)
- func (v *NullableAuthLoginResponse) UnmarshalJSON(src []byte) error
- func (v *NullableAuthLoginResponse) Unset()
- type NullableAuthLoginUser
- func (v NullableAuthLoginUser) Get() *AuthLoginUser
- func (v NullableAuthLoginUser) IsSet() bool
- func (v NullableAuthLoginUser) MarshalJSON() ([]byte, error)
- func (v *NullableAuthLoginUser) Set(val *AuthLoginUser)
- func (v *NullableAuthLoginUser) UnmarshalJSON(src []byte) error
- func (v *NullableAuthLoginUser) Unset()
- type NullableBool
- type NullableFloat32
- type NullableFloat64
- type NullableIndexAnalyzeResponse
- func (v NullableIndexAnalyzeResponse) Get() *IndexAnalyzeResponse
- func (v NullableIndexAnalyzeResponse) IsSet() bool
- func (v NullableIndexAnalyzeResponse) MarshalJSON() ([]byte, error)
- func (v *NullableIndexAnalyzeResponse) Set(val *IndexAnalyzeResponse)
- func (v *NullableIndexAnalyzeResponse) UnmarshalJSON(src []byte) error
- func (v *NullableIndexAnalyzeResponse) Unset()
- type NullableIndexAnalyzeResponseToken
- func (v NullableIndexAnalyzeResponseToken) Get() *IndexAnalyzeResponseToken
- func (v NullableIndexAnalyzeResponseToken) IsSet() bool
- func (v NullableIndexAnalyzeResponseToken) MarshalJSON() ([]byte, error)
- func (v *NullableIndexAnalyzeResponseToken) Set(val *IndexAnalyzeResponseToken)
- func (v *NullableIndexAnalyzeResponseToken) UnmarshalJSON(src []byte) error
- func (v *NullableIndexAnalyzeResponseToken) Unset()
- type NullableIndexIndexListResponse
- func (v NullableIndexIndexListResponse) Get() *IndexIndexListResponse
- func (v NullableIndexIndexListResponse) IsSet() bool
- func (v NullableIndexIndexListResponse) MarshalJSON() ([]byte, error)
- func (v *NullableIndexIndexListResponse) Set(val *IndexIndexListResponse)
- func (v *NullableIndexIndexListResponse) UnmarshalJSON(src []byte) error
- func (v *NullableIndexIndexListResponse) Unset()
- type NullableInt
- type NullableInt32
- type NullableInt64
- type NullableMetaAggregationAutoDateHistogram
- func (v NullableMetaAggregationAutoDateHistogram) Get() *MetaAggregationAutoDateHistogram
- func (v NullableMetaAggregationAutoDateHistogram) IsSet() bool
- func (v NullableMetaAggregationAutoDateHistogram) MarshalJSON() ([]byte, error)
- func (v *NullableMetaAggregationAutoDateHistogram) Set(val *MetaAggregationAutoDateHistogram)
- func (v *NullableMetaAggregationAutoDateHistogram) UnmarshalJSON(src []byte) error
- func (v *NullableMetaAggregationAutoDateHistogram) Unset()
- type NullableMetaAggregationDateHistogram
- func (v NullableMetaAggregationDateHistogram) Get() *MetaAggregationDateHistogram
- func (v NullableMetaAggregationDateHistogram) IsSet() bool
- func (v NullableMetaAggregationDateHistogram) MarshalJSON() ([]byte, error)
- func (v *NullableMetaAggregationDateHistogram) Set(val *MetaAggregationDateHistogram)
- func (v *NullableMetaAggregationDateHistogram) UnmarshalJSON(src []byte) error
- func (v *NullableMetaAggregationDateHistogram) Unset()
- type NullableMetaAggregationDateRange
- func (v NullableMetaAggregationDateRange) Get() *MetaAggregationDateRange
- func (v NullableMetaAggregationDateRange) IsSet() bool
- func (v NullableMetaAggregationDateRange) MarshalJSON() ([]byte, error)
- func (v *NullableMetaAggregationDateRange) Set(val *MetaAggregationDateRange)
- func (v *NullableMetaAggregationDateRange) UnmarshalJSON(src []byte) error
- func (v *NullableMetaAggregationDateRange) Unset()
- type NullableMetaAggregationHistogram
- func (v NullableMetaAggregationHistogram) Get() *MetaAggregationHistogram
- func (v NullableMetaAggregationHistogram) IsSet() bool
- func (v NullableMetaAggregationHistogram) MarshalJSON() ([]byte, error)
- func (v *NullableMetaAggregationHistogram) Set(val *MetaAggregationHistogram)
- func (v *NullableMetaAggregationHistogram) UnmarshalJSON(src []byte) error
- func (v *NullableMetaAggregationHistogram) Unset()
- type NullableMetaAggregationIPRange
- func (v NullableMetaAggregationIPRange) Get() *MetaAggregationIPRange
- func (v NullableMetaAggregationIPRange) IsSet() bool
- func (v NullableMetaAggregationIPRange) MarshalJSON() ([]byte, error)
- func (v *NullableMetaAggregationIPRange) Set(val *MetaAggregationIPRange)
- func (v *NullableMetaAggregationIPRange) UnmarshalJSON(src []byte) error
- func (v *NullableMetaAggregationIPRange) Unset()
- type NullableMetaAggregationMetric
- func (v NullableMetaAggregationMetric) Get() *MetaAggregationMetric
- func (v NullableMetaAggregationMetric) IsSet() bool
- func (v NullableMetaAggregationMetric) MarshalJSON() ([]byte, error)
- func (v *NullableMetaAggregationMetric) Set(val *MetaAggregationMetric)
- func (v *NullableMetaAggregationMetric) UnmarshalJSON(src []byte) error
- func (v *NullableMetaAggregationMetric) Unset()
- type NullableMetaAggregationRange
- func (v NullableMetaAggregationRange) Get() *MetaAggregationRange
- func (v NullableMetaAggregationRange) IsSet() bool
- func (v NullableMetaAggregationRange) MarshalJSON() ([]byte, error)
- func (v *NullableMetaAggregationRange) Set(val *MetaAggregationRange)
- func (v *NullableMetaAggregationRange) UnmarshalJSON(src []byte) error
- func (v *NullableMetaAggregationRange) Unset()
- type NullableMetaAggregationResponse
- func (v NullableMetaAggregationResponse) Get() *MetaAggregationResponse
- func (v NullableMetaAggregationResponse) IsSet() bool
- func (v NullableMetaAggregationResponse) MarshalJSON() ([]byte, error)
- func (v *NullableMetaAggregationResponse) Set(val *MetaAggregationResponse)
- func (v *NullableMetaAggregationResponse) UnmarshalJSON(src []byte) error
- func (v *NullableMetaAggregationResponse) Unset()
- type NullableMetaAggregations
- func (v NullableMetaAggregations) Get() *MetaAggregations
- func (v NullableMetaAggregations) IsSet() bool
- func (v NullableMetaAggregations) MarshalJSON() ([]byte, error)
- func (v *NullableMetaAggregations) Set(val *MetaAggregations)
- func (v *NullableMetaAggregations) UnmarshalJSON(src []byte) error
- func (v *NullableMetaAggregations) Unset()
- type NullableMetaAggregationsTerms
- func (v NullableMetaAggregationsTerms) Get() *MetaAggregationsTerms
- func (v NullableMetaAggregationsTerms) IsSet() bool
- func (v NullableMetaAggregationsTerms) MarshalJSON() ([]byte, error)
- func (v *NullableMetaAggregationsTerms) Set(val *MetaAggregationsTerms)
- func (v *NullableMetaAggregationsTerms) UnmarshalJSON(src []byte) error
- func (v *NullableMetaAggregationsTerms) Unset()
- type NullableMetaAnalyzer
- func (v NullableMetaAnalyzer) Get() *MetaAnalyzer
- func (v NullableMetaAnalyzer) IsSet() bool
- func (v NullableMetaAnalyzer) MarshalJSON() ([]byte, error)
- func (v *NullableMetaAnalyzer) Set(val *MetaAnalyzer)
- func (v *NullableMetaAnalyzer) UnmarshalJSON(src []byte) error
- func (v *NullableMetaAnalyzer) Unset()
- type NullableMetaBoolQuery
- func (v NullableMetaBoolQuery) Get() *MetaBoolQuery
- func (v NullableMetaBoolQuery) IsSet() bool
- func (v NullableMetaBoolQuery) MarshalJSON() ([]byte, error)
- func (v *NullableMetaBoolQuery) Set(val *MetaBoolQuery)
- func (v *NullableMetaBoolQuery) UnmarshalJSON(src []byte) error
- func (v *NullableMetaBoolQuery) Unset()
- type NullableMetaDateRange
- func (v NullableMetaDateRange) Get() *MetaDateRange
- func (v NullableMetaDateRange) IsSet() bool
- func (v NullableMetaDateRange) MarshalJSON() ([]byte, error)
- func (v *NullableMetaDateRange) Set(val *MetaDateRange)
- func (v *NullableMetaDateRange) UnmarshalJSON(src []byte) error
- func (v *NullableMetaDateRange) Unset()
- type NullableMetaExistsQuery
- func (v NullableMetaExistsQuery) Get() *MetaExistsQuery
- func (v NullableMetaExistsQuery) IsSet() bool
- func (v NullableMetaExistsQuery) MarshalJSON() ([]byte, error)
- func (v *NullableMetaExistsQuery) Set(val *MetaExistsQuery)
- func (v *NullableMetaExistsQuery) UnmarshalJSON(src []byte) error
- func (v *NullableMetaExistsQuery) Unset()
- type NullableMetaFuzzyQuery
- func (v NullableMetaFuzzyQuery) Get() *MetaFuzzyQuery
- func (v NullableMetaFuzzyQuery) IsSet() bool
- func (v NullableMetaFuzzyQuery) MarshalJSON() ([]byte, error)
- func (v *NullableMetaFuzzyQuery) Set(val *MetaFuzzyQuery)
- func (v *NullableMetaFuzzyQuery) UnmarshalJSON(src []byte) error
- func (v *NullableMetaFuzzyQuery) Unset()
- type NullableMetaHTTPResponse
- func (v NullableMetaHTTPResponse) Get() *MetaHTTPResponse
- func (v NullableMetaHTTPResponse) IsSet() bool
- func (v NullableMetaHTTPResponse) MarshalJSON() ([]byte, error)
- func (v *NullableMetaHTTPResponse) Set(val *MetaHTTPResponse)
- func (v *NullableMetaHTTPResponse) UnmarshalJSON(src []byte) error
- func (v *NullableMetaHTTPResponse) Unset()
- type NullableMetaHTTPResponseDeleteByQuery
- func (v NullableMetaHTTPResponseDeleteByQuery) Get() *MetaHTTPResponseDeleteByQuery
- func (v NullableMetaHTTPResponseDeleteByQuery) IsSet() bool
- func (v NullableMetaHTTPResponseDeleteByQuery) MarshalJSON() ([]byte, error)
- func (v *NullableMetaHTTPResponseDeleteByQuery) Set(val *MetaHTTPResponseDeleteByQuery)
- func (v *NullableMetaHTTPResponseDeleteByQuery) UnmarshalJSON(src []byte) error
- func (v *NullableMetaHTTPResponseDeleteByQuery) Unset()
- type NullableMetaHTTPResponseDocument
- func (v NullableMetaHTTPResponseDocument) Get() *MetaHTTPResponseDocument
- func (v NullableMetaHTTPResponseDocument) IsSet() bool
- func (v NullableMetaHTTPResponseDocument) MarshalJSON() ([]byte, error)
- func (v *NullableMetaHTTPResponseDocument) Set(val *MetaHTTPResponseDocument)
- func (v *NullableMetaHTTPResponseDocument) UnmarshalJSON(src []byte) error
- func (v *NullableMetaHTTPResponseDocument) Unset()
- type NullableMetaHTTPResponseError
- func (v NullableMetaHTTPResponseError) Get() *MetaHTTPResponseError
- func (v NullableMetaHTTPResponseError) IsSet() bool
- func (v NullableMetaHTTPResponseError) MarshalJSON() ([]byte, error)
- func (v *NullableMetaHTTPResponseError) Set(val *MetaHTTPResponseError)
- func (v *NullableMetaHTTPResponseError) UnmarshalJSON(src []byte) error
- func (v *NullableMetaHTTPResponseError) Unset()
- type NullableMetaHTTPResponseID
- func (v NullableMetaHTTPResponseID) Get() *MetaHTTPResponseID
- func (v NullableMetaHTTPResponseID) IsSet() bool
- func (v NullableMetaHTTPResponseID) MarshalJSON() ([]byte, error)
- func (v *NullableMetaHTTPResponseID) Set(val *MetaHTTPResponseID)
- func (v *NullableMetaHTTPResponseID) UnmarshalJSON(src []byte) error
- func (v *NullableMetaHTTPResponseID) Unset()
- type NullableMetaHTTPResponseIndex
- func (v NullableMetaHTTPResponseIndex) Get() *MetaHTTPResponseIndex
- func (v NullableMetaHTTPResponseIndex) IsSet() bool
- func (v NullableMetaHTTPResponseIndex) MarshalJSON() ([]byte, error)
- func (v *NullableMetaHTTPResponseIndex) Set(val *MetaHTTPResponseIndex)
- func (v *NullableMetaHTTPResponseIndex) UnmarshalJSON(src []byte) error
- func (v *NullableMetaHTTPResponseIndex) Unset()
- type NullableMetaHTTPResponseRecordCount
- func (v NullableMetaHTTPResponseRecordCount) Get() *MetaHTTPResponseRecordCount
- func (v NullableMetaHTTPResponseRecordCount) IsSet() bool
- func (v NullableMetaHTTPResponseRecordCount) MarshalJSON() ([]byte, error)
- func (v *NullableMetaHTTPResponseRecordCount) Set(val *MetaHTTPResponseRecordCount)
- func (v *NullableMetaHTTPResponseRecordCount) UnmarshalJSON(src []byte) error
- func (v *NullableMetaHTTPResponseRecordCount) Unset()
- type NullableMetaHTTPResponseTemplate
- func (v NullableMetaHTTPResponseTemplate) Get() *MetaHTTPResponseTemplate
- func (v NullableMetaHTTPResponseTemplate) IsSet() bool
- func (v NullableMetaHTTPResponseTemplate) MarshalJSON() ([]byte, error)
- func (v *NullableMetaHTTPResponseTemplate) Set(val *MetaHTTPResponseTemplate)
- func (v *NullableMetaHTTPResponseTemplate) UnmarshalJSON(src []byte) error
- func (v *NullableMetaHTTPResponseTemplate) Unset()
- type NullableMetaHealthzResponse
- func (v NullableMetaHealthzResponse) Get() *MetaHealthzResponse
- func (v NullableMetaHealthzResponse) IsSet() bool
- func (v NullableMetaHealthzResponse) MarshalJSON() ([]byte, error)
- func (v *NullableMetaHealthzResponse) Set(val *MetaHealthzResponse)
- func (v *NullableMetaHealthzResponse) UnmarshalJSON(src []byte) error
- func (v *NullableMetaHealthzResponse) Unset()
- type NullableMetaHighlight
- func (v NullableMetaHighlight) Get() *MetaHighlight
- func (v NullableMetaHighlight) IsSet() bool
- func (v NullableMetaHighlight) MarshalJSON() ([]byte, error)
- func (v *NullableMetaHighlight) Set(val *MetaHighlight)
- func (v *NullableMetaHighlight) UnmarshalJSON(src []byte) error
- func (v *NullableMetaHighlight) Unset()
- type NullableMetaHit
- type NullableMetaHits
- type NullableMetaHttpRetriesResponse
- func (v NullableMetaHttpRetriesResponse) Get() *MetaHttpRetriesResponse
- func (v NullableMetaHttpRetriesResponse) IsSet() bool
- func (v NullableMetaHttpRetriesResponse) MarshalJSON() ([]byte, error)
- func (v *NullableMetaHttpRetriesResponse) Set(val *MetaHttpRetriesResponse)
- func (v *NullableMetaHttpRetriesResponse) UnmarshalJSON(src []byte) error
- func (v *NullableMetaHttpRetriesResponse) Unset()
- type NullableMetaIPRange
- func (v NullableMetaIPRange) Get() *MetaIPRange
- func (v NullableMetaIPRange) IsSet() bool
- func (v NullableMetaIPRange) MarshalJSON() ([]byte, error)
- func (v *NullableMetaIPRange) Set(val *MetaIPRange)
- func (v *NullableMetaIPRange) UnmarshalJSON(src []byte) error
- func (v *NullableMetaIPRange) Unset()
- type NullableMetaIdsQuery
- func (v NullableMetaIdsQuery) Get() *MetaIdsQuery
- func (v NullableMetaIdsQuery) IsSet() bool
- func (v NullableMetaIdsQuery) MarshalJSON() ([]byte, error)
- func (v *NullableMetaIdsQuery) Set(val *MetaIdsQuery)
- func (v *NullableMetaIdsQuery) UnmarshalJSON(src []byte) error
- func (v *NullableMetaIdsQuery) Unset()
- type NullableMetaIndexAnalysis
- func (v NullableMetaIndexAnalysis) Get() *MetaIndexAnalysis
- func (v NullableMetaIndexAnalysis) IsSet() bool
- func (v NullableMetaIndexAnalysis) MarshalJSON() ([]byte, error)
- func (v *NullableMetaIndexAnalysis) Set(val *MetaIndexAnalysis)
- func (v *NullableMetaIndexAnalysis) UnmarshalJSON(src []byte) error
- func (v *NullableMetaIndexAnalysis) Unset()
- type NullableMetaIndexSettings
- func (v NullableMetaIndexSettings) Get() *MetaIndexSettings
- func (v NullableMetaIndexSettings) IsSet() bool
- func (v NullableMetaIndexSettings) MarshalJSON() ([]byte, error)
- func (v *NullableMetaIndexSettings) Set(val *MetaIndexSettings)
- func (v *NullableMetaIndexSettings) UnmarshalJSON(src []byte) error
- func (v *NullableMetaIndexSettings) Unset()
- type NullableMetaIndexSimple
- func (v NullableMetaIndexSimple) Get() *MetaIndexSimple
- func (v NullableMetaIndexSimple) IsSet() bool
- func (v NullableMetaIndexSimple) MarshalJSON() ([]byte, error)
- func (v *NullableMetaIndexSimple) Set(val *MetaIndexSimple)
- func (v *NullableMetaIndexSimple) UnmarshalJSON(src []byte) error
- func (v *NullableMetaIndexSimple) Unset()
- type NullableMetaIndexTemplate
- func (v NullableMetaIndexTemplate) Get() *MetaIndexTemplate
- func (v NullableMetaIndexTemplate) IsSet() bool
- func (v NullableMetaIndexTemplate) MarshalJSON() ([]byte, error)
- func (v *NullableMetaIndexTemplate) Set(val *MetaIndexTemplate)
- func (v *NullableMetaIndexTemplate) UnmarshalJSON(src []byte) error
- func (v *NullableMetaIndexTemplate) Unset()
- type NullableMetaJSONIngest
- func (v NullableMetaJSONIngest) Get() *MetaJSONIngest
- func (v NullableMetaJSONIngest) IsSet() bool
- func (v NullableMetaJSONIngest) MarshalJSON() ([]byte, error)
- func (v *NullableMetaJSONIngest) Set(val *MetaJSONIngest)
- func (v *NullableMetaJSONIngest) UnmarshalJSON(src []byte) error
- func (v *NullableMetaJSONIngest) Unset()
- type NullableMetaMappings
- func (v NullableMetaMappings) Get() *MetaMappings
- func (v NullableMetaMappings) IsSet() bool
- func (v NullableMetaMappings) MarshalJSON() ([]byte, error)
- func (v *NullableMetaMappings) Set(val *MetaMappings)
- func (v *NullableMetaMappings) UnmarshalJSON(src []byte) error
- func (v *NullableMetaMappings) Unset()
- type NullableMetaMatchBoolPrefixQuery
- func (v NullableMetaMatchBoolPrefixQuery) Get() *MetaMatchBoolPrefixQuery
- func (v NullableMetaMatchBoolPrefixQuery) IsSet() bool
- func (v NullableMetaMatchBoolPrefixQuery) MarshalJSON() ([]byte, error)
- func (v *NullableMetaMatchBoolPrefixQuery) Set(val *MetaMatchBoolPrefixQuery)
- func (v *NullableMetaMatchBoolPrefixQuery) UnmarshalJSON(src []byte) error
- func (v *NullableMetaMatchBoolPrefixQuery) Unset()
- type NullableMetaMatchPhrasePrefixQuery
- func (v NullableMetaMatchPhrasePrefixQuery) Get() *MetaMatchPhrasePrefixQuery
- func (v NullableMetaMatchPhrasePrefixQuery) IsSet() bool
- func (v NullableMetaMatchPhrasePrefixQuery) MarshalJSON() ([]byte, error)
- func (v *NullableMetaMatchPhrasePrefixQuery) Set(val *MetaMatchPhrasePrefixQuery)
- func (v *NullableMetaMatchPhrasePrefixQuery) UnmarshalJSON(src []byte) error
- func (v *NullableMetaMatchPhrasePrefixQuery) Unset()
- type NullableMetaMatchPhraseQuery
- func (v NullableMetaMatchPhraseQuery) Get() *MetaMatchPhraseQuery
- func (v NullableMetaMatchPhraseQuery) IsSet() bool
- func (v NullableMetaMatchPhraseQuery) MarshalJSON() ([]byte, error)
- func (v *NullableMetaMatchPhraseQuery) Set(val *MetaMatchPhraseQuery)
- func (v *NullableMetaMatchPhraseQuery) UnmarshalJSON(src []byte) error
- func (v *NullableMetaMatchPhraseQuery) Unset()
- type NullableMetaMatchQuery
- func (v NullableMetaMatchQuery) Get() *MetaMatchQuery
- func (v NullableMetaMatchQuery) IsSet() bool
- func (v NullableMetaMatchQuery) MarshalJSON() ([]byte, error)
- func (v *NullableMetaMatchQuery) Set(val *MetaMatchQuery)
- func (v *NullableMetaMatchQuery) UnmarshalJSON(src []byte) error
- func (v *NullableMetaMatchQuery) Unset()
- type NullableMetaMultiMatchQuery
- func (v NullableMetaMultiMatchQuery) Get() *MetaMultiMatchQuery
- func (v NullableMetaMultiMatchQuery) IsSet() bool
- func (v NullableMetaMultiMatchQuery) MarshalJSON() ([]byte, error)
- func (v *NullableMetaMultiMatchQuery) Set(val *MetaMultiMatchQuery)
- func (v *NullableMetaMultiMatchQuery) UnmarshalJSON(src []byte) error
- func (v *NullableMetaMultiMatchQuery) Unset()
- type NullableMetaPage
- type NullableMetaPrefixQuery
- func (v NullableMetaPrefixQuery) Get() *MetaPrefixQuery
- func (v NullableMetaPrefixQuery) IsSet() bool
- func (v NullableMetaPrefixQuery) MarshalJSON() ([]byte, error)
- func (v *NullableMetaPrefixQuery) Set(val *MetaPrefixQuery)
- func (v *NullableMetaPrefixQuery) UnmarshalJSON(src []byte) error
- func (v *NullableMetaPrefixQuery) Unset()
- type NullableMetaProperty
- func (v NullableMetaProperty) Get() *MetaProperty
- func (v NullableMetaProperty) IsSet() bool
- func (v NullableMetaProperty) MarshalJSON() ([]byte, error)
- func (v *NullableMetaProperty) Set(val *MetaProperty)
- func (v *NullableMetaProperty) UnmarshalJSON(src []byte) error
- func (v *NullableMetaProperty) Unset()
- type NullableMetaQuery
- type NullableMetaQueryStringQuery
- func (v NullableMetaQueryStringQuery) Get() *MetaQueryStringQuery
- func (v NullableMetaQueryStringQuery) IsSet() bool
- func (v NullableMetaQueryStringQuery) MarshalJSON() ([]byte, error)
- func (v *NullableMetaQueryStringQuery) Set(val *MetaQueryStringQuery)
- func (v *NullableMetaQueryStringQuery) UnmarshalJSON(src []byte) error
- func (v *NullableMetaQueryStringQuery) Unset()
- type NullableMetaRange
- type NullableMetaRangeQuery
- func (v NullableMetaRangeQuery) Get() *MetaRangeQuery
- func (v NullableMetaRangeQuery) IsSet() bool
- func (v NullableMetaRangeQuery) MarshalJSON() ([]byte, error)
- func (v *NullableMetaRangeQuery) Set(val *MetaRangeQuery)
- func (v *NullableMetaRangeQuery) UnmarshalJSON(src []byte) error
- func (v *NullableMetaRangeQuery) Unset()
- type NullableMetaRegexpQuery
- func (v NullableMetaRegexpQuery) Get() *MetaRegexpQuery
- func (v NullableMetaRegexpQuery) IsSet() bool
- func (v NullableMetaRegexpQuery) MarshalJSON() ([]byte, error)
- func (v *NullableMetaRegexpQuery) Set(val *MetaRegexpQuery)
- func (v *NullableMetaRegexpQuery) UnmarshalJSON(src []byte) error
- func (v *NullableMetaRegexpQuery) Unset()
- type NullableMetaSearchResponse
- func (v NullableMetaSearchResponse) Get() *MetaSearchResponse
- func (v NullableMetaSearchResponse) IsSet() bool
- func (v NullableMetaSearchResponse) MarshalJSON() ([]byte, error)
- func (v *NullableMetaSearchResponse) Set(val *MetaSearchResponse)
- func (v *NullableMetaSearchResponse) UnmarshalJSON(src []byte) error
- func (v *NullableMetaSearchResponse) Unset()
- type NullableMetaShards
- type NullableMetaSimpleQueryStringQuery
- func (v NullableMetaSimpleQueryStringQuery) Get() *MetaSimpleQueryStringQuery
- func (v NullableMetaSimpleQueryStringQuery) IsSet() bool
- func (v NullableMetaSimpleQueryStringQuery) MarshalJSON() ([]byte, error)
- func (v *NullableMetaSimpleQueryStringQuery) Set(val *MetaSimpleQueryStringQuery)
- func (v *NullableMetaSimpleQueryStringQuery) UnmarshalJSON(src []byte) error
- func (v *NullableMetaSimpleQueryStringQuery) Unset()
- type NullableMetaTemplate
- func (v NullableMetaTemplate) Get() *MetaTemplate
- func (v NullableMetaTemplate) IsSet() bool
- func (v NullableMetaTemplate) MarshalJSON() ([]byte, error)
- func (v *NullableMetaTemplate) Set(val *MetaTemplate)
- func (v *NullableMetaTemplate) UnmarshalJSON(src []byte) error
- func (v *NullableMetaTemplate) Unset()
- type NullableMetaTemplateTemplate
- func (v NullableMetaTemplateTemplate) Get() *MetaTemplateTemplate
- func (v NullableMetaTemplateTemplate) IsSet() bool
- func (v NullableMetaTemplateTemplate) MarshalJSON() ([]byte, error)
- func (v *NullableMetaTemplateTemplate) Set(val *MetaTemplateTemplate)
- func (v *NullableMetaTemplateTemplate) UnmarshalJSON(src []byte) error
- func (v *NullableMetaTemplateTemplate) Unset()
- type NullableMetaTermQuery
- func (v NullableMetaTermQuery) Get() *MetaTermQuery
- func (v NullableMetaTermQuery) IsSet() bool
- func (v NullableMetaTermQuery) MarshalJSON() ([]byte, error)
- func (v *NullableMetaTermQuery) Set(val *MetaTermQuery)
- func (v *NullableMetaTermQuery) UnmarshalJSON(src []byte) error
- func (v *NullableMetaTermQuery) Unset()
- type NullableMetaTotal
- type NullableMetaUser
- type NullableMetaVersionResponse
- func (v NullableMetaVersionResponse) Get() *MetaVersionResponse
- func (v NullableMetaVersionResponse) IsSet() bool
- func (v NullableMetaVersionResponse) MarshalJSON() ([]byte, error)
- func (v *NullableMetaVersionResponse) Set(val *MetaVersionResponse)
- func (v *NullableMetaVersionResponse) UnmarshalJSON(src []byte) error
- func (v *NullableMetaVersionResponse) Unset()
- type NullableMetaWildcardQuery
- func (v NullableMetaWildcardQuery) Get() *MetaWildcardQuery
- func (v NullableMetaWildcardQuery) IsSet() bool
- func (v NullableMetaWildcardQuery) MarshalJSON() ([]byte, error)
- func (v *NullableMetaWildcardQuery) Set(val *MetaWildcardQuery)
- func (v *NullableMetaWildcardQuery) UnmarshalJSON(src []byte) error
- func (v *NullableMetaWildcardQuery) Unset()
- type NullableMetaZincQuery
- func (v NullableMetaZincQuery) Get() *MetaZincQuery
- func (v NullableMetaZincQuery) IsSet() bool
- func (v NullableMetaZincQuery) MarshalJSON() ([]byte, error)
- func (v *NullableMetaZincQuery) Set(val *MetaZincQuery)
- func (v *NullableMetaZincQuery) UnmarshalJSON(src []byte) error
- func (v *NullableMetaZincQuery) Unset()
- type NullableString
- type NullableTime
- type NullableV1AggregationDateRange
- func (v NullableV1AggregationDateRange) Get() *V1AggregationDateRange
- func (v NullableV1AggregationDateRange) IsSet() bool
- func (v NullableV1AggregationDateRange) MarshalJSON() ([]byte, error)
- func (v *NullableV1AggregationDateRange) Set(val *V1AggregationDateRange)
- func (v *NullableV1AggregationDateRange) UnmarshalJSON(src []byte) error
- func (v *NullableV1AggregationDateRange) Unset()
- type NullableV1AggregationNumberRange
- func (v NullableV1AggregationNumberRange) Get() *V1AggregationNumberRange
- func (v NullableV1AggregationNumberRange) IsSet() bool
- func (v NullableV1AggregationNumberRange) MarshalJSON() ([]byte, error)
- func (v *NullableV1AggregationNumberRange) Set(val *V1AggregationNumberRange)
- func (v *NullableV1AggregationNumberRange) UnmarshalJSON(src []byte) error
- func (v *NullableV1AggregationNumberRange) Unset()
- type NullableV1AggregationParams
- func (v NullableV1AggregationParams) Get() *V1AggregationParams
- func (v NullableV1AggregationParams) IsSet() bool
- func (v NullableV1AggregationParams) MarshalJSON() ([]byte, error)
- func (v *NullableV1AggregationParams) Set(val *V1AggregationParams)
- func (v *NullableV1AggregationParams) UnmarshalJSON(src []byte) error
- func (v *NullableV1AggregationParams) Unset()
- type NullableV1QueryParams
- func (v NullableV1QueryParams) Get() *V1QueryParams
- func (v NullableV1QueryParams) IsSet() bool
- func (v NullableV1QueryParams) MarshalJSON() ([]byte, error)
- func (v *NullableV1QueryParams) Set(val *V1QueryParams)
- func (v *NullableV1QueryParams) UnmarshalJSON(src []byte) error
- func (v *NullableV1QueryParams) Unset()
- type NullableV1ZincQuery
- func (v NullableV1ZincQuery) Get() *V1ZincQuery
- func (v NullableV1ZincQuery) IsSet() bool
- func (v NullableV1ZincQuery) MarshalJSON() ([]byte, error)
- func (v *NullableV1ZincQuery) Set(val *V1ZincQuery)
- func (v *NullableV1ZincQuery) UnmarshalJSON(src []byte) error
- func (v *NullableV1ZincQuery) Unset()
- type Search
- type SearchDeleteByQueryRequest
- type SearchMSearchRequest
- type SearchSearchRequest
- type SearchSearchV1Request
- type SearchService
- func (a *SearchService) DeleteByQuery(ctx context.Context, index string) SearchDeleteByQueryRequest
- func (a *SearchService) DeleteByQueryExecute(r SearchDeleteByQueryRequest) (*MetaHTTPResponseDeleteByQuery, *http.Response, error)
- func (a *SearchService) MSearch(ctx context.Context) SearchMSearchRequest
- func (a *SearchService) MSearchExecute(r SearchMSearchRequest) (*MetaSearchResponse, *http.Response, error)
- func (a *SearchService) Search(ctx context.Context, index string) SearchSearchRequest
- func (a *SearchService) SearchExecute(r SearchSearchRequest) (*MetaSearchResponse, *http.Response, error)
- func (a *SearchService) SearchV1(ctx context.Context, index string) SearchSearchV1Request
- func (a *SearchService) SearchV1Execute(r SearchSearchV1Request) (*MetaSearchResponse, *http.Response, error)
- type ServerConfiguration
- type ServerConfigurations
- type ServerVariable
- type User
- type UserCreateRequest
- type UserDeleteRequest
- type UserListRequest
- type UserLoginRequest
- type UserService
- func (a *UserService) Create(ctx context.Context) UserCreateRequest
- func (a *UserService) CreateExecute(r UserCreateRequest) (*MetaHTTPResponseID, *http.Response, error)
- func (a *UserService) Delete(ctx context.Context, id string) UserDeleteRequest
- func (a *UserService) DeleteExecute(r UserDeleteRequest) (*MetaHTTPResponseID, *http.Response, error)
- func (a *UserService) List(ctx context.Context) UserListRequest
- func (a *UserService) ListExecute(r UserListRequest) ([]MetaUser, *http.Response, error)
- func (a *UserService) Login(ctx context.Context) UserLoginRequest
- func (a *UserService) LoginExecute(r UserLoginRequest) (*AuthLoginResponse, *http.Response, error)
- func (a *UserService) Update(ctx context.Context) UserUpdateRequest
- func (a *UserService) UpdateExecute(r UserUpdateRequest) (*MetaHTTPResponseID, *http.Response, error)
- type UserUpdateRequest
- type V1AggregationDateRange
- func (o *V1AggregationDateRange) GetFrom() string
- func (o *V1AggregationDateRange) GetFromOk() (*string, bool)
- func (o *V1AggregationDateRange) GetTo() string
- func (o *V1AggregationDateRange) GetToOk() (*string, bool)
- func (o *V1AggregationDateRange) HasFrom() bool
- func (o *V1AggregationDateRange) HasTo() bool
- func (o V1AggregationDateRange) MarshalJSON() ([]byte, error)
- func (o *V1AggregationDateRange) SetFrom(v string)
- func (o *V1AggregationDateRange) SetTo(v string)
- type V1AggregationNumberRange
- func (o *V1AggregationNumberRange) GetFrom() float32
- func (o *V1AggregationNumberRange) GetFromOk() (*float32, bool)
- func (o *V1AggregationNumberRange) GetTo() float32
- func (o *V1AggregationNumberRange) GetToOk() (*float32, bool)
- func (o *V1AggregationNumberRange) HasFrom() bool
- func (o *V1AggregationNumberRange) HasTo() bool
- func (o V1AggregationNumberRange) MarshalJSON() ([]byte, error)
- func (o *V1AggregationNumberRange) SetFrom(v float32)
- func (o *V1AggregationNumberRange) SetTo(v float32)
- type V1AggregationParams
- func (o *V1AggregationParams) GetAggType() string
- func (o *V1AggregationParams) GetAggTypeOk() (*string, bool)
- func (o *V1AggregationParams) GetAggs() map[string]V1AggregationParams
- func (o *V1AggregationParams) GetAggsOk() (*map[string]V1AggregationParams, bool)
- func (o *V1AggregationParams) GetDateRanges() []V1AggregationDateRange
- func (o *V1AggregationParams) GetDateRangesOk() ([]V1AggregationDateRange, bool)
- func (o *V1AggregationParams) GetField() string
- func (o *V1AggregationParams) GetFieldOk() (*string, bool)
- func (o *V1AggregationParams) GetRanges() []V1AggregationNumberRange
- func (o *V1AggregationParams) GetRangesOk() ([]V1AggregationNumberRange, bool)
- func (o *V1AggregationParams) GetSize() int32
- func (o *V1AggregationParams) GetSizeOk() (*int32, bool)
- func (o *V1AggregationParams) GetWeightField() string
- func (o *V1AggregationParams) GetWeightFieldOk() (*string, bool)
- func (o *V1AggregationParams) HasAggType() bool
- func (o *V1AggregationParams) HasAggs() bool
- func (o *V1AggregationParams) HasDateRanges() bool
- func (o *V1AggregationParams) HasField() bool
- func (o *V1AggregationParams) HasRanges() bool
- func (o *V1AggregationParams) HasSize() bool
- func (o *V1AggregationParams) HasWeightField() bool
- func (o V1AggregationParams) MarshalJSON() ([]byte, error)
- func (o *V1AggregationParams) SetAggType(v string)
- func (o *V1AggregationParams) SetAggs(v map[string]V1AggregationParams)
- func (o *V1AggregationParams) SetDateRanges(v []V1AggregationDateRange)
- func (o *V1AggregationParams) SetField(v string)
- func (o *V1AggregationParams) SetRanges(v []V1AggregationNumberRange)
- func (o *V1AggregationParams) SetSize(v int32)
- func (o *V1AggregationParams) SetWeightField(v string)
- type V1QueryParams
- func (o *V1QueryParams) GetBoost() int32
- func (o *V1QueryParams) GetBoostOk() (*int32, bool)
- func (o *V1QueryParams) GetEndTime() string
- func (o *V1QueryParams) GetEndTimeOk() (*string, bool)
- func (o *V1QueryParams) GetField() string
- func (o *V1QueryParams) GetFieldOk() (*string, bool)
- func (o *V1QueryParams) GetStartTime() string
- func (o *V1QueryParams) GetStartTimeOk() (*string, bool)
- func (o *V1QueryParams) GetTerm() string
- func (o *V1QueryParams) GetTermOk() (*string, bool)
- func (o *V1QueryParams) GetTerms() [][]string
- func (o *V1QueryParams) GetTermsOk() ([][]string, bool)
- func (o *V1QueryParams) HasBoost() bool
- func (o *V1QueryParams) HasEndTime() bool
- func (o *V1QueryParams) HasField() bool
- func (o *V1QueryParams) HasStartTime() bool
- func (o *V1QueryParams) HasTerm() bool
- func (o *V1QueryParams) HasTerms() bool
- func (o V1QueryParams) MarshalJSON() ([]byte, error)
- func (o *V1QueryParams) SetBoost(v int32)
- func (o *V1QueryParams) SetEndTime(v string)
- func (o *V1QueryParams) SetField(v string)
- func (o *V1QueryParams) SetStartTime(v string)
- func (o *V1QueryParams) SetTerm(v string)
- func (o *V1QueryParams) SetTerms(v [][]string)
- type V1ZincQuery
- func (o *V1ZincQuery) GetAggs() map[string]V1AggregationParams
- func (o *V1ZincQuery) GetAggsOk() (*map[string]V1AggregationParams, bool)
- func (o *V1ZincQuery) GetExplain() bool
- func (o *V1ZincQuery) GetExplainOk() (*bool, bool)
- func (o *V1ZincQuery) GetFrom() int32
- func (o *V1ZincQuery) GetFromOk() (*int32, bool)
- func (o *V1ZincQuery) GetHighlight() MetaHighlight
- func (o *V1ZincQuery) GetHighlightOk() (*MetaHighlight, bool)
- func (o *V1ZincQuery) GetMaxResults() int32
- func (o *V1ZincQuery) GetMaxResultsOk() (*int32, bool)
- func (o *V1ZincQuery) GetQuery() V1QueryParams
- func (o *V1ZincQuery) GetQueryOk() (*V1QueryParams, bool)
- func (o *V1ZincQuery) GetSearchType() string
- func (o *V1ZincQuery) GetSearchTypeOk() (*string, bool)
- func (o *V1ZincQuery) GetSortFields() []string
- func (o *V1ZincQuery) GetSortFieldsOk() ([]string, bool)
- func (o *V1ZincQuery) GetSource() []string
- func (o *V1ZincQuery) GetSourceOk() ([]string, bool)
- func (o *V1ZincQuery) HasAggs() bool
- func (o *V1ZincQuery) HasExplain() bool
- func (o *V1ZincQuery) HasFrom() bool
- func (o *V1ZincQuery) HasHighlight() bool
- func (o *V1ZincQuery) HasMaxResults() bool
- func (o *V1ZincQuery) HasQuery() bool
- func (o *V1ZincQuery) HasSearchType() bool
- func (o *V1ZincQuery) HasSortFields() bool
- func (o *V1ZincQuery) HasSource() bool
- func (o V1ZincQuery) MarshalJSON() ([]byte, error)
- func (o *V1ZincQuery) SetAggs(v map[string]V1AggregationParams)
- func (o *V1ZincQuery) SetExplain(v bool)
- func (o *V1ZincQuery) SetFrom(v int32)
- func (o *V1ZincQuery) SetHighlight(v MetaHighlight)
- func (o *V1ZincQuery) SetMaxResults(v int32)
- func (o *V1ZincQuery) SetQuery(v V1QueryParams)
- func (o *V1ZincQuery) SetSearchType(v string)
- func (o *V1ZincQuery) SetSortFields(v []string)
- func (o *V1ZincQuery) SetSource(v []string)
Constants ¶
This section is empty.
Variables ¶
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 ¶
CacheExpires helper function to determine remaining time before repeating a request.
func PtrFloat32 ¶
PtrFloat32 is a helper routine that returns a pointer to given float value.
func PtrFloat64 ¶
PtrFloat64 is a helper routine that returns a pointer to given float 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
type APIKey ¶
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 }
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) ServerURLWithContext ¶
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 ¶
func (r DefaultHealthzRequest) Execute() (*MetaHealthzResponse, *http.Response, error)
type DefaultService ¶
type DefaultService service
DefaultService Default service
func (*DefaultService) Healthz ¶
func (a *DefaultService) Healthz(ctx context.Context) DefaultHealthzRequest
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 ¶
func (a *DefaultService) HealthzExecute(r DefaultHealthzRequest) (*MetaHealthzResponse, *http.Response, error)
Execute executes the request
@return MetaHealthzResponse
func (*DefaultService) Version ¶
func (a *DefaultService) Version(ctx context.Context) DefaultVersionRequest
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 ¶
func (a *DefaultService) VersionExecute(r DefaultVersionRequest) (*MetaVersionResponse, *http.Response, error)
Execute executes the request
@return MetaVersionResponse
type DefaultVersionRequest ¶
type DefaultVersionRequest struct { ApiService Default // contains filtered or unexported fields }
func (DefaultVersionRequest) Execute ¶
func (r DefaultVersionRequest) Execute() (*MetaVersionResponse, *http.Response, error)
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 (r DocumentBulkRequest) Execute() (*MetaHTTPResponseRecordCount, *http.Response, error)
func (DocumentBulkRequest) Query ¶
func (r DocumentBulkRequest) Query(query string) DocumentBulkRequest
Query
type DocumentBulkv2Request ¶ added in v0.2.7
type DocumentBulkv2Request struct { ApiService Document // contains filtered or unexported fields }
func (DocumentBulkv2Request) Execute ¶ added in v0.2.7
func (r DocumentBulkv2Request) Execute() (*MetaHTTPResponseRecordCount, *http.Response, error)
func (DocumentBulkv2Request) Query ¶ added in v0.2.7
func (r DocumentBulkv2Request) Query(query MetaJSONIngest) DocumentBulkv2Request
Query
type DocumentDeleteRequest ¶
type DocumentDeleteRequest struct { ApiService Document // contains filtered or unexported fields }
func (DocumentDeleteRequest) Execute ¶
func (r DocumentDeleteRequest) Execute() (*MetaHTTPResponseDocument, *http.Response, error)
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 ¶
func (r DocumentESBulkRequest) Query(query string) DocumentESBulkRequest
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 ¶
func (r DocumentIndexRequest) Execute() (*MetaHTTPResponseID, *http.Response, error)
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 ¶
func (r DocumentIndexWithIDRequest) Execute() (*MetaHTTPResponseID, *http.Response, error)
type DocumentMultiRequest ¶ added in v0.2.7
type DocumentMultiRequest struct { ApiService Document // contains filtered or unexported fields }
func (DocumentMultiRequest) Execute ¶ added in v0.2.7
func (r DocumentMultiRequest) Execute() (*MetaHTTPResponseRecordCount, *http.Response, error)
func (DocumentMultiRequest) Query ¶ added in v0.2.7
func (r DocumentMultiRequest) Query(query string) DocumentMultiRequest
Query
type DocumentService ¶
type DocumentService service
DocumentService Document service
func (*DocumentService) Bulk ¶
func (a *DocumentService) Bulk(ctx context.Context) DocumentBulkRequest
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 ¶
func (a *DocumentService) BulkExecute(r DocumentBulkRequest) (*MetaHTTPResponseRecordCount, *http.Response, error)
Execute executes the request
@return MetaHTTPResponseRecordCount
func (*DocumentService) Bulkv2 ¶ added in v0.2.7
func (a *DocumentService) Bulkv2(ctx context.Context) DocumentBulkv2Request
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 ¶ added in v0.2.7
func (a *DocumentService) Bulkv2Execute(r DocumentBulkv2Request) (*MetaHTTPResponseRecordCount, *http.Response, error)
Execute executes the request
@return MetaHTTPResponseRecordCount
func (*DocumentService) Delete ¶
func (a *DocumentService) Delete(ctx context.Context, index string, id string) DocumentDeleteRequest
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 ¶
func (a *DocumentService) DeleteExecute(r DocumentDeleteRequest) (*MetaHTTPResponseDocument, *http.Response, error)
Execute executes the request
@return MetaHTTPResponseDocument
func (*DocumentService) ESBulk ¶
func (a *DocumentService) ESBulk(ctx context.Context) DocumentESBulkRequest
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 ¶
func (a *DocumentService) Index(ctx context.Context, index string) DocumentIndexRequest
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 ¶
func (a *DocumentService) IndexExecute(r DocumentIndexRequest) (*MetaHTTPResponseID, *http.Response, error)
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 ¶
func (a *DocumentService) IndexWithIDExecute(r DocumentIndexWithIDRequest) (*MetaHTTPResponseID, *http.Response, error)
Execute executes the request
@return MetaHTTPResponseID
func (*DocumentService) Multi ¶ added in v0.2.7
func (a *DocumentService) Multi(ctx context.Context, index string) DocumentMultiRequest
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 ¶ added in v0.2.7
func (a *DocumentService) MultiExecute(r DocumentMultiRequest) (*MetaHTTPResponseRecordCount, *http.Response, error)
Execute executes the request
@return MetaHTTPResponseRecordCount
func (*DocumentService) Update ¶
func (a *DocumentService) Update(ctx context.Context, index string, id string) DocumentUpdateRequest
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 ¶
func (a *DocumentService) UpdateExecute(r DocumentUpdateRequest) (*MetaHTTPResponseID, *http.Response, error)
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 ¶
func (r DocumentUpdateRequest) Execute() (*MetaHTTPResponseID, *http.Response, error)
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 ¶ added in v0.3.3
type IndexAddOrRemoveESAliasRequest struct { ApiService Index // contains filtered or unexported fields }
type IndexAnalyzeIndexRequest ¶
type IndexAnalyzeIndexRequest struct { ApiService Index // contains filtered or unexported fields }
func (IndexAnalyzeIndexRequest) Execute ¶
func (r IndexAnalyzeIndexRequest) Execute() (*IndexAnalyzeResponse, *http.Response, error)
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 (r IndexAnalyzeRequest) Execute() (*IndexAnalyzeResponse, *http.Response, error)
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 ¶
func (o *IndexAnalyzeResponse) GetTokens() []IndexAnalyzeResponseToken
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 ¶
func (o *IndexAnalyzeResponse) SetTokens(v []IndexAnalyzeResponseToken)
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 ¶ added in v0.2.7
func (r IndexCreateRequest) Data(data MetaIndexSimple) IndexCreateRequest
Index data
func (IndexCreateRequest) Execute ¶
func (r IndexCreateRequest) Execute() (*MetaHTTPResponseIndex, *http.Response, error)
type IndexCreateTemplateRequest ¶
type IndexCreateTemplateRequest struct { ApiService Index // contains filtered or unexported fields }
func (IndexCreateTemplateRequest) Execute ¶
func (r IndexCreateTemplateRequest) Execute() (*MetaHTTPResponseTemplate, *http.Response, error)
func (IndexCreateTemplateRequest) Template ¶
func (r IndexCreateTemplateRequest) Template(template MetaIndexTemplate) IndexCreateTemplateRequest
Template data
type IndexDeleteRequest ¶
type IndexDeleteRequest struct { ApiService Index // contains filtered or unexported fields }
func (IndexDeleteRequest) Execute ¶
func (r IndexDeleteRequest) Execute() (*MetaHTTPResponseIndex, *http.Response, error)
type IndexDeleteTemplateRequest ¶
type IndexDeleteTemplateRequest struct { ApiService Index // contains filtered or unexported fields }
func (IndexDeleteTemplateRequest) Execute ¶
func (r IndexDeleteTemplateRequest) Execute() (*MetaHTTPResponse, *http.Response, error)
type IndexESCreateIndexRequest ¶ added in v0.2.7
type IndexESCreateIndexRequest struct { ApiService Index // contains filtered or unexported fields }
func (IndexESCreateIndexRequest) Data ¶ added in v0.2.7
func (r IndexESCreateIndexRequest) Data(data MetaIndexSimple) IndexESCreateIndexRequest
Index data
type IndexESGetMappingRequest ¶ added in v0.2.7
type IndexESGetMappingRequest struct { ApiService Index // contains filtered or unexported fields }
type IndexEsExistsRequest ¶ added in v0.2.7
type IndexEsExistsRequest struct { ApiService Index // contains filtered or unexported fields }
func (IndexEsExistsRequest) Execute ¶ added in v0.2.7
func (r IndexEsExistsRequest) Execute() (*MetaHTTPResponse, *http.Response, error)
type IndexExistsRequest ¶ added in v0.2.7
type IndexExistsRequest struct { ApiService Index // contains filtered or unexported fields }
func (IndexExistsRequest) Execute ¶ added in v0.2.7
func (r IndexExistsRequest) Execute() (*MetaHTTPResponse, *http.Response, error)
type IndexGetESAliasesRequest ¶ added in v0.3.3
type IndexGetESAliasesRequest struct { ApiService Index // contains filtered or unexported fields }
type IndexGetIndexRequest ¶ added in v0.3.3
type IndexGetIndexRequest struct { ApiService Index // contains filtered or unexported fields }
type IndexGetMappingRequest ¶
type IndexGetMappingRequest struct { ApiService Index // contains filtered or unexported fields }
type IndexGetSettingsRequest ¶
type IndexGetSettingsRequest struct { ApiService Index // contains filtered or unexported fields }
type IndexGetTemplateRequest ¶
type IndexGetTemplateRequest struct { ApiService Index // contains filtered or unexported fields }
func (IndexGetTemplateRequest) Execute ¶
func (r IndexGetTemplateRequest) Execute() (*MetaIndexTemplate, *http.Response, error)
type IndexIndexListResponse ¶ added in v0.2.7
type IndexIndexListResponse struct { List []map[string]interface{} `json:"list,omitempty"` Page *MetaPage `json:"page,omitempty"` }
IndexIndexListResponse struct for IndexIndexListResponse
func NewIndexIndexListResponse ¶ added in v0.2.7
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 ¶ added in v0.2.7
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 ¶ added in v0.2.7
func (o *IndexIndexListResponse) GetList() []map[string]interface{}
GetList returns the List field value if set, zero value otherwise.
func (*IndexIndexListResponse) GetListOk ¶ added in v0.2.7
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 ¶ added in v0.2.7
func (o *IndexIndexListResponse) GetPage() MetaPage
GetPage returns the Page field value if set, zero value otherwise.
func (*IndexIndexListResponse) GetPageOk ¶ added in v0.2.7
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 ¶ added in v0.2.7
func (o *IndexIndexListResponse) HasList() bool
HasList returns a boolean if a field has been set.
func (*IndexIndexListResponse) HasPage ¶ added in v0.2.7
func (o *IndexIndexListResponse) HasPage() bool
HasPage returns a boolean if a field has been set.
func (IndexIndexListResponse) MarshalJSON ¶ added in v0.2.7
func (o IndexIndexListResponse) MarshalJSON() ([]byte, error)
func (*IndexIndexListResponse) SetList ¶ added in v0.2.7
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 ¶ added in v0.2.7
func (o *IndexIndexListResponse) SetPage(v MetaPage)
SetPage gets a reference to the given MetaPage and assigns it to the Page field.
type IndexIndexNameListRequest ¶ added in v0.2.7
type IndexIndexNameListRequest struct { ApiService Index // contains filtered or unexported fields }
func (IndexIndexNameListRequest) Execute ¶ added in v0.2.7
func (r IndexIndexNameListRequest) Execute() ([]string, *http.Response, error)
func (IndexIndexNameListRequest) Name ¶ added in v0.2.7
func (r IndexIndexNameListRequest) Name(name string) IndexIndexNameListRequest
IndexName
type IndexListRequest ¶
type IndexListRequest struct { ApiService Index // contains filtered or unexported fields }
func (IndexListRequest) Desc ¶ added in v0.2.7
func (r IndexListRequest) Desc(desc bool) IndexListRequest
desc
func (IndexListRequest) Execute ¶
func (r IndexListRequest) Execute() (*IndexIndexListResponse, *http.Response, error)
func (IndexListRequest) Name ¶ added in v0.2.7
func (r IndexListRequest) Name(name string) IndexListRequest
name
func (IndexListRequest) PageNum ¶ added in v0.2.7
func (r IndexListRequest) PageNum(pageNum int32) IndexListRequest
page num
func (IndexListRequest) PageSize ¶ added in v0.2.7
func (r IndexListRequest) PageSize(pageSize int32) IndexListRequest
page size
func (IndexListRequest) SortBy ¶ added in v0.2.7
func (r IndexListRequest) SortBy(sortBy string) IndexListRequest
sort by
type IndexListTemplatesRequest ¶
type IndexListTemplatesRequest struct { ApiService Index // contains filtered or unexported fields }
func (IndexListTemplatesRequest) Execute ¶
func (r IndexListTemplatesRequest) Execute() ([]MetaTemplate, *http.Response, error)
type IndexRefreshRequest ¶
type IndexRefreshRequest struct { ApiService Index // contains filtered or unexported fields }
func (IndexRefreshRequest) Execute ¶
func (r IndexRefreshRequest) Execute() (*MetaHTTPResponse, *http.Response, error)
type IndexService ¶
type IndexService service
IndexService Index service
func (*IndexService) AddOrRemoveESAlias ¶ added in v0.3.3
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 ¶ added in v0.3.3
func (a *IndexService) AddOrRemoveESAliasExecute(r IndexAddOrRemoveESAliasRequest) (map[string]interface{}, *http.Response, error)
Execute executes the request
@return map[string]interface{}
func (*IndexService) Analyze ¶
func (a *IndexService) Analyze(ctx context.Context) IndexAnalyzeRequest
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 ¶
func (a *IndexService) AnalyzeExecute(r IndexAnalyzeRequest) (*IndexAnalyzeResponse, *http.Response, error)
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 ¶
func (a *IndexService) AnalyzeIndexExecute(r IndexAnalyzeIndexRequest) (*IndexAnalyzeResponse, *http.Response, error)
Execute executes the request
@return IndexAnalyzeResponse
func (*IndexService) Create ¶
func (a *IndexService) Create(ctx context.Context) IndexCreateRequest
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 ¶
func (a *IndexService) CreateExecute(r IndexCreateRequest) (*MetaHTTPResponseIndex, *http.Response, error)
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 ¶
func (a *IndexService) CreateTemplateExecute(r IndexCreateTemplateRequest) (*MetaHTTPResponseTemplate, *http.Response, error)
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 ¶
func (a *IndexService) DeleteExecute(r IndexDeleteRequest) (*MetaHTTPResponseIndex, *http.Response, error)
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 ¶ added in v0.2.7
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 ¶ added in v0.2.7
func (a *IndexService) ESCreateIndexExecute(r IndexESCreateIndexRequest) (map[string]interface{}, *http.Response, error)
Execute executes the request
@return map[string]interface{}
func (*IndexService) ESGetMapping ¶ added in v0.2.7
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 ¶ added in v0.2.7
func (a *IndexService) ESGetMappingExecute(r IndexESGetMappingRequest) (map[string]interface{}, *http.Response, error)
Execute executes the request
@return map[string]interface{}
func (*IndexService) EsExists ¶ added in v0.2.7
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 ¶ added in v0.2.7
func (a *IndexService) EsExistsExecute(r IndexEsExistsRequest) (*MetaHTTPResponse, *http.Response, error)
Execute executes the request
@return MetaHTTPResponse
func (*IndexService) Exists ¶ added in v0.2.7
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 ¶ added in v0.2.7
func (a *IndexService) ExistsExecute(r IndexExistsRequest) (*MetaHTTPResponse, *http.Response, error)
Execute executes the request
@return MetaHTTPResponse
func (*IndexService) GetESAliases ¶ added in v0.3.3
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 ¶ added in v0.3.3
func (a *IndexService) GetESAliasesExecute(r IndexGetESAliasesRequest) (map[string]interface{}, *http.Response, error)
Execute executes the request
@return map[string]interface{}
func (*IndexService) GetIndex ¶ added in v0.3.3
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 ¶ added in v0.3.3
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 ¶
func (a *IndexService) GetTemplateExecute(r IndexGetTemplateRequest) (*MetaIndexTemplate, *http.Response, error)
Execute executes the request
@return MetaIndexTemplate
func (*IndexService) IndexNameList ¶ added in v0.2.7
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 ¶ added in v0.2.7
func (a *IndexService) IndexNameListExecute(r IndexIndexNameListRequest) ([]string, *http.Response, error)
Execute executes the request
@return []string
func (*IndexService) List ¶
func (a *IndexService) List(ctx context.Context) IndexListRequest
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 ¶
func (a *IndexService) ListExecute(r IndexListRequest) (*IndexIndexListResponse, *http.Response, error)
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 ¶
func (a *IndexService) RefreshExecute(r IndexRefreshRequest) (*MetaHTTPResponse, *http.Response, error)
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 ¶
func (a *IndexService) SetMappingExecute(r IndexSetMappingRequest) (*MetaHTTPResponse, *http.Response, error)
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 ¶
func (a *IndexService) SetSettingsExecute(r IndexSetSettingsRequest) (*MetaHTTPResponse, *http.Response, error)
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 ¶
func (a *IndexService) UpdateTemplateExecute(r IndexUpdateTemplateRequest) (*MetaHTTPResponseTemplate, *http.Response, error)
Execute executes the request
@return MetaHTTPResponseTemplate
type IndexSetMappingRequest ¶
type IndexSetMappingRequest struct { ApiService Index // contains filtered or unexported fields }
func (IndexSetMappingRequest) Execute ¶
func (r IndexSetMappingRequest) Execute() (*MetaHTTPResponse, *http.Response, error)
func (IndexSetMappingRequest) Mapping ¶
func (r IndexSetMappingRequest) Mapping(mapping MetaMappings) IndexSetMappingRequest
Mapping
type IndexSetSettingsRequest ¶
type IndexSetSettingsRequest struct { ApiService Index // contains filtered or unexported fields }
func (IndexSetSettingsRequest) Execute ¶
func (r IndexSetSettingsRequest) Execute() (*MetaHTTPResponse, *http.Response, error)
func (IndexSetSettingsRequest) Settings ¶
func (r IndexSetSettingsRequest) Settings(settings MetaIndexSettings) IndexSetSettingsRequest
Settings
type IndexUpdateTemplateRequest ¶
type IndexUpdateTemplateRequest struct { ApiService Index // contains filtered or unexported fields }
func (IndexUpdateTemplateRequest) Execute ¶
func (r IndexUpdateTemplateRequest) Execute() (*MetaHTTPResponseTemplate, *http.Response, error)
func (IndexUpdateTemplateRequest) Template ¶
func (r IndexUpdateTemplateRequest) Template(template MetaIndexTemplate) IndexUpdateTemplateRequest
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 ¶
func (o *MetaAggregationAutoDateHistogram) GetField() string
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 ¶
func (o *MetaAggregationAutoDateHistogram) GetFormat() string
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 ¶
func (o *MetaAggregationAutoDateHistogram) SetField(v string)
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 ¶
func (o *MetaAggregationDateHistogram) GetExtendedBounds() AggregationHistogramBound
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 ¶
func (o *MetaAggregationDateHistogram) GetHardBounds() AggregationHistogramBound
GetHardBounds returns the HardBounds field value if set, zero value otherwise.
func (*MetaAggregationDateHistogram) GetHardBoundsOk ¶
func (o *MetaAggregationDateHistogram) 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 (*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 ¶
func (o *MetaAggregationDateHistogram) SetExtendedBounds(v AggregationHistogramBound)
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 ¶
func (o *MetaAggregationDateHistogram) SetHardBounds(v AggregationHistogramBound)
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 ¶
func (o *MetaAggregationHistogram) GetHardBounds() AggregationHistogramBound
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 ¶
func (o *MetaAggregationHistogram) SetHardBounds(v AggregationHistogramBound)
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 ¶
func (o *MetaAggregations) GetAvg() MetaAggregationMetric
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 ¶
func (o *MetaAggregations) GetCount() MetaAggregationMetric
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 ¶
func (o *MetaAggregations) GetMax() MetaAggregationMetric
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 ¶
func (o *MetaAggregations) GetMin() MetaAggregationMetric
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 ¶
func (o *MetaAggregations) GetSum() MetaAggregationMetric
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 ¶
func (o *MetaAggregations) GetTerms() MetaAggregationsTerms
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 ¶
func (o *MetaAggregations) SetAvg(v MetaAggregationMetric)
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 ¶
func (o *MetaAggregations) SetMax(v MetaAggregationMetric)
SetMax gets a reference to the given MetaAggregationMetric and assigns it to the Max field.
func (*MetaAggregations) SetMin ¶
func (o *MetaAggregations) SetMin(v MetaAggregationMetric)
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 ¶
func (o *MetaAggregations) SetSum(v MetaAggregationMetric)
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 ¶
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 ¶ added in v0.3.3
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 ¶ added in v0.3.3
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 ¶ added in v0.3.3
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 ¶ added in v0.3.3
func (o *MetaHTTPResponseDeleteByQuery) GetBatches() int32
GetBatches returns the Batches field value if set, zero value otherwise.
func (*MetaHTTPResponseDeleteByQuery) GetBatchesOk ¶ added in v0.3.3
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 ¶ added in v0.3.3
func (o *MetaHTTPResponseDeleteByQuery) GetDeleted() int32
GetDeleted returns the Deleted field value if set, zero value otherwise.
func (*MetaHTTPResponseDeleteByQuery) GetDeletedOk ¶ added in v0.3.3
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 ¶ added in v0.3.3
func (o *MetaHTTPResponseDeleteByQuery) GetFailures() []string
GetFailures returns the Failures field value if set, zero value otherwise.
func (*MetaHTTPResponseDeleteByQuery) GetFailuresOk ¶ added in v0.3.3
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 ¶ added in v0.3.3
func (o *MetaHTTPResponseDeleteByQuery) GetNoops() int32
GetNoops returns the Noops field value if set, zero value otherwise.
func (*MetaHTTPResponseDeleteByQuery) GetNoopsOk ¶ added in v0.3.3
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 ¶ added in v0.3.3
func (o *MetaHTTPResponseDeleteByQuery) GetRequestsPerSecond() int32
GetRequestsPerSecond returns the RequestsPerSecond field value if set, zero value otherwise.
func (*MetaHTTPResponseDeleteByQuery) GetRequestsPerSecondOk ¶ added in v0.3.3
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 ¶ added in v0.3.3
func (o *MetaHTTPResponseDeleteByQuery) GetRetries() MetaHttpRetriesResponse
GetRetries returns the Retries field value if set, zero value otherwise.
func (*MetaHTTPResponseDeleteByQuery) GetRetriesOk ¶ added in v0.3.3
func (o *MetaHTTPResponseDeleteByQuery) GetRetriesOk() (*MetaHttpRetriesResponse, bool)
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 ¶ added in v0.3.3
func (o *MetaHTTPResponseDeleteByQuery) GetThrottledMillis() int32
GetThrottledMillis returns the ThrottledMillis field value if set, zero value otherwise.
func (*MetaHTTPResponseDeleteByQuery) GetThrottledMillisOk ¶ added in v0.3.3
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 ¶ added in v0.3.3
func (o *MetaHTTPResponseDeleteByQuery) GetThrottledUntilMillis() int32
GetThrottledUntilMillis returns the ThrottledUntilMillis field value if set, zero value otherwise.
func (*MetaHTTPResponseDeleteByQuery) GetThrottledUntilMillisOk ¶ added in v0.3.3
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 ¶ added in v0.3.3
func (o *MetaHTTPResponseDeleteByQuery) GetTimeOut() bool
GetTimeOut returns the TimeOut field value if set, zero value otherwise.
func (*MetaHTTPResponseDeleteByQuery) GetTimeOutOk ¶ added in v0.3.3
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 ¶ added in v0.3.3
func (o *MetaHTTPResponseDeleteByQuery) GetTook() int32
GetTook returns the Took field value if set, zero value otherwise.
func (*MetaHTTPResponseDeleteByQuery) GetTookOk ¶ added in v0.3.3
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 ¶ added in v0.3.3
func (o *MetaHTTPResponseDeleteByQuery) GetTotal() int32
GetTotal returns the Total field value if set, zero value otherwise.
func (*MetaHTTPResponseDeleteByQuery) GetTotalOk ¶ added in v0.3.3
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 ¶ added in v0.3.3
func (o *MetaHTTPResponseDeleteByQuery) GetVersionConflicts() int32
GetVersionConflicts returns the VersionConflicts field value if set, zero value otherwise.
func (*MetaHTTPResponseDeleteByQuery) GetVersionConflictsOk ¶ added in v0.3.3
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 ¶ added in v0.3.3
func (o *MetaHTTPResponseDeleteByQuery) HasBatches() bool
HasBatches returns a boolean if a field has been set.
func (*MetaHTTPResponseDeleteByQuery) HasDeleted ¶ added in v0.3.3
func (o *MetaHTTPResponseDeleteByQuery) HasDeleted() bool
HasDeleted returns a boolean if a field has been set.
func (*MetaHTTPResponseDeleteByQuery) HasFailures ¶ added in v0.3.3
func (o *MetaHTTPResponseDeleteByQuery) HasFailures() bool
HasFailures returns a boolean if a field has been set.
func (*MetaHTTPResponseDeleteByQuery) HasNoops ¶ added in v0.3.3
func (o *MetaHTTPResponseDeleteByQuery) HasNoops() bool
HasNoops returns a boolean if a field has been set.
func (*MetaHTTPResponseDeleteByQuery) HasRequestsPerSecond ¶ added in v0.3.3
func (o *MetaHTTPResponseDeleteByQuery) HasRequestsPerSecond() bool
HasRequestsPerSecond returns a boolean if a field has been set.
func (*MetaHTTPResponseDeleteByQuery) HasRetries ¶ added in v0.3.3
func (o *MetaHTTPResponseDeleteByQuery) HasRetries() bool
HasRetries returns a boolean if a field has been set.
func (*MetaHTTPResponseDeleteByQuery) HasThrottledMillis ¶ added in v0.3.3
func (o *MetaHTTPResponseDeleteByQuery) HasThrottledMillis() bool
HasThrottledMillis returns a boolean if a field has been set.
func (*MetaHTTPResponseDeleteByQuery) HasThrottledUntilMillis ¶ added in v0.3.3
func (o *MetaHTTPResponseDeleteByQuery) HasThrottledUntilMillis() bool
HasThrottledUntilMillis returns a boolean if a field has been set.
func (*MetaHTTPResponseDeleteByQuery) HasTimeOut ¶ added in v0.3.3
func (o *MetaHTTPResponseDeleteByQuery) HasTimeOut() bool
HasTimeOut returns a boolean if a field has been set.
func (*MetaHTTPResponseDeleteByQuery) HasTook ¶ added in v0.3.3
func (o *MetaHTTPResponseDeleteByQuery) HasTook() bool
HasTook returns a boolean if a field has been set.
func (*MetaHTTPResponseDeleteByQuery) HasTotal ¶ added in v0.3.3
func (o *MetaHTTPResponseDeleteByQuery) HasTotal() bool
HasTotal returns a boolean if a field has been set.
func (*MetaHTTPResponseDeleteByQuery) HasVersionConflicts ¶ added in v0.3.3
func (o *MetaHTTPResponseDeleteByQuery) HasVersionConflicts() bool
HasVersionConflicts returns a boolean if a field has been set.
func (MetaHTTPResponseDeleteByQuery) MarshalJSON ¶ added in v0.3.3
func (o MetaHTTPResponseDeleteByQuery) MarshalJSON() ([]byte, error)
func (*MetaHTTPResponseDeleteByQuery) SetBatches ¶ added in v0.3.3
func (o *MetaHTTPResponseDeleteByQuery) SetBatches(v int32)
SetBatches gets a reference to the given int32 and assigns it to the Batches field.
func (*MetaHTTPResponseDeleteByQuery) SetDeleted ¶ added in v0.3.3
func (o *MetaHTTPResponseDeleteByQuery) SetDeleted(v int32)
SetDeleted gets a reference to the given int32 and assigns it to the Deleted field.
func (*MetaHTTPResponseDeleteByQuery) SetFailures ¶ added in v0.3.3
func (o *MetaHTTPResponseDeleteByQuery) SetFailures(v []string)
SetFailures gets a reference to the given []string and assigns it to the Failures field.
func (*MetaHTTPResponseDeleteByQuery) SetNoops ¶ added in v0.3.3
func (o *MetaHTTPResponseDeleteByQuery) SetNoops(v int32)
SetNoops gets a reference to the given int32 and assigns it to the Noops field.
func (*MetaHTTPResponseDeleteByQuery) SetRequestsPerSecond ¶ added in v0.3.3
func (o *MetaHTTPResponseDeleteByQuery) SetRequestsPerSecond(v int32)
SetRequestsPerSecond gets a reference to the given int32 and assigns it to the RequestsPerSecond field.
func (*MetaHTTPResponseDeleteByQuery) SetRetries ¶ added in v0.3.3
func (o *MetaHTTPResponseDeleteByQuery) SetRetries(v MetaHttpRetriesResponse)
SetRetries gets a reference to the given MetaHttpRetriesResponse and assigns it to the Retries field.
func (*MetaHTTPResponseDeleteByQuery) SetThrottledMillis ¶ added in v0.3.3
func (o *MetaHTTPResponseDeleteByQuery) SetThrottledMillis(v int32)
SetThrottledMillis gets a reference to the given int32 and assigns it to the ThrottledMillis field.
func (*MetaHTTPResponseDeleteByQuery) SetThrottledUntilMillis ¶ added in v0.3.3
func (o *MetaHTTPResponseDeleteByQuery) SetThrottledUntilMillis(v int32)
SetThrottledUntilMillis gets a reference to the given int32 and assigns it to the ThrottledUntilMillis field.
func (*MetaHTTPResponseDeleteByQuery) SetTimeOut ¶ added in v0.3.3
func (o *MetaHTTPResponseDeleteByQuery) SetTimeOut(v bool)
SetTimeOut gets a reference to the given bool and assigns it to the TimeOut field.
func (*MetaHTTPResponseDeleteByQuery) SetTook ¶ added in v0.3.3
func (o *MetaHTTPResponseDeleteByQuery) SetTook(v int32)
SetTook gets a reference to the given int32 and assigns it to the Took field.
func (*MetaHTTPResponseDeleteByQuery) SetTotal ¶ added in v0.3.3
func (o *MetaHTTPResponseDeleteByQuery) SetTotal(v int32)
SetTotal gets a reference to the given int32 and assigns it to the Total field.
func (*MetaHTTPResponseDeleteByQuery) SetVersionConflicts ¶ added in v0.3.3
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) GetFieldsOk ¶
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 ¶
GetHighlight returns the Highlight field value if set, zero value otherwise.
func (*MetaHit) GetHighlightOk ¶
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) GetIdOk ¶
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) GetIndexOk ¶
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) GetScoreOk ¶
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) GetSourceOk ¶
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 ¶
GetTimestamp returns the Timestamp field value if set, zero value otherwise.
func (*MetaHit) GetTimestampOk ¶
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) GetTypeOk ¶
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) HasHighlight ¶
HasHighlight returns a boolean if a field has been set.
func (*MetaHit) HasTimestamp ¶
HasTimestamp returns a boolean if a field has been set.
func (MetaHit) MarshalJSON ¶
func (*MetaHit) SetFields ¶
SetFields gets a reference to the given map[string]interface{} and assigns it to the Fields field.
func (*MetaHit) SetHighlight ¶
SetHighlight gets a reference to the given map[string]interface{} and assigns it to the Highlight field.
func (*MetaHit) SetIndex ¶
SetIndex gets a reference to the given string and assigns it to the Index field.
func (*MetaHit) SetScore ¶
SetScore gets a reference to the given float32 and assigns it to the Score field.
func (*MetaHit) SetSource ¶
SetSource gets a reference to the given map[string]interface{} and assigns it to the Source field.
func (*MetaHit) SetTimestamp ¶
SetTimestamp gets a reference to the given string and assigns it to the Timestamp 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) GetHitsOk ¶
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 ¶
GetMaxScore returns the MaxScore field value if set, zero value otherwise.
func (*MetaHits) GetMaxScoreOk ¶
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) GetTotalOk ¶
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) HasMaxScore ¶
HasMaxScore returns a boolean if a field has been set.
func (MetaHits) MarshalJSON ¶
func (*MetaHits) SetHits ¶
SetHits gets a reference to the given []MetaHit and assigns it to the Hits field.
func (*MetaHits) SetMaxScore ¶
SetMaxScore gets a reference to the given float32 and assigns it to the MaxScore field.
type MetaHttpRetriesResponse ¶ added in v0.3.3
type MetaHttpRetriesResponse struct { Bulk *int32 `json:"bulk,omitempty"` Search *int32 `json:"search,omitempty"` }
MetaHttpRetriesResponse struct for MetaHttpRetriesResponse
func NewMetaHttpRetriesResponse ¶ added in v0.3.3
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 ¶ added in v0.3.3
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 ¶ added in v0.3.3
func (o *MetaHttpRetriesResponse) GetBulk() int32
GetBulk returns the Bulk field value if set, zero value otherwise.
func (*MetaHttpRetriesResponse) GetBulkOk ¶ added in v0.3.3
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 ¶ added in v0.3.3
func (o *MetaHttpRetriesResponse) GetSearch() int32
GetSearch returns the Search field value if set, zero value otherwise.
func (*MetaHttpRetriesResponse) GetSearchOk ¶ added in v0.3.3
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 ¶ added in v0.3.3
func (o *MetaHttpRetriesResponse) HasBulk() bool
HasBulk returns a boolean if a field has been set.
func (*MetaHttpRetriesResponse) HasSearch ¶ added in v0.3.3
func (o *MetaHttpRetriesResponse) HasSearch() bool
HasSearch returns a boolean if a field has been set.
func (MetaHttpRetriesResponse) MarshalJSON ¶ added in v0.3.3
func (o MetaHttpRetriesResponse) MarshalJSON() ([]byte, error)
func (*MetaHttpRetriesResponse) SetBulk ¶ added in v0.3.3
func (o *MetaHttpRetriesResponse) SetBulk(v int32)
SetBulk gets a reference to the given int32 and assigns it to the Bulk field.
func (*MetaHttpRetriesResponse) SetSearch ¶ added in v0.3.3
func (o *MetaHttpRetriesResponse) SetSearch(v int32)
SetSearch gets a reference to the given int32 and assigns it to the Search field.
type MetaIPRange ¶
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 ¶ added in v0.2.7
func (o *MetaIndexSimple) GetShardNum() int32
GetShardNum returns the ShardNum field value if set, zero value otherwise.
func (*MetaIndexSimple) GetShardNumOk ¶ added in v0.2.7
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 ¶ added in v0.2.7
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 ¶ added in v0.2.7
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 ¶ added in v0.2.7
type MetaJSONIngest struct { Index *string `json:"index,omitempty"` Records []map[string]interface{} `json:"records,omitempty"` }
MetaJSONIngest struct for MetaJSONIngest
func NewMetaJSONIngest ¶ added in v0.2.7
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 ¶ added in v0.2.7
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 ¶ added in v0.2.7
func (o *MetaJSONIngest) GetIndex() string
GetIndex returns the Index field value if set, zero value otherwise.
func (*MetaJSONIngest) GetIndexOk ¶ added in v0.2.7
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 ¶ added in v0.2.7
func (o *MetaJSONIngest) GetRecords() []map[string]interface{}
GetRecords returns the Records field value if set, zero value otherwise.
func (*MetaJSONIngest) GetRecordsOk ¶ added in v0.2.7
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 ¶ added in v0.2.7
func (o *MetaJSONIngest) HasIndex() bool
HasIndex returns a boolean if a field has been set.
func (*MetaJSONIngest) HasRecords ¶ added in v0.2.7
func (o *MetaJSONIngest) HasRecords() bool
HasRecords returns a boolean if a field has been set.
func (MetaJSONIngest) MarshalJSON ¶ added in v0.2.7
func (o MetaJSONIngest) MarshalJSON() ([]byte, error)
func (*MetaJSONIngest) SetIndex ¶ added in v0.2.7
func (o *MetaJSONIngest) SetIndex(v string)
SetIndex gets a reference to the given string and assigns it to the Index field.
func (*MetaJSONIngest) SetRecords ¶ added in v0.2.7
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 ¶ added in v0.2.7
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 ¶ added in v0.2.7
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 ¶ added in v0.2.7
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 ¶ added in v0.2.7
GetPageNum returns the PageNum field value if set, zero value otherwise.
func (*MetaPage) GetPageNumOk ¶ added in v0.2.7
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 ¶ added in v0.2.7
GetPageSize returns the PageSize field value if set, zero value otherwise.
func (*MetaPage) GetPageSizeOk ¶ added in v0.2.7
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 ¶ added in v0.2.7
GetTotal returns the Total field value if set, zero value otherwise.
func (*MetaPage) GetTotalOk ¶ added in v0.2.7
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 ¶ added in v0.2.7
HasPageNum returns a boolean if a field has been set.
func (*MetaPage) HasPageSize ¶ added in v0.2.7
HasPageSize returns a boolean if a field has been set.
func (MetaPage) MarshalJSON ¶ added in v0.2.7
func (*MetaPage) SetPageNum ¶ added in v0.2.7
SetPageNum gets a reference to the given int32 and assigns it to the PageNum field.
func (*MetaPage) SetPageSize ¶ added in v0.2.7
SetPageSize gets a reference to the given int32 and assigns it to the PageSize 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 ¶ added in v0.2.7
func (o *MetaProperty) GetFields() map[string]MetaProperty
GetFields returns the Fields field value if set, zero value otherwise.
func (*MetaProperty) GetFieldsOk ¶ added in v0.2.7
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 ¶ added in v0.2.7
func (o *MetaProperty) GetTimeZone() string
GetTimeZone returns the TimeZone field value if set, zero value otherwise.
func (*MetaProperty) GetTimeZoneOk ¶ added in v0.2.7
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 ¶ added in v0.2.7
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 ¶ added in v0.2.7
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 ¶ added in v0.2.7
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 ¶ added in v0.2.7
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 ¶
GetMatchAll returns the MatchAll field value if set, zero value otherwise.
func (*MetaQuery) GetMatchAllOk ¶
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 ¶
GetMatchNone returns the MatchNone field value if set, zero value otherwise.
func (*MetaQuery) GetMatchNoneOk ¶
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) GetTermsOk ¶
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) HasMatchAll ¶
HasMatchAll returns a boolean if a field has been set.
func (*MetaQuery) HasMatchBoolPrefix ¶
HasMatchBoolPrefix returns a boolean if a field has been set.
func (*MetaQuery) HasMatchNone ¶
HasMatchNone returns a boolean if a field has been set.
func (*MetaQuery) HasMatchPhrase ¶
HasMatchPhrase returns a boolean if a field has been set.
func (*MetaQuery) HasMatchPhrasePrefix ¶
HasMatchPhrasePrefix returns a boolean if a field has been set.
func (*MetaQuery) HasMultiMatch ¶
HasMultiMatch returns a boolean if a field has been set.
func (*MetaQuery) HasQueryString ¶
HasQueryString returns a boolean if a field has been set.
func (*MetaQuery) HasSimpleQueryString ¶
HasSimpleQueryString returns a boolean if a field has been set.
func (*MetaQuery) HasWildcard ¶
HasWildcard returns a boolean if a field has been set.
func (MetaQuery) MarshalJSON ¶
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 ¶
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 ¶
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 ¶
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 ¶
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) GetFromOk ¶
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) GetToOk ¶
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) MarshalJSON ¶
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) 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) GetValueOk ¶
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) MarshalJSON ¶
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 ¶
GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.
func (*MetaUser) GetCreatedAtOk ¶
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) GetIdOk ¶
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) GetNameOk ¶
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 ¶
GetPassword returns the Password field value if set, zero value otherwise.
func (*MetaUser) GetPasswordOk ¶
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) GetRoleOk ¶
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) GetSaltOk ¶
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 ¶
GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.
func (*MetaUser) GetUpdatedAtOk ¶
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 ¶
HasCreatedAt returns a boolean if a field has been set.
func (*MetaUser) HasPassword ¶
HasPassword returns a boolean if a field has been set.
func (*MetaUser) HasUpdatedAt ¶
HasUpdatedAt returns a boolean if a field has been set.
func (MetaUser) MarshalJSON ¶
func (*MetaUser) SetCreatedAt ¶
SetCreatedAt gets a reference to the given string and assigns it to the CreatedAt field.
func (*MetaUser) SetName ¶
SetName gets a reference to the given string and assigns it to the Name field.
func (*MetaUser) SetPassword ¶
SetPassword gets a reference to the given string and assigns it to the Password field.
func (*MetaUser) SetRole ¶
SetRole gets a reference to the given string and assigns it to the Role field.
func (*MetaUser) SetSalt ¶
SetSalt gets a reference to the given string and assigns it to the Salt field.
func (*MetaUser) SetUpdatedAt ¶
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 NewNullableAggregationHistogramBound ¶
func NewNullableAggregationHistogramBound(val *AggregationHistogramBound) *NullableAggregationHistogramBound
func (NullableAggregationHistogramBound) Get ¶
func (v NullableAggregationHistogramBound) Get() *AggregationHistogramBound
func (NullableAggregationHistogramBound) IsSet ¶
func (v NullableAggregationHistogramBound) IsSet() bool
func (NullableAggregationHistogramBound) MarshalJSON ¶
func (v NullableAggregationHistogramBound) MarshalJSON() ([]byte, error)
func (*NullableAggregationHistogramBound) Set ¶
func (v *NullableAggregationHistogramBound) Set(val *AggregationHistogramBound)
func (*NullableAggregationHistogramBound) UnmarshalJSON ¶
func (v *NullableAggregationHistogramBound) UnmarshalJSON(src []byte) error
func (*NullableAggregationHistogramBound) Unset ¶
func (v *NullableAggregationHistogramBound) Unset()
type NullableAuthLoginRequest ¶
type NullableAuthLoginRequest struct {
// contains filtered or unexported fields
}
func NewNullableAuthLoginRequest ¶
func NewNullableAuthLoginRequest(val *AuthLoginRequest) *NullableAuthLoginRequest
func (NullableAuthLoginRequest) Get ¶
func (v NullableAuthLoginRequest) Get() *AuthLoginRequest
func (NullableAuthLoginRequest) IsSet ¶
func (v NullableAuthLoginRequest) IsSet() bool
func (NullableAuthLoginRequest) MarshalJSON ¶
func (v NullableAuthLoginRequest) MarshalJSON() ([]byte, error)
func (*NullableAuthLoginRequest) Set ¶
func (v *NullableAuthLoginRequest) Set(val *AuthLoginRequest)
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 (v NullableAuthLoginResponse) Get() *AuthLoginResponse
func (NullableAuthLoginResponse) IsSet ¶
func (v NullableAuthLoginResponse) IsSet() bool
func (NullableAuthLoginResponse) MarshalJSON ¶
func (v NullableAuthLoginResponse) MarshalJSON() ([]byte, error)
func (*NullableAuthLoginResponse) Set ¶
func (v *NullableAuthLoginResponse) Set(val *AuthLoginResponse)
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 (v NullableAuthLoginUser) Get() *AuthLoginUser
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 (v NullableIndexAnalyzeResponse) Get() *IndexAnalyzeResponse
func (NullableIndexAnalyzeResponse) IsSet ¶
func (v NullableIndexAnalyzeResponse) IsSet() bool
func (NullableIndexAnalyzeResponse) MarshalJSON ¶
func (v NullableIndexAnalyzeResponse) MarshalJSON() ([]byte, error)
func (*NullableIndexAnalyzeResponse) Set ¶
func (v *NullableIndexAnalyzeResponse) Set(val *IndexAnalyzeResponse)
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 NewNullableIndexAnalyzeResponseToken ¶
func NewNullableIndexAnalyzeResponseToken(val *IndexAnalyzeResponseToken) *NullableIndexAnalyzeResponseToken
func (NullableIndexAnalyzeResponseToken) Get ¶
func (v NullableIndexAnalyzeResponseToken) Get() *IndexAnalyzeResponseToken
func (NullableIndexAnalyzeResponseToken) IsSet ¶
func (v NullableIndexAnalyzeResponseToken) IsSet() bool
func (NullableIndexAnalyzeResponseToken) MarshalJSON ¶
func (v NullableIndexAnalyzeResponseToken) MarshalJSON() ([]byte, error)
func (*NullableIndexAnalyzeResponseToken) Set ¶
func (v *NullableIndexAnalyzeResponseToken) Set(val *IndexAnalyzeResponseToken)
func (*NullableIndexAnalyzeResponseToken) UnmarshalJSON ¶
func (v *NullableIndexAnalyzeResponseToken) UnmarshalJSON(src []byte) error
func (*NullableIndexAnalyzeResponseToken) Unset ¶
func (v *NullableIndexAnalyzeResponseToken) Unset()
type NullableIndexIndexListResponse ¶ added in v0.2.7
type NullableIndexIndexListResponse struct {
// contains filtered or unexported fields
}
func NewNullableIndexIndexListResponse ¶ added in v0.2.7
func NewNullableIndexIndexListResponse(val *IndexIndexListResponse) *NullableIndexIndexListResponse
func (NullableIndexIndexListResponse) Get ¶ added in v0.2.7
func (v NullableIndexIndexListResponse) Get() *IndexIndexListResponse
func (NullableIndexIndexListResponse) IsSet ¶ added in v0.2.7
func (v NullableIndexIndexListResponse) IsSet() bool
func (NullableIndexIndexListResponse) MarshalJSON ¶ added in v0.2.7
func (v NullableIndexIndexListResponse) MarshalJSON() ([]byte, error)
func (*NullableIndexIndexListResponse) Set ¶ added in v0.2.7
func (v *NullableIndexIndexListResponse) Set(val *IndexIndexListResponse)
func (*NullableIndexIndexListResponse) UnmarshalJSON ¶ added in v0.2.7
func (v *NullableIndexIndexListResponse) UnmarshalJSON(src []byte) error
func (*NullableIndexIndexListResponse) Unset ¶ added in v0.2.7
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 NewNullableMetaAggregationAutoDateHistogram ¶
func NewNullableMetaAggregationAutoDateHistogram(val *MetaAggregationAutoDateHistogram) *NullableMetaAggregationAutoDateHistogram
func (NullableMetaAggregationAutoDateHistogram) IsSet ¶
func (v NullableMetaAggregationAutoDateHistogram) IsSet() bool
func (NullableMetaAggregationAutoDateHistogram) MarshalJSON ¶
func (v NullableMetaAggregationAutoDateHistogram) MarshalJSON() ([]byte, error)
func (*NullableMetaAggregationAutoDateHistogram) Set ¶
func (v *NullableMetaAggregationAutoDateHistogram) Set(val *MetaAggregationAutoDateHistogram)
func (*NullableMetaAggregationAutoDateHistogram) UnmarshalJSON ¶
func (v *NullableMetaAggregationAutoDateHistogram) UnmarshalJSON(src []byte) error
func (*NullableMetaAggregationAutoDateHistogram) Unset ¶
func (v *NullableMetaAggregationAutoDateHistogram) Unset()
type NullableMetaAggregationDateHistogram ¶
type NullableMetaAggregationDateHistogram struct {
// contains filtered or unexported fields
}
func NewNullableMetaAggregationDateHistogram ¶
func NewNullableMetaAggregationDateHistogram(val *MetaAggregationDateHistogram) *NullableMetaAggregationDateHistogram
func (NullableMetaAggregationDateHistogram) Get ¶
func (v NullableMetaAggregationDateHistogram) Get() *MetaAggregationDateHistogram
func (NullableMetaAggregationDateHistogram) IsSet ¶
func (v NullableMetaAggregationDateHistogram) IsSet() bool
func (NullableMetaAggregationDateHistogram) MarshalJSON ¶
func (v NullableMetaAggregationDateHistogram) MarshalJSON() ([]byte, error)
func (*NullableMetaAggregationDateHistogram) Set ¶
func (v *NullableMetaAggregationDateHistogram) Set(val *MetaAggregationDateHistogram)
func (*NullableMetaAggregationDateHistogram) UnmarshalJSON ¶
func (v *NullableMetaAggregationDateHistogram) UnmarshalJSON(src []byte) error
func (*NullableMetaAggregationDateHistogram) Unset ¶
func (v *NullableMetaAggregationDateHistogram) Unset()
type NullableMetaAggregationDateRange ¶
type NullableMetaAggregationDateRange struct {
// contains filtered or unexported fields
}
func NewNullableMetaAggregationDateRange ¶
func NewNullableMetaAggregationDateRange(val *MetaAggregationDateRange) *NullableMetaAggregationDateRange
func (NullableMetaAggregationDateRange) Get ¶
func (v NullableMetaAggregationDateRange) Get() *MetaAggregationDateRange
func (NullableMetaAggregationDateRange) IsSet ¶
func (v NullableMetaAggregationDateRange) IsSet() bool
func (NullableMetaAggregationDateRange) MarshalJSON ¶
func (v NullableMetaAggregationDateRange) MarshalJSON() ([]byte, error)
func (*NullableMetaAggregationDateRange) Set ¶
func (v *NullableMetaAggregationDateRange) Set(val *MetaAggregationDateRange)
func (*NullableMetaAggregationDateRange) UnmarshalJSON ¶
func (v *NullableMetaAggregationDateRange) UnmarshalJSON(src []byte) error
func (*NullableMetaAggregationDateRange) Unset ¶
func (v *NullableMetaAggregationDateRange) Unset()
type NullableMetaAggregationHistogram ¶
type NullableMetaAggregationHistogram struct {
// contains filtered or unexported fields
}
func NewNullableMetaAggregationHistogram ¶
func NewNullableMetaAggregationHistogram(val *MetaAggregationHistogram) *NullableMetaAggregationHistogram
func (NullableMetaAggregationHistogram) Get ¶
func (v NullableMetaAggregationHistogram) Get() *MetaAggregationHistogram
func (NullableMetaAggregationHistogram) IsSet ¶
func (v NullableMetaAggregationHistogram) IsSet() bool
func (NullableMetaAggregationHistogram) MarshalJSON ¶
func (v NullableMetaAggregationHistogram) MarshalJSON() ([]byte, error)
func (*NullableMetaAggregationHistogram) Set ¶
func (v *NullableMetaAggregationHistogram) Set(val *MetaAggregationHistogram)
func (*NullableMetaAggregationHistogram) UnmarshalJSON ¶
func (v *NullableMetaAggregationHistogram) UnmarshalJSON(src []byte) error
func (*NullableMetaAggregationHistogram) Unset ¶
func (v *NullableMetaAggregationHistogram) Unset()
type NullableMetaAggregationIPRange ¶
type NullableMetaAggregationIPRange struct {
// contains filtered or unexported fields
}
func NewNullableMetaAggregationIPRange ¶
func NewNullableMetaAggregationIPRange(val *MetaAggregationIPRange) *NullableMetaAggregationIPRange
func (NullableMetaAggregationIPRange) Get ¶
func (v NullableMetaAggregationIPRange) Get() *MetaAggregationIPRange
func (NullableMetaAggregationIPRange) IsSet ¶
func (v NullableMetaAggregationIPRange) IsSet() bool
func (NullableMetaAggregationIPRange) MarshalJSON ¶
func (v NullableMetaAggregationIPRange) MarshalJSON() ([]byte, error)
func (*NullableMetaAggregationIPRange) Set ¶
func (v *NullableMetaAggregationIPRange) Set(val *MetaAggregationIPRange)
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 NewNullableMetaAggregationMetric ¶
func NewNullableMetaAggregationMetric(val *MetaAggregationMetric) *NullableMetaAggregationMetric
func (NullableMetaAggregationMetric) Get ¶
func (v NullableMetaAggregationMetric) Get() *MetaAggregationMetric
func (NullableMetaAggregationMetric) IsSet ¶
func (v NullableMetaAggregationMetric) IsSet() bool
func (NullableMetaAggregationMetric) MarshalJSON ¶
func (v NullableMetaAggregationMetric) MarshalJSON() ([]byte, error)
func (*NullableMetaAggregationMetric) Set ¶
func (v *NullableMetaAggregationMetric) Set(val *MetaAggregationMetric)
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 (v NullableMetaAggregationRange) Get() *MetaAggregationRange
func (NullableMetaAggregationRange) IsSet ¶
func (v NullableMetaAggregationRange) IsSet() bool
func (NullableMetaAggregationRange) MarshalJSON ¶
func (v NullableMetaAggregationRange) MarshalJSON() ([]byte, error)
func (*NullableMetaAggregationRange) Set ¶
func (v *NullableMetaAggregationRange) Set(val *MetaAggregationRange)
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 NewNullableMetaAggregationResponse ¶
func NewNullableMetaAggregationResponse(val *MetaAggregationResponse) *NullableMetaAggregationResponse
func (NullableMetaAggregationResponse) Get ¶
func (v NullableMetaAggregationResponse) Get() *MetaAggregationResponse
func (NullableMetaAggregationResponse) IsSet ¶
func (v NullableMetaAggregationResponse) IsSet() bool
func (NullableMetaAggregationResponse) MarshalJSON ¶
func (v NullableMetaAggregationResponse) MarshalJSON() ([]byte, error)
func (*NullableMetaAggregationResponse) Set ¶
func (v *NullableMetaAggregationResponse) Set(val *MetaAggregationResponse)
func (*NullableMetaAggregationResponse) UnmarshalJSON ¶
func (v *NullableMetaAggregationResponse) UnmarshalJSON(src []byte) error
func (*NullableMetaAggregationResponse) Unset ¶
func (v *NullableMetaAggregationResponse) Unset()
type NullableMetaAggregations ¶
type NullableMetaAggregations struct {
// contains filtered or unexported fields
}
func NewNullableMetaAggregations ¶
func NewNullableMetaAggregations(val *MetaAggregations) *NullableMetaAggregations
func (NullableMetaAggregations) Get ¶
func (v NullableMetaAggregations) Get() *MetaAggregations
func (NullableMetaAggregations) IsSet ¶
func (v NullableMetaAggregations) IsSet() bool
func (NullableMetaAggregations) MarshalJSON ¶
func (v NullableMetaAggregations) MarshalJSON() ([]byte, error)
func (*NullableMetaAggregations) Set ¶
func (v *NullableMetaAggregations) Set(val *MetaAggregations)
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 NewNullableMetaAggregationsTerms ¶
func NewNullableMetaAggregationsTerms(val *MetaAggregationsTerms) *NullableMetaAggregationsTerms
func (NullableMetaAggregationsTerms) Get ¶
func (v NullableMetaAggregationsTerms) Get() *MetaAggregationsTerms
func (NullableMetaAggregationsTerms) IsSet ¶
func (v NullableMetaAggregationsTerms) IsSet() bool
func (NullableMetaAggregationsTerms) MarshalJSON ¶
func (v NullableMetaAggregationsTerms) MarshalJSON() ([]byte, error)
func (*NullableMetaAggregationsTerms) Set ¶
func (v *NullableMetaAggregationsTerms) Set(val *MetaAggregationsTerms)
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 (v NullableMetaAnalyzer) Get() *MetaAnalyzer
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 (v NullableMetaBoolQuery) Get() *MetaBoolQuery
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 (v NullableMetaDateRange) Get() *MetaDateRange
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 (v NullableMetaExistsQuery) Get() *MetaExistsQuery
func (NullableMetaExistsQuery) IsSet ¶
func (v NullableMetaExistsQuery) IsSet() bool
func (NullableMetaExistsQuery) MarshalJSON ¶
func (v NullableMetaExistsQuery) MarshalJSON() ([]byte, error)
func (*NullableMetaExistsQuery) Set ¶
func (v *NullableMetaExistsQuery) Set(val *MetaExistsQuery)
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 (v NullableMetaFuzzyQuery) Get() *MetaFuzzyQuery
func (NullableMetaFuzzyQuery) IsSet ¶
func (v NullableMetaFuzzyQuery) IsSet() bool
func (NullableMetaFuzzyQuery) MarshalJSON ¶
func (v NullableMetaFuzzyQuery) MarshalJSON() ([]byte, error)
func (*NullableMetaFuzzyQuery) Set ¶
func (v *NullableMetaFuzzyQuery) Set(val *MetaFuzzyQuery)
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 (v NullableMetaHTTPResponse) Get() *MetaHTTPResponse
func (NullableMetaHTTPResponse) IsSet ¶
func (v NullableMetaHTTPResponse) IsSet() bool
func (NullableMetaHTTPResponse) MarshalJSON ¶
func (v NullableMetaHTTPResponse) MarshalJSON() ([]byte, error)
func (*NullableMetaHTTPResponse) Set ¶
func (v *NullableMetaHTTPResponse) Set(val *MetaHTTPResponse)
func (*NullableMetaHTTPResponse) UnmarshalJSON ¶
func (v *NullableMetaHTTPResponse) UnmarshalJSON(src []byte) error
func (*NullableMetaHTTPResponse) Unset ¶
func (v *NullableMetaHTTPResponse) Unset()
type NullableMetaHTTPResponseDeleteByQuery ¶ added in v0.3.3
type NullableMetaHTTPResponseDeleteByQuery struct {
// contains filtered or unexported fields
}
func NewNullableMetaHTTPResponseDeleteByQuery ¶ added in v0.3.3
func NewNullableMetaHTTPResponseDeleteByQuery(val *MetaHTTPResponseDeleteByQuery) *NullableMetaHTTPResponseDeleteByQuery
func (NullableMetaHTTPResponseDeleteByQuery) Get ¶ added in v0.3.3
func (v NullableMetaHTTPResponseDeleteByQuery) Get() *MetaHTTPResponseDeleteByQuery
func (NullableMetaHTTPResponseDeleteByQuery) IsSet ¶ added in v0.3.3
func (v NullableMetaHTTPResponseDeleteByQuery) IsSet() bool
func (NullableMetaHTTPResponseDeleteByQuery) MarshalJSON ¶ added in v0.3.3
func (v NullableMetaHTTPResponseDeleteByQuery) MarshalJSON() ([]byte, error)
func (*NullableMetaHTTPResponseDeleteByQuery) Set ¶ added in v0.3.3
func (v *NullableMetaHTTPResponseDeleteByQuery) Set(val *MetaHTTPResponseDeleteByQuery)
func (*NullableMetaHTTPResponseDeleteByQuery) UnmarshalJSON ¶ added in v0.3.3
func (v *NullableMetaHTTPResponseDeleteByQuery) UnmarshalJSON(src []byte) error
func (*NullableMetaHTTPResponseDeleteByQuery) Unset ¶ added in v0.3.3
func (v *NullableMetaHTTPResponseDeleteByQuery) Unset()
type NullableMetaHTTPResponseDocument ¶
type NullableMetaHTTPResponseDocument struct {
// contains filtered or unexported fields
}
func NewNullableMetaHTTPResponseDocument ¶
func NewNullableMetaHTTPResponseDocument(val *MetaHTTPResponseDocument) *NullableMetaHTTPResponseDocument
func (NullableMetaHTTPResponseDocument) Get ¶
func (v NullableMetaHTTPResponseDocument) Get() *MetaHTTPResponseDocument
func (NullableMetaHTTPResponseDocument) IsSet ¶
func (v NullableMetaHTTPResponseDocument) IsSet() bool
func (NullableMetaHTTPResponseDocument) MarshalJSON ¶
func (v NullableMetaHTTPResponseDocument) MarshalJSON() ([]byte, error)
func (*NullableMetaHTTPResponseDocument) Set ¶
func (v *NullableMetaHTTPResponseDocument) Set(val *MetaHTTPResponseDocument)
func (*NullableMetaHTTPResponseDocument) UnmarshalJSON ¶
func (v *NullableMetaHTTPResponseDocument) UnmarshalJSON(src []byte) error
func (*NullableMetaHTTPResponseDocument) Unset ¶
func (v *NullableMetaHTTPResponseDocument) Unset()
type NullableMetaHTTPResponseError ¶
type NullableMetaHTTPResponseError struct {
// contains filtered or unexported fields
}
func NewNullableMetaHTTPResponseError ¶
func NewNullableMetaHTTPResponseError(val *MetaHTTPResponseError) *NullableMetaHTTPResponseError
func (NullableMetaHTTPResponseError) Get ¶
func (v NullableMetaHTTPResponseError) Get() *MetaHTTPResponseError
func (NullableMetaHTTPResponseError) IsSet ¶
func (v NullableMetaHTTPResponseError) IsSet() bool
func (NullableMetaHTTPResponseError) MarshalJSON ¶
func (v NullableMetaHTTPResponseError) MarshalJSON() ([]byte, error)
func (*NullableMetaHTTPResponseError) Set ¶
func (v *NullableMetaHTTPResponseError) Set(val *MetaHTTPResponseError)
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 (v NullableMetaHTTPResponseID) Get() *MetaHTTPResponseID
func (NullableMetaHTTPResponseID) IsSet ¶
func (v NullableMetaHTTPResponseID) IsSet() bool
func (NullableMetaHTTPResponseID) MarshalJSON ¶
func (v NullableMetaHTTPResponseID) MarshalJSON() ([]byte, error)
func (*NullableMetaHTTPResponseID) Set ¶
func (v *NullableMetaHTTPResponseID) Set(val *MetaHTTPResponseID)
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 NewNullableMetaHTTPResponseIndex ¶
func NewNullableMetaHTTPResponseIndex(val *MetaHTTPResponseIndex) *NullableMetaHTTPResponseIndex
func (NullableMetaHTTPResponseIndex) Get ¶
func (v NullableMetaHTTPResponseIndex) Get() *MetaHTTPResponseIndex
func (NullableMetaHTTPResponseIndex) IsSet ¶
func (v NullableMetaHTTPResponseIndex) IsSet() bool
func (NullableMetaHTTPResponseIndex) MarshalJSON ¶
func (v NullableMetaHTTPResponseIndex) MarshalJSON() ([]byte, error)
func (*NullableMetaHTTPResponseIndex) Set ¶
func (v *NullableMetaHTTPResponseIndex) Set(val *MetaHTTPResponseIndex)
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 NewNullableMetaHTTPResponseRecordCount ¶
func NewNullableMetaHTTPResponseRecordCount(val *MetaHTTPResponseRecordCount) *NullableMetaHTTPResponseRecordCount
func (NullableMetaHTTPResponseRecordCount) Get ¶
func (v NullableMetaHTTPResponseRecordCount) Get() *MetaHTTPResponseRecordCount
func (NullableMetaHTTPResponseRecordCount) IsSet ¶
func (v NullableMetaHTTPResponseRecordCount) IsSet() bool
func (NullableMetaHTTPResponseRecordCount) MarshalJSON ¶
func (v NullableMetaHTTPResponseRecordCount) MarshalJSON() ([]byte, error)
func (*NullableMetaHTTPResponseRecordCount) Set ¶
func (v *NullableMetaHTTPResponseRecordCount) Set(val *MetaHTTPResponseRecordCount)
func (*NullableMetaHTTPResponseRecordCount) UnmarshalJSON ¶
func (v *NullableMetaHTTPResponseRecordCount) UnmarshalJSON(src []byte) error
func (*NullableMetaHTTPResponseRecordCount) Unset ¶
func (v *NullableMetaHTTPResponseRecordCount) Unset()
type NullableMetaHTTPResponseTemplate ¶
type NullableMetaHTTPResponseTemplate struct {
// contains filtered or unexported fields
}
func NewNullableMetaHTTPResponseTemplate ¶
func NewNullableMetaHTTPResponseTemplate(val *MetaHTTPResponseTemplate) *NullableMetaHTTPResponseTemplate
func (NullableMetaHTTPResponseTemplate) Get ¶
func (v NullableMetaHTTPResponseTemplate) Get() *MetaHTTPResponseTemplate
func (NullableMetaHTTPResponseTemplate) IsSet ¶
func (v NullableMetaHTTPResponseTemplate) IsSet() bool
func (NullableMetaHTTPResponseTemplate) MarshalJSON ¶
func (v NullableMetaHTTPResponseTemplate) MarshalJSON() ([]byte, error)
func (*NullableMetaHTTPResponseTemplate) Set ¶
func (v *NullableMetaHTTPResponseTemplate) Set(val *MetaHTTPResponseTemplate)
func (*NullableMetaHTTPResponseTemplate) UnmarshalJSON ¶
func (v *NullableMetaHTTPResponseTemplate) UnmarshalJSON(src []byte) error
func (*NullableMetaHTTPResponseTemplate) Unset ¶
func (v *NullableMetaHTTPResponseTemplate) Unset()
type NullableMetaHealthzResponse ¶
type NullableMetaHealthzResponse struct {
// contains filtered or unexported fields
}
func NewNullableMetaHealthzResponse ¶
func NewNullableMetaHealthzResponse(val *MetaHealthzResponse) *NullableMetaHealthzResponse
func (NullableMetaHealthzResponse) Get ¶
func (v NullableMetaHealthzResponse) Get() *MetaHealthzResponse
func (NullableMetaHealthzResponse) IsSet ¶
func (v NullableMetaHealthzResponse) IsSet() bool
func (NullableMetaHealthzResponse) MarshalJSON ¶
func (v NullableMetaHealthzResponse) MarshalJSON() ([]byte, error)
func (*NullableMetaHealthzResponse) Set ¶
func (v *NullableMetaHealthzResponse) Set(val *MetaHealthzResponse)
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 (v NullableMetaHighlight) Get() *MetaHighlight
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 ¶ added in v0.3.3
type NullableMetaHttpRetriesResponse struct {
// contains filtered or unexported fields
}
func NewNullableMetaHttpRetriesResponse ¶ added in v0.3.3
func NewNullableMetaHttpRetriesResponse(val *MetaHttpRetriesResponse) *NullableMetaHttpRetriesResponse
func (NullableMetaHttpRetriesResponse) Get ¶ added in v0.3.3
func (v NullableMetaHttpRetriesResponse) Get() *MetaHttpRetriesResponse
func (NullableMetaHttpRetriesResponse) IsSet ¶ added in v0.3.3
func (v NullableMetaHttpRetriesResponse) IsSet() bool
func (NullableMetaHttpRetriesResponse) MarshalJSON ¶ added in v0.3.3
func (v NullableMetaHttpRetriesResponse) MarshalJSON() ([]byte, error)
func (*NullableMetaHttpRetriesResponse) Set ¶ added in v0.3.3
func (v *NullableMetaHttpRetriesResponse) Set(val *MetaHttpRetriesResponse)
func (*NullableMetaHttpRetriesResponse) UnmarshalJSON ¶ added in v0.3.3
func (v *NullableMetaHttpRetriesResponse) UnmarshalJSON(src []byte) error
func (*NullableMetaHttpRetriesResponse) Unset ¶ added in v0.3.3
func (v *NullableMetaHttpRetriesResponse) Unset()
type NullableMetaIPRange ¶
type NullableMetaIPRange struct {
// contains filtered or unexported fields
}
func NewNullableMetaIPRange ¶
func NewNullableMetaIPRange(val *MetaIPRange) *NullableMetaIPRange
func (NullableMetaIPRange) Get ¶
func (v NullableMetaIPRange) Get() *MetaIPRange
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 (v NullableMetaIdsQuery) Get() *MetaIdsQuery
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 (v NullableMetaIndexAnalysis) Get() *MetaIndexAnalysis
func (NullableMetaIndexAnalysis) IsSet ¶
func (v NullableMetaIndexAnalysis) IsSet() bool
func (NullableMetaIndexAnalysis) MarshalJSON ¶
func (v NullableMetaIndexAnalysis) MarshalJSON() ([]byte, error)
func (*NullableMetaIndexAnalysis) Set ¶
func (v *NullableMetaIndexAnalysis) Set(val *MetaIndexAnalysis)
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 (v NullableMetaIndexSettings) Get() *MetaIndexSettings
func (NullableMetaIndexSettings) IsSet ¶
func (v NullableMetaIndexSettings) IsSet() bool
func (NullableMetaIndexSettings) MarshalJSON ¶
func (v NullableMetaIndexSettings) MarshalJSON() ([]byte, error)
func (*NullableMetaIndexSettings) Set ¶
func (v *NullableMetaIndexSettings) Set(val *MetaIndexSettings)
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 (v NullableMetaIndexSimple) Get() *MetaIndexSimple
func (NullableMetaIndexSimple) IsSet ¶
func (v NullableMetaIndexSimple) IsSet() bool
func (NullableMetaIndexSimple) MarshalJSON ¶
func (v NullableMetaIndexSimple) MarshalJSON() ([]byte, error)
func (*NullableMetaIndexSimple) Set ¶
func (v *NullableMetaIndexSimple) Set(val *MetaIndexSimple)
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 (v NullableMetaIndexTemplate) Get() *MetaIndexTemplate
func (NullableMetaIndexTemplate) IsSet ¶
func (v NullableMetaIndexTemplate) IsSet() bool
func (NullableMetaIndexTemplate) MarshalJSON ¶
func (v NullableMetaIndexTemplate) MarshalJSON() ([]byte, error)
func (*NullableMetaIndexTemplate) Set ¶
func (v *NullableMetaIndexTemplate) Set(val *MetaIndexTemplate)
func (*NullableMetaIndexTemplate) UnmarshalJSON ¶
func (v *NullableMetaIndexTemplate) UnmarshalJSON(src []byte) error
func (*NullableMetaIndexTemplate) Unset ¶
func (v *NullableMetaIndexTemplate) Unset()
type NullableMetaJSONIngest ¶ added in v0.2.7
type NullableMetaJSONIngest struct {
// contains filtered or unexported fields
}
func NewNullableMetaJSONIngest ¶ added in v0.2.7
func NewNullableMetaJSONIngest(val *MetaJSONIngest) *NullableMetaJSONIngest
func (NullableMetaJSONIngest) Get ¶ added in v0.2.7
func (v NullableMetaJSONIngest) Get() *MetaJSONIngest
func (NullableMetaJSONIngest) IsSet ¶ added in v0.2.7
func (v NullableMetaJSONIngest) IsSet() bool
func (NullableMetaJSONIngest) MarshalJSON ¶ added in v0.2.7
func (v NullableMetaJSONIngest) MarshalJSON() ([]byte, error)
func (*NullableMetaJSONIngest) Set ¶ added in v0.2.7
func (v *NullableMetaJSONIngest) Set(val *MetaJSONIngest)
func (*NullableMetaJSONIngest) UnmarshalJSON ¶ added in v0.2.7
func (v *NullableMetaJSONIngest) UnmarshalJSON(src []byte) error
func (*NullableMetaJSONIngest) Unset ¶ added in v0.2.7
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 (v NullableMetaMappings) Get() *MetaMappings
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 NewNullableMetaMatchBoolPrefixQuery ¶
func NewNullableMetaMatchBoolPrefixQuery(val *MetaMatchBoolPrefixQuery) *NullableMetaMatchBoolPrefixQuery
func (NullableMetaMatchBoolPrefixQuery) Get ¶
func (v NullableMetaMatchBoolPrefixQuery) Get() *MetaMatchBoolPrefixQuery
func (NullableMetaMatchBoolPrefixQuery) IsSet ¶
func (v NullableMetaMatchBoolPrefixQuery) IsSet() bool
func (NullableMetaMatchBoolPrefixQuery) MarshalJSON ¶
func (v NullableMetaMatchBoolPrefixQuery) MarshalJSON() ([]byte, error)
func (*NullableMetaMatchBoolPrefixQuery) Set ¶
func (v *NullableMetaMatchBoolPrefixQuery) Set(val *MetaMatchBoolPrefixQuery)
func (*NullableMetaMatchBoolPrefixQuery) UnmarshalJSON ¶
func (v *NullableMetaMatchBoolPrefixQuery) UnmarshalJSON(src []byte) error
func (*NullableMetaMatchBoolPrefixQuery) Unset ¶
func (v *NullableMetaMatchBoolPrefixQuery) Unset()
type NullableMetaMatchPhrasePrefixQuery ¶
type NullableMetaMatchPhrasePrefixQuery struct {
// contains filtered or unexported fields
}
func NewNullableMetaMatchPhrasePrefixQuery ¶
func NewNullableMetaMatchPhrasePrefixQuery(val *MetaMatchPhrasePrefixQuery) *NullableMetaMatchPhrasePrefixQuery
func (NullableMetaMatchPhrasePrefixQuery) Get ¶
func (v NullableMetaMatchPhrasePrefixQuery) Get() *MetaMatchPhrasePrefixQuery
func (NullableMetaMatchPhrasePrefixQuery) IsSet ¶
func (v NullableMetaMatchPhrasePrefixQuery) IsSet() bool
func (NullableMetaMatchPhrasePrefixQuery) MarshalJSON ¶
func (v NullableMetaMatchPhrasePrefixQuery) MarshalJSON() ([]byte, error)
func (*NullableMetaMatchPhrasePrefixQuery) Set ¶
func (v *NullableMetaMatchPhrasePrefixQuery) Set(val *MetaMatchPhrasePrefixQuery)
func (*NullableMetaMatchPhrasePrefixQuery) UnmarshalJSON ¶
func (v *NullableMetaMatchPhrasePrefixQuery) UnmarshalJSON(src []byte) error
func (*NullableMetaMatchPhrasePrefixQuery) Unset ¶
func (v *NullableMetaMatchPhrasePrefixQuery) Unset()
type NullableMetaMatchPhraseQuery ¶
type NullableMetaMatchPhraseQuery struct {
// contains filtered or unexported fields
}
func NewNullableMetaMatchPhraseQuery ¶
func NewNullableMetaMatchPhraseQuery(val *MetaMatchPhraseQuery) *NullableMetaMatchPhraseQuery
func (NullableMetaMatchPhraseQuery) Get ¶
func (v NullableMetaMatchPhraseQuery) Get() *MetaMatchPhraseQuery
func (NullableMetaMatchPhraseQuery) IsSet ¶
func (v NullableMetaMatchPhraseQuery) IsSet() bool
func (NullableMetaMatchPhraseQuery) MarshalJSON ¶
func (v NullableMetaMatchPhraseQuery) MarshalJSON() ([]byte, error)
func (*NullableMetaMatchPhraseQuery) Set ¶
func (v *NullableMetaMatchPhraseQuery) Set(val *MetaMatchPhraseQuery)
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 (v NullableMetaMatchQuery) Get() *MetaMatchQuery
func (NullableMetaMatchQuery) IsSet ¶
func (v NullableMetaMatchQuery) IsSet() bool
func (NullableMetaMatchQuery) MarshalJSON ¶
func (v NullableMetaMatchQuery) MarshalJSON() ([]byte, error)
func (*NullableMetaMatchQuery) Set ¶
func (v *NullableMetaMatchQuery) Set(val *MetaMatchQuery)
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 (v NullableMetaMultiMatchQuery) Get() *MetaMultiMatchQuery
func (NullableMetaMultiMatchQuery) IsSet ¶
func (v NullableMetaMultiMatchQuery) IsSet() bool
func (NullableMetaMultiMatchQuery) MarshalJSON ¶
func (v NullableMetaMultiMatchQuery) MarshalJSON() ([]byte, error)
func (*NullableMetaMultiMatchQuery) Set ¶
func (v *NullableMetaMultiMatchQuery) Set(val *MetaMultiMatchQuery)
func (*NullableMetaMultiMatchQuery) UnmarshalJSON ¶
func (v *NullableMetaMultiMatchQuery) UnmarshalJSON(src []byte) error
func (*NullableMetaMultiMatchQuery) Unset ¶
func (v *NullableMetaMultiMatchQuery) Unset()
type NullableMetaPage ¶ added in v0.2.7
type NullableMetaPage struct {
// contains filtered or unexported fields
}
func NewNullableMetaPage ¶ added in v0.2.7
func NewNullableMetaPage(val *MetaPage) *NullableMetaPage
func (NullableMetaPage) Get ¶ added in v0.2.7
func (v NullableMetaPage) Get() *MetaPage
func (NullableMetaPage) IsSet ¶ added in v0.2.7
func (v NullableMetaPage) IsSet() bool
func (NullableMetaPage) MarshalJSON ¶ added in v0.2.7
func (v NullableMetaPage) MarshalJSON() ([]byte, error)
func (*NullableMetaPage) Set ¶ added in v0.2.7
func (v *NullableMetaPage) Set(val *MetaPage)
func (*NullableMetaPage) UnmarshalJSON ¶ added in v0.2.7
func (v *NullableMetaPage) UnmarshalJSON(src []byte) error
func (*NullableMetaPage) Unset ¶ added in v0.2.7
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 (v NullableMetaPrefixQuery) Get() *MetaPrefixQuery
func (NullableMetaPrefixQuery) IsSet ¶
func (v NullableMetaPrefixQuery) IsSet() bool
func (NullableMetaPrefixQuery) MarshalJSON ¶
func (v NullableMetaPrefixQuery) MarshalJSON() ([]byte, error)
func (*NullableMetaPrefixQuery) Set ¶
func (v *NullableMetaPrefixQuery) Set(val *MetaPrefixQuery)
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 (v NullableMetaProperty) Get() *MetaProperty
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 (v NullableMetaQueryStringQuery) Get() *MetaQueryStringQuery
func (NullableMetaQueryStringQuery) IsSet ¶
func (v NullableMetaQueryStringQuery) IsSet() bool
func (NullableMetaQueryStringQuery) MarshalJSON ¶
func (v NullableMetaQueryStringQuery) MarshalJSON() ([]byte, error)
func (*NullableMetaQueryStringQuery) Set ¶
func (v *NullableMetaQueryStringQuery) Set(val *MetaQueryStringQuery)
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 (v NullableMetaRangeQuery) Get() *MetaRangeQuery
func (NullableMetaRangeQuery) IsSet ¶
func (v NullableMetaRangeQuery) IsSet() bool
func (NullableMetaRangeQuery) MarshalJSON ¶
func (v NullableMetaRangeQuery) MarshalJSON() ([]byte, error)
func (*NullableMetaRangeQuery) Set ¶
func (v *NullableMetaRangeQuery) Set(val *MetaRangeQuery)
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 (v NullableMetaRegexpQuery) Get() *MetaRegexpQuery
func (NullableMetaRegexpQuery) IsSet ¶
func (v NullableMetaRegexpQuery) IsSet() bool
func (NullableMetaRegexpQuery) MarshalJSON ¶
func (v NullableMetaRegexpQuery) MarshalJSON() ([]byte, error)
func (*NullableMetaRegexpQuery) Set ¶
func (v *NullableMetaRegexpQuery) Set(val *MetaRegexpQuery)
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 (v NullableMetaSearchResponse) Get() *MetaSearchResponse
func (NullableMetaSearchResponse) IsSet ¶
func (v NullableMetaSearchResponse) IsSet() bool
func (NullableMetaSearchResponse) MarshalJSON ¶
func (v NullableMetaSearchResponse) MarshalJSON() ([]byte, error)
func (*NullableMetaSearchResponse) Set ¶
func (v *NullableMetaSearchResponse) Set(val *MetaSearchResponse)
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 NewNullableMetaSimpleQueryStringQuery ¶
func NewNullableMetaSimpleQueryStringQuery(val *MetaSimpleQueryStringQuery) *NullableMetaSimpleQueryStringQuery
func (NullableMetaSimpleQueryStringQuery) Get ¶
func (v NullableMetaSimpleQueryStringQuery) Get() *MetaSimpleQueryStringQuery
func (NullableMetaSimpleQueryStringQuery) IsSet ¶
func (v NullableMetaSimpleQueryStringQuery) IsSet() bool
func (NullableMetaSimpleQueryStringQuery) MarshalJSON ¶
func (v NullableMetaSimpleQueryStringQuery) MarshalJSON() ([]byte, error)
func (*NullableMetaSimpleQueryStringQuery) Set ¶
func (v *NullableMetaSimpleQueryStringQuery) Set(val *MetaSimpleQueryStringQuery)
func (*NullableMetaSimpleQueryStringQuery) UnmarshalJSON ¶
func (v *NullableMetaSimpleQueryStringQuery) UnmarshalJSON(src []byte) error
func (*NullableMetaSimpleQueryStringQuery) Unset ¶
func (v *NullableMetaSimpleQueryStringQuery) Unset()
type NullableMetaTemplate ¶
type NullableMetaTemplate struct {
// contains filtered or unexported fields
}
func NewNullableMetaTemplate ¶
func NewNullableMetaTemplate(val *MetaTemplate) *NullableMetaTemplate
func (NullableMetaTemplate) Get ¶
func (v NullableMetaTemplate) Get() *MetaTemplate
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 (v NullableMetaTemplateTemplate) Get() *MetaTemplateTemplate
func (NullableMetaTemplateTemplate) IsSet ¶
func (v NullableMetaTemplateTemplate) IsSet() bool
func (NullableMetaTemplateTemplate) MarshalJSON ¶
func (v NullableMetaTemplateTemplate) MarshalJSON() ([]byte, error)
func (*NullableMetaTemplateTemplate) Set ¶
func (v *NullableMetaTemplateTemplate) Set(val *MetaTemplateTemplate)
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 (v NullableMetaTermQuery) Get() *MetaTermQuery
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 (v NullableMetaVersionResponse) Get() *MetaVersionResponse
func (NullableMetaVersionResponse) IsSet ¶
func (v NullableMetaVersionResponse) IsSet() bool
func (NullableMetaVersionResponse) MarshalJSON ¶
func (v NullableMetaVersionResponse) MarshalJSON() ([]byte, error)
func (*NullableMetaVersionResponse) Set ¶
func (v *NullableMetaVersionResponse) Set(val *MetaVersionResponse)
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 (v NullableMetaWildcardQuery) Get() *MetaWildcardQuery
func (NullableMetaWildcardQuery) IsSet ¶
func (v NullableMetaWildcardQuery) IsSet() bool
func (NullableMetaWildcardQuery) MarshalJSON ¶
func (v NullableMetaWildcardQuery) MarshalJSON() ([]byte, error)
func (*NullableMetaWildcardQuery) Set ¶
func (v *NullableMetaWildcardQuery) Set(val *MetaWildcardQuery)
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 (v NullableMetaZincQuery) Get() *MetaZincQuery
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 NewNullableV1AggregationDateRange ¶
func NewNullableV1AggregationDateRange(val *V1AggregationDateRange) *NullableV1AggregationDateRange
func (NullableV1AggregationDateRange) Get ¶
func (v NullableV1AggregationDateRange) Get() *V1AggregationDateRange
func (NullableV1AggregationDateRange) IsSet ¶
func (v NullableV1AggregationDateRange) IsSet() bool
func (NullableV1AggregationDateRange) MarshalJSON ¶
func (v NullableV1AggregationDateRange) MarshalJSON() ([]byte, error)
func (*NullableV1AggregationDateRange) Set ¶
func (v *NullableV1AggregationDateRange) Set(val *V1AggregationDateRange)
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 NewNullableV1AggregationNumberRange ¶
func NewNullableV1AggregationNumberRange(val *V1AggregationNumberRange) *NullableV1AggregationNumberRange
func (NullableV1AggregationNumberRange) Get ¶
func (v NullableV1AggregationNumberRange) Get() *V1AggregationNumberRange
func (NullableV1AggregationNumberRange) IsSet ¶
func (v NullableV1AggregationNumberRange) IsSet() bool
func (NullableV1AggregationNumberRange) MarshalJSON ¶
func (v NullableV1AggregationNumberRange) MarshalJSON() ([]byte, error)
func (*NullableV1AggregationNumberRange) Set ¶
func (v *NullableV1AggregationNumberRange) Set(val *V1AggregationNumberRange)
func (*NullableV1AggregationNumberRange) UnmarshalJSON ¶
func (v *NullableV1AggregationNumberRange) UnmarshalJSON(src []byte) error
func (*NullableV1AggregationNumberRange) Unset ¶
func (v *NullableV1AggregationNumberRange) Unset()
type NullableV1AggregationParams ¶
type NullableV1AggregationParams struct {
// contains filtered or unexported fields
}
func NewNullableV1AggregationParams ¶
func NewNullableV1AggregationParams(val *V1AggregationParams) *NullableV1AggregationParams
func (NullableV1AggregationParams) Get ¶
func (v NullableV1AggregationParams) Get() *V1AggregationParams
func (NullableV1AggregationParams) IsSet ¶
func (v NullableV1AggregationParams) IsSet() bool
func (NullableV1AggregationParams) MarshalJSON ¶
func (v NullableV1AggregationParams) MarshalJSON() ([]byte, error)
func (*NullableV1AggregationParams) Set ¶
func (v *NullableV1AggregationParams) Set(val *V1AggregationParams)
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 (v NullableV1QueryParams) Get() *V1QueryParams
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 (v NullableV1ZincQuery) Get() *V1ZincQuery
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 ¶
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 ¶ added in v0.3.3
type SearchDeleteByQueryRequest struct { ApiService Search // contains filtered or unexported fields }
func (SearchDeleteByQueryRequest) Execute ¶ added in v0.3.3
func (r SearchDeleteByQueryRequest) Execute() (*MetaHTTPResponseDeleteByQuery, *http.Response, error)
func (SearchDeleteByQueryRequest) Query ¶ added in v0.3.3
func (r SearchDeleteByQueryRequest) Query(query MetaZincQuery) SearchDeleteByQueryRequest
Query
type SearchMSearchRequest ¶
type SearchMSearchRequest struct { ApiService Search // contains filtered or unexported fields }
func (SearchMSearchRequest) Execute ¶
func (r SearchMSearchRequest) Execute() (*MetaSearchResponse, *http.Response, error)
func (SearchMSearchRequest) Query ¶
func (r SearchMSearchRequest) Query(query string) SearchMSearchRequest
Query
type SearchSearchRequest ¶
type SearchSearchRequest struct { ApiService Search // contains filtered or unexported fields }
func (SearchSearchRequest) Execute ¶
func (r SearchSearchRequest) Execute() (*MetaSearchResponse, *http.Response, error)
func (SearchSearchRequest) Query ¶
func (r SearchSearchRequest) Query(query MetaZincQuery) SearchSearchRequest
Query
type SearchSearchV1Request ¶
type SearchSearchV1Request struct { ApiService Search // contains filtered or unexported fields }
func (SearchSearchV1Request) Execute ¶
func (r SearchSearchV1Request) Execute() (*MetaSearchResponse, *http.Response, error)
func (SearchSearchV1Request) Query ¶
func (r SearchSearchV1Request) Query(query V1ZincQuery) SearchSearchV1Request
Query
type SearchService ¶
type SearchService service
SearchService Search service
func (*SearchService) DeleteByQuery ¶ added in v0.3.3
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 ¶ added in v0.3.3
func (a *SearchService) DeleteByQueryExecute(r SearchDeleteByQueryRequest) (*MetaHTTPResponseDeleteByQuery, *http.Response, error)
Execute executes the request
@return MetaHTTPResponseDeleteByQuery
func (*SearchService) MSearch ¶
func (a *SearchService) MSearch(ctx context.Context) SearchMSearchRequest
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 ¶
func (a *SearchService) MSearchExecute(r SearchMSearchRequest) (*MetaSearchResponse, *http.Response, error)
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 ¶
func (a *SearchService) SearchExecute(r SearchSearchRequest) (*MetaSearchResponse, *http.Response, error)
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 ¶
func (a *SearchService) SearchV1Execute(r SearchSearchV1Request) (*MetaSearchResponse, *http.Response, error)
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
type ServerVariable ¶
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 (r UserCreateRequest) Execute() (*MetaHTTPResponseID, *http.Response, error)
func (UserCreateRequest) User ¶
func (r UserCreateRequest) User(user MetaUser) UserCreateRequest
User data
type UserDeleteRequest ¶
type UserDeleteRequest struct { ApiService User // contains filtered or unexported fields }
func (UserDeleteRequest) Execute ¶
func (r UserDeleteRequest) Execute() (*MetaHTTPResponseID, *http.Response, error)
type UserListRequest ¶
type UserListRequest struct { ApiService User // contains filtered or unexported fields }
type UserLoginRequest ¶
type UserLoginRequest struct { ApiService User // contains filtered or unexported fields }
func (UserLoginRequest) Execute ¶
func (r UserLoginRequest) Execute() (*AuthLoginResponse, *http.Response, error)
func (UserLoginRequest) Login ¶
func (r UserLoginRequest) Login(login AuthLoginRequest) UserLoginRequest
Login credentials
type UserService ¶
type UserService service
UserService User service
func (*UserService) Create ¶
func (a *UserService) Create(ctx context.Context) UserCreateRequest
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 ¶
func (a *UserService) CreateExecute(r UserCreateRequest) (*MetaHTTPResponseID, *http.Response, error)
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 ¶
func (a *UserService) DeleteExecute(r UserDeleteRequest) (*MetaHTTPResponseID, *http.Response, error)
Execute executes the request
@return MetaHTTPResponseID
func (*UserService) List ¶
func (a *UserService) List(ctx context.Context) UserListRequest
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 ¶
func (a *UserService) Login(ctx context.Context) UserLoginRequest
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 ¶
func (a *UserService) LoginExecute(r UserLoginRequest) (*AuthLoginResponse, *http.Response, error)
Execute executes the request
@return AuthLoginResponse
func (*UserService) Update ¶
func (a *UserService) Update(ctx context.Context) UserUpdateRequest
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 ¶
func (a *UserService) UpdateExecute(r UserUpdateRequest) (*MetaHTTPResponseID, *http.Response, error)
Execute executes the request
@return MetaHTTPResponseID
type UserUpdateRequest ¶
type UserUpdateRequest struct { ApiService User // contains filtered or unexported fields }
func (UserUpdateRequest) Execute ¶
func (r UserUpdateRequest) Execute() (*MetaHTTPResponseID, *http.Response, error)
func (UserUpdateRequest) User ¶
func (r UserUpdateRequest) User(user MetaUser) UserUpdateRequest
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 ¶
func (o *V1AggregationParams) GetAggs() map[string]V1AggregationParams
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 ¶
func (o *V1AggregationParams) GetRanges() []V1AggregationNumberRange
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 ¶
func (o *V1AggregationParams) SetAggs(v map[string]V1AggregationParams)
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 ¶
func (o *V1AggregationParams) SetRanges(v []V1AggregationNumberRange)
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 ¶
- api_default.go
- api_document.go
- api_index.go
- api_search.go
- api_user.go
- client.go
- configuration.go
- model_aggregation_histogram_bound.go
- model_auth_login_request.go
- model_auth_login_response.go
- model_auth_login_user.go
- model_index_analyze_response.go
- model_index_analyze_response_token.go
- model_index_index_list_response.go
- model_meta_aggregation_auto_date_histogram.go
- model_meta_aggregation_date_histogram.go
- model_meta_aggregation_date_range.go
- model_meta_aggregation_histogram.go
- model_meta_aggregation_ip_range.go
- model_meta_aggregation_metric.go
- model_meta_aggregation_range.go
- model_meta_aggregation_response.go
- model_meta_aggregations.go
- model_meta_aggregations_terms.go
- model_meta_analyzer.go
- model_meta_bool_query.go
- model_meta_date_range.go
- model_meta_exists_query.go
- model_meta_fuzzy_query.go
- model_meta_healthz_response.go
- model_meta_highlight.go
- model_meta_hit.go
- model_meta_hits.go
- model_meta_http_response.go
- model_meta_http_response_delete_by_query.go
- model_meta_http_response_document.go
- model_meta_http_response_error.go
- model_meta_http_response_id.go
- model_meta_http_response_index.go
- model_meta_http_response_record_count.go
- model_meta_http_response_template.go
- model_meta_http_retries_response.go
- model_meta_ids_query.go
- model_meta_index_analysis.go
- model_meta_index_settings.go
- model_meta_index_simple.go
- model_meta_index_template.go
- model_meta_ip_range.go
- model_meta_json_ingest.go
- model_meta_mappings.go
- model_meta_match_bool_prefix_query.go
- model_meta_match_phrase_prefix_query.go
- model_meta_match_phrase_query.go
- model_meta_match_query.go
- model_meta_multi_match_query.go
- model_meta_page.go
- model_meta_prefix_query.go
- model_meta_property.go
- model_meta_query.go
- model_meta_query_string_query.go
- model_meta_range.go
- model_meta_range_query.go
- model_meta_regexp_query.go
- model_meta_search_response.go
- model_meta_shards.go
- model_meta_simple_query_string_query.go
- model_meta_template.go
- model_meta_template_template.go
- model_meta_term_query.go
- model_meta_total.go
- model_meta_user.go
- model_meta_version_response.go
- model_meta_wildcard_query.go
- model_meta_zinc_query.go
- model_v1_aggregation_date_range.go
- model_v1_aggregation_number_range.go
- model_v1_aggregation_params.go
- model_v1_query_params.go
- model_v1_zinc_query.go
- response.go
- utils.go