pycarlo 0.10.54__py3-none-any.whl → 0.10.55__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.
- pycarlo/lib/schema.json +12 -0
- pycarlo/lib/schema.py +8 -0
- {pycarlo-0.10.54.dist-info → pycarlo-0.10.55.dist-info}/METADATA +1 -1
- {pycarlo-0.10.54.dist-info → pycarlo-0.10.55.dist-info}/RECORD +7 -7
- {pycarlo-0.10.54.dist-info → pycarlo-0.10.55.dist-info}/LICENSE +0 -0
- {pycarlo-0.10.54.dist-info → pycarlo-0.10.55.dist-info}/WHEEL +0 -0
- {pycarlo-0.10.54.dist-info → pycarlo-0.10.55.dist-info}/top_level.txt +0 -0
pycarlo/lib/schema.json
CHANGED
|
@@ -113608,6 +113608,18 @@
|
|
|
113608
113608
|
"ofType": null
|
|
113609
113609
|
}
|
|
113610
113610
|
},
|
|
113611
|
+
{
|
|
113612
|
+
"args": [],
|
|
113613
|
+
"deprecationReason": null,
|
|
113614
|
+
"description": "Indicate if the monitor was migrated from a field quality (metrics legacy) rule",
|
|
113615
|
+
"isDeprecated": false,
|
|
113616
|
+
"name": "isMigratedFromFieldQuality",
|
|
113617
|
+
"type": {
|
|
113618
|
+
"kind": "SCALAR",
|
|
113619
|
+
"name": "Boolean",
|
|
113620
|
+
"ofType": null
|
|
113621
|
+
}
|
|
113622
|
+
},
|
|
113611
113623
|
{
|
|
113612
113624
|
"args": [],
|
|
113613
113625
|
"deprecationReason": null,
|
pycarlo/lib/schema.py
CHANGED
|
@@ -67312,6 +67312,7 @@ class CustomRule(sgqlc.types.Type, Node):
|
|
|
67312
67312
|
"suggested_custom_sampling_sql",
|
|
67313
67313
|
"selection",
|
|
67314
67314
|
"is_ootb_replacement",
|
|
67315
|
+
"is_migrated_from_field_quality",
|
|
67315
67316
|
"connection_id",
|
|
67316
67317
|
"mc_sql",
|
|
67317
67318
|
"tags",
|
|
@@ -67580,6 +67581,13 @@ class CustomRule(sgqlc.types.Type, Node):
|
|
|
67580
67581
|
is_ootb_replacement = sgqlc.types.Field(Boolean, graphql_name="isOotbReplacement")
|
|
67581
67582
|
"""Indicate if this rule replaces the default ootb detector"""
|
|
67582
67583
|
|
|
67584
|
+
is_migrated_from_field_quality = sgqlc.types.Field(
|
|
67585
|
+
Boolean, graphql_name="isMigratedFromFieldQuality"
|
|
67586
|
+
)
|
|
67587
|
+
"""Indicate if the monitor was migrated from a field quality (metrics
|
|
67588
|
+
legacy) rule
|
|
67589
|
+
"""
|
|
67590
|
+
|
|
67583
67591
|
connection_id = sgqlc.types.Field(UUID, graphql_name="connectionId")
|
|
67584
67592
|
"""The connection UUID associated with the rule"""
|
|
67585
67593
|
|
|
@@ -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=AO72XvWbIcx1vQ3D3NiVAAWjZmcva094puIWNrKLh1o,5983502
|
|
39
|
+
pycarlo/lib/schema.py,sha256=NYPisO2jbxYACqpYMQrEd74rc3UFubAjUyZWk96diZo,2587324
|
|
40
|
+
pycarlo-0.10.55.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
41
|
+
pycarlo-0.10.55.dist-info/METADATA,sha256=XwfJ1a28iyff5-SAeZvOdZJVnH3fo5ZcEzon2FIrT4k,8741
|
|
42
|
+
pycarlo-0.10.55.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
43
|
+
pycarlo-0.10.55.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
|
|
44
|
+
pycarlo-0.10.55.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|