pycarlo 0.10.197__py3-none-any.whl → 0.10.198__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
@@ -174092,57 +174092,6 @@
174092
174092
  "ofType": null
174093
174093
  }
174094
174094
  },
174095
- {
174096
- "args": [
174097
- {
174098
- "defaultValue": null,
174099
- "description": "ID of the connection to migrate",
174100
- "name": "connectionId",
174101
- "type": {
174102
- "kind": "NON_NULL",
174103
- "name": null,
174104
- "ofType": {
174105
- "kind": "SCALAR",
174106
- "name": "UUID",
174107
- "ofType": null
174108
- }
174109
- }
174110
- },
174111
- {
174112
- "defaultValue": null,
174113
- "description": "Configuration for the Databricks sql warehouse.",
174114
- "name": "databricksConfig",
174115
- "type": {
174116
- "kind": "NON_NULL",
174117
- "name": null,
174118
- "ofType": {
174119
- "kind": "INPUT_OBJECT",
174120
- "name": "DatabricksSqlWarehouseInput",
174121
- "ofType": null
174122
- }
174123
- }
174124
- },
174125
- {
174126
- "defaultValue": "false",
174127
- "description": "Set to true to test changes before saving",
174128
- "name": "shouldValidate",
174129
- "type": {
174130
- "kind": "SCALAR",
174131
- "name": "Boolean",
174132
- "ofType": null
174133
- }
174134
- }
174135
- ],
174136
- "deprecationReason": null,
174137
- "description": "Migrate an existing databricks connection to use a sql warehouse",
174138
- "isDeprecated": false,
174139
- "name": "migrateDatabricksSqlWarehouse",
174140
- "type": {
174141
- "kind": "OBJECT",
174142
- "name": "DatabricksSqlWarehouseConnectionMigration",
174143
- "ofType": null
174144
- }
174145
- },
174146
174095
  {
174147
174096
  "args": [
174148
174097
  {
@@ -194971,29 +194920,6 @@
194971
194920
  "name": "DeleteEventOnboardingData",
194972
194921
  "possibleTypes": null
194973
194922
  },
194974
- {
194975
- "description": "Migrate an existing databricks connection to use a sql warehouse",
194976
- "enumValues": null,
194977
- "fields": [
194978
- {
194979
- "args": [],
194980
- "deprecationReason": null,
194981
- "description": null,
194982
- "isDeprecated": false,
194983
- "name": "success",
194984
- "type": {
194985
- "kind": "SCALAR",
194986
- "name": "Boolean",
194987
- "ofType": null
194988
- }
194989
- }
194990
- ],
194991
- "inputFields": null,
194992
- "interfaces": [],
194993
- "kind": "OBJECT",
194994
- "name": "DatabricksSqlWarehouseConnectionMigration",
194995
- "possibleTypes": null
194996
- },
194997
194923
  {
194998
194924
  "description": "Enable/disable an account level feature",
194999
194925
  "enumValues": null,
pycarlo/lib/schema.py CHANGED
@@ -18384,14 +18384,6 @@ class DatabricksNotebookLink(sgqlc.types.Type):
18384
18384
  """Source location used to create the notebook link."""
18385
18385
 
18386
18386
 
18387
- class DatabricksSqlWarehouseConnectionMigration(sgqlc.types.Type):
18388
- """Migrate an existing databricks connection to use a sql warehouse"""
18389
-
18390
- __schema__ = schema
18391
- __field_names__ = ("success",)
18392
- success = sgqlc.types.Field(Boolean, graphql_name="success")
18393
-
18394
-
18395
18387
  class DatabricksTaskConnection(sgqlc.types.relay.Connection):
18396
18388
  __schema__ = schema
18397
18389
  __field_names__ = ("page_info", "edges")
@@ -25961,7 +25953,6 @@ class Mutation(sgqlc.types.Type):
25961
25953
  "add_databricks_connection",
25962
25954
  "save_event_onboarding_data",
25963
25955
  "delete_event_onboarding_data",
25964
- "migrate_databricks_sql_warehouse",
25965
25956
  "toggle_account_feature",
25966
25957
  "set_tutorial_state",
25967
25958
  "set_data_lake_catalog_mappings",
@@ -41308,43 +41299,6 @@ class Mutation(sgqlc.types.Type):
41308
41299
  )
41309
41300
  """Delete stored event onboarding configuration"""
41310
41301
 
41311
- migrate_databricks_sql_warehouse = sgqlc.types.Field(
41312
- DatabricksSqlWarehouseConnectionMigration,
41313
- graphql_name="migrateDatabricksSqlWarehouse",
41314
- args=sgqlc.types.ArgDict(
41315
- (
41316
- (
41317
- "connection_id",
41318
- sgqlc.types.Arg(
41319
- sgqlc.types.non_null(UUID), graphql_name="connectionId", default=None
41320
- ),
41321
- ),
41322
- (
41323
- "databricks_config",
41324
- sgqlc.types.Arg(
41325
- sgqlc.types.non_null(DatabricksSqlWarehouseInput),
41326
- graphql_name="databricksConfig",
41327
- default=None,
41328
- ),
41329
- ),
41330
- (
41331
- "should_validate",
41332
- sgqlc.types.Arg(Boolean, graphql_name="shouldValidate", default=False),
41333
- ),
41334
- )
41335
- ),
41336
- )
41337
- """Migrate an existing databricks connection to use a sql warehouse
41338
-
41339
- Arguments:
41340
-
41341
- * `connection_id` (`UUID!`): ID of the connection to migrate
41342
- * `databricks_config` (`DatabricksSqlWarehouseInput!`):
41343
- Configuration for the Databricks sql warehouse.
41344
- * `should_validate` (`Boolean`): Set to true to test changes
41345
- before saving (default: `false`)
41346
- """
41347
-
41348
41302
  toggle_account_feature = sgqlc.types.Field(
41349
41303
  "ToggleAccountFeature",
41350
41304
  graphql_name="toggleAccountFeature",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pycarlo
3
- Version: 0.10.197
3
+ Version: 0.10.198
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=NzurEixwh7W2j5MpRPscZbt6-37EOz3oYmzAOKAOw48,6348969
39
- pycarlo/lib/schema.py,sha256=Ao_EmuzczpmqE8mTDi5PyvOW__Nl-zjtKzOoELCmFSA,2764929
40
- pycarlo-0.10.197.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
- pycarlo-0.10.197.dist-info/METADATA,sha256=uO1r1k8SKhSBOxfD1LWx0MsZeKFu7JgCm6y_1KbihOc,8742
42
- pycarlo-0.10.197.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
- pycarlo-0.10.197.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
- pycarlo-0.10.197.dist-info/RECORD,,
38
+ pycarlo/lib/schema.json,sha256=Jl_DI0Fk0HTamB9TXnWxDPnOCLE8iNx0w-l1MvueWQk,6346428
39
+ pycarlo/lib/schema.py,sha256=T5j1YzGJPSlJT1IJqo_y-dUM8q3oZhkTrlzq8tsF9Fg,2763289
40
+ pycarlo-0.10.198.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
+ pycarlo-0.10.198.dist-info/METADATA,sha256=Y2S11ty73vvL_HN8A2pce8zM3tLcnUjR4Dd_BmYpnBM,8742
42
+ pycarlo-0.10.198.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
+ pycarlo-0.10.198.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
+ pycarlo-0.10.198.dist-info/RECORD,,