Skip to content

Auto-generated code for 8.16 #2609

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 16 additions & 15 deletions src/api/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13516,20 +13516,21 @@ export interface MlAnomaly {
}

export interface MlAnomalyCause {
actual: double[]
by_field_name: Name
by_field_value: string
correlated_by_field_value: string
field_name: Field
function: string
function_description: string
influencers: MlInfluence[]
over_field_name: Name
over_field_value: string
partition_field_name: string
partition_field_value: string
actual?: double[]
by_field_name?: Name
by_field_value?: string
correlated_by_field_value?: string
field_name?: Field
function?: string
function_description?: string
geo_results?: MlGeoResults
influencers?: MlInfluence[]
over_field_name?: Name
over_field_value?: string
partition_field_name?: string
partition_field_value?: string
probability: double
typical: double[]
typical?: double[]
}

export interface MlAnomalyExplanation {
Expand Down Expand Up @@ -14098,8 +14099,8 @@ export interface MlFilterRef {
export type MlFilterType = 'include' | 'exclude'

export interface MlGeoResults {
actual_point: string
typical_point: string
actual_point?: string
typical_point?: string
}

export interface MlHyperparameter {
Expand Down
31 changes: 16 additions & 15 deletions src/api/typesWithBodyKey.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13758,20 +13758,21 @@ export interface MlAnomaly {
}

export interface MlAnomalyCause {
actual: double[]
by_field_name: Name
by_field_value: string
correlated_by_field_value: string
field_name: Field
function: string
function_description: string
influencers: MlInfluence[]
over_field_name: Name
over_field_value: string
partition_field_name: string
partition_field_value: string
actual?: double[]
by_field_name?: Name
by_field_value?: string
correlated_by_field_value?: string
field_name?: Field
function?: string
function_description?: string
geo_results?: MlGeoResults
influencers?: MlInfluence[]
over_field_name?: Name
over_field_value?: string
partition_field_name?: string
partition_field_value?: string
probability: double
typical: double[]
typical?: double[]
}

export interface MlAnomalyExplanation {
Expand Down Expand Up @@ -14340,8 +14341,8 @@ export interface MlFilterRef {
export type MlFilterType = 'include' | 'exclude'

export interface MlGeoResults {
actual_point: string
typical_point: string
actual_point?: string
typical_point?: string
}

export interface MlHyperparameter {
Expand Down