pycarlo 0.10.162__py3-none-any.whl → 0.10.164__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
@@ -36469,6 +36469,22 @@
36469
36469
  }
36470
36470
  }
36471
36471
  },
36472
+ {
36473
+ "args": [],
36474
+ "deprecationReason": null,
36475
+ "description": null,
36476
+ "isDeprecated": false,
36477
+ "name": "title",
36478
+ "type": {
36479
+ "kind": "NON_NULL",
36480
+ "name": null,
36481
+ "ofType": {
36482
+ "kind": "SCALAR",
36483
+ "name": "String",
36484
+ "ofType": null
36485
+ }
36486
+ }
36487
+ },
36472
36488
  {
36473
36489
  "args": [],
36474
36490
  "deprecationReason": null,
@@ -142867,6 +142883,26 @@
142867
142883
  "name": "String",
142868
142884
  "ofType": null
142869
142885
  }
142886
+ },
142887
+ {
142888
+ "defaultValue": null,
142889
+ "description": "Azure Tenant ID (for M2M oauth with an Entra ID managed service principal)",
142890
+ "name": "azureTenantId",
142891
+ "type": {
142892
+ "kind": "SCALAR",
142893
+ "name": "String",
142894
+ "ofType": null
142895
+ }
142896
+ },
142897
+ {
142898
+ "defaultValue": null,
142899
+ "description": "Azure ARM resource ID of the Databricks workspace (for M2M oauth with an Entra ID managed service principal)",
142900
+ "name": "azureWorkspaceResourceId",
142901
+ "type": {
142902
+ "kind": "SCALAR",
142903
+ "name": "String",
142904
+ "ofType": null
142905
+ }
142870
142906
  }
142871
142907
  ],
142872
142908
  "interfaces": null,
pycarlo/lib/schema.py CHANGED
@@ -6857,6 +6857,8 @@ class DatabricksSqlWarehouseInput(sgqlc.types.Input):
6857
6857
  "databricks_client_id",
6858
6858
  "databricks_client_secret",
6859
6859
  "databricks_workspace_id",
6860
+ "azure_tenant_id",
6861
+ "azure_workspace_resource_id",
6860
6862
  )
6861
6863
  databricks_workspace_url = sgqlc.types.Field(
6862
6864
  sgqlc.types.non_null(String), graphql_name="databricksWorkspaceUrl"
@@ -6880,6 +6882,16 @@ class DatabricksSqlWarehouseInput(sgqlc.types.Input):
6880
6882
  databricks_workspace_id = sgqlc.types.Field(String, graphql_name="databricksWorkspaceId")
6881
6883
  """Databricks workspace ID"""
6882
6884
 
6885
+ azure_tenant_id = sgqlc.types.Field(String, graphql_name="azureTenantId")
6886
+ """Azure Tenant ID (for M2M oauth with an Entra ID managed service
6887
+ principal)
6888
+ """
6889
+
6890
+ azure_workspace_resource_id = sgqlc.types.Field(String, graphql_name="azureWorkspaceResourceId")
6891
+ """Azure ARM resource ID of the Databricks workspace (for M2M oauth
6892
+ with an Entra ID managed service principal)
6893
+ """
6894
+
6883
6895
 
6884
6896
  class DatabricksSqlWarehouseUpdateConnectionDetails(sgqlc.types.Input):
6885
6897
  __schema__ = schema
@@ -65938,6 +65950,7 @@ class TransformFunction(sgqlc.types.Type):
65938
65950
  __schema__ = schema
65939
65951
  __field_names__ = (
65940
65952
  "name",
65953
+ "title",
65941
65954
  "description",
65942
65955
  "sql",
65943
65956
  "supported_types",
@@ -65954,6 +65967,8 @@ class TransformFunction(sgqlc.types.Type):
65954
65967
  )
65955
65968
  name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="name")
65956
65969
 
65970
+ title = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="title")
65971
+
65957
65972
  description = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="description")
65958
65973
 
65959
65974
  sql = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="sql")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pycarlo
3
- Version: 0.10.162
3
+ Version: 0.10.164
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=Ra_vXxFvGJr31Lzt7JAD5d7nLRZSoNHlt24cLzac7nM,6230158
39
- pycarlo/lib/schema.py,sha256=5dBpObbnwaBdwv8NhMYy1apxvf6Y7RsPpgqCUAD-wFE,2704982
40
- pycarlo-0.10.162.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
- pycarlo-0.10.162.dist-info/METADATA,sha256=Y2Xn7kxGRZ1WHqqdnphP8OWd-M2dRVHVvxS87tAPeEU,8742
42
- pycarlo-0.10.162.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
- pycarlo-0.10.162.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
- pycarlo-0.10.162.dist-info/RECORD,,
38
+ pycarlo/lib/schema.json,sha256=AClN31TQ1eI1WU1ONPFcd0CBkyfM-9AYAe2_6rPPPsY,6231359
39
+ pycarlo/lib/schema.py,sha256=EzH63qpfsfcya_gTv_YHOtSwTvYEPeW0MDP1VvsiSvQ,2705551
40
+ pycarlo-0.10.164.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
+ pycarlo-0.10.164.dist-info/METADATA,sha256=KSrqXZQhUD0P0bwvb-Aj_l-DJAhQdyt3pXZ7LvbtW8s,8742
42
+ pycarlo-0.10.164.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
+ pycarlo-0.10.164.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
+ pycarlo-0.10.164.dist-info/RECORD,,