pycarlo 0.10.204__py3-none-any.whl → 0.10.206__py3-none-any.whl
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.
Potentially problematic release.
This version of pycarlo might be problematic. Click here for more details.
- pycarlo/lib/schema.json +31 -9
- pycarlo/lib/schema.py +14 -6
- {pycarlo-0.10.204.dist-info → pycarlo-0.10.206.dist-info}/METADATA +1 -1
- {pycarlo-0.10.204.dist-info → pycarlo-0.10.206.dist-info}/RECORD +7 -7
- {pycarlo-0.10.204.dist-info → pycarlo-0.10.206.dist-info}/LICENSE +0 -0
- {pycarlo-0.10.204.dist-info → pycarlo-0.10.206.dist-info}/WHEEL +0 -0
- {pycarlo-0.10.204.dist-info → pycarlo-0.10.206.dist-info}/top_level.txt +0 -0
pycarlo/lib/schema.json
CHANGED
|
@@ -1069,16 +1069,22 @@
|
|
|
1069
1069
|
"args": [
|
|
1070
1070
|
{
|
|
1071
1071
|
"defaultValue": null,
|
|
1072
|
-
"description": "
|
|
1073
|
-
"name": "
|
|
1072
|
+
"description": "Warehouse UUID. If provided, the connection type will be ignored.",
|
|
1073
|
+
"name": "warehouseUuid",
|
|
1074
1074
|
"type": {
|
|
1075
|
-
"kind": "
|
|
1076
|
-
"name":
|
|
1077
|
-
"ofType":
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1075
|
+
"kind": "SCALAR",
|
|
1076
|
+
"name": "UUID",
|
|
1077
|
+
"ofType": null
|
|
1078
|
+
}
|
|
1079
|
+
},
|
|
1080
|
+
{
|
|
1081
|
+
"defaultValue": null,
|
|
1082
|
+
"description": "connection type, for example \"snowflake\", \"bigquery\", etc.",
|
|
1083
|
+
"name": "connectionType",
|
|
1084
|
+
"type": {
|
|
1085
|
+
"kind": "SCALAR",
|
|
1086
|
+
"name": "String",
|
|
1087
|
+
"ofType": null
|
|
1082
1088
|
}
|
|
1083
1089
|
}
|
|
1084
1090
|
],
|
|
@@ -128164,6 +128170,22 @@
|
|
|
128164
128170
|
"name": "MonitorAggTimeInterval",
|
|
128165
128171
|
"ofType": null
|
|
128166
128172
|
}
|
|
128173
|
+
},
|
|
128174
|
+
{
|
|
128175
|
+
"args": [],
|
|
128176
|
+
"deprecationReason": null,
|
|
128177
|
+
"description": "Type of the event",
|
|
128178
|
+
"isDeprecated": false,
|
|
128179
|
+
"name": "eventType",
|
|
128180
|
+
"type": {
|
|
128181
|
+
"kind": "NON_NULL",
|
|
128182
|
+
"name": null,
|
|
128183
|
+
"ofType": {
|
|
128184
|
+
"kind": "SCALAR",
|
|
128185
|
+
"name": "String",
|
|
128186
|
+
"ofType": null
|
|
128187
|
+
}
|
|
128188
|
+
}
|
|
128167
128189
|
}
|
|
128168
128190
|
],
|
|
128169
128191
|
"inputFields": null,
|
pycarlo/lib/schema.py
CHANGED
|
@@ -20956,6 +20956,7 @@ class FHEvent(sgqlc.types.Type):
|
|
|
20956
20956
|
"historical_mean",
|
|
20957
20957
|
"detector_feedback",
|
|
20958
20958
|
"agg_time_interval",
|
|
20959
|
+
"event_type",
|
|
20959
20960
|
)
|
|
20960
20961
|
event_uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="eventUuid")
|
|
20961
20962
|
"""UUID of the anomaly event"""
|
|
@@ -21014,6 +21015,9 @@ class FHEvent(sgqlc.types.Type):
|
|
|
21014
21015
|
timecomponent of the event timestamp should be ignored.
|
|
21015
21016
|
"""
|
|
21016
21017
|
|
|
21018
|
+
event_type = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="eventType")
|
|
21019
|
+
"""Type of the event"""
|
|
21020
|
+
|
|
21017
21021
|
|
|
21018
21022
|
class FHEvents(sgqlc.types.Type):
|
|
21019
21023
|
__schema__ = schema
|
|
@@ -45627,10 +45631,12 @@ class Query(sgqlc.types.Type):
|
|
|
45627
45631
|
args=sgqlc.types.ArgDict(
|
|
45628
45632
|
(
|
|
45629
45633
|
(
|
|
45630
|
-
"
|
|
45631
|
-
sgqlc.types.Arg(
|
|
45632
|
-
|
|
45633
|
-
|
|
45634
|
+
"warehouse_uuid",
|
|
45635
|
+
sgqlc.types.Arg(UUID, graphql_name="warehouseUuid", default=None),
|
|
45636
|
+
),
|
|
45637
|
+
(
|
|
45638
|
+
"connection_type",
|
|
45639
|
+
sgqlc.types.Arg(String, graphql_name="connectionType", default=None),
|
|
45634
45640
|
),
|
|
45635
45641
|
)
|
|
45636
45642
|
),
|
|
@@ -45640,8 +45646,10 @@ class Query(sgqlc.types.Type):
|
|
|
45640
45646
|
|
|
45641
45647
|
Arguments:
|
|
45642
45648
|
|
|
45643
|
-
* `
|
|
45644
|
-
|
|
45649
|
+
* `warehouse_uuid` (`UUID`): Warehouse UUID. If provided, the
|
|
45650
|
+
connection type will be ignored.
|
|
45651
|
+
* `connection_type` (`String`): connection type, for example
|
|
45652
|
+
"snowflake", "bigquery", etc.
|
|
45645
45653
|
"""
|
|
45646
45654
|
|
|
45647
45655
|
run_custom_query = sgqlc.types.Field(
|
|
@@ -35,10 +35,10 @@ pycarlo/features/user/queries.py,sha256=m97RvM0oiBlrU5xmOwe_JJ5N0G0NG5hIOeyQqN2O
|
|
|
35
35
|
pycarlo/features/user/service.py,sha256=DHkhuonySaHro07NTd0YNe3cNkDk62CiRTY77dhVaMs,2890
|
|
36
36
|
pycarlo/lib/README.md,sha256=QGNeUefPzLKGyZqn5aITpcFgkC9WQTNS292BGisRFHk,139
|
|
37
37
|
pycarlo/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
38
|
-
pycarlo/lib/schema.json,sha256=
|
|
39
|
-
pycarlo/lib/schema.py,sha256=
|
|
40
|
-
pycarlo-0.10.
|
|
41
|
-
pycarlo-0.10.
|
|
42
|
-
pycarlo-0.10.
|
|
43
|
-
pycarlo-0.10.
|
|
44
|
-
pycarlo-0.10.
|
|
38
|
+
pycarlo/lib/schema.json,sha256=bpE96qnIwdvM7QdDGtQBOiqoyi9z8SthxY8e-kk4nGc,6348758
|
|
39
|
+
pycarlo/lib/schema.py,sha256=87DjeiKWLdUKPRF1xxPcnBMuZufU_DeaOMqy1TsXwaU,2764951
|
|
40
|
+
pycarlo-0.10.206.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
41
|
+
pycarlo-0.10.206.dist-info/METADATA,sha256=1Px1z03KKkVGcUyuj98dlvvMVOazi7yPTlHKblOfsv8,8742
|
|
42
|
+
pycarlo-0.10.206.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
43
|
+
pycarlo-0.10.206.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
|
|
44
|
+
pycarlo-0.10.206.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|