databricks-sdk 0.33.0__py3-none-any.whl → 0.35.0__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 databricks-sdk might be problematic. Click here for more details.

@@ -72,6 +72,9 @@ class Alert:
72
72
  lifecycle_state: Optional[LifecycleState] = None
73
73
  """The workspace state of the alert. Used for tracking trashed status."""
74
74
 
75
+ notify_on_ok: Optional[bool] = None
76
+ """Whether to notify alert subscribers when alert returns back to normal."""
77
+
75
78
  owner_user_name: Optional[str] = None
76
79
  """The owner's username. This field is set to "Unavailable" if the user has been deleted."""
77
80
 
@@ -105,6 +108,7 @@ class Alert:
105
108
  if self.display_name is not None: body['display_name'] = self.display_name
106
109
  if self.id is not None: body['id'] = self.id
107
110
  if self.lifecycle_state is not None: body['lifecycle_state'] = self.lifecycle_state.value
111
+ if self.notify_on_ok is not None: body['notify_on_ok'] = self.notify_on_ok
108
112
  if self.owner_user_name is not None: body['owner_user_name'] = self.owner_user_name
109
113
  if self.parent_path is not None: body['parent_path'] = self.parent_path
110
114
  if self.query_id is not None: body['query_id'] = self.query_id
@@ -124,6 +128,7 @@ class Alert:
124
128
  display_name=d.get('display_name', None),
125
129
  id=d.get('id', None),
126
130
  lifecycle_state=_enum(d, 'lifecycle_state', LifecycleState),
131
+ notify_on_ok=d.get('notify_on_ok', None),
127
132
  owner_user_name=d.get('owner_user_name', None),
128
133
  parent_path=d.get('parent_path', None),
129
134
  query_id=d.get('query_id', None),
@@ -454,6 +459,9 @@ class CancelExecutionResponse:
454
459
 
455
460
  @dataclass
456
461
  class Channel:
462
+ """Configures the channel name and DBSQL version of the warehouse. CHANNEL_NAME_CUSTOM should be
463
+ chosen only when `dbsql_version` is specified."""
464
+
457
465
  dbsql_version: Optional[str] = None
458
466
 
459
467
  name: Optional[ChannelName] = None
@@ -499,7 +507,6 @@ class ChannelName(Enum):
499
507
  CHANNEL_NAME_CURRENT = 'CHANNEL_NAME_CURRENT'
500
508
  CHANNEL_NAME_CUSTOM = 'CHANNEL_NAME_CUSTOM'
501
509
  CHANNEL_NAME_PREVIEW = 'CHANNEL_NAME_PREVIEW'
502
- CHANNEL_NAME_PREVIOUS = 'CHANNEL_NAME_PREVIOUS'
503
510
  CHANNEL_NAME_UNSPECIFIED = 'CHANNEL_NAME_UNSPECIFIED'
504
511
 
505
512
 
@@ -650,6 +657,9 @@ class CreateAlertRequestAlert:
650
657
  display_name: Optional[str] = None
651
658
  """The display name of the alert."""
652
659
 
660
+ notify_on_ok: Optional[bool] = None
661
+ """Whether to notify alert subscribers when alert returns back to normal."""
662
+
653
663
  parent_path: Optional[str] = None
654
664
  """The workspace path of the folder containing the alert."""
655
665
 
@@ -667,6 +677,7 @@ class CreateAlertRequestAlert:
667
677
  if self.custom_body is not None: body['custom_body'] = self.custom_body
668
678
  if self.custom_subject is not None: body['custom_subject'] = self.custom_subject
669
679
  if self.display_name is not None: body['display_name'] = self.display_name
680
+ if self.notify_on_ok is not None: body['notify_on_ok'] = self.notify_on_ok
670
681
  if self.parent_path is not None: body['parent_path'] = self.parent_path
671
682
  if self.query_id is not None: body['query_id'] = self.query_id
672
683
  if self.seconds_to_retrigger is not None: body['seconds_to_retrigger'] = self.seconds_to_retrigger
@@ -679,6 +690,7 @@ class CreateAlertRequestAlert:
679
690
  custom_body=d.get('custom_body', None),
680
691
  custom_subject=d.get('custom_subject', None),
681
692
  display_name=d.get('display_name', None),
693
+ notify_on_ok=d.get('notify_on_ok', None),
682
694
  parent_path=d.get('parent_path', None),
683
695
  query_id=d.get('query_id', None),
684
696
  seconds_to_retrigger=d.get('seconds_to_retrigger', None))
@@ -827,7 +839,8 @@ class CreateWarehouseRequest:
827
839
  """The amount of time in minutes that a SQL warehouse must be idle (i.e., no RUNNING queries)
828
840
  before it is automatically stopped.
829
841
 
830
- Supported values: - Must be == 0 or >= 10 mins - 0 indicates no autostop.
842
+ Supported values: - Must be >= 0 mins for serverless warehouses - Must be == 0 or >= 10 mins for
843
+ non-serverless warehouses - 0 indicates no autostop.
831
844
 
832
845
  Defaults to 120 mins"""
833
846
 
@@ -2693,6 +2706,9 @@ class ListAlertsResponseAlert:
2693
2706
  lifecycle_state: Optional[LifecycleState] = None
2694
2707
  """The workspace state of the alert. Used for tracking trashed status."""
2695
2708
 
2709
+ notify_on_ok: Optional[bool] = None
2710
+ """Whether to notify alert subscribers when alert returns back to normal."""
2711
+
2696
2712
  owner_user_name: Optional[str] = None
2697
2713
  """The owner's username. This field is set to "Unavailable" if the user has been deleted."""
2698
2714
 
@@ -2723,6 +2739,7 @@ class ListAlertsResponseAlert:
2723
2739
  if self.display_name is not None: body['display_name'] = self.display_name
2724
2740
  if self.id is not None: body['id'] = self.id
2725
2741
  if self.lifecycle_state is not None: body['lifecycle_state'] = self.lifecycle_state.value
2742
+ if self.notify_on_ok is not None: body['notify_on_ok'] = self.notify_on_ok
2726
2743
  if self.owner_user_name is not None: body['owner_user_name'] = self.owner_user_name
2727
2744
  if self.query_id is not None: body['query_id'] = self.query_id
2728
2745
  if self.seconds_to_retrigger is not None: body['seconds_to_retrigger'] = self.seconds_to_retrigger
@@ -2741,6 +2758,7 @@ class ListAlertsResponseAlert:
2741
2758
  display_name=d.get('display_name', None),
2742
2759
  id=d.get('id', None),
2743
2760
  lifecycle_state=_enum(d, 'lifecycle_state', LifecycleState),
2761
+ notify_on_ok=d.get('notify_on_ok', None),
2744
2762
  owner_user_name=d.get('owner_user_name', None),
2745
2763
  query_id=d.get('query_id', None),
2746
2764
  seconds_to_retrigger=d.get('seconds_to_retrigger', None),
@@ -4558,6 +4576,9 @@ class UpdateAlertRequestAlert:
4558
4576
  display_name: Optional[str] = None
4559
4577
  """The display name of the alert."""
4560
4578
 
4579
+ notify_on_ok: Optional[bool] = None
4580
+ """Whether to notify alert subscribers when alert returns back to normal."""
4581
+
4561
4582
  owner_user_name: Optional[str] = None
4562
4583
  """The owner's username. This field is set to "Unavailable" if the user has been deleted."""
4563
4584
 
@@ -4575,6 +4596,7 @@ class UpdateAlertRequestAlert:
4575
4596
  if self.custom_body is not None: body['custom_body'] = self.custom_body
4576
4597
  if self.custom_subject is not None: body['custom_subject'] = self.custom_subject
4577
4598
  if self.display_name is not None: body['display_name'] = self.display_name
4599
+ if self.notify_on_ok is not None: body['notify_on_ok'] = self.notify_on_ok
4578
4600
  if self.owner_user_name is not None: body['owner_user_name'] = self.owner_user_name
4579
4601
  if self.query_id is not None: body['query_id'] = self.query_id
4580
4602
  if self.seconds_to_retrigger is not None: body['seconds_to_retrigger'] = self.seconds_to_retrigger
@@ -4587,6 +4609,7 @@ class UpdateAlertRequestAlert:
4587
4609
  custom_body=d.get('custom_body', None),
4588
4610
  custom_subject=d.get('custom_subject', None),
4589
4611
  display_name=d.get('display_name', None),
4612
+ notify_on_ok=d.get('notify_on_ok', None),
4590
4613
  owner_user_name=d.get('owner_user_name', None),
4591
4614
  query_id=d.get('query_id', None),
4592
4615
  seconds_to_retrigger=d.get('seconds_to_retrigger', None))
@@ -6866,7 +6889,8 @@ class WarehousesAPI:
6866
6889
  The amount of time in minutes that a SQL warehouse must be idle (i.e., no RUNNING queries) before it
6867
6890
  is automatically stopped.
6868
6891
 
6869
- Supported values: - Must be == 0 or >= 10 mins - 0 indicates no autostop.
6892
+ Supported values: - Must be >= 0 mins for serverless warehouses - Must be == 0 or >= 10 mins for
6893
+ non-serverless warehouses - 0 indicates no autostop.
6870
6894
 
6871
6895
  Defaults to 120 mins
6872
6896
  :param channel: :class:`Channel` (optional)
@@ -1862,8 +1862,8 @@ class ReposAPI:
1862
1862
  path_prefix: Optional[str] = None) -> Iterator[RepoInfo]:
1863
1863
  """Get repos.
1864
1864
 
1865
- Returns repos that the calling user has Manage permissions on. Results are paginated with each page
1866
- containing twenty repos.
1865
+ Returns repos that the calling user has Manage permissions on. Use `next_page_token` to iterate
1866
+ through additional pages.
1867
1867
 
1868
1868
  :param next_page_token: str (optional)
1869
1869
  Token used to get the next page of results. If not specified, returns the first page of results as
databricks/sdk/version.py CHANGED
@@ -1 +1 @@
1
- __version__ = '0.33.0'
1
+ __version__ = '0.35.0'
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: databricks-sdk
3
- Version: 0.33.0
3
+ Version: 0.35.0
4
4
  Summary: Databricks SDK for Python (Beta)
5
5
  Home-page: https://databricks-sdk-py.readthedocs.io
6
6
  Author: Serge Smertin
@@ -40,9 +40,16 @@ Requires-Dist: requests-mock ; extra == 'dev'
40
40
  Requires-Dist: pyfakefs ; extra == 'dev'
41
41
  Requires-Dist: databricks-connect ; extra == 'dev'
42
42
  Requires-Dist: pytest-rerunfailures ; extra == 'dev'
43
+ Requires-Dist: openai ; extra == 'dev'
44
+ Requires-Dist: httpx ; extra == 'dev'
45
+ Requires-Dist: langchain-openai ; (python_version > "3.7") and extra == 'dev'
43
46
  Provides-Extra: notebook
44
47
  Requires-Dist: ipython (<9,>=8) ; extra == 'notebook'
45
48
  Requires-Dist: ipywidgets (<9,>=8) ; extra == 'notebook'
49
+ Provides-Extra: openai
50
+ Requires-Dist: openai ; extra == 'openai'
51
+ Requires-Dist: httpx ; extra == 'openai'
52
+ Requires-Dist: langchain-openai ; (python_version > "3.7") and extra == 'openai'
46
53
 
47
54
  # Databricks SDK for Python (Beta)
48
55
 
@@ -12,8 +12,22 @@ googleapis/google-auth-library-python - https://github.com/googleapis/google-aut
12
12
  Copyright google-auth-library-python authors
13
13
  License - https://github.com/googleapis/google-auth-library-python/blob/main/LICENSE
14
14
 
15
+ openai/openai-python - https://github.com/openai/openai-python
16
+ Copyright 2024 OpenAI
17
+ License - https://github.com/openai/openai-python/blob/main/LICENSE
18
+
15
19
  This software contains code from the following open source projects, licensed under the BSD (3-clause) license.
16
20
 
17
21
  x/oauth2 - https://cs.opensource.google/go/x/oauth2/+/master:oauth2.go
18
22
  Copyright 2014 The Go Authors. All rights reserved.
19
23
  License - https://cs.opensource.google/go/x/oauth2/+/master:LICENSE
24
+
25
+ encode/httpx - https://github.com/encode/httpx
26
+ Copyright 2019, Encode OSS Ltd
27
+ License - https://github.com/encode/httpx/blob/master/LICENSE.md
28
+
29
+ This software contains code from the following open source projects, licensed under the MIT license:
30
+
31
+ langchain-ai/langchain - https://github.com/langchain-ai/langchain/blob/master/libs/partners/openai
32
+ Copyright 2023 LangChain, Inc.
33
+ License - https://github.com/langchain-ai/langchain/blob/master/libs/partners/openai/LICENSE
@@ -1,11 +1,12 @@
1
1
  databricks/__init__.py,sha256=CF2MJcZFwbpn9TwQER8qnCDhkPooBGQNVkX4v7g6p3g,537
2
- databricks/sdk/__init__.py,sha256=ygrm8tyZL6FRTBb0mEzCAItXfa3FAXbvDL-cZm1Juaw,48921
2
+ databricks/sdk/__init__.py,sha256=A-5aOiuEgJPKounKicgO8gBLNc8e69cOECWcxJPaM1s,49057
3
+ databricks/sdk/_base_client.py,sha256=5fe2Yw6hWedoUGhSf0lR8W7a80Uv081Jg-NUknnI2WM,13419
3
4
  databricks/sdk/_property.py,sha256=sGjsipeFrjMBSVPjtIb0HNCRcMIhFpVx6wq4BkC3LWs,1636
4
5
  databricks/sdk/azure.py,sha256=8P7nEdun0hbQCap9Ojo7yZse_JHxnhYsE6ApojnPz7Q,1009
5
6
  databricks/sdk/casing.py,sha256=NKYPrfPbQjM7lU4hhNQK3z1jb_VEA29BfH4FEdby2tg,1137
6
7
  databricks/sdk/clock.py,sha256=Ivlow0r_TkXcTJ8UXkxSA0czKrY0GvwHAeOvjPkJnAQ,1360
7
8
  databricks/sdk/config.py,sha256=UaD-UcgvvohbrDmvbQgUt-KFd8FP1w3iWvaocsoIz9k,21169
8
- databricks/sdk/core.py,sha256=PL3RdTMEOtcy4KPt6TKuL6ylm8RaHBXiqGbYwjRu5Gk,14679
9
+ databricks/sdk/core.py,sha256=s8W2UlRg8y9vCencdiFocYs49hLS3bltswLi00_cn38,4086
9
10
  databricks/sdk/credentials_provider.py,sha256=H_eHS2uMf8avNHCfES6xxS9ybSY5_6Ipt-MxA8bKOVo,34720
10
11
  databricks/sdk/data_plane.py,sha256=Er2z2fT-KVupJKzGozGGZ-jCQ3AmDWq-DZppahIK6tU,2591
11
12
  databricks/sdk/dbutils.py,sha256=HFCuB-el6SFKhF8qRfJxYANtyLTm-VG9GtQuQgZXFkM,15741
@@ -14,7 +15,7 @@ databricks/sdk/oauth.py,sha256=KzcJPYLL3JL6RDvf_Q8SDAaF9xSaoYNCRD4rYInZDuo,18319
14
15
  databricks/sdk/py.typed,sha256=pSvaHpbY1UPNEXyVFUjlgBhjPFZMmVC_UNrPC7eMOHI,74
15
16
  databricks/sdk/retries.py,sha256=WgLh12bwdBc6fCQlaig3kKu18cVhPzFDGsspvq629Ew,2454
16
17
  databricks/sdk/useragent.py,sha256=I2-VnJSE6cg9QV4GXkoQSkHsEB3bDvRGgkawbBNl4G0,5540
17
- databricks/sdk/version.py,sha256=D3kWqPpTzEr3xXH68tXIQW4coER5SPFwraZnLeNVhuY,23
18
+ databricks/sdk/version.py,sha256=v-SUCw8aYFwwUo18pb8PUZgCvB3GcqP_vOda81M_gxI,23
18
19
  databricks/sdk/_widgets/__init__.py,sha256=Qm3JB8LmdPgEn_-VgxKkodTO4gn6OdaDPwsYcDmeIRI,2667
19
20
  databricks/sdk/_widgets/default_widgets_utils.py,sha256=Rk59AFzVYVpOektB_yC_7j-vSt5OdtZA85IlG0kw0xA,1202
20
21
  databricks/sdk/_widgets/ipywidgets_utils.py,sha256=P-AyGeahPiX3S59mxpAMgffi4gyJ0irEOY7Ekkn9nQ0,2850
@@ -32,34 +33,35 @@ databricks/sdk/logger/__init__.py,sha256=0_sSQfDkaFGqMHZUVw-g_Ax-RFmOv0Z6NjxCVAe
32
33
  databricks/sdk/logger/round_trip_logger.py,sha256=SMtHDfdqy5Noge2iZO-LpuEm92rz3A5ANfzRzPe6qEU,4794
33
34
  databricks/sdk/mixins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
34
35
  databricks/sdk/mixins/compute.py,sha256=khb00BzBckc4RLUF4-GnNMCSO5lXKt_XYMM3IhiUxlA,11237
35
- databricks/sdk/mixins/files.py,sha256=dUVheOusKIy6idj7E4g4vsi4q7NZw-_Q6sBoNw_MVw4,20539
36
+ databricks/sdk/mixins/files.py,sha256=bLGFu1kVIQECTmuc_9jUf-n_Cth4COBMbmKqAYxkEkM,20542
37
+ databricks/sdk/mixins/open_ai_client.py,sha256=rwHJUB6v0V4CVmtMZ4MkNACAlM3JWdJOPR6-kroORSw,2204
36
38
  databricks/sdk/mixins/workspace.py,sha256=dWMNvuEi8jJ5wMhrDt1LiqxNdWSsmEuDTzrcZR-eJzY,4896
37
39
  databricks/sdk/runtime/__init__.py,sha256=9NnZkBzeZXZRQxcE1qKzAszQEzcpIgpL7lQzW3_kxEU,7266
38
40
  databricks/sdk/runtime/dbutils_stub.py,sha256=UFbRZF-bBcwxjbv_pxma00bjNtktLLaYpo8oHRc4-9g,11421
39
41
  databricks/sdk/service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
40
42
  databricks/sdk/service/_internal.py,sha256=nWbJfW5eJCQgAZ3TmA26xoWb6SNZ5N76ZA8bO1N4AsU,1961
41
- databricks/sdk/service/apps.py,sha256=DwCk41HgdhSECYO727Hrj89CWwcximBQDLfPxJw1n5g,40780
43
+ databricks/sdk/service/apps.py,sha256=2l2m9CtmlF5A5XybsGEnAKADAT4ys1x8wvBT8jMts1E,48902
42
44
  databricks/sdk/service/billing.py,sha256=Ru6GumI-M4_X71HTMj2VSVBQ7tRMTrwKzhdwNyiC3fA,69733
43
- databricks/sdk/service/catalog.py,sha256=dfkwQ5EW85pfpJCfvEfEdI1vW_rjQKsuMeysWkl35Wg,447713
45
+ databricks/sdk/service/catalog.py,sha256=jUs3tX-XhjQjo-yVqBYShs9zkdmE5KuuT27eUpMKG8Q,448457
44
46
  databricks/sdk/service/compute.py,sha256=5vVDW2F8bh5E-EeIomWIRr3Mk_rhIAMnlOEG3IH30DQ,436163
45
- databricks/sdk/service/dashboards.py,sha256=gIrwmhUoH_CD7q8EKIDDatGcP0PVw08cZ033HhYhBic,77898
47
+ databricks/sdk/service/dashboards.py,sha256=y9a2cBl6-NU9YrCNzEZ-PvJAOQDum3hOxMvl4DC7d-s,78274
46
48
  databricks/sdk/service/files.py,sha256=VCt83YSI9rhQexmxaQdrUXHq2UCYfZcDMLvJx5X6n1M,38162
47
49
  databricks/sdk/service/iam.py,sha256=P_2k7_MDV-Iw4heUD78i3XQriSoYZX1Jhhfnn4gS4Zk,148548
48
- databricks/sdk/service/jobs.py,sha256=iTscyM5A-w9StEhogxZRxEnlqTQpyH6QcKKLSG2S0ao,333816
50
+ databricks/sdk/service/jobs.py,sha256=hUOnr78B0Hh_EHzY9VHUA_6mxxidtFoPXA-G8RbVfgM,337787
49
51
  databricks/sdk/service/marketplace.py,sha256=Fgk_8V9zbQ8QcNPUw-yZehHv8LgnDtFJUe-YixjxkYo,136405
50
52
  databricks/sdk/service/ml.py,sha256=KG5nG9ap1IJejha2JFhX13f61C6tShO0AnHvLNDz0KE,236858
51
53
  databricks/sdk/service/oauth2.py,sha256=67pr6gUnYwO6BaGNQfjW1qvcEB3ejdNbI9Pmvqs5bSE,39928
52
- databricks/sdk/service/pipelines.py,sha256=EaANZvXcGVg0ynTRvznL8e0tlVK4aqJmpMJzSedXvzU,122511
54
+ databricks/sdk/service/pipelines.py,sha256=-cI6VvG2VXrjwMec1avCxXoGLa0tGbp3UoI-eB_iZH0,124987
53
55
  databricks/sdk/service/provisioning.py,sha256=DP4Df4X-p0JEUk4zAJQhjX_wxpMi673OKLXFhxl6YSE,142678
54
56
  databricks/sdk/service/serving.py,sha256=IBDul9fW1dYSINYkV4lOFamM6SF7Wy3ru5dUT_B2t0w,156476
55
- databricks/sdk/service/settings.py,sha256=WkfC2OcLyfd5Lo1CNJk-VxLA1LnQUaADdeEmX5rC7Po,212437
56
- databricks/sdk/service/sharing.py,sha256=kalJYd0v1SwuGhlCaq4l2ZhzNlev9OwNbCXFIOKIMXU,113253
57
- databricks/sdk/service/sql.py,sha256=xtTgpLm0XahlEQOY8mHM_CscdMOODlQ_4xLU2sGaQa8,324906
57
+ databricks/sdk/service/settings.py,sha256=pYIm3yjamDoiZ2z54AtuQDS-Wj2dIEdTJBmZkBocKNE,221129
58
+ databricks/sdk/service/sharing.py,sha256=R6MoLh8BZ01OrezAsss53rY2mhbJKGkq-fm7nrYtFkQ,113261
59
+ databricks/sdk/service/sql.py,sha256=UjOtKxlVRrxL7TA3vfsXSoWWxWzzcYvdJrHoRfrqZ90,326240
58
60
  databricks/sdk/service/vectorsearch.py,sha256=a5Y4vrS_oAJJqa69XwKMANhGuZi5glS0PSXBXz1bKGU,62961
59
- databricks/sdk/service/workspace.py,sha256=uCIlPL-ob9rUwt5ZJ5qAi_OH8K0neWKixm6T_tKHnoU,106662
60
- databricks_sdk-0.33.0.dist-info/LICENSE,sha256=afBgTZo-JsYqj4VOjnejBetMuHKcFR30YobDdpVFkqY,11411
61
- databricks_sdk-0.33.0.dist-info/METADATA,sha256=LuipDw_87rx5A0qwiPQ5yEWYw204JwCS8jYqmNnvO3c,37967
62
- databricks_sdk-0.33.0.dist-info/NOTICE,sha256=Qnc0m8JjZNTDV80y0h1aJGvsr4GqM63m1nr2VTypg6E,963
63
- databricks_sdk-0.33.0.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
64
- databricks_sdk-0.33.0.dist-info/top_level.txt,sha256=7kRdatoSgU0EUurRQJ_3F1Nv4EOSHWAr6ng25tJOJKU,11
65
- databricks_sdk-0.33.0.dist-info/RECORD,,
61
+ databricks/sdk/service/workspace.py,sha256=b5EWqWB2fVX15eGw_Dkl554Jug0tuNag5ZpkDFn53ec,106659
62
+ databricks_sdk-0.35.0.dist-info/LICENSE,sha256=afBgTZo-JsYqj4VOjnejBetMuHKcFR30YobDdpVFkqY,11411
63
+ databricks_sdk-0.35.0.dist-info/METADATA,sha256=xD1j7lAueJNimnhHIYqKz14UX6Jplaaclq7tI8G_Rt4,38309
64
+ databricks_sdk-0.35.0.dist-info/NOTICE,sha256=tkRcQYA1k68wDLcnOWbg2xJDsUOJw8G8DGBhb8dnI3w,1588
65
+ databricks_sdk-0.35.0.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
66
+ databricks_sdk-0.35.0.dist-info/top_level.txt,sha256=7kRdatoSgU0EUurRQJ_3F1Nv4EOSHWAr6ng25tJOJKU,11
67
+ databricks_sdk-0.35.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.1.0)
2
+ Generator: setuptools (75.2.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5