pycarlo 0.10.181__py3-none-any.whl → 0.10.183__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 +24 -0
- pycarlo/lib/schema.py +6 -0
- {pycarlo-0.10.181.dist-info → pycarlo-0.10.183.dist-info}/METADATA +1 -1
- {pycarlo-0.10.181.dist-info → pycarlo-0.10.183.dist-info}/RECORD +7 -7
- {pycarlo-0.10.181.dist-info → pycarlo-0.10.183.dist-info}/LICENSE +0 -0
- {pycarlo-0.10.181.dist-info → pycarlo-0.10.183.dist-info}/WHEEL +0 -0
- {pycarlo-0.10.181.dist-info → pycarlo-0.10.183.dist-info}/top_level.txt +0 -0
pycarlo/lib/schema.json
CHANGED
|
@@ -65160,6 +65160,18 @@
|
|
|
65160
65160
|
"name": "String",
|
|
65161
65161
|
"ofType": null
|
|
65162
65162
|
}
|
|
65163
|
+
},
|
|
65164
|
+
{
|
|
65165
|
+
"args": [],
|
|
65166
|
+
"deprecationReason": null,
|
|
65167
|
+
"description": "",
|
|
65168
|
+
"isDeprecated": false,
|
|
65169
|
+
"name": "timeSeriesUuid",
|
|
65170
|
+
"type": {
|
|
65171
|
+
"kind": "SCALAR",
|
|
65172
|
+
"name": "UUID",
|
|
65173
|
+
"ofType": null
|
|
65174
|
+
}
|
|
65163
65175
|
}
|
|
65164
65176
|
],
|
|
65165
65177
|
"inputFields": null,
|
|
@@ -115068,6 +115080,18 @@
|
|
|
115068
115080
|
"ofType": null
|
|
115069
115081
|
}
|
|
115070
115082
|
},
|
|
115083
|
+
{
|
|
115084
|
+
"args": [],
|
|
115085
|
+
"deprecationReason": null,
|
|
115086
|
+
"description": "",
|
|
115087
|
+
"isDeprecated": false,
|
|
115088
|
+
"name": "timeSeriesUuid",
|
|
115089
|
+
"type": {
|
|
115090
|
+
"kind": "SCALAR",
|
|
115091
|
+
"name": "UUID",
|
|
115092
|
+
"ofType": null
|
|
115093
|
+
}
|
|
115094
|
+
},
|
|
115071
115095
|
{
|
|
115072
115096
|
"args": [],
|
|
115073
115097
|
"deprecationReason": null,
|
pycarlo/lib/schema.py
CHANGED
|
@@ -17644,6 +17644,7 @@ class DataMaintenanceEntry(sgqlc.types.Type):
|
|
|
17644
17644
|
"dataset",
|
|
17645
17645
|
"full_table_id",
|
|
17646
17646
|
"monitor_id",
|
|
17647
|
+
"time_series_uuid",
|
|
17647
17648
|
"maintenance_type",
|
|
17648
17649
|
"start_time",
|
|
17649
17650
|
"end_time",
|
|
@@ -17668,6 +17669,8 @@ class DataMaintenanceEntry(sgqlc.types.Type):
|
|
|
17668
17669
|
|
|
17669
17670
|
monitor_id = sgqlc.types.Field(UUID, graphql_name="monitorId")
|
|
17670
17671
|
|
|
17672
|
+
time_series_uuid = sgqlc.types.Field(UUID, graphql_name="timeSeriesUuid")
|
|
17673
|
+
|
|
17671
17674
|
maintenance_type = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name="maintenanceType")
|
|
17672
17675
|
|
|
17673
17676
|
start_time = sgqlc.types.Field(DateTime, graphql_name="startTime")
|
|
@@ -73996,6 +73999,7 @@ class EventDetectorFeedback(sgqlc.types.Type, Node):
|
|
|
73996
73999
|
"metric",
|
|
73997
74000
|
"field",
|
|
73998
74001
|
"where_condition",
|
|
74002
|
+
"time_series_uuid",
|
|
73999
74003
|
)
|
|
74000
74004
|
created_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="createdTime")
|
|
74001
74005
|
|
|
@@ -74017,6 +74021,8 @@ class EventDetectorFeedback(sgqlc.types.Type, Node):
|
|
|
74017
74021
|
|
|
74018
74022
|
where_condition = sgqlc.types.Field(String, graphql_name="whereCondition")
|
|
74019
74023
|
|
|
74024
|
+
time_series_uuid = sgqlc.types.Field(UUID, graphql_name="timeSeriesUuid")
|
|
74025
|
+
|
|
74020
74026
|
|
|
74021
74027
|
class FailedDataRca(sgqlc.types.Type, IBaseRca, IQueryRca):
|
|
74022
74028
|
__schema__ = schema
|
|
@@ -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=RfkHd0ep5DujXU0OEayOyrcAAHtNf6iBU3K4VTL3Bh0,6282822
|
|
39
|
+
pycarlo/lib/schema.py,sha256=jZbq5FSwYitflVAEuzPlhJskOmAd-68l_NZ8Q8N79_I,2731934
|
|
40
|
+
pycarlo-0.10.183.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
41
|
+
pycarlo-0.10.183.dist-info/METADATA,sha256=CVKQFLuVmaGNryL7EPfO_Ctf2rt8mEh6XZjwkMKm6-s,8742
|
|
42
|
+
pycarlo-0.10.183.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
43
|
+
pycarlo-0.10.183.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
|
|
44
|
+
pycarlo-0.10.183.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|