pycarlo 0.10.175__py3-none-any.whl → 0.10.177__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 +22 -12
- pycarlo/lib/schema.py +11 -8
- {pycarlo-0.10.175.dist-info → pycarlo-0.10.177.dist-info}/METADATA +1 -1
- {pycarlo-0.10.175.dist-info → pycarlo-0.10.177.dist-info}/RECORD +7 -7
- {pycarlo-0.10.175.dist-info → pycarlo-0.10.177.dist-info}/LICENSE +0 -0
- {pycarlo-0.10.175.dist-info → pycarlo-0.10.177.dist-info}/WHEEL +0 -0
- {pycarlo-0.10.175.dist-info → pycarlo-0.10.177.dist-info}/top_level.txt +0 -0
pycarlo/lib/schema.json
CHANGED
|
@@ -11209,15 +11209,29 @@
|
|
|
11209
11209
|
"args": [
|
|
11210
11210
|
{
|
|
11211
11211
|
"defaultValue": null,
|
|
11212
|
-
"description": "UUID of the table monitor",
|
|
11212
|
+
"description": "UUID of the table monitor (for single monitor mode). Cannot be used with monitor_uuids.",
|
|
11213
11213
|
"name": "monitorUuid",
|
|
11214
11214
|
"type": {
|
|
11215
|
-
"kind": "
|
|
11215
|
+
"kind": "SCALAR",
|
|
11216
|
+
"name": "UUID",
|
|
11217
|
+
"ofType": null
|
|
11218
|
+
}
|
|
11219
|
+
},
|
|
11220
|
+
{
|
|
11221
|
+
"defaultValue": null,
|
|
11222
|
+
"description": "List of table monitor UUIDs (for bulk deletion mode). Cannot be used with monitor_uuid.",
|
|
11223
|
+
"name": "monitorUuids",
|
|
11224
|
+
"type": {
|
|
11225
|
+
"kind": "LIST",
|
|
11216
11226
|
"name": null,
|
|
11217
11227
|
"ofType": {
|
|
11218
|
-
"kind": "
|
|
11219
|
-
"name":
|
|
11220
|
-
"ofType":
|
|
11228
|
+
"kind": "NON_NULL",
|
|
11229
|
+
"name": null,
|
|
11230
|
+
"ofType": {
|
|
11231
|
+
"kind": "SCALAR",
|
|
11232
|
+
"name": "UUID",
|
|
11233
|
+
"ofType": null
|
|
11234
|
+
}
|
|
11221
11235
|
}
|
|
11222
11236
|
}
|
|
11223
11237
|
},
|
|
@@ -28413,13 +28427,9 @@
|
|
|
28413
28427
|
"description": "DC UUID. To disambiguate accounts with multiple collectors.",
|
|
28414
28428
|
"name": "dcId",
|
|
28415
28429
|
"type": {
|
|
28416
|
-
"kind": "
|
|
28417
|
-
"name":
|
|
28418
|
-
"ofType":
|
|
28419
|
-
"kind": "SCALAR",
|
|
28420
|
-
"name": "UUID",
|
|
28421
|
-
"ofType": null
|
|
28422
|
-
}
|
|
28430
|
+
"kind": "SCALAR",
|
|
28431
|
+
"name": "UUID",
|
|
28432
|
+
"ofType": null
|
|
28423
28433
|
}
|
|
28424
28434
|
},
|
|
28425
28435
|
{
|
pycarlo/lib/schema.py
CHANGED
|
@@ -50609,10 +50609,13 @@ class Query(sgqlc.types.Type):
|
|
|
50609
50609
|
graphql_name="getTableMonitorCoverage",
|
|
50610
50610
|
args=sgqlc.types.ArgDict(
|
|
50611
50611
|
(
|
|
50612
|
+
("monitor_uuid", sgqlc.types.Arg(UUID, graphql_name="monitorUuid", default=None)),
|
|
50612
50613
|
(
|
|
50613
|
-
"
|
|
50614
|
+
"monitor_uuids",
|
|
50614
50615
|
sgqlc.types.Arg(
|
|
50615
|
-
sgqlc.types.non_null(UUID),
|
|
50616
|
+
sgqlc.types.list_of(sgqlc.types.non_null(UUID)),
|
|
50617
|
+
graphql_name="monitorUuids",
|
|
50618
|
+
default=None,
|
|
50616
50619
|
),
|
|
50617
50620
|
),
|
|
50618
50621
|
("search", sgqlc.types.Arg(String, graphql_name="search", default=None)),
|
|
@@ -50627,7 +50630,10 @@ class Query(sgqlc.types.Type):
|
|
|
50627
50630
|
|
|
50628
50631
|
Arguments:
|
|
50629
50632
|
|
|
50630
|
-
* `monitor_uuid` (`UUID
|
|
50633
|
+
* `monitor_uuid` (`UUID`): UUID of the table monitor (for single
|
|
50634
|
+
monitor mode). Cannot be used with monitor_uuids.
|
|
50635
|
+
* `monitor_uuids` (`[UUID!]`): List of table monitor UUIDs (for
|
|
50636
|
+
bulk deletion mode). Cannot be used with monitor_uuid.
|
|
50631
50637
|
* `search` (`String`): Search for tables by name, database, or
|
|
50632
50638
|
schema (case-insensitive substring match)
|
|
50633
50639
|
* `monitors_search` (`String`): Search for monitors by description
|
|
@@ -59683,10 +59689,7 @@ class Query(sgqlc.types.Type):
|
|
|
59683
59689
|
graphql_name="getSupportedValidationsV2",
|
|
59684
59690
|
args=sgqlc.types.ArgDict(
|
|
59685
59691
|
(
|
|
59686
|
-
(
|
|
59687
|
-
"dc_id",
|
|
59688
|
-
sgqlc.types.Arg(sgqlc.types.non_null(UUID), graphql_name="dcId", default=None),
|
|
59689
|
-
),
|
|
59692
|
+
("dc_id", sgqlc.types.Arg(UUID, graphql_name="dcId", default=None)),
|
|
59690
59693
|
(
|
|
59691
59694
|
"connection_type",
|
|
59692
59695
|
sgqlc.types.Arg(
|
|
@@ -59699,7 +59702,7 @@ class Query(sgqlc.types.Type):
|
|
|
59699
59702
|
)
|
|
59700
59703
|
"""Arguments:
|
|
59701
59704
|
|
|
59702
|
-
* `dc_id` (`UUID
|
|
59705
|
+
* `dc_id` (`UUID`): DC UUID. To disambiguate accounts with
|
|
59703
59706
|
multiple collectors.
|
|
59704
59707
|
* `connection_type` (`String!`): The type of connection to query
|
|
59705
59708
|
supported validations for.
|
|
@@ -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=d-RDKDEjoqYP97GMAxvoxaIgX3hrUEnVoY6Qkq44NoE,6273033
|
|
39
|
+
pycarlo/lib/schema.py,sha256=sNCsGE8s1NrLfJUm3EV7-8Oh_NFNViP7ZOLI8STk96w,2727163
|
|
40
|
+
pycarlo-0.10.177.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
41
|
+
pycarlo-0.10.177.dist-info/METADATA,sha256=0zHHm0h3tMsP9WCa4J2g5Zyy6nJGQA7wk1g9hA1YPgA,8742
|
|
42
|
+
pycarlo-0.10.177.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
43
|
+
pycarlo-0.10.177.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
|
|
44
|
+
pycarlo-0.10.177.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|