pycarlo 0.10.196__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
@@ -4796,7 +4796,18 @@
4796
4796
  }
4797
4797
  },
4798
4798
  {
4799
- "args": [],
4799
+ "args": [
4800
+ {
4801
+ "defaultValue": "true",
4802
+ "description": "Whether to include the MCP keys created by service accounts",
4803
+ "name": "includeCreatedByServiceAccounts",
4804
+ "type": {
4805
+ "kind": "SCALAR",
4806
+ "name": "Boolean",
4807
+ "ofType": null
4808
+ }
4809
+ }
4810
+ ],
4800
4811
  "deprecationReason": null,
4801
4812
  "description": "(experimental) Retrieve MCP integration keys created by the current user",
4802
4813
  "isDeprecated": false,
@@ -174081,57 +174092,6 @@
174081
174092
  "ofType": null
174082
174093
  }
174083
174094
  },
174084
- {
174085
- "args": [
174086
- {
174087
- "defaultValue": null,
174088
- "description": "ID of the connection to migrate",
174089
- "name": "connectionId",
174090
- "type": {
174091
- "kind": "NON_NULL",
174092
- "name": null,
174093
- "ofType": {
174094
- "kind": "SCALAR",
174095
- "name": "UUID",
174096
- "ofType": null
174097
- }
174098
- }
174099
- },
174100
- {
174101
- "defaultValue": null,
174102
- "description": "Configuration for the Databricks sql warehouse.",
174103
- "name": "databricksConfig",
174104
- "type": {
174105
- "kind": "NON_NULL",
174106
- "name": null,
174107
- "ofType": {
174108
- "kind": "INPUT_OBJECT",
174109
- "name": "DatabricksSqlWarehouseInput",
174110
- "ofType": null
174111
- }
174112
- }
174113
- },
174114
- {
174115
- "defaultValue": "false",
174116
- "description": "Set to true to test changes before saving",
174117
- "name": "shouldValidate",
174118
- "type": {
174119
- "kind": "SCALAR",
174120
- "name": "Boolean",
174121
- "ofType": null
174122
- }
174123
- }
174124
- ],
174125
- "deprecationReason": null,
174126
- "description": "Migrate an existing databricks connection to use a sql warehouse",
174127
- "isDeprecated": false,
174128
- "name": "migrateDatabricksSqlWarehouse",
174129
- "type": {
174130
- "kind": "OBJECT",
174131
- "name": "DatabricksSqlWarehouseConnectionMigration",
174132
- "ofType": null
174133
- }
174134
- },
174135
174095
  {
174136
174096
  "args": [
174137
174097
  {
@@ -194960,29 +194920,6 @@
194960
194920
  "name": "DeleteEventOnboardingData",
194961
194921
  "possibleTypes": null
194962
194922
  },
194963
- {
194964
- "description": "Migrate an existing databricks connection to use a sql warehouse",
194965
- "enumValues": null,
194966
- "fields": [
194967
- {
194968
- "args": [],
194969
- "deprecationReason": null,
194970
- "description": null,
194971
- "isDeprecated": false,
194972
- "name": "success",
194973
- "type": {
194974
- "kind": "SCALAR",
194975
- "name": "Boolean",
194976
- "ofType": null
194977
- }
194978
- }
194979
- ],
194980
- "inputFields": null,
194981
- "interfaces": [],
194982
- "kind": "OBJECT",
194983
- "name": "DatabricksSqlWarehouseConnectionMigration",
194984
- "possibleTypes": null
194985
- },
194986
194923
  {
194987
194924
  "description": "Enable/disable an account level feature",
194988
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",
@@ -47752,10 +47706,27 @@ class Query(sgqlc.types.Type):
47752
47706
  """
47753
47707
 
47754
47708
  get_my_mcp_integration_keys = sgqlc.types.Field(
47755
- sgqlc.types.list_of(IntegrationKeyMetadata), graphql_name="getMyMcpIntegrationKeys"
47709
+ sgqlc.types.list_of(IntegrationKeyMetadata),
47710
+ graphql_name="getMyMcpIntegrationKeys",
47711
+ args=sgqlc.types.ArgDict(
47712
+ (
47713
+ (
47714
+ "include_created_by_service_accounts",
47715
+ sgqlc.types.Arg(
47716
+ Boolean, graphql_name="includeCreatedByServiceAccounts", default=True
47717
+ ),
47718
+ ),
47719
+ )
47720
+ ),
47756
47721
  )
47757
47722
  """(experimental) Retrieve MCP integration keys created by the
47758
47723
  current user
47724
+
47725
+ Arguments:
47726
+
47727
+ * `include_created_by_service_accounts` (`Boolean`): Whether to
47728
+ include the MCP keys created by service accounts (default:
47729
+ `true`)
47759
47730
  """
47760
47731
 
47761
47732
  get_opsgenie_integrations = sgqlc.types.Field(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pycarlo
3
- Version: 0.10.196
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=VH9Oa4XS4D2wgcpO7WKOn-dg9tNJtkqqREXB-hVSjQA,6348559
39
- pycarlo/lib/schema.py,sha256=-_90Hv3J2DL9DilenddmJDJAHTyqymfBR4Fn81GztTM,2764433
40
- pycarlo-0.10.196.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
- pycarlo-0.10.196.dist-info/METADATA,sha256=f0rSzKRurBGS5F0WpwwlL3zJkF3JF3ltGwSO8pni78w,8742
42
- pycarlo-0.10.196.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
- pycarlo-0.10.196.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
- pycarlo-0.10.196.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,,