@grafana/plugin-types 0.0.16 → 0.0.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -52,13 +52,7 @@ export interface Entity {
|
|
|
52
52
|
parentEntity?: EntityParent;
|
|
53
53
|
connectedEntities?: Entity[];
|
|
54
54
|
}
|
|
55
|
-
export
|
|
56
|
-
EQUALS = "eq",
|
|
57
|
-
NOT_EQUALS = "neq",
|
|
58
|
-
STARTS_WITH = "starts_with",
|
|
59
|
-
CONTAINS = "contains",
|
|
60
|
-
IsNull = "is_null"
|
|
61
|
-
}
|
|
55
|
+
export type EntityFilterOperation = "eq" | "neq" | "starts_with" | "contains" | "is_null";
|
|
62
56
|
export interface EntityFilterParameter {
|
|
63
57
|
op: EntityFilterOperation;
|
|
64
58
|
value: string | true | false;
|
|
@@ -121,13 +115,6 @@ export interface Scope {
|
|
|
121
115
|
namespace?: string;
|
|
122
116
|
}
|
|
123
117
|
/********************** Entity Cross Link ***********/
|
|
124
|
-
export declare enum EntityCrossLinkType {
|
|
125
|
-
K8S_NODE = "k8s_node",
|
|
126
|
-
EC2_INSTANCE = "ec2_instance",
|
|
127
|
-
RDS_INSTANCE = "rds_instance",
|
|
128
|
-
MYSQL_INSTANCE = "mysql_instance",
|
|
129
|
-
UNKNOWN = "unknown"
|
|
130
|
-
}
|
|
131
118
|
export type DrawerViewProps = {
|
|
132
119
|
entity: Entity;
|
|
133
120
|
start: string;
|