pycarlo 0.10.151__py3-none-any.whl → 0.10.153__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
@@ -33806,6 +33806,12 @@
33806
33806
  "description": null,
33807
33807
  "isDeprecated": false,
33808
33808
  "name": "CLICKHOUSE"
33809
+ },
33810
+ {
33811
+ "deprecationReason": null,
33812
+ "description": null,
33813
+ "isDeprecated": false,
33814
+ "name": "DB2"
33809
33815
  }
33810
33816
  ],
33811
33817
  "fields": null,
@@ -33877,6 +33883,12 @@
33877
33883
  "description": null,
33878
33884
  "isDeprecated": false,
33879
33885
  "name": "MOTHERDUCK"
33886
+ },
33887
+ {
33888
+ "deprecationReason": null,
33889
+ "description": null,
33890
+ "isDeprecated": false,
33891
+ "name": "DB2"
33880
33892
  }
33881
33893
  ],
33882
33894
  "fields": null,
@@ -36253,6 +36265,12 @@
36253
36265
  "isDeprecated": false,
36254
36266
  "name": "MOTHERDUCK"
36255
36267
  },
36268
+ {
36269
+ "deprecationReason": null,
36270
+ "description": null,
36271
+ "isDeprecated": false,
36272
+ "name": "DB2"
36273
+ },
36256
36274
  {
36257
36275
  "deprecationReason": null,
36258
36276
  "description": null,
@@ -50408,6 +50426,30 @@
50408
50426
  "ofType": null
50409
50427
  }
50410
50428
  },
50429
+ {
50430
+ "args": [],
50431
+ "deprecationReason": null,
50432
+ "description": "Indicates if the warehouse supports segmentation in metric monitors",
50433
+ "isDeprecated": false,
50434
+ "name": "supportsMetricSegmentation",
50435
+ "type": {
50436
+ "kind": "SCALAR",
50437
+ "name": "Boolean",
50438
+ "ofType": null
50439
+ }
50440
+ },
50441
+ {
50442
+ "args": [],
50443
+ "deprecationReason": null,
50444
+ "description": "Indicates if the warehouse supports grouping in metric monitors",
50445
+ "isDeprecated": false,
50446
+ "name": "supportsMetricAggregation",
50447
+ "type": {
50448
+ "kind": "SCALAR",
50449
+ "name": "Boolean",
50450
+ "ofType": null
50451
+ }
50452
+ },
50411
50453
  {
50412
50454
  "args": [],
50413
50455
  "deprecationReason": null,
@@ -50607,6 +50649,12 @@
50607
50649
  "description": "ClickHouse",
50608
50650
  "isDeprecated": false,
50609
50651
  "name": "CLICKHOUSE"
50652
+ },
50653
+ {
50654
+ "deprecationReason": null,
50655
+ "description": "Db2",
50656
+ "isDeprecated": false,
50657
+ "name": "DB2"
50610
50658
  }
50611
50659
  ],
50612
50660
  "fields": null,
@@ -58611,6 +58659,12 @@
58611
58659
  "description": "ClickHouse",
58612
58660
  "isDeprecated": false,
58613
58661
  "name": "CLICKHOUSE"
58662
+ },
58663
+ {
58664
+ "deprecationReason": null,
58665
+ "description": "Db2",
58666
+ "isDeprecated": false,
58667
+ "name": "DB2"
58614
58668
  }
58615
58669
  ],
58616
58670
  "fields": null,
@@ -118226,6 +118280,12 @@
118226
118280
  "description": "size_collection_disabled",
118227
118281
  "isDeprecated": false,
118228
118282
  "name": "SIZE_COLLECTION_DISABLED"
118283
+ },
118284
+ {
118285
+ "deprecationReason": null,
118286
+ "description": "deprecated_job_type",
118287
+ "isDeprecated": false,
118288
+ "name": "DEPRECATED_JOB_TYPE"
118229
118289
  }
118230
118290
  ],
118231
118291
  "fields": null,
pycarlo/lib/schema.py CHANGED
@@ -979,6 +979,7 @@ class ConnectionModelType(sgqlc.types.Enum):
979
979
  * `DATABRICKS_METASTORE_SQL_WAREHOUSE`: Databricks Metastore Sql
980
980
  Warehouse
981
981
  * `DATABRICKS_SQL_WAREHOUSE`: Databricks Sql Warehouse
982
+ * `DB2`: Db2
982
983
  * `DBT_CLOUD`: dbt Cloud
983
984
  * `DBT_CLOUD_V2`: dbt Cloud v2
984
985
  * `DBT_CLOUD_WEBHOOK`: dbt Cloud Webhook
@@ -1029,6 +1030,7 @@ class ConnectionModelType(sgqlc.types.Enum):
1029
1030
  "DATABRICKS_METASTORE",
1030
1031
  "DATABRICKS_METASTORE_SQL_WAREHOUSE",
1031
1032
  "DATABRICKS_SQL_WAREHOUSE",
1033
+ "DB2",
1032
1034
  "DBT_CLOUD",
1033
1035
  "DBT_CLOUD_V2",
1034
1036
  "DBT_CLOUD_WEBHOOK",
@@ -1072,6 +1074,7 @@ class ConnectionSubtypeEnum(sgqlc.types.Enum):
1072
1074
 
1073
1075
  * `AZURE_DEDICATED_SQL_POOL`None
1074
1076
  * `AZURE_SQL_DATABASE`None
1077
+ * `DB2`None
1075
1078
  * `MARIADB`None
1076
1079
  * `MOTHERDUCK`None
1077
1080
  * `MYSQL`None
@@ -1086,6 +1089,7 @@ class ConnectionSubtypeEnum(sgqlc.types.Enum):
1086
1089
  __choices__ = (
1087
1090
  "AZURE_DEDICATED_SQL_POOL",
1088
1091
  "AZURE_SQL_DATABASE",
1092
+ "DB2",
1089
1093
  "MARIADB",
1090
1094
  "MOTHERDUCK",
1091
1095
  "MYSQL",
@@ -1111,6 +1115,7 @@ class ConnectionTypeEnum(sgqlc.types.Enum):
1111
1115
  * `DATABRICKS_METASTORE`None
1112
1116
  * `DATABRICKS_METASTORE_SQL_WAREHOUSE`None
1113
1117
  * `DATABRICKS_SQL_WAREHOUSE`None
1118
+ * `DB2`None
1114
1119
  * `DBT_CLOUD`None
1115
1120
  * `DBT_CLOUD_V2`None
1116
1121
  * `DBT_CLOUD_WEBHOOK`None
@@ -1161,6 +1166,7 @@ class ConnectionTypeEnum(sgqlc.types.Enum):
1161
1166
  "DATABRICKS_METASTORE",
1162
1167
  "DATABRICKS_METASTORE_SQL_WAREHOUSE",
1163
1168
  "DATABRICKS_SQL_WAREHOUSE",
1169
+ "DB2",
1164
1170
  "DBT_CLOUD",
1165
1171
  "DBT_CLOUD_V2",
1166
1172
  "DBT_CLOUD_WEBHOOK",
@@ -1408,6 +1414,7 @@ class DataCollectorScheduleModelDeleteReason(sgqlc.types.Enum):
1408
1414
  """Enumeration Choices:
1409
1415
 
1410
1416
  * `CONNECTION_DELETED`: connection_deleted
1417
+ * `DEPRECATED_JOB_TYPE`: deprecated_job_type
1411
1418
  * `MONITOR_DELETED`: monitor_deleted
1412
1419
  * `NO_COLLECTOR`: no_collector
1413
1420
  * `RULE_DELETED`: rule_deleted
@@ -1417,6 +1424,7 @@ class DataCollectorScheduleModelDeleteReason(sgqlc.types.Enum):
1417
1424
  __schema__ = schema
1418
1425
  __choices__ = (
1419
1426
  "CONNECTION_DELETED",
1427
+ "DEPRECATED_JOB_TYPE",
1420
1428
  "MONITOR_DELETED",
1421
1429
  "NO_COLLECTOR",
1422
1430
  "RULE_DELETED",
@@ -4696,6 +4704,7 @@ class SqlDialect(sgqlc.types.Enum):
4696
4704
  * `BIGQUERY`None
4697
4705
  * `CLICKHOUSE`None
4698
4706
  * `DATABRICKS`None
4707
+ * `DB2`None
4699
4708
  * `DREMIO`None
4700
4709
  * `HIVE`None
4701
4710
  * `MARIADB`None
@@ -4722,6 +4731,7 @@ class SqlDialect(sgqlc.types.Enum):
4722
4731
  "BIGQUERY",
4723
4732
  "CLICKHOUSE",
4724
4733
  "DATABRICKS",
4734
+ "DB2",
4725
4735
  "DREMIO",
4726
4736
  "HIVE",
4727
4737
  "MARIADB",
@@ -5480,6 +5490,7 @@ class WarehouseModelConnectionType(sgqlc.types.Enum):
5480
5490
  * `BIGQUERY`: BigQuery
5481
5491
  * `CLICKHOUSE`: ClickHouse
5482
5492
  * `DATA_LAKE`: Data Lake
5493
+ * `DB2`: Db2
5483
5494
  * `DREMIO`: Dremio
5484
5495
  * `ETL`: etl
5485
5496
  * `MYSQL`: MySQL
@@ -5499,6 +5510,7 @@ class WarehouseModelConnectionType(sgqlc.types.Enum):
5499
5510
  "BIGQUERY",
5500
5511
  "CLICKHOUSE",
5501
5512
  "DATA_LAKE",
5513
+ "DB2",
5502
5514
  "DREMIO",
5503
5515
  "ETL",
5504
5516
  "MYSQL",
@@ -67386,6 +67398,8 @@ class Warehouse(sgqlc.types.Type):
67386
67398
  "supports_custom_sql_rules",
67387
67399
  "supports_high_segment_count",
67388
67400
  "supports_activity_filters",
67401
+ "supports_metric_segmentation",
67402
+ "supports_metric_aggregation",
67389
67403
  "mcon",
67390
67404
  "metadata_connection",
67391
67405
  "metadata_schedule",
@@ -67692,6 +67706,18 @@ class Warehouse(sgqlc.types.Type):
67692
67706
  supports_activity_filters = sgqlc.types.Field(Boolean, graphql_name="supportsActivityFilters")
67693
67707
  """Indicates if the warehouse supports activity filters"""
67694
67708
 
67709
+ supports_metric_segmentation = sgqlc.types.Field(
67710
+ Boolean, graphql_name="supportsMetricSegmentation"
67711
+ )
67712
+ """Indicates if the warehouse supports segmentation in metric
67713
+ monitors
67714
+ """
67715
+
67716
+ supports_metric_aggregation = sgqlc.types.Field(
67717
+ Boolean, graphql_name="supportsMetricAggregation"
67718
+ )
67719
+ """Indicates if the warehouse supports grouping in metric monitors"""
67720
+
67695
67721
  mcon = sgqlc.types.Field(String, graphql_name="mcon")
67696
67722
  """MCON for the warehouse"""
67697
67723
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pycarlo
3
- Version: 0.10.151
3
+ Version: 0.10.153
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=0sI-bLINxBp0YtCFqeLGkWv0wAffNz0k99tbOSWtPSk,6212469
39
- pycarlo/lib/schema.py,sha256=JpMoj33HGAYPBJocYspxFfq7fKdPHsWARXCCkTq1luc,2696484
40
- pycarlo-0.10.151.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
- pycarlo-0.10.151.dist-info/METADATA,sha256=c3B0OcFrp-DtlD3mW3OnXdv0FrqSdNusWnhMAEQuNFk,8742
42
- pycarlo-0.10.151.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
- pycarlo-0.10.151.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
- pycarlo-0.10.151.dist-info/RECORD,,
38
+ pycarlo/lib/schema.json,sha256=Qq9T-GFyUB-dsa6LJdtcbvHrGzxE64rZLnhTgeQrYS4,6214369
39
+ pycarlo/lib/schema.py,sha256=tYEukpd7yVqnjA0OYEvbc70MlaBYqHWRreCyOBncqAo,2697199
40
+ pycarlo-0.10.153.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
+ pycarlo-0.10.153.dist-info/METADATA,sha256=jxOShSvnuVA-U4w3eX2fdWgXRsu0faCxa5HKpm9MoUA,8742
42
+ pycarlo-0.10.153.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
+ pycarlo-0.10.153.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
+ pycarlo-0.10.153.dist-info/RECORD,,