pycarlo 0.10.136__py3-none-any.whl → 0.10.137__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 +1198 -822
- pycarlo/lib/schema.py +190 -0
- {pycarlo-0.10.136.dist-info → pycarlo-0.10.137.dist-info}/METADATA +1 -1
- {pycarlo-0.10.136.dist-info → pycarlo-0.10.137.dist-info}/RECORD +7 -7
- {pycarlo-0.10.136.dist-info → pycarlo-0.10.137.dist-info}/LICENSE +0 -0
- {pycarlo-0.10.136.dist-info → pycarlo-0.10.137.dist-info}/WHEEL +0 -0
- {pycarlo-0.10.136.dist-info → pycarlo-0.10.137.dist-info}/top_level.txt +0 -0
pycarlo/lib/schema.py
CHANGED
|
@@ -4854,6 +4854,24 @@ class TableFlagType(sgqlc.types.Enum):
|
|
|
4854
4854
|
__choices__ = ("DEPRECATION", "WARNING")
|
|
4855
4855
|
|
|
4856
4856
|
|
|
4857
|
+
class TableMonitorMetricType(sgqlc.types.Enum):
|
|
4858
|
+
"""Enumeration Choices:
|
|
4859
|
+
|
|
4860
|
+
* `TABLES_WITHOUT_MONITORS_COUNT`None
|
|
4861
|
+
* `TABLES_WITH_MONITORS_COUNT`None
|
|
4862
|
+
* `TOTAL_MONITORS_COUNT`None
|
|
4863
|
+
* `TOTAL_TABLES_COUNT`None
|
|
4864
|
+
"""
|
|
4865
|
+
|
|
4866
|
+
__schema__ = schema
|
|
4867
|
+
__choices__ = (
|
|
4868
|
+
"TABLES_WITHOUT_MONITORS_COUNT",
|
|
4869
|
+
"TABLES_WITH_MONITORS_COUNT",
|
|
4870
|
+
"TOTAL_MONITORS_COUNT",
|
|
4871
|
+
"TOTAL_TABLES_COUNT",
|
|
4872
|
+
)
|
|
4873
|
+
|
|
4874
|
+
|
|
4857
4875
|
class TableMonitorModelPriority(sgqlc.types.Enum):
|
|
4858
4876
|
"""Enumeration Choices:
|
|
4859
4877
|
|
|
@@ -24122,6 +24140,12 @@ class MonitorLabelObject(sgqlc.types.Type):
|
|
|
24122
24140
|
default=None,
|
|
24123
24141
|
),
|
|
24124
24142
|
),
|
|
24143
|
+
(
|
|
24144
|
+
"data_product_ids",
|
|
24145
|
+
sgqlc.types.Arg(
|
|
24146
|
+
sgqlc.types.list_of(UUID), graphql_name="dataProductIds", default=None
|
|
24147
|
+
),
|
|
24148
|
+
),
|
|
24125
24149
|
(
|
|
24126
24150
|
"data_quality_dimensions",
|
|
24127
24151
|
sgqlc.types.Arg(
|
|
@@ -24188,6 +24212,7 @@ class MonitorLabelObject(sgqlc.types.Type):
|
|
|
24188
24212
|
monitors that have any linked table whose tags consist only of
|
|
24189
24213
|
the provided tags. Tables with additional tags or no tags are
|
|
24190
24214
|
included
|
|
24215
|
+
* `data_product_ids` (`[UUID]`): Filter by data product IDs
|
|
24191
24216
|
* `data_quality_dimensions` (`[String]`): Filter by data quality
|
|
24192
24217
|
dimensions
|
|
24193
24218
|
* `order_by` (`String`): Field and direction to order monitors by
|
|
@@ -43151,6 +43176,8 @@ class QueriedTable(sgqlc.types.Type):
|
|
|
43151
43176
|
class Query(sgqlc.types.Type):
|
|
43152
43177
|
__schema__ = schema
|
|
43153
43178
|
__field_names__ = (
|
|
43179
|
+
"get_table_monitor_metric",
|
|
43180
|
+
"get_tables_for_coverage_dashboard",
|
|
43154
43181
|
"get_logs_integrations",
|
|
43155
43182
|
"generate_webhook_url",
|
|
43156
43183
|
"get_user_id",
|
|
@@ -43614,6 +43641,98 @@ class Query(sgqlc.types.Type):
|
|
|
43614
43641
|
"get_account_secret",
|
|
43615
43642
|
"get_account_secrets",
|
|
43616
43643
|
)
|
|
43644
|
+
get_table_monitor_metric = sgqlc.types.Field(
|
|
43645
|
+
"TableMonitorMetric",
|
|
43646
|
+
graphql_name="getTableMonitorMetric",
|
|
43647
|
+
args=sgqlc.types.ArgDict(
|
|
43648
|
+
(
|
|
43649
|
+
(
|
|
43650
|
+
"metric",
|
|
43651
|
+
sgqlc.types.Arg(
|
|
43652
|
+
sgqlc.types.non_null(TableMonitorMetricType),
|
|
43653
|
+
graphql_name="metric",
|
|
43654
|
+
default=None,
|
|
43655
|
+
),
|
|
43656
|
+
),
|
|
43657
|
+
(
|
|
43658
|
+
"domain_ids",
|
|
43659
|
+
sgqlc.types.Arg(
|
|
43660
|
+
sgqlc.types.list_of(UUID), graphql_name="domainIds", default=None
|
|
43661
|
+
),
|
|
43662
|
+
),
|
|
43663
|
+
(
|
|
43664
|
+
"tags",
|
|
43665
|
+
sgqlc.types.Arg(
|
|
43666
|
+
sgqlc.types.list_of(TagKeyValuePairInput), graphql_name="tags", default=None
|
|
43667
|
+
),
|
|
43668
|
+
),
|
|
43669
|
+
(
|
|
43670
|
+
"data_product_ids",
|
|
43671
|
+
sgqlc.types.Arg(
|
|
43672
|
+
sgqlc.types.list_of(UUID), graphql_name="dataProductIds", default=None
|
|
43673
|
+
),
|
|
43674
|
+
),
|
|
43675
|
+
)
|
|
43676
|
+
),
|
|
43677
|
+
)
|
|
43678
|
+
"""(experimental) Get a table monitor metric
|
|
43679
|
+
|
|
43680
|
+
Arguments:
|
|
43681
|
+
|
|
43682
|
+
* `metric` (`TableMonitorMetricType!`)None
|
|
43683
|
+
* `domain_ids` (`[UUID]`)None
|
|
43684
|
+
* `tags` (`[TagKeyValuePairInput]`)None
|
|
43685
|
+
* `data_product_ids` (`[UUID]`)None
|
|
43686
|
+
"""
|
|
43687
|
+
|
|
43688
|
+
get_tables_for_coverage_dashboard = sgqlc.types.Field(
|
|
43689
|
+
"SearchResponse",
|
|
43690
|
+
graphql_name="getTablesForCoverageDashboard",
|
|
43691
|
+
args=sgqlc.types.ArgDict(
|
|
43692
|
+
(
|
|
43693
|
+
("limit", sgqlc.types.Arg(Int, graphql_name="limit", default=100)),
|
|
43694
|
+
("offset", sgqlc.types.Arg(Int, graphql_name="offset", default=None)),
|
|
43695
|
+
(
|
|
43696
|
+
"metric",
|
|
43697
|
+
sgqlc.types.Arg(
|
|
43698
|
+
sgqlc.types.non_null(TableMonitorMetricType),
|
|
43699
|
+
graphql_name="metric",
|
|
43700
|
+
default=None,
|
|
43701
|
+
),
|
|
43702
|
+
),
|
|
43703
|
+
(
|
|
43704
|
+
"domain_ids",
|
|
43705
|
+
sgqlc.types.Arg(
|
|
43706
|
+
sgqlc.types.list_of(UUID), graphql_name="domainIds", default=None
|
|
43707
|
+
),
|
|
43708
|
+
),
|
|
43709
|
+
(
|
|
43710
|
+
"tags",
|
|
43711
|
+
sgqlc.types.Arg(
|
|
43712
|
+
sgqlc.types.list_of(TagKeyValuePairInput), graphql_name="tags", default=None
|
|
43713
|
+
),
|
|
43714
|
+
),
|
|
43715
|
+
(
|
|
43716
|
+
"data_product_ids",
|
|
43717
|
+
sgqlc.types.Arg(
|
|
43718
|
+
sgqlc.types.list_of(UUID), graphql_name="dataProductIds", default=None
|
|
43719
|
+
),
|
|
43720
|
+
),
|
|
43721
|
+
)
|
|
43722
|
+
),
|
|
43723
|
+
)
|
|
43724
|
+
"""(experimental) Get a list of tables
|
|
43725
|
+
|
|
43726
|
+
Arguments:
|
|
43727
|
+
|
|
43728
|
+
* `limit` (`Int`)None (default: `100`)
|
|
43729
|
+
* `offset` (`Int`)None
|
|
43730
|
+
* `metric` (`TableMonitorMetricType!`)None
|
|
43731
|
+
* `domain_ids` (`[UUID]`)None
|
|
43732
|
+
* `tags` (`[TagKeyValuePairInput]`)None
|
|
43733
|
+
* `data_product_ids` (`[UUID]`)None
|
|
43734
|
+
"""
|
|
43735
|
+
|
|
43617
43736
|
get_logs_integrations = sgqlc.types.Field(
|
|
43618
43737
|
sgqlc.types.list_of(LogsIntegrationOutput),
|
|
43619
43738
|
graphql_name="getLogsIntegrations",
|
|
@@ -49831,6 +49950,12 @@ class Query(sgqlc.types.Type):
|
|
|
49831
49950
|
default=None,
|
|
49832
49951
|
),
|
|
49833
49952
|
),
|
|
49953
|
+
(
|
|
49954
|
+
"data_product_ids",
|
|
49955
|
+
sgqlc.types.Arg(
|
|
49956
|
+
sgqlc.types.list_of(UUID), graphql_name="dataProductIds", default=None
|
|
49957
|
+
),
|
|
49958
|
+
),
|
|
49834
49959
|
(
|
|
49835
49960
|
"data_quality_dimensions",
|
|
49836
49961
|
sgqlc.types.Arg(
|
|
@@ -49897,6 +50022,7 @@ class Query(sgqlc.types.Type):
|
|
|
49897
50022
|
monitors that have any linked table whose tags consist only of
|
|
49898
50023
|
the provided tags. Tables with additional tags or no tags are
|
|
49899
50024
|
included
|
|
50025
|
+
* `data_product_ids` (`[UUID]`): Filter by data product IDs
|
|
49900
50026
|
* `data_quality_dimensions` (`[String]`): Filter by data quality
|
|
49901
50027
|
dimensions
|
|
49902
50028
|
* `order_by` (`String`): Field and direction to order monitors by
|
|
@@ -50064,6 +50190,12 @@ class Query(sgqlc.types.Type):
|
|
|
50064
50190
|
default=None,
|
|
50065
50191
|
),
|
|
50066
50192
|
),
|
|
50193
|
+
(
|
|
50194
|
+
"data_product_ids",
|
|
50195
|
+
sgqlc.types.Arg(
|
|
50196
|
+
sgqlc.types.list_of(UUID), graphql_name="dataProductIds", default=None
|
|
50197
|
+
),
|
|
50198
|
+
),
|
|
50067
50199
|
(
|
|
50068
50200
|
"data_quality_dimensions",
|
|
50069
50201
|
sgqlc.types.Arg(
|
|
@@ -50130,6 +50262,7 @@ class Query(sgqlc.types.Type):
|
|
|
50130
50262
|
monitors that have any linked table whose tags consist only of
|
|
50131
50263
|
the provided tags. Tables with additional tags or no tags are
|
|
50132
50264
|
included
|
|
50265
|
+
* `data_product_ids` (`[UUID]`): Filter by data product IDs
|
|
50133
50266
|
* `data_quality_dimensions` (`[String]`): Filter by data quality
|
|
50134
50267
|
dimensions
|
|
50135
50268
|
* `order_by` (`String`): Field and direction to order monitors by
|
|
@@ -50297,6 +50430,12 @@ class Query(sgqlc.types.Type):
|
|
|
50297
50430
|
default=None,
|
|
50298
50431
|
),
|
|
50299
50432
|
),
|
|
50433
|
+
(
|
|
50434
|
+
"data_product_ids",
|
|
50435
|
+
sgqlc.types.Arg(
|
|
50436
|
+
sgqlc.types.list_of(UUID), graphql_name="dataProductIds", default=None
|
|
50437
|
+
),
|
|
50438
|
+
),
|
|
50300
50439
|
(
|
|
50301
50440
|
"data_quality_dimensions",
|
|
50302
50441
|
sgqlc.types.Arg(
|
|
@@ -50363,6 +50502,7 @@ class Query(sgqlc.types.Type):
|
|
|
50363
50502
|
monitors that have any linked table whose tags consist only of
|
|
50364
50503
|
the provided tags. Tables with additional tags or no tags are
|
|
50365
50504
|
included
|
|
50505
|
+
* `data_product_ids` (`[UUID]`): Filter by data product IDs
|
|
50366
50506
|
* `data_quality_dimensions` (`[String]`): Filter by data quality
|
|
50367
50507
|
dimensions
|
|
50368
50508
|
* `order_by` (`String`): Field and direction to order monitors by
|
|
@@ -50530,6 +50670,12 @@ class Query(sgqlc.types.Type):
|
|
|
50530
50670
|
default=None,
|
|
50531
50671
|
),
|
|
50532
50672
|
),
|
|
50673
|
+
(
|
|
50674
|
+
"data_product_ids",
|
|
50675
|
+
sgqlc.types.Arg(
|
|
50676
|
+
sgqlc.types.list_of(UUID), graphql_name="dataProductIds", default=None
|
|
50677
|
+
),
|
|
50678
|
+
),
|
|
50533
50679
|
(
|
|
50534
50680
|
"data_quality_dimensions",
|
|
50535
50681
|
sgqlc.types.Arg(
|
|
@@ -50596,6 +50742,7 @@ class Query(sgqlc.types.Type):
|
|
|
50596
50742
|
monitors that have any linked table whose tags consist only of
|
|
50597
50743
|
the provided tags. Tables with additional tags or no tags are
|
|
50598
50744
|
included
|
|
50745
|
+
* `data_product_ids` (`[UUID]`): Filter by data product IDs
|
|
50599
50746
|
* `data_quality_dimensions` (`[String]`): Filter by data quality
|
|
50600
50747
|
dimensions
|
|
50601
50748
|
* `order_by` (`String`): Field and direction to order monitors by
|
|
@@ -50763,6 +50910,12 @@ class Query(sgqlc.types.Type):
|
|
|
50763
50910
|
default=None,
|
|
50764
50911
|
),
|
|
50765
50912
|
),
|
|
50913
|
+
(
|
|
50914
|
+
"data_product_ids",
|
|
50915
|
+
sgqlc.types.Arg(
|
|
50916
|
+
sgqlc.types.list_of(UUID), graphql_name="dataProductIds", default=None
|
|
50917
|
+
),
|
|
50918
|
+
),
|
|
50766
50919
|
(
|
|
50767
50920
|
"data_quality_dimensions",
|
|
50768
50921
|
sgqlc.types.Arg(
|
|
@@ -50829,6 +50982,7 @@ class Query(sgqlc.types.Type):
|
|
|
50829
50982
|
monitors that have any linked table whose tags consist only of
|
|
50830
50983
|
the provided tags. Tables with additional tags or no tags are
|
|
50831
50984
|
included
|
|
50985
|
+
* `data_product_ids` (`[UUID]`): Filter by data product IDs
|
|
50832
50986
|
* `data_quality_dimensions` (`[String]`): Filter by data quality
|
|
50833
50987
|
dimensions
|
|
50834
50988
|
* `order_by` (`String`): Field and direction to order monitors by
|
|
@@ -50996,6 +51150,12 @@ class Query(sgqlc.types.Type):
|
|
|
50996
51150
|
default=None,
|
|
50997
51151
|
),
|
|
50998
51152
|
),
|
|
51153
|
+
(
|
|
51154
|
+
"data_product_ids",
|
|
51155
|
+
sgqlc.types.Arg(
|
|
51156
|
+
sgqlc.types.list_of(UUID), graphql_name="dataProductIds", default=None
|
|
51157
|
+
),
|
|
51158
|
+
),
|
|
50999
51159
|
(
|
|
51000
51160
|
"data_quality_dimensions",
|
|
51001
51161
|
sgqlc.types.Arg(
|
|
@@ -51062,6 +51222,7 @@ class Query(sgqlc.types.Type):
|
|
|
51062
51222
|
monitors that have any linked table whose tags consist only of
|
|
51063
51223
|
the provided tags. Tables with additional tags or no tags are
|
|
51064
51224
|
included
|
|
51225
|
+
* `data_product_ids` (`[UUID]`): Filter by data product IDs
|
|
51065
51226
|
* `data_quality_dimensions` (`[String]`): Filter by data quality
|
|
51066
51227
|
dimensions
|
|
51067
51228
|
* `order_by` (`String`): Field and direction to order monitors by
|
|
@@ -51229,6 +51390,12 @@ class Query(sgqlc.types.Type):
|
|
|
51229
51390
|
default=None,
|
|
51230
51391
|
),
|
|
51231
51392
|
),
|
|
51393
|
+
(
|
|
51394
|
+
"data_product_ids",
|
|
51395
|
+
sgqlc.types.Arg(
|
|
51396
|
+
sgqlc.types.list_of(UUID), graphql_name="dataProductIds", default=None
|
|
51397
|
+
),
|
|
51398
|
+
),
|
|
51232
51399
|
(
|
|
51233
51400
|
"data_quality_dimensions",
|
|
51234
51401
|
sgqlc.types.Arg(
|
|
@@ -51295,6 +51462,7 @@ class Query(sgqlc.types.Type):
|
|
|
51295
51462
|
monitors that have any linked table whose tags consist only of
|
|
51296
51463
|
the provided tags. Tables with additional tags or no tags are
|
|
51297
51464
|
included
|
|
51465
|
+
* `data_product_ids` (`[UUID]`): Filter by data product IDs
|
|
51298
51466
|
* `data_quality_dimensions` (`[String]`): Filter by data quality
|
|
51299
51467
|
dimensions
|
|
51300
51468
|
* `order_by` (`String`): Field and direction to order monitors by
|
|
@@ -51462,6 +51630,12 @@ class Query(sgqlc.types.Type):
|
|
|
51462
51630
|
default=None,
|
|
51463
51631
|
),
|
|
51464
51632
|
),
|
|
51633
|
+
(
|
|
51634
|
+
"data_product_ids",
|
|
51635
|
+
sgqlc.types.Arg(
|
|
51636
|
+
sgqlc.types.list_of(UUID), graphql_name="dataProductIds", default=None
|
|
51637
|
+
),
|
|
51638
|
+
),
|
|
51465
51639
|
(
|
|
51466
51640
|
"data_quality_dimensions",
|
|
51467
51641
|
sgqlc.types.Arg(
|
|
@@ -51528,6 +51702,7 @@ class Query(sgqlc.types.Type):
|
|
|
51528
51702
|
monitors that have any linked table whose tags consist only of
|
|
51529
51703
|
the provided tags. Tables with additional tags or no tags are
|
|
51530
51704
|
included
|
|
51705
|
+
* `data_product_ids` (`[UUID]`): Filter by data product IDs
|
|
51531
51706
|
* `data_quality_dimensions` (`[String]`): Filter by data quality
|
|
51532
51707
|
dimensions
|
|
51533
51708
|
* `order_by` (`String`): Field and direction to order monitors by
|
|
@@ -51695,6 +51870,12 @@ class Query(sgqlc.types.Type):
|
|
|
51695
51870
|
default=None,
|
|
51696
51871
|
),
|
|
51697
51872
|
),
|
|
51873
|
+
(
|
|
51874
|
+
"data_product_ids",
|
|
51875
|
+
sgqlc.types.Arg(
|
|
51876
|
+
sgqlc.types.list_of(UUID), graphql_name="dataProductIds", default=None
|
|
51877
|
+
),
|
|
51878
|
+
),
|
|
51698
51879
|
(
|
|
51699
51880
|
"data_quality_dimensions",
|
|
51700
51881
|
sgqlc.types.Arg(
|
|
@@ -51761,6 +51942,7 @@ class Query(sgqlc.types.Type):
|
|
|
51761
51942
|
monitors that have any linked table whose tags consist only of
|
|
51762
51943
|
the provided tags. Tables with additional tags or no tags are
|
|
51763
51944
|
included
|
|
51945
|
+
* `data_product_ids` (`[UUID]`): Filter by data product IDs
|
|
51764
51946
|
* `data_quality_dimensions` (`[String]`): Filter by data quality
|
|
51765
51947
|
dimensions
|
|
51766
51948
|
* `order_by` (`String`): Field and direction to order monitors by
|
|
@@ -63474,6 +63656,14 @@ class TableMonitorEdge(sgqlc.types.Type):
|
|
|
63474
63656
|
"""A cursor for use in pagination"""
|
|
63475
63657
|
|
|
63476
63658
|
|
|
63659
|
+
class TableMonitorMetric(sgqlc.types.Type):
|
|
63660
|
+
__schema__ = schema
|
|
63661
|
+
__field_names__ = ("metric", "value")
|
|
63662
|
+
metric = sgqlc.types.Field(sgqlc.types.non_null(TableMonitorMetricType), graphql_name="metric")
|
|
63663
|
+
|
|
63664
|
+
value = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name="value")
|
|
63665
|
+
|
|
63666
|
+
|
|
63477
63667
|
class TableMonitorSpec(sgqlc.types.Type):
|
|
63478
63668
|
__schema__ = schema
|
|
63479
63669
|
__field_names__ = (
|
|
@@ -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=C1HXevqw51KbjRzHT8IoRB_gMYMQpBAdGQZc3AKViN0,6175623
|
|
39
|
+
pycarlo/lib/schema.py,sha256=qy4pwOyKJHDL4CSHbjeb-U4rDaBlOS_ZAcKHTNMVCeI,2682894
|
|
40
|
+
pycarlo-0.10.137.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
41
|
+
pycarlo-0.10.137.dist-info/METADATA,sha256=zTdFmPtZBIWELAgfATnePzFSXm4bsrXFU71fgrXIiaY,8742
|
|
42
|
+
pycarlo-0.10.137.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
43
|
+
pycarlo-0.10.137.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
|
|
44
|
+
pycarlo-0.10.137.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|