pycarlo 0.10.54__py3-none-any.whl → 0.10.56__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.
pycarlo/lib/schema.json CHANGED
@@ -35890,85 +35890,85 @@
35890
35890
  "enumValues": [
35891
35891
  {
35892
35892
  "deprecationReason": null,
35893
- "description": null,
35893
+ "description": "Dimension - legacy",
35894
35894
  "isDeprecated": false,
35895
35895
  "name": "CATEGORIES"
35896
35896
  },
35897
35897
  {
35898
35898
  "deprecationReason": null,
35899
- "description": null,
35899
+ "description": "Metric",
35900
35900
  "isDeprecated": false,
35901
35901
  "name": "STATS"
35902
35902
  },
35903
35903
  {
35904
35904
  "deprecationReason": null,
35905
- "description": null,
35905
+ "description": "JSON schema",
35906
35906
  "isDeprecated": false,
35907
35907
  "name": "JSON_SCHEMA"
35908
35908
  },
35909
35909
  {
35910
35910
  "deprecationReason": null,
35911
- "description": null,
35911
+ "description": "Custom SQL",
35912
35912
  "isDeprecated": false,
35913
35913
  "name": "CUSTOM_SQL"
35914
35914
  },
35915
35915
  {
35916
35916
  "deprecationReason": null,
35917
- "description": null,
35917
+ "description": "Metric - legacy",
35918
35918
  "isDeprecated": false,
35919
35919
  "name": "FIELD_QUALITY"
35920
35920
  },
35921
35921
  {
35922
35922
  "deprecationReason": null,
35923
- "description": null,
35923
+ "description": "Freshness",
35924
35924
  "isDeprecated": false,
35925
35925
  "name": "FRESHNESS"
35926
35926
  },
35927
35927
  {
35928
35928
  "deprecationReason": null,
35929
- "description": null,
35929
+ "description": "Volume - legacy",
35930
35930
  "isDeprecated": false,
35931
35931
  "name": "TABLE_METRIC"
35932
35932
  },
35933
35933
  {
35934
35934
  "deprecationReason": null,
35935
- "description": null,
35935
+ "description": "Volume",
35936
35936
  "isDeprecated": false,
35937
35937
  "name": "VOLUME"
35938
35938
  },
35939
35939
  {
35940
35940
  "deprecationReason": null,
35941
- "description": null,
35941
+ "description": "Query performance",
35942
35942
  "isDeprecated": false,
35943
35943
  "name": "QUERY_PERF"
35944
35944
  },
35945
35945
  {
35946
35946
  "deprecationReason": null,
35947
- "description": null,
35947
+ "description": "Comparison - legacy",
35948
35948
  "isDeprecated": false,
35949
35949
  "name": "COMPARISON"
35950
35950
  },
35951
35951
  {
35952
35952
  "deprecationReason": null,
35953
- "description": null,
35953
+ "description": "Validation",
35954
35954
  "isDeprecated": false,
35955
35955
  "name": "VALIDATION"
35956
35956
  },
35957
35957
  {
35958
35958
  "deprecationReason": null,
35959
- "description": null,
35959
+ "description": "Schema",
35960
35960
  "isDeprecated": false,
35961
35961
  "name": "SCHEMA"
35962
35962
  },
35963
35963
  {
35964
35964
  "deprecationReason": null,
35965
- "description": null,
35965
+ "description": "Comparison",
35966
35966
  "isDeprecated": false,
35967
35967
  "name": "METRIC_COMPARISON"
35968
35968
  },
35969
35969
  {
35970
35970
  "deprecationReason": null,
35971
- "description": null,
35971
+ "description": "Table",
35972
35972
  "isDeprecated": false,
35973
35973
  "name": "TABLE"
35974
35974
  }
@@ -113608,6 +113608,18 @@
113608
113608
  "ofType": null
113609
113609
  }
113610
113610
  },
113611
+ {
113612
+ "args": [],
113613
+ "deprecationReason": null,
113614
+ "description": "Indicate if the monitor was migrated from a field quality (metrics legacy) rule",
113615
+ "isDeprecated": false,
113616
+ "name": "isMigratedFromFieldQuality",
113617
+ "type": {
113618
+ "kind": "SCALAR",
113619
+ "name": "Boolean",
113620
+ "ofType": null
113621
+ }
113622
+ },
113611
113623
  {
113612
113624
  "args": [],
113613
113625
  "deprecationReason": null,
pycarlo/lib/schema.py CHANGED
@@ -5201,20 +5201,20 @@ class UserDefinedMonitorSearchFields(sgqlc.types.Enum):
5201
5201
  class UserDefinedMonitors(sgqlc.types.Enum):
5202
5202
  """Enumeration Choices:
5203
5203
 
5204
- * `CATEGORIES`None
5205
- * `COMPARISON`None
5206
- * `CUSTOM_SQL`None
5207
- * `FIELD_QUALITY`None
5208
- * `FRESHNESS`None
5209
- * `JSON_SCHEMA`None
5210
- * `METRIC_COMPARISON`None
5211
- * `QUERY_PERF`None
5212
- * `SCHEMA`None
5213
- * `STATS`None
5214
- * `TABLE`None
5215
- * `TABLE_METRIC`None
5216
- * `VALIDATION`None
5217
- * `VOLUME`None
5204
+ * `CATEGORIES`: Dimension - legacy
5205
+ * `COMPARISON`: Comparison - legacy
5206
+ * `CUSTOM_SQL`: Custom SQL
5207
+ * `FIELD_QUALITY`: Metric - legacy
5208
+ * `FRESHNESS`: Freshness
5209
+ * `JSON_SCHEMA`: JSON schema
5210
+ * `METRIC_COMPARISON`: Comparison
5211
+ * `QUERY_PERF`: Query performance
5212
+ * `SCHEMA`: Schema
5213
+ * `STATS`: Metric
5214
+ * `TABLE`: Table
5215
+ * `TABLE_METRIC`: Volume - legacy
5216
+ * `VALIDATION`: Validation
5217
+ * `VOLUME`: Volume
5218
5218
  """
5219
5219
 
5220
5220
  __schema__ = schema
@@ -67312,6 +67312,7 @@ class CustomRule(sgqlc.types.Type, Node):
67312
67312
  "suggested_custom_sampling_sql",
67313
67313
  "selection",
67314
67314
  "is_ootb_replacement",
67315
+ "is_migrated_from_field_quality",
67315
67316
  "connection_id",
67316
67317
  "mc_sql",
67317
67318
  "tags",
@@ -67580,6 +67581,13 @@ class CustomRule(sgqlc.types.Type, Node):
67580
67581
  is_ootb_replacement = sgqlc.types.Field(Boolean, graphql_name="isOotbReplacement")
67581
67582
  """Indicate if this rule replaces the default ootb detector"""
67582
67583
 
67584
+ is_migrated_from_field_quality = sgqlc.types.Field(
67585
+ Boolean, graphql_name="isMigratedFromFieldQuality"
67586
+ )
67587
+ """Indicate if the monitor was migrated from a field quality (metrics
67588
+ legacy) rule
67589
+ """
67590
+
67583
67591
  connection_id = sgqlc.types.Field(UUID, graphql_name="connectionId")
67584
67592
  """The connection UUID associated with the rule"""
67585
67593
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pycarlo
3
- Version: 0.10.54
3
+ Version: 0.10.56
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=XqZ2o4rpPnK0dob6s1CN405aX369OkThNq-aeyh7oy0,5983065
39
- pycarlo/lib/schema.py,sha256=uwzzkfCJwAS-fBYyX3bbX3opM82jl7Ux4RIOLUu5IMo,2587061
40
- pycarlo-0.10.54.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
- pycarlo-0.10.54.dist-info/METADATA,sha256=8IaOSxIADtobA8sbzRp6qrod8WIJK6ocoHWs8o-AxHM,8741
42
- pycarlo-0.10.54.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
- pycarlo-0.10.54.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
- pycarlo-0.10.54.dist-info/RECORD,,
38
+ pycarlo/lib/schema.json,sha256=P8Ajbbc-kwgGhOvcRb2srSOUcu62_c5PzQayiB5aYNg,5983631
39
+ pycarlo/lib/schema.py,sha256=mVdLWE6AQMDHbFnAMLAFWkSqfWEE_C4V5UPGM7jEvro,2587453
40
+ pycarlo-0.10.56.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
+ pycarlo-0.10.56.dist-info/METADATA,sha256=hBznWLRTvnbHfZMn1Tk_zir2SHthi9wSbj7BwuCocxw,8741
42
+ pycarlo-0.10.56.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
+ pycarlo-0.10.56.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
+ pycarlo-0.10.56.dist-info/RECORD,,