pycarlo 0.10.136__py3-none-any.whl → 0.10.138__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.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",
@@ -46225,6 +46344,10 @@ class Query(sgqlc.types.Type):
46225
46344
  sgqlc.types.non_null(UUID), graphql_name="integrationId", default=None
46226
46345
  ),
46227
46346
  ),
46347
+ (
46348
+ "mandatory_only",
46349
+ sgqlc.types.Arg(Boolean, graphql_name="mandatoryOnly", default=None),
46350
+ ),
46228
46351
  )
46229
46352
  ),
46230
46353
  )
@@ -46233,6 +46356,8 @@ class Query(sgqlc.types.Type):
46233
46356
  Arguments:
46234
46357
 
46235
46358
  * `integration_id` (`UUID!`): The integration ID
46359
+ * `mandatory_only` (`Boolean`): If true, return only mandatory
46360
+ fields
46236
46361
  """
46237
46362
 
46238
46363
  get_servicenow_users = sgqlc.types.Field(
@@ -46343,7 +46468,7 @@ class Query(sgqlc.types.Type):
46343
46468
  * `username` (`String`): The ServiceNow username for basic
46344
46469
  authentication. DEPRECATED: Use credentials instead.
46345
46470
  * `password` (`String`): The user's password for basic
46346
- authentication.DEPRECATED: Use credentials instead.
46471
+ authentication. DEPRECATED: Use credentials instead.
46347
46472
  * `credentials` (`ServiceNowCredentialsUnionInput`): The
46348
46473
  ServiceNow credentials
46349
46474
  * `options` (`ServiceNowIntegrationOptionsInput`): Options for
@@ -49831,6 +49956,12 @@ class Query(sgqlc.types.Type):
49831
49956
  default=None,
49832
49957
  ),
49833
49958
  ),
49959
+ (
49960
+ "data_product_ids",
49961
+ sgqlc.types.Arg(
49962
+ sgqlc.types.list_of(UUID), graphql_name="dataProductIds", default=None
49963
+ ),
49964
+ ),
49834
49965
  (
49835
49966
  "data_quality_dimensions",
49836
49967
  sgqlc.types.Arg(
@@ -49897,6 +50028,7 @@ class Query(sgqlc.types.Type):
49897
50028
  monitors that have any linked table whose tags consist only of
49898
50029
  the provided tags. Tables with additional tags or no tags are
49899
50030
  included
50031
+ * `data_product_ids` (`[UUID]`): Filter by data product IDs
49900
50032
  * `data_quality_dimensions` (`[String]`): Filter by data quality
49901
50033
  dimensions
49902
50034
  * `order_by` (`String`): Field and direction to order monitors by
@@ -50064,6 +50196,12 @@ class Query(sgqlc.types.Type):
50064
50196
  default=None,
50065
50197
  ),
50066
50198
  ),
50199
+ (
50200
+ "data_product_ids",
50201
+ sgqlc.types.Arg(
50202
+ sgqlc.types.list_of(UUID), graphql_name="dataProductIds", default=None
50203
+ ),
50204
+ ),
50067
50205
  (
50068
50206
  "data_quality_dimensions",
50069
50207
  sgqlc.types.Arg(
@@ -50130,6 +50268,7 @@ class Query(sgqlc.types.Type):
50130
50268
  monitors that have any linked table whose tags consist only of
50131
50269
  the provided tags. Tables with additional tags or no tags are
50132
50270
  included
50271
+ * `data_product_ids` (`[UUID]`): Filter by data product IDs
50133
50272
  * `data_quality_dimensions` (`[String]`): Filter by data quality
50134
50273
  dimensions
50135
50274
  * `order_by` (`String`): Field and direction to order monitors by
@@ -50297,6 +50436,12 @@ class Query(sgqlc.types.Type):
50297
50436
  default=None,
50298
50437
  ),
50299
50438
  ),
50439
+ (
50440
+ "data_product_ids",
50441
+ sgqlc.types.Arg(
50442
+ sgqlc.types.list_of(UUID), graphql_name="dataProductIds", default=None
50443
+ ),
50444
+ ),
50300
50445
  (
50301
50446
  "data_quality_dimensions",
50302
50447
  sgqlc.types.Arg(
@@ -50363,6 +50508,7 @@ class Query(sgqlc.types.Type):
50363
50508
  monitors that have any linked table whose tags consist only of
50364
50509
  the provided tags. Tables with additional tags or no tags are
50365
50510
  included
50511
+ * `data_product_ids` (`[UUID]`): Filter by data product IDs
50366
50512
  * `data_quality_dimensions` (`[String]`): Filter by data quality
50367
50513
  dimensions
50368
50514
  * `order_by` (`String`): Field and direction to order monitors by
@@ -50530,6 +50676,12 @@ class Query(sgqlc.types.Type):
50530
50676
  default=None,
50531
50677
  ),
50532
50678
  ),
50679
+ (
50680
+ "data_product_ids",
50681
+ sgqlc.types.Arg(
50682
+ sgqlc.types.list_of(UUID), graphql_name="dataProductIds", default=None
50683
+ ),
50684
+ ),
50533
50685
  (
50534
50686
  "data_quality_dimensions",
50535
50687
  sgqlc.types.Arg(
@@ -50596,6 +50748,7 @@ class Query(sgqlc.types.Type):
50596
50748
  monitors that have any linked table whose tags consist only of
50597
50749
  the provided tags. Tables with additional tags or no tags are
50598
50750
  included
50751
+ * `data_product_ids` (`[UUID]`): Filter by data product IDs
50599
50752
  * `data_quality_dimensions` (`[String]`): Filter by data quality
50600
50753
  dimensions
50601
50754
  * `order_by` (`String`): Field and direction to order monitors by
@@ -50763,6 +50916,12 @@ class Query(sgqlc.types.Type):
50763
50916
  default=None,
50764
50917
  ),
50765
50918
  ),
50919
+ (
50920
+ "data_product_ids",
50921
+ sgqlc.types.Arg(
50922
+ sgqlc.types.list_of(UUID), graphql_name="dataProductIds", default=None
50923
+ ),
50924
+ ),
50766
50925
  (
50767
50926
  "data_quality_dimensions",
50768
50927
  sgqlc.types.Arg(
@@ -50829,6 +50988,7 @@ class Query(sgqlc.types.Type):
50829
50988
  monitors that have any linked table whose tags consist only of
50830
50989
  the provided tags. Tables with additional tags or no tags are
50831
50990
  included
50991
+ * `data_product_ids` (`[UUID]`): Filter by data product IDs
50832
50992
  * `data_quality_dimensions` (`[String]`): Filter by data quality
50833
50993
  dimensions
50834
50994
  * `order_by` (`String`): Field and direction to order monitors by
@@ -50996,6 +51156,12 @@ class Query(sgqlc.types.Type):
50996
51156
  default=None,
50997
51157
  ),
50998
51158
  ),
51159
+ (
51160
+ "data_product_ids",
51161
+ sgqlc.types.Arg(
51162
+ sgqlc.types.list_of(UUID), graphql_name="dataProductIds", default=None
51163
+ ),
51164
+ ),
50999
51165
  (
51000
51166
  "data_quality_dimensions",
51001
51167
  sgqlc.types.Arg(
@@ -51062,6 +51228,7 @@ class Query(sgqlc.types.Type):
51062
51228
  monitors that have any linked table whose tags consist only of
51063
51229
  the provided tags. Tables with additional tags or no tags are
51064
51230
  included
51231
+ * `data_product_ids` (`[UUID]`): Filter by data product IDs
51065
51232
  * `data_quality_dimensions` (`[String]`): Filter by data quality
51066
51233
  dimensions
51067
51234
  * `order_by` (`String`): Field and direction to order monitors by
@@ -51229,6 +51396,12 @@ class Query(sgqlc.types.Type):
51229
51396
  default=None,
51230
51397
  ),
51231
51398
  ),
51399
+ (
51400
+ "data_product_ids",
51401
+ sgqlc.types.Arg(
51402
+ sgqlc.types.list_of(UUID), graphql_name="dataProductIds", default=None
51403
+ ),
51404
+ ),
51232
51405
  (
51233
51406
  "data_quality_dimensions",
51234
51407
  sgqlc.types.Arg(
@@ -51295,6 +51468,7 @@ class Query(sgqlc.types.Type):
51295
51468
  monitors that have any linked table whose tags consist only of
51296
51469
  the provided tags. Tables with additional tags or no tags are
51297
51470
  included
51471
+ * `data_product_ids` (`[UUID]`): Filter by data product IDs
51298
51472
  * `data_quality_dimensions` (`[String]`): Filter by data quality
51299
51473
  dimensions
51300
51474
  * `order_by` (`String`): Field and direction to order monitors by
@@ -51462,6 +51636,12 @@ class Query(sgqlc.types.Type):
51462
51636
  default=None,
51463
51637
  ),
51464
51638
  ),
51639
+ (
51640
+ "data_product_ids",
51641
+ sgqlc.types.Arg(
51642
+ sgqlc.types.list_of(UUID), graphql_name="dataProductIds", default=None
51643
+ ),
51644
+ ),
51465
51645
  (
51466
51646
  "data_quality_dimensions",
51467
51647
  sgqlc.types.Arg(
@@ -51528,6 +51708,7 @@ class Query(sgqlc.types.Type):
51528
51708
  monitors that have any linked table whose tags consist only of
51529
51709
  the provided tags. Tables with additional tags or no tags are
51530
51710
  included
51711
+ * `data_product_ids` (`[UUID]`): Filter by data product IDs
51531
51712
  * `data_quality_dimensions` (`[String]`): Filter by data quality
51532
51713
  dimensions
51533
51714
  * `order_by` (`String`): Field and direction to order monitors by
@@ -51695,6 +51876,12 @@ class Query(sgqlc.types.Type):
51695
51876
  default=None,
51696
51877
  ),
51697
51878
  ),
51879
+ (
51880
+ "data_product_ids",
51881
+ sgqlc.types.Arg(
51882
+ sgqlc.types.list_of(UUID), graphql_name="dataProductIds", default=None
51883
+ ),
51884
+ ),
51698
51885
  (
51699
51886
  "data_quality_dimensions",
51700
51887
  sgqlc.types.Arg(
@@ -51761,6 +51948,7 @@ class Query(sgqlc.types.Type):
51761
51948
  monitors that have any linked table whose tags consist only of
51762
51949
  the provided tags. Tables with additional tags or no tags are
51763
51950
  included
51951
+ * `data_product_ids` (`[UUID]`): Filter by data product IDs
51764
51952
  * `data_quality_dimensions` (`[String]`): Filter by data quality
51765
51953
  dimensions
51766
51954
  * `order_by` (`String`): Field and direction to order monitors by
@@ -63474,6 +63662,14 @@ class TableMonitorEdge(sgqlc.types.Type):
63474
63662
  """A cursor for use in pagination"""
63475
63663
 
63476
63664
 
63665
+ class TableMonitorMetric(sgqlc.types.Type):
63666
+ __schema__ = schema
63667
+ __field_names__ = ("metric", "value")
63668
+ metric = sgqlc.types.Field(sgqlc.types.non_null(TableMonitorMetricType), graphql_name="metric")
63669
+
63670
+ value = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name="value")
63671
+
63672
+
63477
63673
  class TableMonitorSpec(sgqlc.types.Type):
63478
63674
  __schema__ = schema
63479
63675
  __field_names__ = (
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pycarlo
3
- Version: 0.10.136
3
+ Version: 0.10.138
4
4
  Summary: Monte Carlo's Python SDK
5
5
  Home-page: https://www.montecarlodata.com/
6
6
  Author: Monte Carlo Data, Inc
@@ -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=Ukdh5InW9oyd4HP_gzQraZLvH8JxylafIwBkHXlYOqg,6163608
39
- pycarlo/lib/schema.py,sha256=jzHT2NgPH5_5HMP-y2Zs430Pdrv_wwj5V0Jk0wnEaXA,2676077
40
- pycarlo-0.10.136.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
- pycarlo-0.10.136.dist-info/METADATA,sha256=1frfx-HJ0G7O_I0dE1hy7nrnDwzdCZtjSrfavEAdKok,8742
42
- pycarlo-0.10.136.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
- pycarlo-0.10.136.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
- pycarlo-0.10.136.dist-info/RECORD,,
38
+ pycarlo/lib/schema.json,sha256=BaImC2GWKE2sjZOsYqjTZmuisYbH7Gt-cPerCBtK4JI,6175978
39
+ pycarlo/lib/schema.py,sha256=zCN0Us_tR7nXbNUOeZQgN98RDyEIlnW92h90tDL9HlY,2683140
40
+ pycarlo-0.10.138.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
+ pycarlo-0.10.138.dist-info/METADATA,sha256=sWiPJToSaR1a5lM87EcR7EuZf_Pa6jCjgeET4TWow-8,8742
42
+ pycarlo-0.10.138.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
+ pycarlo-0.10.138.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
+ pycarlo-0.10.138.dist-info/RECORD,,