pycarlo 0.10.128__py3-none-any.whl → 0.10.130__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
@@ -87927,6 +87927,38 @@
87927
87927
  }
87928
87928
  }
87929
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
+ }
87930
87962
  }
87931
87963
  ],
87932
87964
  "inputFields": null,
@@ -146430,6 +146462,16 @@
146430
146462
  }
146431
146463
  }
146432
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
+ },
146433
146475
  {
146434
146476
  "defaultValue": null,
146435
146477
  "description": "Description of rule",
@@ -146510,6 +146552,24 @@
146510
146552
  "ofType": null
146511
146553
  }
146512
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
+ },
146513
146573
  {
146514
146574
  "defaultValue": null,
146515
146575
  "description": "UUID of the table monitor, to update existing monito",
@@ -162239,7 +162299,7 @@
162239
162299
  "name": null,
162240
162300
  "ofType": {
162241
162301
  "kind": "INPUT_OBJECT",
162242
- "name": "CustomRuleComparisonInput",
162302
+ "name": "MetricAlertConditionInput",
162243
162303
  "ofType": null
162244
162304
  }
162245
162305
  }
@@ -172109,6 +172169,12 @@
172109
172169
  "description": null,
172110
172170
  "isDeprecated": false,
172111
172171
  "name": "METRIC_MONITOR"
172172
+ },
172173
+ {
172174
+ "deprecationReason": null,
172175
+ "description": null,
172176
+ "isDeprecated": false,
172177
+ "name": "TABLE_MONITOR"
172112
172178
  }
172113
172179
  ],
172114
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):
@@ -25533,6 +25534,10 @@ class Mutation(sgqlc.types.Type):
25533
25534
  default=None,
25534
25535
  ),
25535
25536
  ),
25537
+ (
25538
+ "data_quality_dimension",
25539
+ sgqlc.types.Arg(String, graphql_name="dataQualityDimension", default=None),
25540
+ ),
25536
25541
  (
25537
25542
  "description",
25538
25543
  sgqlc.types.Arg(
@@ -25558,6 +25563,14 @@ class Mutation(sgqlc.types.Type):
25558
25563
  ),
25559
25564
  ("notes", sgqlc.types.Arg(String, graphql_name="notes", default="")),
25560
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
+ ),
25561
25574
  ("uuid", sgqlc.types.Arg(UUID, graphql_name="uuid", default=None)),
25562
25575
  (
25563
25576
  "warehouse_uuid",
@@ -25576,6 +25589,8 @@ class Mutation(sgqlc.types.Type):
25576
25589
  conditions for the table monitor
25577
25590
  * `asset_selection` (`AssetSelectionInput!`)None
25578
25591
  * `audiences` (`[String!]`): The monitor notification audiences
25592
+ * `data_quality_dimension` (`String`): Data quality dimension of
25593
+ the monitor.
25579
25594
  * `description` (`String!`): Description of rule
25580
25595
  * `domain_restrictions` (`[UUID!]`): The domains to restrict to
25581
25596
  * `dry_run` (`Boolean`): Dry run the monitor creation or update
@@ -25586,6 +25601,7 @@ class Mutation(sgqlc.types.Type):
25586
25601
  `""`)
25587
25602
  * `priority` (`String`): The default priority for alerts involving
25588
25603
  this monitor
25604
+ * `tags` (`[TagKeyValuePairInput!]`): The monitor tags.
25589
25605
  * `uuid` (`UUID`): UUID of the table monitor, to update existing
25590
25606
  monito
25591
25607
  * `warehouse_uuid` (`UUID!`): Warehouse UUID
@@ -35596,7 +35612,7 @@ class Mutation(sgqlc.types.Type):
35596
35612
  "alert_conditions",
35597
35613
  sgqlc.types.Arg(
35598
35614
  sgqlc.types.non_null(
35599
- sgqlc.types.list_of(sgqlc.types.non_null(CustomRuleComparisonInput))
35615
+ sgqlc.types.list_of(sgqlc.types.non_null(MetricAlertConditionInput))
35600
35616
  ),
35601
35617
  graphql_name="alertConditions",
35602
35618
  default=None,
@@ -35701,7 +35717,7 @@ class Mutation(sgqlc.types.Type):
35701
35717
 
35702
35718
  * `agent_span_filters` (`[AgentSpanFilterInput!]!`): Filter by
35703
35719
  agent span fields (agent, workflow, task, span_name)
35704
- * `alert_conditions` (`[CustomRuleComparisonInput!]!`): Alert
35720
+ * `alert_conditions` (`[MetricAlertConditionInput!]!`): Alert
35705
35721
  conditions.
35706
35722
  * `audiences` (`[String!]`): The monitor notification audiences
35707
35723
  * `connection_id` (`UUID`): Specify a connection (e.g. query-
@@ -73835,6 +73851,8 @@ class TableMonitor(sgqlc.types.Type, Node):
73835
73851
  "audiences",
73836
73852
  "failure_audiences",
73837
73853
  "alert_conditions",
73854
+ "tags",
73855
+ "data_quality_dimension",
73838
73856
  )
73839
73857
  created_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="createdTime")
73840
73858
 
@@ -73910,6 +73928,14 @@ class TableMonitor(sgqlc.types.Type, Node):
73910
73928
  graphql_name="alertConditions",
73911
73929
  )
73912
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
+
73913
73939
 
73914
73940
  class TablePartitionKeys(sgqlc.types.Type, Node):
73915
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.128
3
+ Version: 0.10.130
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=dkJUr7gOwatpqA7rXec28gyv1C9cO0NNIwkw_X8qpgk,6152482
39
- pycarlo/lib/schema.py,sha256=0OHGcLSfKI9FFsjvkhNUczNcPSZNGV-za61yaIwH_2c,2671033
40
- pycarlo-0.10.128.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
- pycarlo-0.10.128.dist-info/METADATA,sha256=0mLaWNem7ceUCW5akLrwmXvowAg1Dnhnvf1VV602QDE,8742
42
- pycarlo-0.10.128.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
- pycarlo-0.10.128.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
- pycarlo-0.10.128.dist-info/RECORD,,
38
+ pycarlo/lib/schema.json,sha256=s9cHq-HqJ9rcLJk8wDbrrC8BTVV3hrzIMZMv11wnTcs,6154635
39
+ pycarlo/lib/schema.py,sha256=yjqQwh6aicixOnUoDDGercvO6s2GDJ289jtlZsU7L0s,2672051
40
+ pycarlo-0.10.130.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
+ pycarlo-0.10.130.dist-info/METADATA,sha256=Vy14Ag4eqE6HCGvkP7ANm8Qp17aR47wM-OnS0rS_uB8,8742
42
+ pycarlo-0.10.130.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
+ pycarlo-0.10.130.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
+ pycarlo-0.10.130.dist-info/RECORD,,