pycarlo 0.10.110__py3-none-any.whl → 0.10.112__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
@@ -5216,6 +5216,7 @@ class UserDefinedMonitorSearchFields(sgqlc.types.Enum):
5216
5216
  class UserDefinedMonitors(sgqlc.types.Enum):
5217
5217
  """Enumeration Choices:
5218
5218
 
5219
+ * `AGENT`: Agent
5219
5220
  * `CATEGORIES`: Dimension - legacy
5220
5221
  * `COMPARISON`: Comparison - legacy
5221
5222
  * `CUSTOM_SQL`: Custom SQL
@@ -5234,6 +5235,7 @@ class UserDefinedMonitors(sgqlc.types.Enum):
5234
5235
 
5235
5236
  __schema__ = schema
5236
5237
  __choices__ = (
5238
+ "AGENT",
5237
5239
  "CATEGORIES",
5238
5240
  "COMPARISON",
5239
5241
  "CUSTOM_SQL",
@@ -10275,6 +10277,8 @@ class IMetricsMonitor(sgqlc.types.Interface):
10275
10277
  "segment_count",
10276
10278
  "bootstrap",
10277
10279
  "sensitivity",
10280
+ "monitor_sql_blocks",
10281
+ "sampling_config",
10278
10282
  )
10279
10283
  monitor_fields = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name="monitorFields")
10280
10284
  """Field/s to monitor"""
@@ -10359,6 +10363,12 @@ class IMetricsMonitor(sgqlc.types.Interface):
10359
10363
  sensitivity = sgqlc.types.Field(SensitivityLevels, graphql_name="sensitivity")
10360
10364
  """Sensitivity for automated thresholds"""
10361
10365
 
10366
+ monitor_sql_blocks = sgqlc.types.Field("MonitorSqlBlocks", graphql_name="monitorSqlBlocks")
10367
+ """SQL blocks used on the monitor"""
10368
+
10369
+ sampling_config = sgqlc.types.Field("MonitorSamplingConfig", graphql_name="samplingConfig")
10370
+ """Sampling configuration for the monitor"""
10371
+
10362
10372
 
10363
10373
  class IMonitor(sgqlc.types.Interface):
10364
10374
  __schema__ = schema
@@ -57063,6 +57073,10 @@ class Query(sgqlc.types.Type):
57063
57073
  ),
57064
57074
  ("last_read", sgqlc.types.Arg(DateTime, graphql_name="lastRead", default=None)),
57065
57075
  ("last_write", sgqlc.types.Arg(DateTime, graphql_name="lastWrite", default=None)),
57076
+ (
57077
+ "last_volume_change",
57078
+ sgqlc.types.Arg(DateTime, graphql_name="lastVolumeChange", default=None),
57079
+ ),
57066
57080
  (
57067
57081
  "importance_score_is_custom",
57068
57082
  sgqlc.types.Arg(Boolean, graphql_name="importanceScoreIsCustom", default=None),
@@ -57141,6 +57155,7 @@ class Query(sgqlc.types.Type):
57141
57155
  * `last_activity` (`DateTime`)None
57142
57156
  * `last_read` (`DateTime`)None
57143
57157
  * `last_write` (`DateTime`)None
57158
+ * `last_volume_change` (`DateTime`)None
57144
57159
  * `importance_score_is_custom` (`Boolean`)None
57145
57160
  * `is_important_is_custom` (`Boolean`)None
57146
57161
  * `last_observed__gt` (`DateTime`)None
@@ -57389,6 +57404,10 @@ class Query(sgqlc.types.Type):
57389
57404
  ),
57390
57405
  ("last_read", sgqlc.types.Arg(DateTime, graphql_name="lastRead", default=None)),
57391
57406
  ("last_write", sgqlc.types.Arg(DateTime, graphql_name="lastWrite", default=None)),
57407
+ (
57408
+ "last_volume_change",
57409
+ sgqlc.types.Arg(DateTime, graphql_name="lastVolumeChange", default=None),
57410
+ ),
57392
57411
  (
57393
57412
  "importance_score_is_custom",
57394
57413
  sgqlc.types.Arg(Boolean, graphql_name="importanceScoreIsCustom", default=None),
@@ -57516,6 +57535,7 @@ class Query(sgqlc.types.Type):
57516
57535
  * `last_activity` (`DateTime`)None
57517
57536
  * `last_read` (`DateTime`)None
57518
57537
  * `last_write` (`DateTime`)None
57538
+ * `last_volume_change` (`DateTime`)None
57519
57539
  * `importance_score_is_custom` (`Boolean`)None
57520
57540
  * `is_important_is_custom` (`Boolean`)None
57521
57541
  * `freshness_anomaly` (`Boolean`)None
@@ -75306,6 +75326,8 @@ class UserDefinedMonitorV2(sgqlc.types.Type, Node):
75306
75326
  "alert_ids",
75307
75327
  "invalid_rows",
75308
75328
  "domain_restrictions",
75329
+ "monitor_sql_blocks",
75330
+ "sampling_config",
75309
75331
  "entity_mcons",
75310
75332
  "has_custom_rule_name",
75311
75333
  "is_transitioning_data_provider",
@@ -75484,6 +75506,12 @@ class UserDefinedMonitorV2(sgqlc.types.Type, Node):
75484
75506
  monitor, if any
75485
75507
  """
75486
75508
 
75509
+ monitor_sql_blocks = sgqlc.types.Field(MonitorSqlBlocks, graphql_name="monitorSqlBlocks")
75510
+ """SQL blocks used on the monitor"""
75511
+
75512
+ sampling_config = sgqlc.types.Field(MonitorSamplingConfig, graphql_name="samplingConfig")
75513
+ """Sampling configuration for the monitor"""
75514
+
75487
75515
  entity_mcons = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name="entityMcons")
75488
75516
  """MCONs for monitored tables/views"""
75489
75517
 
@@ -75610,6 +75638,7 @@ class WarehouseTable(sgqlc.types.Type, Node):
75610
75638
  "last_activity",
75611
75639
  "last_read",
75612
75640
  "last_write",
75641
+ "last_volume_change",
75613
75642
  "importance_score_is_custom",
75614
75643
  "is_important_is_custom",
75615
75644
  "anomalies",
@@ -75718,6 +75747,8 @@ class WarehouseTable(sgqlc.types.Type, Node):
75718
75747
 
75719
75748
  last_write = sgqlc.types.Field(DateTime, graphql_name="lastWrite")
75720
75749
 
75750
+ last_volume_change = sgqlc.types.Field(DateTime, graphql_name="lastVolumeChange")
75751
+
75721
75752
  importance_score_is_custom = sgqlc.types.Field(
75722
75753
  sgqlc.types.non_null(Boolean), graphql_name="importanceScoreIsCustom"
75723
75754
  )
@@ -76175,6 +76206,7 @@ class WarehouseTableHealth(sgqlc.types.Type, Node):
76175
76206
  "last_activity",
76176
76207
  "last_read",
76177
76208
  "last_write",
76209
+ "last_volume_change",
76178
76210
  "importance_score_is_custom",
76179
76211
  "is_important_is_custom",
76180
76212
  "freshness_anomaly",
@@ -76258,6 +76290,8 @@ class WarehouseTableHealth(sgqlc.types.Type, Node):
76258
76290
 
76259
76291
  last_write = sgqlc.types.Field(DateTime, graphql_name="lastWrite")
76260
76292
 
76293
+ last_volume_change = sgqlc.types.Field(DateTime, graphql_name="lastVolumeChange")
76294
+
76261
76295
  importance_score_is_custom = sgqlc.types.Field(
76262
76296
  sgqlc.types.non_null(Boolean), graphql_name="importanceScoreIsCustom"
76263
76297
  )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pycarlo
3
- Version: 0.10.110
3
+ Version: 0.10.112
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=bOUJgpe3ZGTjuKM2E8il9to4Bz6NR7fwM4J9G_oC0QE,6129950
39
- pycarlo/lib/schema.py,sha256=nxTtVaPWCauf2QcI-qJhMnI6AnKLBS5cgwfVWE-jnhc,2664225
40
- pycarlo-0.10.110.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
- pycarlo-0.10.110.dist-info/METADATA,sha256=AKPRXBsqKfehVaktjUe6rZW9q-uvwA3zxlfkK32JztI,8742
42
- pycarlo-0.10.110.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
- pycarlo-0.10.110.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
- pycarlo-0.10.110.dist-info/RECORD,,
38
+ pycarlo/lib/schema.json,sha256=YfgKpnQwoHaUkccvxmw1g7gVhmE4OIFqBL2s96bieNw,6133824
39
+ pycarlo/lib/schema.py,sha256=TBY5TfshTcOX509YGvmor3eBGztG7yQ62V5NXZO4LyM,2665609
40
+ pycarlo-0.10.112.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
+ pycarlo-0.10.112.dist-info/METADATA,sha256=n4LOgG-eqvXjEjdJs92Bp7lf_exhRgguB4iO2D1m0ok,8742
42
+ pycarlo-0.10.112.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
+ pycarlo-0.10.112.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
+ pycarlo-0.10.112.dist-info/RECORD,,