File tree Expand file tree Collapse file tree 2 files changed +32
-30
lines changed Expand file tree Collapse file tree 2 files changed +32
-30
lines changed Original file line number Diff line number Diff line change @@ -13516,20 +13516,21 @@ export interface MlAnomaly {
13516
13516
}
13517
13517
13518
13518
export interface MlAnomalyCause {
13519
- actual: double[]
13520
- by_field_name: Name
13521
- by_field_value: string
13522
- correlated_by_field_value: string
13523
- field_name: Field
13524
- function: string
13525
- function_description: string
13526
- influencers: MlInfluence[]
13527
- over_field_name: Name
13528
- over_field_value: string
13529
- partition_field_name: string
13530
- partition_field_value: string
13519
+ actual?: double[]
13520
+ by_field_name?: Name
13521
+ by_field_value?: string
13522
+ correlated_by_field_value?: string
13523
+ field_name?: Field
13524
+ function?: string
13525
+ function_description?: string
13526
+ geo_results?: MlGeoResults
13527
+ influencers?: MlInfluence[]
13528
+ over_field_name?: Name
13529
+ over_field_value?: string
13530
+ partition_field_name?: string
13531
+ partition_field_value?: string
13531
13532
probability: double
13532
- typical: double[]
13533
+ typical? : double[]
13533
13534
}
13534
13535
13535
13536
export interface MlAnomalyExplanation {
@@ -14098,8 +14099,8 @@ export interface MlFilterRef {
14098
14099
export type MlFilterType = 'include' | 'exclude'
14099
14100
14100
14101
export interface MlGeoResults {
14101
- actual_point: string
14102
- typical_point: string
14102
+ actual_point? : string
14103
+ typical_point? : string
14103
14104
}
14104
14105
14105
14106
export interface MlHyperparameter {
Original file line number Diff line number Diff line change @@ -13758,20 +13758,21 @@ export interface MlAnomaly {
13758
13758
}
13759
13759
13760
13760
export interface MlAnomalyCause {
13761
- actual: double[]
13762
- by_field_name: Name
13763
- by_field_value: string
13764
- correlated_by_field_value: string
13765
- field_name: Field
13766
- function: string
13767
- function_description: string
13768
- influencers: MlInfluence[]
13769
- over_field_name: Name
13770
- over_field_value: string
13771
- partition_field_name: string
13772
- partition_field_value: string
13761
+ actual?: double[]
13762
+ by_field_name?: Name
13763
+ by_field_value?: string
13764
+ correlated_by_field_value?: string
13765
+ field_name?: Field
13766
+ function?: string
13767
+ function_description?: string
13768
+ geo_results?: MlGeoResults
13769
+ influencers?: MlInfluence[]
13770
+ over_field_name?: Name
13771
+ over_field_value?: string
13772
+ partition_field_name?: string
13773
+ partition_field_value?: string
13773
13774
probability: double
13774
- typical: double[]
13775
+ typical? : double[]
13775
13776
}
13776
13777
13777
13778
export interface MlAnomalyExplanation {
@@ -14340,8 +14341,8 @@ export interface MlFilterRef {
14340
14341
export type MlFilterType = 'include' | 'exclude'
14341
14342
14342
14343
export interface MlGeoResults {
14343
- actual_point: string
14344
- typical_point: string
14344
+ actual_point? : string
14345
+ typical_point? : string
14345
14346
}
14346
14347
14347
14348
export interface MlHyperparameter {
You can’t perform that action at this time.
0 commit comments