pycarlo 0.10.192__py3-none-any.whl → 0.10.193__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 +41 -0
- pycarlo/lib/schema.py +14 -0
- {pycarlo-0.10.192.dist-info → pycarlo-0.10.193.dist-info}/METADATA +1 -1
- {pycarlo-0.10.192.dist-info → pycarlo-0.10.193.dist-info}/RECORD +7 -7
- {pycarlo-0.10.192.dist-info → pycarlo-0.10.193.dist-info}/LICENSE +0 -0
- {pycarlo-0.10.192.dist-info → pycarlo-0.10.193.dist-info}/WHEEL +0 -0
- {pycarlo-0.10.192.dist-info → pycarlo-0.10.193.dist-info}/top_level.txt +0 -0
pycarlo/lib/schema.json
CHANGED
|
@@ -22466,6 +22466,16 @@
|
|
|
22466
22466
|
"ofType": null
|
|
22467
22467
|
}
|
|
22468
22468
|
},
|
|
22469
|
+
{
|
|
22470
|
+
"defaultValue": null,
|
|
22471
|
+
"description": "Project filter",
|
|
22472
|
+
"name": "projectFilter",
|
|
22473
|
+
"type": {
|
|
22474
|
+
"kind": "INPUT_OBJECT",
|
|
22475
|
+
"name": "ProjectFilterInput",
|
|
22476
|
+
"ofType": null
|
|
22477
|
+
}
|
|
22478
|
+
},
|
|
22469
22479
|
{
|
|
22470
22480
|
"defaultValue": null,
|
|
22471
22481
|
"description": "Dataset filter",
|
|
@@ -32336,6 +32346,12 @@
|
|
|
32336
32346
|
{
|
|
32337
32347
|
"description": null,
|
|
32338
32348
|
"enumValues": [
|
|
32349
|
+
{
|
|
32350
|
+
"deprecationReason": null,
|
|
32351
|
+
"description": null,
|
|
32352
|
+
"isDeprecated": false,
|
|
32353
|
+
"name": "PROJECTS"
|
|
32354
|
+
},
|
|
32339
32355
|
{
|
|
32340
32356
|
"deprecationReason": null,
|
|
32341
32357
|
"description": null,
|
|
@@ -134747,6 +134763,31 @@
|
|
|
134747
134763
|
"name": "TagFilterInput",
|
|
134748
134764
|
"possibleTypes": null
|
|
134749
134765
|
},
|
|
134766
|
+
{
|
|
134767
|
+
"description": null,
|
|
134768
|
+
"enumValues": null,
|
|
134769
|
+
"fields": null,
|
|
134770
|
+
"inputFields": [
|
|
134771
|
+
{
|
|
134772
|
+
"defaultValue": null,
|
|
134773
|
+
"description": "MCONs of projects to filter by.",
|
|
134774
|
+
"name": "projectMcons",
|
|
134775
|
+
"type": {
|
|
134776
|
+
"kind": "LIST",
|
|
134777
|
+
"name": null,
|
|
134778
|
+
"ofType": {
|
|
134779
|
+
"kind": "SCALAR",
|
|
134780
|
+
"name": "String",
|
|
134781
|
+
"ofType": null
|
|
134782
|
+
}
|
|
134783
|
+
}
|
|
134784
|
+
}
|
|
134785
|
+
],
|
|
134786
|
+
"interfaces": null,
|
|
134787
|
+
"kind": "INPUT_OBJECT",
|
|
134788
|
+
"name": "ProjectFilterInput",
|
|
134789
|
+
"possibleTypes": null
|
|
134790
|
+
},
|
|
134750
134791
|
{
|
|
134751
134792
|
"description": null,
|
|
134752
134793
|
"enumValues": null,
|
pycarlo/lib/schema.py
CHANGED
|
@@ -2224,6 +2224,7 @@ class FacetType(sgqlc.types.Enum):
|
|
|
2224
2224
|
* `DATASETS`None
|
|
2225
2225
|
* `DATA_PRODUCTS`None
|
|
2226
2226
|
* `ETL_TYPES`None
|
|
2227
|
+
* `PROJECTS`None
|
|
2227
2228
|
* `RESOURCE_TYPES`None
|
|
2228
2229
|
* `TAGS`None
|
|
2229
2230
|
* `TAG_NAMES`None
|
|
@@ -2237,6 +2238,7 @@ class FacetType(sgqlc.types.Enum):
|
|
|
2237
2238
|
"DATASETS",
|
|
2238
2239
|
"DATA_PRODUCTS",
|
|
2239
2240
|
"ETL_TYPES",
|
|
2241
|
+
"PROJECTS",
|
|
2240
2242
|
"RESOURCE_TYPES",
|
|
2241
2243
|
"TAGS",
|
|
2242
2244
|
"TAG_NAMES",
|
|
@@ -8461,6 +8463,13 @@ class PowerBiUpdateConnectionDetails(sgqlc.types.Input):
|
|
|
8461
8463
|
"""
|
|
8462
8464
|
|
|
8463
8465
|
|
|
8466
|
+
class ProjectFilterInput(sgqlc.types.Input):
|
|
8467
|
+
__schema__ = schema
|
|
8468
|
+
__field_names__ = ("project_mcons",)
|
|
8469
|
+
project_mcons = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name="projectMcons")
|
|
8470
|
+
"""MCONs of projects to filter by."""
|
|
8471
|
+
|
|
8472
|
+
|
|
8464
8473
|
class PullRequestFilterInput(sgqlc.types.Input):
|
|
8465
8474
|
__schema__ = schema
|
|
8466
8475
|
__field_names__ = ("filter_name", "values")
|
|
@@ -57257,6 +57266,10 @@ class Query(sgqlc.types.Type):
|
|
|
57257
57266
|
"is_monitored",
|
|
57258
57267
|
sgqlc.types.Arg(Boolean, graphql_name="isMonitored", default=None),
|
|
57259
57268
|
),
|
|
57269
|
+
(
|
|
57270
|
+
"project_filter",
|
|
57271
|
+
sgqlc.types.Arg(ProjectFilterInput, graphql_name="projectFilter", default=None),
|
|
57272
|
+
),
|
|
57260
57273
|
(
|
|
57261
57274
|
"dataset_filter",
|
|
57262
57275
|
sgqlc.types.Arg(DatasetFilterInput, graphql_name="datasetFilter", default=None),
|
|
@@ -57333,6 +57346,7 @@ class Query(sgqlc.types.Type):
|
|
|
57333
57346
|
not support this monitor type
|
|
57334
57347
|
* `is_monitored` (`Boolean`): Filter by is_monitored status. Only
|
|
57335
57348
|
applicable to tables
|
|
57349
|
+
* `project_filter` (`ProjectFilterInput`): Project filter
|
|
57336
57350
|
* `dataset_filter` (`DatasetFilterInput`): Dataset filter
|
|
57337
57351
|
* `data_product_ids` (`[UUID!]`): Filter by data product IDs
|
|
57338
57352
|
* `resource_types` (`[String]`): Filter by resource types
|
|
@@ -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=S7Fqjxjz2icO16WUuL7vCaY_h1EQIlJWGtmNt2mQBCg,6335835
|
|
39
|
+
pycarlo/lib/schema.py,sha256=oCGNulk6OIBSRz3ToW6lbPccyh37mUoscEibLfnHOEk,2758797
|
|
40
|
+
pycarlo-0.10.193.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
41
|
+
pycarlo-0.10.193.dist-info/METADATA,sha256=-gmrgVjk2D9XQYlT2PIHKuZOWLiccYlv7kaGvLmvsoU,8742
|
|
42
|
+
pycarlo-0.10.193.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
43
|
+
pycarlo-0.10.193.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
|
|
44
|
+
pycarlo-0.10.193.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|