unitycatalog-client 0.2.1__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.
Files changed (82) hide show
  1. unitycatalog/client/__init__.py +102 -0
  2. unitycatalog/client/api/__init__.py +13 -0
  3. unitycatalog/client/api/catalogs_api.py +1404 -0
  4. unitycatalog/client/api/functions_api.py +1135 -0
  5. unitycatalog/client/api/grants_api.py +630 -0
  6. unitycatalog/client/api/model_versions_api.py +1748 -0
  7. unitycatalog/client/api/registered_models_api.py +1438 -0
  8. unitycatalog/client/api/schemas_api.py +1421 -0
  9. unitycatalog/client/api/tables_api.py +1135 -0
  10. unitycatalog/client/api/temporary_credentials_api.py +1109 -0
  11. unitycatalog/client/api/volumes_api.py +1421 -0
  12. unitycatalog/client/api_client.py +773 -0
  13. unitycatalog/client/api_response.py +21 -0
  14. unitycatalog/client/configuration.py +432 -0
  15. unitycatalog/client/exceptions.py +199 -0
  16. unitycatalog/client/models/__init__.py +77 -0
  17. unitycatalog/client/models/aws_credentials.py +91 -0
  18. unitycatalog/client/models/azure_user_delegation_sas.py +87 -0
  19. unitycatalog/client/models/catalog_info.py +103 -0
  20. unitycatalog/client/models/column_info.py +108 -0
  21. unitycatalog/client/models/column_type_name.py +56 -0
  22. unitycatalog/client/models/create_catalog.py +91 -0
  23. unitycatalog/client/models/create_function.py +163 -0
  24. unitycatalog/client/models/create_function_request.py +91 -0
  25. unitycatalog/client/models/create_model_version.py +97 -0
  26. unitycatalog/client/models/create_registered_model.py +93 -0
  27. unitycatalog/client/models/create_schema.py +93 -0
  28. unitycatalog/client/models/create_table.py +113 -0
  29. unitycatalog/client/models/create_volume_request_content.py +99 -0
  30. unitycatalog/client/models/data_source_format.py +42 -0
  31. unitycatalog/client/models/dependency.py +97 -0
  32. unitycatalog/client/models/dependency_list.py +95 -0
  33. unitycatalog/client/models/finalize_model_version.py +89 -0
  34. unitycatalog/client/models/function_dependency.py +87 -0
  35. unitycatalog/client/models/function_info.py +189 -0
  36. unitycatalog/client/models/function_parameter_info.py +112 -0
  37. unitycatalog/client/models/function_parameter_infos.py +95 -0
  38. unitycatalog/client/models/function_parameter_mode.py +36 -0
  39. unitycatalog/client/models/function_parameter_type.py +37 -0
  40. unitycatalog/client/models/gcp_oauth_token.py +87 -0
  41. unitycatalog/client/models/generate_temporary_model_version_credential.py +96 -0
  42. unitycatalog/client/models/generate_temporary_path_credential.py +90 -0
  43. unitycatalog/client/models/generate_temporary_table_credential.py +90 -0
  44. unitycatalog/client/models/generate_temporary_volume_credential.py +90 -0
  45. unitycatalog/client/models/list_catalogs_response.py +97 -0
  46. unitycatalog/client/models/list_functions_response.py +97 -0
  47. unitycatalog/client/models/list_model_versions_response.py +97 -0
  48. unitycatalog/client/models/list_registered_models_response.py +97 -0
  49. unitycatalog/client/models/list_schemas_response.py +97 -0
  50. unitycatalog/client/models/list_tables_response.py +97 -0
  51. unitycatalog/client/models/list_volumes_response_content.py +97 -0
  52. unitycatalog/client/models/model_version_info.py +114 -0
  53. unitycatalog/client/models/model_version_operation.py +38 -0
  54. unitycatalog/client/models/model_version_status.py +39 -0
  55. unitycatalog/client/models/path_operation.py +39 -0
  56. unitycatalog/client/models/permissions_change.py +92 -0
  57. unitycatalog/client/models/permissions_list.py +95 -0
  58. unitycatalog/client/models/principal_type.py +37 -0
  59. unitycatalog/client/models/privilege.py +47 -0
  60. unitycatalog/client/models/privilege_assignment.py +90 -0
  61. unitycatalog/client/models/registered_model_info.py +109 -0
  62. unitycatalog/client/models/schema_info.py +107 -0
  63. unitycatalog/client/models/securable_type.py +42 -0
  64. unitycatalog/client/models/table_dependency.py +87 -0
  65. unitycatalog/client/models/table_info.py +125 -0
  66. unitycatalog/client/models/table_operation.py +38 -0
  67. unitycatalog/client/models/table_type.py +37 -0
  68. unitycatalog/client/models/temporary_credentials.py +105 -0
  69. unitycatalog/client/models/update_catalog.py +91 -0
  70. unitycatalog/client/models/update_model_version.py +87 -0
  71. unitycatalog/client/models/update_permissions.py +95 -0
  72. unitycatalog/client/models/update_registered_model.py +89 -0
  73. unitycatalog/client/models/update_schema.py +91 -0
  74. unitycatalog/client/models/update_volume_request_content.py +90 -0
  75. unitycatalog/client/models/volume_info.py +113 -0
  76. unitycatalog/client/models/volume_operation.py +38 -0
  77. unitycatalog/client/models/volume_type.py +37 -0
  78. unitycatalog/client/py.typed +0 -0
  79. unitycatalog/client/rest.py +215 -0
  80. unitycatalog_client-0.2.1.dist-info/METADATA +199 -0
  81. unitycatalog_client-0.2.1.dist-info/RECORD +82 -0
  82. unitycatalog_client-0.2.1.dist-info/WHEEL +4 -0
@@ -0,0 +1,199 @@
1
+ Metadata-Version: 2.3
2
+ Name: unitycatalog-client
3
+ Version: 0.2.1
4
+ Summary: Official Python SDK for Unity Catalog
5
+ Project-URL: homepage, https://www.unitycatalog.io/
6
+ Project-URL: issues, https://github.com/unitycatalog/unitycatalog/issues
7
+ Project-URL: repository, https://github.com/unitycatalog/unitycatalog
8
+ Author-email: Unity Catalog Developers <dev-feedback@unitycatalog.com>
9
+ Maintainer-email: Denny Lee <denny.lee@databricks.com>, Ben Wilson <benjamin.wilson@databricks.com>, Tathagata Das <tathagata.das1565@gmail.com>
10
+ License: Apache-2.0
11
+ Keywords: sdk,unitycatalog
12
+ Classifier: Development Status :: 4 - Beta
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: Intended Audience :: Education
15
+ Classifier: Intended Audience :: End Users/Desktop
16
+ Classifier: Intended Audience :: Information Technology
17
+ Classifier: Intended Audience :: Other Audience
18
+ Classifier: Intended Audience :: Science/Research
19
+ Classifier: License :: OSI Approved :: Apache Software License
20
+ Classifier: Operating System :: OS Independent
21
+ Classifier: Programming Language :: Python :: 3
22
+ Classifier: Programming Language :: Python :: 3.9
23
+ Classifier: Programming Language :: Python :: 3.10
24
+ Classifier: Programming Language :: Python :: 3.11
25
+ Classifier: Programming Language :: Python :: 3.12
26
+ Classifier: Topic :: Scientific/Engineering
27
+ Classifier: Topic :: Software Development
28
+ Classifier: Topic :: Software Development :: Libraries
29
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
30
+ Classifier: Topic :: Software Development :: User Interfaces
31
+ Requires-Python: >=3.9
32
+ Requires-Dist: aiohttp-retry>=2.8.3
33
+ Requires-Dist: aiohttp>=3.8.4
34
+ Requires-Dist: pydantic<3,>=2
35
+ Requires-Dist: python-dateutil>=2.8.2
36
+ Requires-Dist: typing-extensions>=4.7.1
37
+ Requires-Dist: urllib3>=1.25.3
38
+ Description-Content-Type: text/markdown
39
+
40
+ # Unity Catalog Python Client SDK
41
+
42
+ Welcome to the official Python Client SDK for Unity Catalog!
43
+
44
+ Unity Catalog is the industry's only universal catalog for data and AI.
45
+
46
+ - **Multimodal interface supports any format, engine, and asset**
47
+ - Multi-format support: It is extensible and supports Delta Lake, Apache Iceberg and Apache Hudi via UniForm, Apache Parquet, JSON, CSV, and many others.
48
+ - Multi-engine support: With its open APIs, data cataloged in Unity can be read by many leading compute engines.
49
+ - Multimodal: It supports all your data and AI assets, including tables, files, functions, AI models.
50
+ - **Open source API and implementation** - OpenAPI spec and OSS implementation (Apache 2.0 license). It is also compatible with Apache Hive's metastore API and Apache Iceberg's REST catalog API. Unity Catalog is currently a sandbox project with LF AI and Data Foundation (part of the Linux Foundation).
51
+ - **Unified governance** for data and AI - Govern and secure tabular data, unstructured assets, and AI assets with a single interface.
52
+
53
+ ## Python Client SDK
54
+
55
+ The Unity Catalog Python SDK provides a convenient Python-native interface to all of the functionality of the Unity Catalog
56
+ REST APIs. The library includes interfaces for all supported public modules.
57
+
58
+ This library is generated using the [OpenAPI Generator](https://openapi-generator.tech/docs/generators/python) toolkit, providing client interfaces using the `aiohttp` request handling library.
59
+
60
+ ## Installation
61
+
62
+ The Python Client SDK and associated shared namespace package for Unity Catalog use [hatch](https://hatch.pypa.io/latest/) as their supported build backend.
63
+
64
+ To ensure that you can install the package, install `hatch` via any of the listed options [here](https://hatch.pypa.io/latest/install/).
65
+
66
+ To use the `unitycatalog-client` SDK, you can install directly from PyPI:
67
+
68
+ ```sh
69
+ pip install unitycatalog-client
70
+ ```
71
+
72
+ To install from source, you will need to fork and clone the [unitycatalog repository](https://github.com/unitycatalog/unitycatalog) locally.
73
+
74
+ To build the Python source locally, you will need to have `JDK17` installed and activated.
75
+
76
+ Once your configuration supports the execution of [sbt](https://www.scala-sbt.org/), you can run the following within the root
77
+ of the repository to generate the Python Client SDK source:
78
+
79
+ ```sh
80
+ build/sbt pythonClient/generate
81
+ ```
82
+
83
+ The source code will be generated at `unitycatalog/clients/python/target`.
84
+
85
+ You can then install the package in editable mode from the repository root:
86
+
87
+ ```sh
88
+ pip install -e clients/python/target
89
+ ```
90
+
91
+ ## Usage
92
+
93
+ To get started with using the Python Client SDK, first ensure that you have a running Unity Catalog server to connect to.
94
+ You can follow instructions [here](https://docs.unitycatalog.io/quickstart/) to quickly get started with setting up
95
+ a local Unity Catalog server if needed.
96
+
97
+ Once the server is running, you can set up the Python client to make async requests to the Unity Catalog server.
98
+
99
+ For the examples listed here, we will be using a local unauthenticated server for simplicity's sake.
100
+
101
+ ```python
102
+ from unitycatalog.client import Configuration
103
+
104
+
105
+ config = Configuration()
106
+ config.host = "http://localhost:8080/api/2.1/unity-catalog"
107
+ ```
108
+
109
+ Once we have our configuration, we can set our client that we will be using for each request:
110
+
111
+ ```python
112
+ from unitycatalog.client import ApiClient
113
+
114
+
115
+ client = ApiClient(configuration=config)
116
+ ```
117
+
118
+ With our client configured and instantiated, we can use any of the Unity Catalog APIs by importing from the
119
+ `client` namespace directly and send requests to the server.
120
+
121
+ ```python
122
+ from unitycatalog.client import CatalogsApi
123
+
124
+
125
+ catalogs_api = CatalogsApi(api_client=client)
126
+ my_catalogs = await catalogs_api.list_catalogs()
127
+ ```
128
+
129
+ >Note: APIs that support pagination (such as `list_catalogs`) should have continutation token logic for assembling the paginated
130
+ return values into a single collection.
131
+
132
+ A simple example of consuming a paginated response is:
133
+
134
+ ```python
135
+ async def list_all_catalogs(catalog_api):
136
+ token = None
137
+ catalogs = []
138
+ while True:
139
+ results = await catalog_api.list_catalogs(page_token=token)
140
+ catalogs += results.catalogs
141
+ if next_token := results.next_page_token:
142
+ token = next_token
143
+ else:
144
+ break
145
+ return catalogs
146
+
147
+ my_catalogs = await list_all_catalogs(catalogs_api)
148
+ ```
149
+
150
+ Creating a new catalog with the Python SDK is straight-forward:
151
+
152
+ ```python
153
+ from unitycatalog.client.models import CreateCatalog, CatalogInfo
154
+
155
+
156
+ async def create_catalog(catalog_name, catalog_api, comment=None):
157
+ new_catalog = CreateCatalog(
158
+ name=catalog_name,
159
+ comment=comment or ""
160
+ )
161
+ return await catalog_api.create_catalog(create_catalog=new_catalog)
162
+
163
+ await create_catalog("MyNewCatalog", catalog_api=catalogs_api, comment="This is a new catalog.")
164
+ ```
165
+
166
+ Adding a new Schema to our created Catalog is similarly simple:
167
+
168
+ ```python
169
+ from unitycatalog.client import SchemasApi
170
+ from unitycatalog.client import CreateSchema, SchemaInfo
171
+
172
+
173
+ schemas_api = SchemasApi(api_client=client)
174
+
175
+ async def create_schema(schema_name, catalog_name, schema_api, comment=None):
176
+ new_schema = CreateSchema(
177
+ name=schema_name,
178
+ catalog_name=catalog_name,
179
+ comment=comment or ""
180
+ )
181
+ return await schema_api.create_schema(create_schema=new_schema)
182
+
183
+ await create_schema(schema_name="MyNewSchema", catalog_name="MyNewCatalog", schema_api=schemas_api, comment="This is a new schema.")
184
+ ```
185
+
186
+ And listing the schemas within our newly created Catalog (note that if you expect paginated responses, ensure that you are passing
187
+ continuation tokens as shown above in `list_all_catalogs`):
188
+
189
+ ```python
190
+ await schemas_api.list_schemas(catalog_name="MyNewCatalog")
191
+ ```
192
+
193
+ ## Feedback
194
+
195
+ Have requests for the Unity Catalog project? Interested in getting involved in the Open Source project?
196
+
197
+ See the [repository on GitHub](https://github.com/unitycatalog/unitycatalog)
198
+
199
+ Read [the documentation](https://www.unitycatalog.io/) for more guidance and examples!
@@ -0,0 +1,82 @@
1
+ unitycatalog/client/__init__.py,sha256=kDCuHsxjSRzSmhoT6w83_b7Aap27U8PYyINxtYnI5O4,6317
2
+ unitycatalog/client/api_client.py,sha256=vixXEuRAj_O7F_TeciWR_O5k0Kn99kl0X1gWzei3_68,26487
3
+ unitycatalog/client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
+ unitycatalog/client/configuration.py,sha256=NHmz6y2brp9_yx0ty5McPzPlVYDIzevrcPJVXuWxMyI,14264
5
+ unitycatalog/client/exceptions.py,sha256=Sy_fUb_HYFLdf6x-lOGPqfJcyroWog2i4Pl1Zq6MLB8,5980
6
+ unitycatalog/client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ unitycatalog/client/rest.py,sha256=9IOUYysdwTn-tpPUfhtoqXOM5aQNtDqWIQT6c_DznOs,6855
8
+ unitycatalog/client/api/__init__.py,sha256=Zv5glrAbLi0taOq0KV-RH9N4ArHvkaRiyp0a5v1vMrE,640
9
+ unitycatalog/client/api/catalogs_api.py,sha256=Lrfr2OE24x03VDapaFqvygdzH_oVSs2yQwRIQ41qyWU,56095
10
+ unitycatalog/client/api/functions_api.py,sha256=RuKziubMK0qq44Yloex2FFWCh7EEk68v3GFujtjuSus,47907
11
+ unitycatalog/client/api/grants_api.py,sha256=QDemj-ZmIuc46rOAyFG-6M-GA_1nCT7DmIPW-aT4mug,25211
12
+ unitycatalog/client/api/model_versions_api.py,sha256=sVQEO6AZqCH5w-zYtON20q10Z7b2XmiiBSrlCwdRa6k,71961
13
+ unitycatalog/client/api/registered_models_api.py,sha256=M_VQS09qqUaK1xaze42KPtyNLQmB1nUYUaNdLuQCq74,60355
14
+ unitycatalog/client/api/schemas_api.py,sha256=HSTvpVA4GgNqv_iCxSuK4FHdOiyimB8sf3XnNdHNye0,57235
15
+ unitycatalog/client/api/tables_api.py,sha256=U1jorniynfDnLfdOekh44mcZxhF6zAVOsyQvJEOqq1c,46733
16
+ unitycatalog/client/api/temporary_credentials_api.py,sha256=fynS3xCYuBqsHU8NH7gQFFOobQK3YDg27l4Oth1JUoU,45834
17
+ unitycatalog/client/api/volumes_api.py,sha256=83d1CDqHnDNi2UZZlBpGarjpX6tkFRAr6u2UJ3ouWhM,60660
18
+ unitycatalog/client/models/__init__.py,sha256=He-DukrzJns5eEeh8fPCuElKLYEi58IUvg18WgeOAAI,5136
19
+ unitycatalog/client/models/aws_credentials.py,sha256=4q7j-hfcMPSJmrxqtsWIpFI_Hz4QLNgiwXq5qT0szwQ,3094
20
+ unitycatalog/client/models/azure_user_delegation_sas.py,sha256=_9YbgyAEP92oZhHcRKEjeYEWSTZktFJlxr5eZC1Gq8Q,2612
21
+ unitycatalog/client/models/catalog_info.py,sha256=X43CG6vjgN_eibXI-FWQbdeVp7ef5wYRSeHVxtcdhwE,3972
22
+ unitycatalog/client/models/column_info.py,sha256=V6Il0mT260_bfWPQdJMJNrk8zIFct8LrOLAxaUyq9e0,4427
23
+ unitycatalog/client/models/column_type_name.py,sha256=uSFZvdjxMH-5JGU3tBCdMK4Dxl05OUQ0gXFUxyETGpU,1225
24
+ unitycatalog/client/models/create_catalog.py,sha256=nTQvRwsH-E9z2aCwoc5mSNroeSqh8yl7PqHM_UTdvlU,2903
25
+ unitycatalog/client/models/create_function.py,sha256=pXB3B9N0ANq2qXM4m0-vrEACNOhfcI3p2Fj_G61w14g,7815
26
+ unitycatalog/client/models/create_function_request.py,sha256=esO2MLOHH24PkS_YCykLZP4HO_1XaEKVBLLeLyShIMc,2869
27
+ unitycatalog/client/models/create_model_version.py,sha256=_2-iDc5FXaU9q_tJV8pRciaUHnuwHvQBtAB5WcVMTGY,3428
28
+ unitycatalog/client/models/create_registered_model.py,sha256=0B4iWHJxxI1boQg8lOBBeoGW6Ash5P0281bXgPwzhGE,3070
29
+ unitycatalog/client/models/create_schema.py,sha256=TETEpouW-rLhktgsusOFBdI4IaxFza7W3FpSBe6BqbA,3070
30
+ unitycatalog/client/models/create_table.py,sha256=SC26cKpgGale3kAnsGKeugjc7w7okhw_eEb6JVVVpGM,4379
31
+ unitycatalog/client/models/create_volume_request_content.py,sha256=IVcZiEhAud70cK3pQY4UOP0S9AXZ4FYQSMvsSD2LzIg,3513
32
+ unitycatalog/client/models/data_source_format.py,sha256=z_Nu08EG1Pi60KVQebJysUOtXNdZLlJpUYODkIuXNZk,857
33
+ unitycatalog/client/models/dependency.py,sha256=n07cMFkkA9xxs5bCjy-cv-rKKRSWghakNGDOImouM9U,3298
34
+ unitycatalog/client/models/dependency_list.py,sha256=7-wgwYew6RG-apXd0j-J_gqYGauFqpgFfFUXwx9_-6o,3078
35
+ unitycatalog/client/models/finalize_model_version.py,sha256=Sx21el8Ja5Jb0w1O89wh_iLuV6SAPv_R1eQ1967_S_c,2759
36
+ unitycatalog/client/models/function_dependency.py,sha256=4PcGEE1bsFXsyHe9ggWmEellk-ygOwksNjWqDWtxBMM,2713
37
+ unitycatalog/client/models/function_info.py,sha256=U2tZx9UxNogzG1teb_kmjUE2UkM2D5wUxd0UwUYl0Sw,9680
38
+ unitycatalog/client/models/function_parameter_info.py,sha256=fKs3CHEWYIZZqSbM_YNDmJGREREQBIvJqpH5sMNBHR4,4598
39
+ unitycatalog/client/models/function_parameter_infos.py,sha256=PKkixNBYmubzzA3A_poitBeNvptuO-hrNMO1cxmGoV8,3187
40
+ unitycatalog/client/models/function_parameter_mode.py,sha256=aQtVPLlE0Yi4dPZ5kaI-j7lHz28SOF89tiLhpzDqKZE,768
41
+ unitycatalog/client/models/function_parameter_type.py,sha256=pqpsAtZNUBFL09iU1wqwfNAz_95kQ4a6JqMgBP8mPio,792
42
+ unitycatalog/client/models/gcp_oauth_token.py,sha256=sAZmWYS4QMgQiRupTAUxXtMfizQi83Lgj9nfGmPczu4,2578
43
+ unitycatalog/client/models/generate_temporary_model_version_credential.py,sha256=_ls-dUGR_w5s80R0zDOklDrvPg4yPYmM8hDqS03X1Ws,3594
44
+ unitycatalog/client/models/generate_temporary_path_credential.py,sha256=KmaVu3_GfJFrCzP-Lt2VqtZM0KXlYGgV_4xvmsMheyQ,2813
45
+ unitycatalog/client/models/generate_temporary_table_credential.py,sha256=o6S4IkMI_MKxDnvPhHI5X7xYG_qWnUvfN9qa09CDWBU,2878
46
+ unitycatalog/client/models/generate_temporary_volume_credential.py,sha256=XkmzLCgNNhKmBzgjL0I-UX3jJ2nek4xQ5N1NXXdmTlA,2892
47
+ unitycatalog/client/models/list_catalogs_response.py,sha256=6ND3tFq_Nz2wIL57E0rvnU6Qt6rs8L9Yxdbcwhg_fvY,3430
48
+ unitycatalog/client/models/list_functions_response.py,sha256=YPqxBXEhV4GLCymPajiQZS-xuQ7zai0ErsYMfOAIx8Q,3448
49
+ unitycatalog/client/models/list_model_versions_response.py,sha256=tYY93Bymb9aUkfcU3tH4L3FUQA0mVu5FJZYaAjHmjH4,3531
50
+ unitycatalog/client/models/list_registered_models_response.py,sha256=uoS_qJlbJ8fETtLsmV0nRpZs6jEteuXI9gy7HiWakTU,3574
51
+ unitycatalog/client/models/list_schemas_response.py,sha256=Jm8G8TeLP3U3RvrV0CnUvokA_iNZYPQoaF0I0HcOi80,3412
52
+ unitycatalog/client/models/list_tables_response.py,sha256=MD_Mr7lZChQpBhAKWzO5_MLKSurr93sc484KQ0s_pIk,3394
53
+ unitycatalog/client/models/list_volumes_response_content.py,sha256=eV-OCybSsnuXQ8wOGMCSU_7os93SoZFbmhU6ubUPZHQ,3376
54
+ unitycatalog/client/models/model_version_info.py,sha256=jsv0kP_FQsoJJquBLPE39Vh_EzlxV6RDUmeDX6W6szs,5224
55
+ unitycatalog/client/models/model_version_operation.py,sha256=UBq-iiAqtwwmguwpeyYaC5MI03wDU-sUmVs_n2pQEZ0,916
56
+ unitycatalog/client/models/model_version_status.py,sha256=ubmDHly9ynPssf9dx5RXoq1o3TiyYUEMMQCynDx6HXw,1356
57
+ unitycatalog/client/models/path_operation.py,sha256=dAB7oT6HswJCIStKHRVamAJc4wYuQoFvYwDKaseXsFg,882
58
+ unitycatalog/client/models/permissions_change.py,sha256=9FBo2b_Gvm71OMB_H6iCChLd9c_uIhI3cjq2jGfVsk8,2904
59
+ unitycatalog/client/models/permissions_list.py,sha256=BaYz1iFq40qI2sE8d0HYEEQqoju1LDHjBuwHMJFB7Ps,3177
60
+ unitycatalog/client/models/principal_type.py,sha256=FROaSFdqrIcyvVDhHquxJShpQpAQVwD5vBfQ5XIJdjo,767
61
+ unitycatalog/client/models/privilege.py,sha256=Pr0a_KNCFIHFWMRWYckdEgX-mi0Zc949duQgoAIGEik,1098
62
+ unitycatalog/client/models/privilege_assignment.py,sha256=BlOmMbiObfTRJVDZlH9B1702ymMEDcxX9pfSEbi_fZs,2819
63
+ unitycatalog/client/models/registered_model_info.py,sha256=uOSc6wH1zK10Vxj1l08UXQcCcC2e06NZGaezGJeRfhA,4787
64
+ unitycatalog/client/models/schema_info.py,sha256=wMECDsuRdS_rPZ7viNEXPPmBproHtQTgNaurmzzA8MY,4383
65
+ unitycatalog/client/models/securable_type.py,sha256=xPIO072RjDuwNdppETjp6JzAAMjMR8vA7oV15ebTtZ4,912
66
+ unitycatalog/client/models/table_dependency.py,sha256=GY-JpIjzzbtTb-RGR6VBcrBma-4nNUGb3Oy_p0_Tm-g,2683
67
+ unitycatalog/client/models/table_info.py,sha256=X83vpFOuP6C7oXicz4bjZ91GS06M6_1HiBOTvmPMPqc,5624
68
+ unitycatalog/client/models/table_operation.py,sha256=mMk0TBTJBdLXE2w7KC6VhfA5DlJRxnkAgnyhOkuT-Wo,823
69
+ unitycatalog/client/models/table_type.py,sha256=sy81bdJ3T1hmvFjhhNYvSbhGsiwUpWXmb4513o0xKXw,754
70
+ unitycatalog/client/models/temporary_credentials.py,sha256=qVWF5Q8NzxyJ2cTGhEV5ordpnVL0BJUGRCQC0SSn8LA,4341
71
+ unitycatalog/client/models/update_catalog.py,sha256=7cfBcXSaSw7xZWstvYalN8WE0Et5jTzaYBZOmOn2yRQ,2952
72
+ unitycatalog/client/models/update_model_version.py,sha256=la61fVfV_6pNW86hEDsh4k_d8dmXooOq4UoDdiHZuSA,2614
73
+ unitycatalog/client/models/update_permissions.py,sha256=GadsFuD5aUDPlHpUT2UGKYOyEJpp_mtEFRRzk4Y4lAw,3045
74
+ unitycatalog/client/models/update_registered_model.py,sha256=UHjcmh8HV1SIjJ96i3FeKrW1Tm_JNJ9x27RdGoaz3IQ,2778
75
+ unitycatalog/client/models/update_schema.py,sha256=n7TRTEgbKvZTAkGjyS6BJ-8KCLM-X3qkhjZbWn9mJEk,2947
76
+ unitycatalog/client/models/update_volume_request_content.py,sha256=AqO3TIEOspMj73xscxmGu8X2LfAAl6cKUSKasDltyH4,2889
77
+ unitycatalog/client/models/volume_info.py,sha256=VgpFY4NlMviEdAeW4utPQ0igdlod9h7iPPGkmL0tbOI,4899
78
+ unitycatalog/client/models/volume_operation.py,sha256=P0M12SwTLkPCHdyE2uUCOxvLwjzn6nRoiaeZ7IyHDek,846
79
+ unitycatalog/client/models/volume_type.py,sha256=U4moIdAzO31TKjfI5Vfp89zYYMqvuDbKD_woOSZINIg,769
80
+ unitycatalog_client-0.2.1.dist-info/METADATA,sha256=qd77QXQtrhQ_6Cr9o01aHjlXkQij7IZHS-zjzqYI6Q4,7809
81
+ unitycatalog_client-0.2.1.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
82
+ unitycatalog_client-0.2.1.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.26.3
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any