pycarlo 0.10.127__py3-none-any.whl → 0.10.129__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 CHANGED
@@ -43392,6 +43392,18 @@
43392
43392
  }
43393
43393
  }
43394
43394
  },
43395
+ {
43396
+ "args": [],
43397
+ "deprecationReason": null,
43398
+ "description": "Number of monitored entities",
43399
+ "isDeprecated": false,
43400
+ "name": "entityCount",
43401
+ "type": {
43402
+ "kind": "SCALAR",
43403
+ "name": "Int",
43404
+ "ofType": null
43405
+ }
43406
+ },
43395
43407
  {
43396
43408
  "args": [],
43397
43409
  "deprecationReason": null,
@@ -44717,6 +44729,18 @@
44717
44729
  }
44718
44730
  }
44719
44731
  },
44732
+ {
44733
+ "args": [],
44734
+ "deprecationReason": null,
44735
+ "description": "Number of monitored entities",
44736
+ "isDeprecated": false,
44737
+ "name": "entityCount",
44738
+ "type": {
44739
+ "kind": "SCALAR",
44740
+ "name": "Int",
44741
+ "ofType": null
44742
+ }
44743
+ },
44720
44744
  {
44721
44745
  "args": [],
44722
44746
  "deprecationReason": null,
@@ -87903,6 +87927,38 @@
87903
87927
  }
87904
87928
  }
87905
87929
  }
87930
+ },
87931
+ {
87932
+ "args": [],
87933
+ "deprecationReason": null,
87934
+ "description": "The monitor tags.",
87935
+ "isDeprecated": false,
87936
+ "name": "tags",
87937
+ "type": {
87938
+ "kind": "LIST",
87939
+ "name": null,
87940
+ "ofType": {
87941
+ "kind": "NON_NULL",
87942
+ "name": null,
87943
+ "ofType": {
87944
+ "kind": "OBJECT",
87945
+ "name": "TagKeyValuePairOutput",
87946
+ "ofType": null
87947
+ }
87948
+ }
87949
+ }
87950
+ },
87951
+ {
87952
+ "args": [],
87953
+ "deprecationReason": null,
87954
+ "description": "Data quality dimension of the monitor.",
87955
+ "isDeprecated": false,
87956
+ "name": "dataQualityDimension",
87957
+ "type": {
87958
+ "kind": "SCALAR",
87959
+ "name": "String",
87960
+ "ofType": null
87961
+ }
87906
87962
  }
87907
87963
  ],
87908
87964
  "inputFields": null,
@@ -146406,6 +146462,16 @@
146406
146462
  }
146407
146463
  }
146408
146464
  },
146465
+ {
146466
+ "defaultValue": null,
146467
+ "description": "Data quality dimension of the monitor.",
146468
+ "name": "dataQualityDimension",
146469
+ "type": {
146470
+ "kind": "SCALAR",
146471
+ "name": "String",
146472
+ "ofType": null
146473
+ }
146474
+ },
146409
146475
  {
146410
146476
  "defaultValue": null,
146411
146477
  "description": "Description of rule",
@@ -146486,6 +146552,24 @@
146486
146552
  "ofType": null
146487
146553
  }
146488
146554
  },
146555
+ {
146556
+ "defaultValue": null,
146557
+ "description": "The monitor tags.",
146558
+ "name": "tags",
146559
+ "type": {
146560
+ "kind": "LIST",
146561
+ "name": null,
146562
+ "ofType": {
146563
+ "kind": "NON_NULL",
146564
+ "name": null,
146565
+ "ofType": {
146566
+ "kind": "INPUT_OBJECT",
146567
+ "name": "TagKeyValuePairInput",
146568
+ "ofType": null
146569
+ }
146570
+ }
146571
+ }
146572
+ },
146489
146573
  {
146490
146574
  "defaultValue": null,
146491
146575
  "description": "UUID of the table monitor, to update existing monito",
@@ -172085,6 +172169,12 @@
172085
172169
  "description": null,
172086
172170
  "isDeprecated": false,
172087
172171
  "name": "METRIC_MONITOR"
172172
+ },
172173
+ {
172174
+ "deprecationReason": null,
172175
+ "description": null,
172176
+ "isDeprecated": false,
172177
+ "name": "TABLE_MONITOR"
172088
172178
  }
172089
172179
  ],
172090
172180
  "fields": null,
pycarlo/lib/schema.py CHANGED
@@ -4899,10 +4899,11 @@ class TagAssignmentObjectType(sgqlc.types.Enum):
4899
4899
 
4900
4900
  * `CUSTOM_RULE_MONITOR`None
4901
4901
  * `METRIC_MONITOR`None
4902
+ * `TABLE_MONITOR`None
4902
4903
  """
4903
4904
 
4904
4905
  __schema__ = schema
4905
- __choices__ = ("CUSTOM_RULE_MONITOR", "METRIC_MONITOR")
4906
+ __choices__ = ("CUSTOM_RULE_MONITOR", "METRIC_MONITOR", "TABLE_MONITOR")
4906
4907
 
4907
4908
 
4908
4909
  class TagType(sgqlc.types.Enum):
@@ -10437,6 +10438,7 @@ class IMonitor(sgqlc.types.Interface):
10437
10438
  "resource_id",
10438
10439
  "entities",
10439
10440
  "entity_mcons",
10441
+ "entity_count",
10440
10442
  "schedule_type",
10441
10443
  "name",
10442
10444
  "rule_name",
@@ -10511,6 +10513,9 @@ class IMonitor(sgqlc.types.Interface):
10511
10513
  entity_mcons = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name="entityMcons")
10512
10514
  """MCONs for monitored tables/views"""
10513
10515
 
10516
+ entity_count = sgqlc.types.Field(Int, graphql_name="entityCount")
10517
+ """Number of monitored entities"""
10518
+
10514
10519
  schedule_type = sgqlc.types.Field(String, graphql_name="scheduleType")
10515
10520
  """Monitor scheduling type"""
10516
10521
 
@@ -25529,6 +25534,10 @@ class Mutation(sgqlc.types.Type):
25529
25534
  default=None,
25530
25535
  ),
25531
25536
  ),
25537
+ (
25538
+ "data_quality_dimension",
25539
+ sgqlc.types.Arg(String, graphql_name="dataQualityDimension", default=None),
25540
+ ),
25532
25541
  (
25533
25542
  "description",
25534
25543
  sgqlc.types.Arg(
@@ -25554,6 +25563,14 @@ class Mutation(sgqlc.types.Type):
25554
25563
  ),
25555
25564
  ("notes", sgqlc.types.Arg(String, graphql_name="notes", default="")),
25556
25565
  ("priority", sgqlc.types.Arg(String, graphql_name="priority", default=None)),
25566
+ (
25567
+ "tags",
25568
+ sgqlc.types.Arg(
25569
+ sgqlc.types.list_of(sgqlc.types.non_null(TagKeyValuePairInput)),
25570
+ graphql_name="tags",
25571
+ default=None,
25572
+ ),
25573
+ ),
25557
25574
  ("uuid", sgqlc.types.Arg(UUID, graphql_name="uuid", default=None)),
25558
25575
  (
25559
25576
  "warehouse_uuid",
@@ -25572,6 +25589,8 @@ class Mutation(sgqlc.types.Type):
25572
25589
  conditions for the table monitor
25573
25590
  * `asset_selection` (`AssetSelectionInput!`)None
25574
25591
  * `audiences` (`[String!]`): The monitor notification audiences
25592
+ * `data_quality_dimension` (`String`): Data quality dimension of
25593
+ the monitor.
25575
25594
  * `description` (`String!`): Description of rule
25576
25595
  * `domain_restrictions` (`[UUID!]`): The domains to restrict to
25577
25596
  * `dry_run` (`Boolean`): Dry run the monitor creation or update
@@ -25582,6 +25601,7 @@ class Mutation(sgqlc.types.Type):
25582
25601
  `""`)
25583
25602
  * `priority` (`String`): The default priority for alerts involving
25584
25603
  this monitor
25604
+ * `tags` (`[TagKeyValuePairInput!]`): The monitor tags.
25585
25605
  * `uuid` (`UUID`): UUID of the table monitor, to update existing
25586
25606
  monito
25587
25607
  * `warehouse_uuid` (`UUID!`): Warehouse UUID
@@ -73831,6 +73851,8 @@ class TableMonitor(sgqlc.types.Type, Node):
73831
73851
  "audiences",
73832
73852
  "failure_audiences",
73833
73853
  "alert_conditions",
73854
+ "tags",
73855
+ "data_quality_dimension",
73834
73856
  )
73835
73857
  created_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="createdTime")
73836
73858
 
@@ -73906,6 +73928,14 @@ class TableMonitor(sgqlc.types.Type, Node):
73906
73928
  graphql_name="alertConditions",
73907
73929
  )
73908
73930
 
73931
+ tags = sgqlc.types.Field(
73932
+ sgqlc.types.list_of(sgqlc.types.non_null(TagKeyValuePairOutput)), graphql_name="tags"
73933
+ )
73934
+ """The monitor tags."""
73935
+
73936
+ data_quality_dimension = sgqlc.types.Field(String, graphql_name="dataQualityDimension")
73937
+ """Data quality dimension of the monitor."""
73938
+
73909
73939
 
73910
73940
  class TablePartitionKeys(sgqlc.types.Type, Node):
73911
73941
  """Information about the partition keys for a table"""
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pycarlo
3
- Version: 0.10.127
3
+ Version: 0.10.129
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=vWKtteMT2uiUyX8jF_gxFU8191ZKThfp2gVDxyfiPG4,6151748
39
- pycarlo/lib/schema.py,sha256=sP921aAIYnBWfeolgksYYaelnBUOXqmN0XkfRi5MRxg,2670899
40
- pycarlo-0.10.127.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
- pycarlo-0.10.127.dist-info/METADATA,sha256=SpP6I5BIVIV8ydB-cyfN7RpMlN3kdQW0S9GMnw0sb7w,8742
42
- pycarlo-0.10.127.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
- pycarlo-0.10.127.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
- pycarlo-0.10.127.dist-info/RECORD,,
38
+ pycarlo/lib/schema.json,sha256=XmTyHgBfj98tnWj_pJH4qDiDkXoGnCj0vIa9v6peoCY,6154635
39
+ pycarlo/lib/schema.py,sha256=vYBmWsMN3ubUOeSuvEdMAdjYZI_w8yEP16sRr11TeVA,2672051
40
+ pycarlo-0.10.129.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
+ pycarlo-0.10.129.dist-info/METADATA,sha256=erv0usfIDGVjutzI3dHlcrKoVTBUGWRKkhxASGwtlJg,8742
42
+ pycarlo-0.10.129.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
+ pycarlo-0.10.129.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
+ pycarlo-0.10.129.dist-info/RECORD,,