File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -77,11 +77,6 @@ export type Metrics = string | string[]
77
77
78
78
export type ClusterAlias = string
79
79
80
- export type ManagedBy =
81
- | 'Index Lifecycle Management'
82
- | 'Data stream lifecycle'
83
- | 'Unmanaged'
84
-
85
80
export type Name = string
86
81
export type Names = Name | Name [ ]
87
82
Original file line number Diff line number Diff line change @@ -22,14 +22,19 @@ import {
22
22
Field ,
23
23
HealthStatus ,
24
24
IndexName ,
25
- ManagedBy ,
26
25
Metadata ,
27
26
Name ,
28
27
Uuid
29
28
} from '@_types/common'
30
29
import { integer } from '@_types/Numeric'
31
30
import { DataStreamLifecycleWithRollover } from '@indices/_types/DataStreamLifecycle'
32
31
32
+ enum ManagedBy {
33
+ 'Index Lifecycle Management' ,
34
+ 'Data stream lifecycle' ,
35
+ 'Unmanaged'
36
+ }
37
+
33
38
export class DataStream {
34
39
/**
35
40
* Custom metadata for the stream, copied from the `_meta` object of the stream’s matching index template.
You can’t perform that action at this time.
0 commit comments