Auto-generated code for 8.13 (#2196)
This commit is contained in:
@ -6437,7 +6437,11 @@ or `windows-x86_64`. For portable models (those that work independent of process
|
||||
architecture or OS features), leave this field unset.
|
||||
** *`tags` (Optional, string[])*: An array of tags to organize the model.
|
||||
** *`prefix_strings` (Optional, { ingest, search })*: Optional prefix strings applied at inference
|
||||
** *`defer_definition_decompression` (Optional, boolean)*: If set to `true` and a `compressed_definition` is provided, the request defers definition decompression and skips relevant validations.
|
||||
** *`defer_definition_decompression` (Optional, boolean)*: If set to `true` and a `compressed_definition` is provided,
|
||||
the request defers definition decompression and skips relevant
|
||||
validations.
|
||||
** *`wait_for_completion` (Optional, boolean)*: Whether to wait for all child operations (e.g. model download)
|
||||
to complete.
|
||||
|
||||
[discrete]
|
||||
==== put_trained_model_alias
|
||||
|
||||
@ -14143,6 +14143,7 @@ export interface MlPutTrainedModelPreprocessor {
|
||||
export interface MlPutTrainedModelRequest extends RequestBase {
|
||||
model_id: Id
|
||||
defer_definition_decompression?: boolean
|
||||
wait_for_completion?: boolean
|
||||
compressed_definition?: string
|
||||
definition?: MlPutTrainedModelDefinition
|
||||
description?: string
|
||||
@ -16554,31 +16555,31 @@ export interface SecurityPutUserResponse {
|
||||
created: boolean
|
||||
}
|
||||
|
||||
export type SecurityQueryApiKeysAPIKeyAggregate = AggregationsCardinalityAggregate | AggregationsValueCountAggregate | AggregationsStringTermsAggregate | AggregationsLongTermsAggregate | AggregationsDoubleTermsAggregate | AggregationsUnmappedTermsAggregate | AggregationsMultiTermsAggregate | AggregationsMissingAggregate | AggregationsFilterAggregate | AggregationsFiltersAggregate | AggregationsRangeAggregate | AggregationsDateRangeAggregate | AggregationsCompositeAggregate
|
||||
export type SecurityQueryApiKeysApiKeyAggregate = AggregationsCardinalityAggregate | AggregationsValueCountAggregate | AggregationsStringTermsAggregate | AggregationsLongTermsAggregate | AggregationsDoubleTermsAggregate | AggregationsUnmappedTermsAggregate | AggregationsMultiTermsAggregate | AggregationsMissingAggregate | AggregationsFilterAggregate | AggregationsFiltersAggregate | AggregationsRangeAggregate | AggregationsDateRangeAggregate | AggregationsCompositeAggregate
|
||||
|
||||
export interface SecurityQueryApiKeysAPIKeyAggregationContainer {
|
||||
aggregations?: Record<string, SecurityQueryApiKeysAPIKeyAggregationContainer>
|
||||
aggs?: Record<string, SecurityQueryApiKeysAPIKeyAggregationContainer>
|
||||
export interface SecurityQueryApiKeysApiKeyAggregationContainer {
|
||||
aggregations?: Record<string, SecurityQueryApiKeysApiKeyAggregationContainer>
|
||||
aggs?: Record<string, SecurityQueryApiKeysApiKeyAggregationContainer>
|
||||
meta?: Metadata
|
||||
cardinality?: AggregationsCardinalityAggregation
|
||||
composite?: AggregationsCompositeAggregation
|
||||
date_range?: AggregationsDateRangeAggregation
|
||||
filter?: SecurityQueryApiKeysAPIKeyQueryContainer
|
||||
filters?: SecurityQueryApiKeysAPIKeyFiltersAggregation
|
||||
filter?: SecurityQueryApiKeysApiKeyQueryContainer
|
||||
filters?: SecurityQueryApiKeysApiKeyFiltersAggregation
|
||||
missing?: AggregationsMissingAggregation
|
||||
range?: AggregationsRangeAggregation
|
||||
terms?: AggregationsTermsAggregation
|
||||
value_count?: AggregationsValueCountAggregation
|
||||
}
|
||||
|
||||
export interface SecurityQueryApiKeysAPIKeyFiltersAggregation extends AggregationsBucketAggregationBase {
|
||||
filters?: AggregationsBuckets<SecurityQueryApiKeysAPIKeyQueryContainer>
|
||||
export interface SecurityQueryApiKeysApiKeyFiltersAggregation extends AggregationsBucketAggregationBase {
|
||||
filters?: AggregationsBuckets<SecurityQueryApiKeysApiKeyQueryContainer>
|
||||
other_bucket?: boolean
|
||||
other_bucket_key?: string
|
||||
keyed?: boolean
|
||||
}
|
||||
|
||||
export interface SecurityQueryApiKeysAPIKeyQueryContainer {
|
||||
export interface SecurityQueryApiKeysApiKeyQueryContainer {
|
||||
bool?: QueryDslBoolQuery
|
||||
exists?: QueryDslExistsQuery
|
||||
ids?: QueryDslIdsQuery
|
||||
@ -16594,10 +16595,10 @@ export interface SecurityQueryApiKeysAPIKeyQueryContainer {
|
||||
|
||||
export interface SecurityQueryApiKeysRequest extends RequestBase {
|
||||
with_limited_by?: boolean
|
||||
aggregations?: Record<string, SecurityQueryApiKeysAPIKeyAggregationContainer>
|
||||
aggregations?: Record<string, SecurityQueryApiKeysApiKeyAggregationContainer>
|
||||
/** @alias aggregations */
|
||||
aggs?: Record<string, SecurityQueryApiKeysAPIKeyAggregationContainer>
|
||||
query?: SecurityQueryApiKeysAPIKeyQueryContainer
|
||||
aggs?: Record<string, SecurityQueryApiKeysApiKeyAggregationContainer>
|
||||
query?: SecurityQueryApiKeysApiKeyQueryContainer
|
||||
from?: integer
|
||||
sort?: Sort
|
||||
size?: integer
|
||||
@ -16608,7 +16609,7 @@ export interface SecurityQueryApiKeysResponse {
|
||||
total: integer
|
||||
count: integer
|
||||
api_keys: SecurityApiKey[]
|
||||
aggregations?: Record<AggregateName, SecurityQueryApiKeysAPIKeyAggregate>
|
||||
aggregations?: Record<AggregateName, SecurityQueryApiKeysApiKeyAggregate>
|
||||
}
|
||||
|
||||
export interface SecuritySamlAuthenticateRequest extends RequestBase {
|
||||
|
||||
@ -14404,6 +14404,7 @@ export interface MlPutTrainedModelPreprocessor {
|
||||
export interface MlPutTrainedModelRequest extends RequestBase {
|
||||
model_id: Id
|
||||
defer_definition_decompression?: boolean
|
||||
wait_for_completion?: boolean
|
||||
/** @deprecated The use of the 'body' key has been deprecated, move the nested keys to the top level object. */
|
||||
body?: {
|
||||
compressed_definition?: string
|
||||
@ -16910,31 +16911,31 @@ export interface SecurityPutUserResponse {
|
||||
created: boolean
|
||||
}
|
||||
|
||||
export type SecurityQueryApiKeysAPIKeyAggregate = AggregationsCardinalityAggregate | AggregationsValueCountAggregate | AggregationsStringTermsAggregate | AggregationsLongTermsAggregate | AggregationsDoubleTermsAggregate | AggregationsUnmappedTermsAggregate | AggregationsMultiTermsAggregate | AggregationsMissingAggregate | AggregationsFilterAggregate | AggregationsFiltersAggregate | AggregationsRangeAggregate | AggregationsDateRangeAggregate | AggregationsCompositeAggregate
|
||||
export type SecurityQueryApiKeysApiKeyAggregate = AggregationsCardinalityAggregate | AggregationsValueCountAggregate | AggregationsStringTermsAggregate | AggregationsLongTermsAggregate | AggregationsDoubleTermsAggregate | AggregationsUnmappedTermsAggregate | AggregationsMultiTermsAggregate | AggregationsMissingAggregate | AggregationsFilterAggregate | AggregationsFiltersAggregate | AggregationsRangeAggregate | AggregationsDateRangeAggregate | AggregationsCompositeAggregate
|
||||
|
||||
export interface SecurityQueryApiKeysAPIKeyAggregationContainer {
|
||||
aggregations?: Record<string, SecurityQueryApiKeysAPIKeyAggregationContainer>
|
||||
aggs?: Record<string, SecurityQueryApiKeysAPIKeyAggregationContainer>
|
||||
export interface SecurityQueryApiKeysApiKeyAggregationContainer {
|
||||
aggregations?: Record<string, SecurityQueryApiKeysApiKeyAggregationContainer>
|
||||
aggs?: Record<string, SecurityQueryApiKeysApiKeyAggregationContainer>
|
||||
meta?: Metadata
|
||||
cardinality?: AggregationsCardinalityAggregation
|
||||
composite?: AggregationsCompositeAggregation
|
||||
date_range?: AggregationsDateRangeAggregation
|
||||
filter?: SecurityQueryApiKeysAPIKeyQueryContainer
|
||||
filters?: SecurityQueryApiKeysAPIKeyFiltersAggregation
|
||||
filter?: SecurityQueryApiKeysApiKeyQueryContainer
|
||||
filters?: SecurityQueryApiKeysApiKeyFiltersAggregation
|
||||
missing?: AggregationsMissingAggregation
|
||||
range?: AggregationsRangeAggregation
|
||||
terms?: AggregationsTermsAggregation
|
||||
value_count?: AggregationsValueCountAggregation
|
||||
}
|
||||
|
||||
export interface SecurityQueryApiKeysAPIKeyFiltersAggregation extends AggregationsBucketAggregationBase {
|
||||
filters?: AggregationsBuckets<SecurityQueryApiKeysAPIKeyQueryContainer>
|
||||
export interface SecurityQueryApiKeysApiKeyFiltersAggregation extends AggregationsBucketAggregationBase {
|
||||
filters?: AggregationsBuckets<SecurityQueryApiKeysApiKeyQueryContainer>
|
||||
other_bucket?: boolean
|
||||
other_bucket_key?: string
|
||||
keyed?: boolean
|
||||
}
|
||||
|
||||
export interface SecurityQueryApiKeysAPIKeyQueryContainer {
|
||||
export interface SecurityQueryApiKeysApiKeyQueryContainer {
|
||||
bool?: QueryDslBoolQuery
|
||||
exists?: QueryDslExistsQuery
|
||||
ids?: QueryDslIdsQuery
|
||||
@ -16952,10 +16953,10 @@ export interface SecurityQueryApiKeysRequest extends RequestBase {
|
||||
with_limited_by?: boolean
|
||||
/** @deprecated The use of the 'body' key has been deprecated, move the nested keys to the top level object. */
|
||||
body?: {
|
||||
aggregations?: Record<string, SecurityQueryApiKeysAPIKeyAggregationContainer>
|
||||
aggregations?: Record<string, SecurityQueryApiKeysApiKeyAggregationContainer>
|
||||
/** @alias aggregations */
|
||||
aggs?: Record<string, SecurityQueryApiKeysAPIKeyAggregationContainer>
|
||||
query?: SecurityQueryApiKeysAPIKeyQueryContainer
|
||||
aggs?: Record<string, SecurityQueryApiKeysApiKeyAggregationContainer>
|
||||
query?: SecurityQueryApiKeysApiKeyQueryContainer
|
||||
from?: integer
|
||||
sort?: Sort
|
||||
size?: integer
|
||||
@ -16967,7 +16968,7 @@ export interface SecurityQueryApiKeysResponse {
|
||||
total: integer
|
||||
count: integer
|
||||
api_keys: SecurityApiKey[]
|
||||
aggregations?: Record<AggregateName, SecurityQueryApiKeysAPIKeyAggregate>
|
||||
aggregations?: Record<AggregateName, SecurityQueryApiKeysApiKeyAggregate>
|
||||
}
|
||||
|
||||
export interface SecuritySamlAuthenticateRequest extends RequestBase {
|
||||
|
||||
Reference in New Issue
Block a user