pycarlo 0.10.81__py3-none-any.whl → 0.10.83__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 +16 -0
- pycarlo/lib/schema.py +8 -0
- {pycarlo-0.10.81.dist-info → pycarlo-0.10.83.dist-info}/METADATA +1 -1
- {pycarlo-0.10.81.dist-info → pycarlo-0.10.83.dist-info}/RECORD +7 -7
- {pycarlo-0.10.81.dist-info → pycarlo-0.10.83.dist-info}/LICENSE +0 -0
- {pycarlo-0.10.81.dist-info → pycarlo-0.10.83.dist-info}/WHEEL +0 -0
- {pycarlo-0.10.81.dist-info → pycarlo-0.10.83.dist-info}/top_level.txt +0 -0
pycarlo/lib/schema.json
CHANGED
|
@@ -26356,6 +26356,16 @@
|
|
|
26356
26356
|
"ofType": null
|
|
26357
26357
|
}
|
|
26358
26358
|
},
|
|
26359
|
+
{
|
|
26360
|
+
"defaultValue": null,
|
|
26361
|
+
"description": "Filter by monitored status if provided",
|
|
26362
|
+
"name": "isMonitored",
|
|
26363
|
+
"type": {
|
|
26364
|
+
"kind": "SCALAR",
|
|
26365
|
+
"name": "Boolean",
|
|
26366
|
+
"ofType": null
|
|
26367
|
+
}
|
|
26368
|
+
},
|
|
26359
26369
|
{
|
|
26360
26370
|
"defaultValue": "100",
|
|
26361
26371
|
"description": null,
|
|
@@ -139031,6 +139041,12 @@
|
|
|
139031
139041
|
{
|
|
139032
139042
|
"description": null,
|
|
139033
139043
|
"enumValues": [
|
|
139044
|
+
{
|
|
139045
|
+
"deprecationReason": null,
|
|
139046
|
+
"description": null,
|
|
139047
|
+
"isDeprecated": false,
|
|
139048
|
+
"name": "CONSUMPTION_REPORT"
|
|
139049
|
+
},
|
|
139034
139050
|
{
|
|
139035
139051
|
"deprecationReason": null,
|
|
139036
139052
|
"description": null,
|
pycarlo/lib/schema.py
CHANGED
|
@@ -4341,6 +4341,7 @@ class ReportTypeEnum(sgqlc.types.Enum):
|
|
|
4341
4341
|
|
|
4342
4342
|
* `ALERTS_REPORT`None
|
|
4343
4343
|
* `ASSETS_REPORT`None
|
|
4344
|
+
* `CONSUMPTION_REPORT`None
|
|
4344
4345
|
* `EVENTS_REPORT`None
|
|
4345
4346
|
* `LINEAGE_EDGES_REPORT`None
|
|
4346
4347
|
* `MONITORS_REPORT`None
|
|
@@ -4350,6 +4351,7 @@ class ReportTypeEnum(sgqlc.types.Enum):
|
|
|
4350
4351
|
__choices__ = (
|
|
4351
4352
|
"ALERTS_REPORT",
|
|
4352
4353
|
"ASSETS_REPORT",
|
|
4354
|
+
"CONSUMPTION_REPORT",
|
|
4353
4355
|
"EVENTS_REPORT",
|
|
4354
4356
|
"LINEAGE_EDGES_REPORT",
|
|
4355
4357
|
"MONITORS_REPORT",
|
|
@@ -57010,6 +57012,10 @@ class Query(sgqlc.types.Type):
|
|
|
57010
57012
|
"search_full_table_id",
|
|
57011
57013
|
sgqlc.types.Arg(String, graphql_name="searchFullTableId", default=None),
|
|
57012
57014
|
),
|
|
57015
|
+
(
|
|
57016
|
+
"is_monitored",
|
|
57017
|
+
sgqlc.types.Arg(Boolean, graphql_name="isMonitored", default=None),
|
|
57018
|
+
),
|
|
57013
57019
|
("limit", sgqlc.types.Arg(Int, graphql_name="limit", default=100)),
|
|
57014
57020
|
("offset", sgqlc.types.Arg(Int, graphql_name="offset", default=0)),
|
|
57015
57021
|
)
|
|
@@ -57029,6 +57035,8 @@ class Query(sgqlc.types.Type):
|
|
|
57029
57035
|
* `domain_restrictions` (`[UUID!]`)None
|
|
57030
57036
|
* `search` (`String`)None
|
|
57031
57037
|
* `search_full_table_id` (`String`)None
|
|
57038
|
+
* `is_monitored` (`Boolean`): Filter by monitored status if
|
|
57039
|
+
provided
|
|
57032
57040
|
* `limit` (`Int`)None (default: `100`)
|
|
57033
57041
|
* `offset` (`Int`)None (default: `0`)
|
|
57034
57042
|
"""
|
|
@@ -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=LPT0p9hnV3Shbbd-oxIS3usJf4pRzzzM2R3ncYAjqrQ,6014504
|
|
39
|
+
pycarlo/lib/schema.py,sha256=GSA4Aj6UsKWecryJ2rhAfYzYrIpVfwf6Ka-Q45O2tJI,2597264
|
|
40
|
+
pycarlo-0.10.83.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
41
|
+
pycarlo-0.10.83.dist-info/METADATA,sha256=QBLAeK78NmNz1qF-S7L6eJK8NderZlV8Um9MMaP5DEQ,8741
|
|
42
|
+
pycarlo-0.10.83.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
43
|
+
pycarlo-0.10.83.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
|
|
44
|
+
pycarlo-0.10.83.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|