pycarlo 0.10.223__py3-none-any.whl → 0.10.225__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
@@ -4323,6 +4323,37 @@
4323
4323
  "ofType": null
4324
4324
  }
4325
4325
  },
4326
+ {
4327
+ "args": [
4328
+ {
4329
+ "defaultValue": null,
4330
+ "description": "MCON of assets to create data product from",
4331
+ "name": "mcons",
4332
+ "type": {
4333
+ "kind": "NON_NULL",
4334
+ "name": null,
4335
+ "ofType": {
4336
+ "kind": "LIST",
4337
+ "name": null,
4338
+ "ofType": {
4339
+ "kind": "SCALAR",
4340
+ "name": "String",
4341
+ "ofType": null
4342
+ }
4343
+ }
4344
+ }
4345
+ }
4346
+ ],
4347
+ "deprecationReason": null,
4348
+ "description": "(experimental) Return asset counts for a data product had it been created from these MCONs",
4349
+ "isDeprecated": false,
4350
+ "name": "getDataProductDryRunCounts",
4351
+ "type": {
4352
+ "kind": "OBJECT",
4353
+ "name": "DataProductDryRunTableCounts",
4354
+ "ofType": null
4355
+ }
4356
+ },
4326
4357
  {
4327
4358
  "args": [
4328
4359
  {
@@ -84947,6 +84978,18 @@
84947
84978
  "name": "ValidatePerformanceDashboardAccessResponse",
84948
84979
  "ofType": null
84949
84980
  }
84981
+ },
84982
+ {
84983
+ "args": [],
84984
+ "deprecationReason": null,
84985
+ "description": "Whether the user can create, update or delete table monitors.",
84986
+ "isDeprecated": false,
84987
+ "name": "canEditTableMonitors",
84988
+ "type": {
84989
+ "kind": "SCALAR",
84990
+ "name": "Boolean",
84991
+ "ofType": null
84992
+ }
84950
84993
  }
84951
84994
  ],
84952
84995
  "inputFields": null,
@@ -102833,6 +102876,53 @@
102833
102876
  "name": "TableUpstreamData",
102834
102877
  "possibleTypes": null
102835
102878
  },
102879
+ {
102880
+ "description": null,
102881
+ "enumValues": null,
102882
+ "fields": [
102883
+ {
102884
+ "args": [],
102885
+ "deprecationReason": null,
102886
+ "description": "Total count of assets that would be in the data product",
102887
+ "isDeprecated": false,
102888
+ "name": "totalAssetCount",
102889
+ "type": {
102890
+ "kind": "SCALAR",
102891
+ "name": "Int",
102892
+ "ofType": null
102893
+ }
102894
+ },
102895
+ {
102896
+ "args": [],
102897
+ "deprecationReason": null,
102898
+ "description": "Total count of already monitored assets",
102899
+ "isDeprecated": false,
102900
+ "name": "totalAssetMonitoredCount",
102901
+ "type": {
102902
+ "kind": "SCALAR",
102903
+ "name": "Int",
102904
+ "ofType": null
102905
+ }
102906
+ },
102907
+ {
102908
+ "args": [],
102909
+ "deprecationReason": null,
102910
+ "description": "Total count of yet unmonitored assets",
102911
+ "isDeprecated": false,
102912
+ "name": "totalAssetUnmonitoredCount",
102913
+ "type": {
102914
+ "kind": "SCALAR",
102915
+ "name": "Int",
102916
+ "ofType": null
102917
+ }
102918
+ }
102919
+ ],
102920
+ "inputFields": null,
102921
+ "interfaces": [],
102922
+ "kind": "OBJECT",
102923
+ "name": "DataProductDryRunTableCounts",
102924
+ "possibleTypes": null
102925
+ },
102836
102926
  {
102837
102927
  "description": null,
102838
102928
  "enumValues": null,
pycarlo/lib/schema.py CHANGED
@@ -18227,6 +18227,25 @@ class DataProductConnection(sgqlc.types.relay.Connection):
18227
18227
  """Contains the nodes in this connection."""
18228
18228
 
18229
18229
 
18230
+ class DataProductDryRunTableCounts(sgqlc.types.Type):
18231
+ __schema__ = schema
18232
+ __field_names__ = (
18233
+ "total_asset_count",
18234
+ "total_asset_monitored_count",
18235
+ "total_asset_unmonitored_count",
18236
+ )
18237
+ total_asset_count = sgqlc.types.Field(Int, graphql_name="totalAssetCount")
18238
+ """Total count of assets that would be in the data product"""
18239
+
18240
+ total_asset_monitored_count = sgqlc.types.Field(Int, graphql_name="totalAssetMonitoredCount")
18241
+ """Total count of already monitored assets"""
18242
+
18243
+ total_asset_unmonitored_count = sgqlc.types.Field(
18244
+ Int, graphql_name="totalAssetUnmonitoredCount"
18245
+ )
18246
+ """Total count of yet unmonitored assets"""
18247
+
18248
+
18230
18249
  class DataProductEdge(sgqlc.types.Type):
18231
18250
  """A Relay edge containing a `DataProduct` and its cursor."""
18232
18251
 
@@ -45085,6 +45104,7 @@ class Query(sgqlc.types.Type):
45085
45104
  "get_data_product_upstream_counts",
45086
45105
  "get_data_product_audiences",
45087
45106
  "get_top_warehouse_for_data_product_mcons",
45107
+ "get_data_product_dry_run_counts",
45088
45108
  "parse_query",
45089
45109
  "ping_data_collector",
45090
45110
  "get_ms_teams_integrations",
@@ -47886,6 +47906,31 @@ class Query(sgqlc.types.Type):
47886
47906
  * `mcons` (`[String]!`): List of MCONs to analyze
47887
47907
  """
47888
47908
 
47909
+ get_data_product_dry_run_counts = sgqlc.types.Field(
47910
+ DataProductDryRunTableCounts,
47911
+ graphql_name="getDataProductDryRunCounts",
47912
+ args=sgqlc.types.ArgDict(
47913
+ (
47914
+ (
47915
+ "mcons",
47916
+ sgqlc.types.Arg(
47917
+ sgqlc.types.non_null(sgqlc.types.list_of(String)),
47918
+ graphql_name="mcons",
47919
+ default=None,
47920
+ ),
47921
+ ),
47922
+ )
47923
+ ),
47924
+ )
47925
+ """(experimental) Return asset counts for a data product had it been
47926
+ created from these MCONs
47927
+
47928
+ Arguments:
47929
+
47930
+ * `mcons` (`[String]!`): MCON of assets to create data product
47931
+ from
47932
+ """
47933
+
47889
47934
  parse_query = sgqlc.types.Field(
47890
47935
  "SqlParserResult",
47891
47936
  graphql_name="parseQuery",
@@ -69267,6 +69312,7 @@ class UserAuthorizationOutput(sgqlc.types.Type):
69267
69312
  "domain_restrictions",
69268
69313
  "permissions",
69269
69314
  "performance_dashboard_access",
69315
+ "can_edit_table_monitors",
69270
69316
  )
69271
69317
  groups = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name="groups")
69272
69318
  """List of the groups this user is a member of."""
@@ -69291,6 +69337,9 @@ class UserAuthorizationOutput(sgqlc.types.Type):
69291
69337
  "ValidatePerformanceDashboardAccessResponse", graphql_name="performanceDashboardAccess"
69292
69338
  )
69293
69339
 
69340
+ can_edit_table_monitors = sgqlc.types.Field(Boolean, graphql_name="canEditTableMonitors")
69341
+ """Whether the user can create, update or delete table monitors."""
69342
+
69294
69343
 
69295
69344
  class UserBasicInfoConnection(sgqlc.types.relay.Connection):
69296
69345
  __schema__ = schema
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pycarlo
3
- Version: 0.10.223
3
+ Version: 0.10.225
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=n8x0vhUuw44yzK2Uk9i4nO2N884OwRJhTD4NXOHmUh4,6430140
39
- pycarlo/lib/schema.py,sha256=a8aYbnOOD1LoyiTz8MUXaOjunjEeqOdq5BfgH07rVi8,2795541
40
- pycarlo-0.10.223.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
- pycarlo-0.10.223.dist-info/METADATA,sha256=8JnoPGVMDpRj8WV2AWHkmwm-j_r_d_hSIBpzZuXVxio,8742
42
- pycarlo-0.10.223.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
- pycarlo-0.10.223.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
- pycarlo-0.10.223.dist-info/RECORD,,
38
+ pycarlo/lib/schema.json,sha256=TNALZiPvK5svZrKlIZV2GWdqEwcYwWu76r2bGHVDLuc,6433123
39
+ pycarlo/lib/schema.py,sha256=ywJudjoIDE8SHD8aLrLEBNCr9WuknS_r2iNKPWMEsL4,2797180
40
+ pycarlo-0.10.225.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
+ pycarlo-0.10.225.dist-info/METADATA,sha256=SbJdEJTVLWoH82p5J2coaQVjcHMq83NmEuvDEjhb0gs,8742
42
+ pycarlo-0.10.225.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
+ pycarlo-0.10.225.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
+ pycarlo-0.10.225.dist-info/RECORD,,