mlrun 1.10.0rc18__py3-none-any.whl → 1.10.0rc20__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 mlrun might be problematic. Click here for more details.

Files changed (38) hide show
  1. mlrun/__init__.py +21 -2
  2. mlrun/common/constants.py +1 -0
  3. mlrun/common/schemas/function.py +10 -0
  4. mlrun/common/schemas/model_monitoring/constants.py +4 -11
  5. mlrun/common/schemas/model_monitoring/model_endpoints.py +2 -0
  6. mlrun/datastore/__init__.py +9 -1
  7. mlrun/datastore/model_provider/huggingface_provider.py +114 -26
  8. mlrun/datastore/model_provider/model_provider.py +144 -70
  9. mlrun/datastore/model_provider/openai_provider.py +95 -37
  10. mlrun/db/base.py +0 -19
  11. mlrun/db/httpdb.py +10 -46
  12. mlrun/db/nopdb.py +0 -10
  13. mlrun/launcher/base.py +13 -6
  14. mlrun/model_monitoring/api.py +43 -22
  15. mlrun/model_monitoring/applications/base.py +1 -1
  16. mlrun/model_monitoring/controller.py +112 -38
  17. mlrun/model_monitoring/db/_schedules.py +13 -9
  18. mlrun/model_monitoring/stream_processing.py +16 -12
  19. mlrun/platforms/__init__.py +3 -2
  20. mlrun/projects/project.py +2 -2
  21. mlrun/run.py +1 -1
  22. mlrun/runtimes/base.py +5 -2
  23. mlrun/runtimes/daskjob.py +1 -0
  24. mlrun/runtimes/nuclio/application/application.py +84 -5
  25. mlrun/runtimes/nuclio/function.py +3 -1
  26. mlrun/serving/server.py +24 -0
  27. mlrun/serving/states.py +80 -30
  28. mlrun/serving/system_steps.py +60 -36
  29. mlrun/utils/helpers.py +37 -13
  30. mlrun/utils/notifications/notification_pusher.py +1 -1
  31. mlrun/utils/version/version.json +2 -2
  32. {mlrun-1.10.0rc18.dist-info → mlrun-1.10.0rc20.dist-info}/METADATA +4 -4
  33. {mlrun-1.10.0rc18.dist-info → mlrun-1.10.0rc20.dist-info}/RECORD +37 -38
  34. mlrun/api/schemas/__init__.py +0 -259
  35. {mlrun-1.10.0rc18.dist-info → mlrun-1.10.0rc20.dist-info}/WHEEL +0 -0
  36. {mlrun-1.10.0rc18.dist-info → mlrun-1.10.0rc20.dist-info}/entry_points.txt +0 -0
  37. {mlrun-1.10.0rc18.dist-info → mlrun-1.10.0rc20.dist-info}/licenses/LICENSE +0 -0
  38. {mlrun-1.10.0rc18.dist-info → mlrun-1.10.0rc20.dist-info}/top_level.txt +0 -0
@@ -308,7 +308,7 @@ class NotificationPusher(_NotificationPusherBase):
308
308
  and retry_count >= max_retries
309
309
  ):
310
310
  message += (
311
- "\nRetry limit reached run has failed after all retry attempts."
311
+ "\nRetry limit reached - run has failed after all retry attempts."
312
312
  )
313
313
 
314
314
  severity = (
@@ -1,4 +1,4 @@
1
1
  {
2
- "git_commit": "ef58f2d7ada676ba266aaf084b7a46714b95ba4e",
3
- "version": "1.10.0-rc18"
2
+ "git_commit": "bf47f85a95ed8a3d2d4143cb931b2f0b16b5cdbd",
3
+ "version": "1.10.0-rc20"
4
4
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mlrun
3
- Version: 1.10.0rc18
3
+ Version: 1.10.0rc20
4
4
  Summary: Tracking and config of machine learning runs
5
5
  Home-page: https://github.com/mlrun/mlrun
6
6
  Author: Yaron Haviv
@@ -44,7 +44,7 @@ Requires-Dist: semver~=3.0
44
44
  Requires-Dist: dependency-injector~=4.41
45
45
  Requires-Dist: fsspec<2024.7,>=2023.9.2
46
46
  Requires-Dist: v3iofs~=0.1.17
47
- Requires-Dist: storey~=1.10.9
47
+ Requires-Dist: storey~=1.10.10
48
48
  Requires-Dist: inflection~=0.5.0
49
49
  Requires-Dist: python-dotenv~=1.0
50
50
  Requires-Dist: setuptools>=75.2
@@ -112,7 +112,7 @@ Requires-Dist: apscheduler<4,>=3.11; extra == "api"
112
112
  Requires-Dist: objgraph~=3.6; extra == "api"
113
113
  Requires-Dist: igz-mgmt~=0.4.1; extra == "api"
114
114
  Requires-Dist: humanfriendly~=10.0; extra == "api"
115
- Requires-Dist: fastapi~=0.115.6; extra == "api"
115
+ Requires-Dist: fastapi~=0.116.0; extra == "api"
116
116
  Requires-Dist: sqlalchemy~=2.0; extra == "api"
117
117
  Requires-Dist: sqlalchemy-utils~=0.41.2; extra == "api"
118
118
  Requires-Dist: pymysql~=1.1; extra == "api"
@@ -203,7 +203,7 @@ Requires-Dist: dask~=2024.12.1; python_version >= "3.11" and extra == "complete-
203
203
  Requires-Dist: databricks-sdk~=0.20.0; extra == "complete-api"
204
204
  Requires-Dist: distributed~=2023.12.1; python_version < "3.11" and extra == "complete-api"
205
205
  Requires-Dist: distributed~=2024.12.1; python_version >= "3.11" and extra == "complete-api"
206
- Requires-Dist: fastapi~=0.115.6; extra == "complete-api"
206
+ Requires-Dist: fastapi~=0.116.0; extra == "complete-api"
207
207
  Requires-Dist: gcsfs<2024.7,>=2023.9.2; extra == "complete-api"
208
208
  Requires-Dist: google-cloud-bigquery-storage~=2.17; extra == "complete-api"
209
209
  Requires-Dist: google-cloud-bigquery[bqstorage,pandas]==3.14.1; extra == "complete-api"
@@ -1,4 +1,4 @@
1
- mlrun/__init__.py,sha256=Y_AFhZV1hEx4vfiO-cyjup0aLGcp6R0SeL75GqLFQrc,7514
1
+ mlrun/__init__.py,sha256=JYy9uteFFNPbPoC0geDEPhaLrfiqTijxUhLZSToAky4,8029
2
2
  mlrun/__main__.py,sha256=wQNaxW7QsqFBtWffnPkw-497fnpsrQzUnscBQQAP_UM,48364
3
3
  mlrun/config.py,sha256=XAAb68MwEHpuPddPMtKBULtFk0hI9YC25DniYQk1DKk,72853
4
4
  mlrun/errors.py,sha256=bAk0t_qmCxQSPNK0TugOAfA5R6f0G6OYvEvXUWSJ_5U,9062
@@ -8,11 +8,10 @@ mlrun/k8s_utils.py,sha256=mMnGyouHoJC93ZD2KGf9neJM1pD7mR9IXLnHOEwYVTQ,21469
8
8
  mlrun/lists.py,sha256=OlaV2QIFUzmenad9kxNJ3k4whlDyxI3zFbGwr6vpC5Y,8561
9
9
  mlrun/model.py,sha256=wHtM8LylSOEFk6Hxl95CVm8DOPhofjsANYdIvKHH6dw,88956
10
10
  mlrun/render.py,sha256=5DlhD6JtzHgmj5RVlpaYiHGhX84Q7qdi4RCEUj2UMgw,13195
11
- mlrun/run.py,sha256=6I4I_88Slpj27WzGnoq0c02SNpDaGsJllC8Y-2BED0E,46951
11
+ mlrun/run.py,sha256=UqNL4qA8CZFEu9lrP5xVl_tfYn6_wiN7x0VVQYWH5_c,46932
12
12
  mlrun/secrets.py,sha256=dZPdkc_zzfscVQepOHUwmzFqnBavDCBXV9DQoH_eIYM,7800
13
13
  mlrun/alerts/__init__.py,sha256=0gtG1BG0DXxFrXegIkjbM1XEN4sP9ODo0ucXrNld1hU,601
14
14
  mlrun/alerts/alert.py,sha256=QQFZGydQbx9RvAaSiaH-ALQZVcDKQX5lgizqj_rXW2k,15948
15
- mlrun/api/schemas/__init__.py,sha256=b8pOb-hPeojIisSSiy5zwMh-uZAebyB2mAnmGGLe5Sc,13919
16
15
  mlrun/artifacts/__init__.py,sha256=ZrEUNto7tGdnBGteCp9zOyO8b78z7O3xgcpzUt9UHE4,1240
17
16
  mlrun/artifacts/base.py,sha256=6x_2KPMNOciiNNUsiKgJ-b6ejxAHm_Ro22xODLoTc44,28559
18
17
  mlrun/artifacts/dataset.py,sha256=bhb5Kfbs8P28yjnpN76th5lLEUl5nAqD4VqVzHEVPrM,16421
@@ -23,7 +22,7 @@ mlrun/artifacts/manager.py,sha256=_cDNCS7wwmFIsucJ2uOgHxZQECmIGb8Wye64b6oLgKU,16
23
22
  mlrun/artifacts/model.py,sha256=8EVaD70SOkTohQIWqkDk0MEwskdofxs3wJTgspa2sho,25615
24
23
  mlrun/artifacts/plots.py,sha256=wmaxVXiAPSCyn3M7pIlcBu9pP3O8lrq0Ewx6iHRDF9s,4238
25
24
  mlrun/common/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
26
- mlrun/common/constants.py,sha256=BDxV8kAAf8D2W-gsa7IP8HJe5da-sPwVUfiodQ1O7kI,4127
25
+ mlrun/common/constants.py,sha256=H2Qh65elADGD1vgMzI6gYT5RAA2q8uFL6UByIwYBV34,4173
27
26
  mlrun/common/helpers.py,sha256=DIdqs_eN3gO5bZ8iFobIvx8cEiOxYxhFIyut6-O69T0,1385
28
27
  mlrun/common/secrets.py,sha256=8g9xtIw-9DGcwiZRT62a5ozSQM-aYo8yK5Ghey9WM0g,5179
29
28
  mlrun/common/types.py,sha256=1gxThbmC0Vd0U1ffIkEwz4T4S7JOgHt70rvw8TCO21c,1073
@@ -55,7 +54,7 @@ mlrun/common/schemas/datastore_profile.py,sha256=jDva-_XTCU0EyExs5uB2PVR7-Tj4g4Z
55
54
  mlrun/common/schemas/events.py,sha256=LjAU7t-aNhkECbF_o2mzXiZ5mn4299d-_HOd20Xv6iQ,1025
56
55
  mlrun/common/schemas/feature_store.py,sha256=Kz7AWQ1RCPA8sTL9cGRZnfUBhWf4MX_5yyYswtCOcCk,4802
57
56
  mlrun/common/schemas/frontend_spec.py,sha256=tR8k78cppYK-X8kCWe0mz1gk8yqpsn2IxM3QmBdTJs8,2622
58
- mlrun/common/schemas/function.py,sha256=HMBZFf46foDWnycciG1a4HASBbmnRDSlDRsREfa5Tog,4881
57
+ mlrun/common/schemas/function.py,sha256=BUHenAK6r_mWtDrBWE42xPJU8zh8ng5Usj7GmB_SAcU,5108
59
58
  mlrun/common/schemas/http.py,sha256=KozLgGV1vpNXQ8Qptr_Zm6BEbc2VcU42hSphe_ffe_A,704
60
59
  mlrun/common/schemas/hub.py,sha256=zYupE3yBKlVEAhHNb4rn9g5T63sekRUnI4Ql3v4a_c4,4118
61
60
  mlrun/common/schemas/k8s.py,sha256=YgyDK7KNt29GHCOxd1vw-jnl_757cIPLzViCTNT1Zcc,1403
@@ -75,16 +74,16 @@ mlrun/common/schemas/serving.py,sha256=4ek9JZDagkdeXyfkX6P6xp4deUNSf_kqXUaXcKSuv
75
74
  mlrun/common/schemas/tag.py,sha256=1wqEiAujsElojWb3qmuyfcaLFjXSNAAQdafkDx7fkn0,891
76
75
  mlrun/common/schemas/workflow.py,sha256=Y-FHJnxs5c86yetuOAPdEJPkne__tLPCxjSXSb4lrjo,2541
77
76
  mlrun/common/schemas/model_monitoring/__init__.py,sha256=FqFiFIDcylquQdY0XTBamB5kMzMrMFEpVYM_ecsVfLg,1925
78
- mlrun/common/schemas/model_monitoring/constants.py,sha256=WhuUWgOwk91BI0dP5c1rm6X_W0V4UBV3l6KvRNHHE-E,13898
77
+ mlrun/common/schemas/model_monitoring/constants.py,sha256=5Frul4YrJQZvUIOE4T2Tp8I6GjklFD7EyRIOR6YqsPo,13726
79
78
  mlrun/common/schemas/model_monitoring/functions.py,sha256=GpfSGp05D87wEKemECD3USL368pvnAM2WfS-nef5qOg,2210
80
79
  mlrun/common/schemas/model_monitoring/grafana.py,sha256=THQlLfPBevBksta8p5OaIsBaJtsNSXexLvHrDxOaVns,2095
81
- mlrun/common/schemas/model_monitoring/model_endpoints.py,sha256=aCrVqgoJsUEwvDJ84YFabDSy78CHcVBV3b0RdWj4JUw,13250
80
+ mlrun/common/schemas/model_monitoring/model_endpoints.py,sha256=Bl08bnM5DnWJsj4gZhCDD49PDg5y7mPnrsD2fKBE7BI,13316
82
81
  mlrun/data_types/__init__.py,sha256=wdxGS1PTnaKXiNZ7PYGxxo86OifHH7NYoArIjDJksLA,1054
83
82
  mlrun/data_types/data_types.py,sha256=0_oKLC6-sXL2_nnaDMP_HSXB3fD1nJAG4J2Jq6sGNNw,4998
84
83
  mlrun/data_types/infer.py,sha256=F_dW7oR6jrhdONzTl4ngeGh9x7twHdpUJBd2xMVA1Vw,6476
85
84
  mlrun/data_types/spark.py,sha256=I5JC887dT9RGs5Tqz5zaRxlCMyhMeFmwuNbExQoyW0E,9625
86
85
  mlrun/data_types/to_pandas.py,sha256=KOy0FLXPJirsgH6szcC5BI6t70yVDCjuo6LmuYHNTuI,11429
87
- mlrun/datastore/__init__.py,sha256=UKGHkUfj5A9dqTiOeW4UScvwv0vq91NS_xs3-_QA7Jk,5869
86
+ mlrun/datastore/__init__.py,sha256=K8lPO3nVQTk14tbJMUS8nbtwhJw1PBzvQ4UI1T5exFo,6097
88
87
  mlrun/datastore/alibaba_oss.py,sha256=E0t0-e9Me2t2Mux2LWdC9riOG921TgNjhoy897JJX7o,4932
89
88
  mlrun/datastore/azure_blob.py,sha256=3LG7tOTwT97ZFBmyq-sfAIe5_SkuFgisRQtipv4kKUw,12779
90
89
  mlrun/datastore/base.py,sha256=yLdnFCL2k_rcasdbxXjnQr7Lwm-A79LnW9AITtn9-p4,25450
@@ -109,17 +108,17 @@ mlrun/datastore/utils.py,sha256=jxvq4lgQfgqb7dwKe4Kp51fYCCyOvitEdIfV2mzlqxg,1193
109
108
  mlrun/datastore/v3io.py,sha256=sMn5473k_bXyIJovNf0rahbVHRmO0YPdOwIhbs06clg,8201
110
109
  mlrun/datastore/vectorstore.py,sha256=k-yom5gfw20hnVG0Rg7aBEehuXwvAloZwn0cx0VGals,11708
111
110
  mlrun/datastore/model_provider/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
112
- mlrun/datastore/model_provider/huggingface_provider.py,sha256=KTmErt_WHhAV9t8803_iCHoa7jO-0y-7bch7KMTMDKo,7264
113
- mlrun/datastore/model_provider/model_provider.py,sha256=dJIc1R0wbExsk-uzWgpt9w_FK027mr4lTBxYpQx-icY,8083
114
- mlrun/datastore/model_provider/openai_provider.py,sha256=Tl3HXLDOtHkp54rb0ZCddlCWU-gUruhFJwSC6ocbv1Y,9157
111
+ mlrun/datastore/model_provider/huggingface_provider.py,sha256=c8t7kZ1ZbjZpbyRmwLNz_eqrfwRXmVs_sf6F1s_H2xg,11594
112
+ mlrun/datastore/model_provider/model_provider.py,sha256=3F-iWkxfOI8ypgzJw1I8ZkSXF6xYaqCZf5BMQhG46Fo,11098
113
+ mlrun/datastore/model_provider/openai_provider.py,sha256=KgbP8M4VnbWf9Yh5iG2g3qvXEoLmwWyeL1iTWqwFyWI,11406
115
114
  mlrun/datastore/wasbfs/__init__.py,sha256=s5Ul-0kAhYqFjKDR2X0O2vDGDbLQQduElb32Ev56Te4,1343
116
115
  mlrun/datastore/wasbfs/fs.py,sha256=ge8NK__5vTcFT-krI155_8RDUywQw4SIRX6BWATXy9Q,6299
117
116
  mlrun/db/__init__.py,sha256=WqJ4x8lqJ7ZoKbhEyFqkYADd9P6E3citckx9e9ZLcIU,1163
118
117
  mlrun/db/auth_utils.py,sha256=hpg8D2r82oN0BWabuWN04BTNZ7jYMAF242YSUpK7LFM,5211
119
- mlrun/db/base.py,sha256=QUncUfRYep_2Bsui7y-DduAEm8qdgIlWIYmrns-S7HA,32110
118
+ mlrun/db/base.py,sha256=KAY8ufVtQ96aqs6V2uEcRcBZABq0_Mskxdoa_qN_4I4,31536
120
119
  mlrun/db/factory.py,sha256=yP2vVmveUE7LYTCHbS6lQIxP9rW--zdISWuPd_I3d_4,2111
121
- mlrun/db/httpdb.py,sha256=oSzc4zigDgu9S2Vs7Lkz_NY1Oc78OGyHN-xeV19nVtk,239397
122
- mlrun/db/nopdb.py,sha256=kRWKEEI9LUskI3mp2ofTdAWVLov-99-nSMdaqhi3XT8,28194
120
+ mlrun/db/httpdb.py,sha256=37XXs6v3lMh30jA_IM85Rk54Beo9zDL67CUzndy3Mvs,237163
121
+ mlrun/db/nopdb.py,sha256=tk2dhSO9I4irH7X5_R73PCh4gbu25QuQTbZIAI7MHls,27876
123
122
  mlrun/feature_store/__init__.py,sha256=SlI845bWt6xX34SXunHHqhmFAR9-5v2ak8N-qpcAPGo,1328
124
123
  mlrun/feature_store/api.py,sha256=qKj5Tk6prTab6XWatWhBuPRVp0eJEctoxRMN2wz48vA,32168
125
124
  mlrun/feature_store/common.py,sha256=JlQA7XWkg9fLuw7cXFmWpUneQqM3NBhwv7DU_xlenWI,12819
@@ -220,28 +219,28 @@ mlrun/frameworks/xgboost/mlrun_interface.py,sha256=KINOf0udbY75raTewjEFGNlIRyE0e
220
219
  mlrun/frameworks/xgboost/model_handler.py,sha256=bJq4D1VK3rzhALovqIV5mS0LvGiTlsgAkHanD25pU2c,11663
221
220
  mlrun/frameworks/xgboost/utils.py,sha256=4rShiFChzDbWJ4HoTo4qV_lj-Z89pHBAp6Z1yHmU8wA,1068
222
221
  mlrun/launcher/__init__.py,sha256=JL8qkT1lLr1YvW6iP0hmwDTaSR2RfrMDx0-1gWRhTOE,571
223
- mlrun/launcher/base.py,sha256=6T17geeplFgYL2Suu4xo5crN_s9JETtr1m0ael8dIYk,17225
222
+ mlrun/launcher/base.py,sha256=IgBE-ZS1ZiGzucg5SElGtO4qOB0cqYQfGtZTcRc2S3Y,17378
224
223
  mlrun/launcher/client.py,sha256=cl40ZdF2fU1QbUKdl4Xnucb1u2h-8_dn095qIUyxbuM,6402
225
224
  mlrun/launcher/factory.py,sha256=RW7mfzEFi8fR0M-4W1JQg1iq3_muUU6OTqT_3l4Ubrk,2338
226
225
  mlrun/launcher/local.py,sha256=3gv-IQYoIChSmRaZ0vLUh0Tu26oLMCx9GbBYh4fWygQ,12161
227
226
  mlrun/launcher/remote.py,sha256=zFXE52Cq_7EkC8lfNKT0ceIbye0CfFiundF7O1YU4Xw,7810
228
227
  mlrun/model_monitoring/__init__.py,sha256=qDQnncjya9XPTlfvGyfWsZWiXc-glGZrrNja-5QmCZk,782
229
- mlrun/model_monitoring/api.py,sha256=9UsBIy8LYeAOoiIDTYthuD0mx1TYZxeGgaEM_H2qBkM,26092
230
- mlrun/model_monitoring/controller.py,sha256=FVckATzREAzldj68D1KxcnKSdilgKUDRdqhRUf9XpWU,39592
228
+ mlrun/model_monitoring/api.py,sha256=G8mI2iJm7cptTVue7dl9qMD6oY8_uxnEoVLz93DFQq4,27003
229
+ mlrun/model_monitoring/controller.py,sha256=XDbDnASFeYaIiqW4unSJPYgJfMvJjs5tPfI5kHRAdg0,43646
231
230
  mlrun/model_monitoring/features_drift_table.py,sha256=c6GpKtpOJbuT1u5uMWDL_S-6N4YPOmlktWMqPme3KFY,25308
232
231
  mlrun/model_monitoring/helpers.py,sha256=0xhIYKzhaBrgyjLiA_ekCZsXzi3GBXpLyG40Bhj-PTY,23596
233
- mlrun/model_monitoring/stream_processing.py,sha256=Mzn9Pelcblw8UzOFLGKb9oXOX0tkP2aoPcFbjtfHhcA,34247
232
+ mlrun/model_monitoring/stream_processing.py,sha256=bryYO3D0cC10MAQ-liHxUZ79MrL-VFXCb7KNyj6bl-8,34655
234
233
  mlrun/model_monitoring/writer.py,sha256=rGRFzSOkqZWvD3Y6sVk2H1Gepfnkzkp9ce00PsApTLo,8288
235
234
  mlrun/model_monitoring/applications/__init__.py,sha256=MaH_n4GiqqQvSkntM5yQ7_FCANtM_IfgK-IJTdo4G_E,757
236
235
  mlrun/model_monitoring/applications/_application_steps.py,sha256=t9LDIqQUGE10cyjyhlg0QqN1yVx0apD1HpERYLJfm8U,7409
237
- mlrun/model_monitoring/applications/base.py,sha256=tfxXcE7WOvPEd68b6gbZWFG-8gkeeSaRRN0G0HYn0C8,43932
236
+ mlrun/model_monitoring/applications/base.py,sha256=W_IjD6EvWD_vueDVIHbnn0tEoGt9tVkCe7cXzxNdzrQ,43917
238
237
  mlrun/model_monitoring/applications/context.py,sha256=fAGFNCyNhSnVJPSIeJxv-XmEL2JhDmjK5Ouog9qyvdc,17035
239
238
  mlrun/model_monitoring/applications/histogram_data_drift.py,sha256=2qgfFmrpHf-x0_EaHD-0T28piwSQzw-HH71aV1GwbZs,15389
240
239
  mlrun/model_monitoring/applications/results.py,sha256=LfBQOmkpKGvVGNrcj5QiXsRIG2IRgcv_Xqe4QJBmauk,5699
241
240
  mlrun/model_monitoring/applications/evidently/__init__.py,sha256=-DqdPnBSrjZhFvKOu_Ie3MiFvlur9sPTZpZ1u0_1AE8,690
242
241
  mlrun/model_monitoring/applications/evidently/base.py,sha256=shH9YwuFrGNWy1IDAbv622l-GE4o1z_u1bqhqTyTHDA,5661
243
242
  mlrun/model_monitoring/db/__init__.py,sha256=r47xPGZpIfMuv8J3PQCZTSqVPMhUta4sSJCZFKcS7FM,644
244
- mlrun/model_monitoring/db/_schedules.py,sha256=bTLwP9yxLuXu1BaJdp3al1PT5Bx_yj-2cKwBrrwbL8g,11010
243
+ mlrun/model_monitoring/db/_schedules.py,sha256=jxxMqMtTpZsoTIISxSiORw2i_wmKfjwTAxJ8DD3qM-0,11105
245
244
  mlrun/model_monitoring/db/_stats.py,sha256=VVMWLMqG3Us3ozBkLaokJF22Ewv8WKmVE1-OvS_g9vA,6943
246
245
  mlrun/model_monitoring/db/tsdb/__init__.py,sha256=4S86V_Ot_skE16SLkw0WwsaAUB0ECH6SoJdp-TIu6s8,4645
247
246
  mlrun/model_monitoring/db/tsdb/base.py,sha256=vOoAlKxBsVfHBv6XCLOMoVRV6CQMfngD-3UlTNcl_yw,33012
@@ -273,15 +272,15 @@ mlrun/package/utils/_pickler.py,sha256=nyEubm6jze22zLuoQjOqode_FkfQMTOKaWLQ0ES2N
273
272
  mlrun/package/utils/_supported_format.py,sha256=tuHLPyahFitxoQkZ5dC0dymwc5zxCMVW-_yqa6LSgUY,2356
274
273
  mlrun/package/utils/log_hint_utils.py,sha256=oFUrzcJ-AHocXSGIiMP6Yq3IYBgUfnrB-ri7EmXMDvg,3695
275
274
  mlrun/package/utils/type_hint_utils.py,sha256=Ic3A7C9KnbfdLe-nUgzGoefBnsvOJJP9ipfuscA8MLU,14694
276
- mlrun/platforms/__init__.py,sha256=ZuyeHCHHUxYEoZRmaJqzFSfwhaTyUdBZXMeVp75ql1w,3551
275
+ mlrun/platforms/__init__.py,sha256=QgtpAt1lpfTKk0mLtesB1P8szK9cpNDPeYzu2qDbPCM,3580
277
276
  mlrun/platforms/iguazio.py,sha256=6VBTq8eQ3mzT96tzjYhAtcMQ2VjF4x8LpIPW5DAcX2Q,13749
278
277
  mlrun/projects/__init__.py,sha256=hdCOA6_fp8X4qGGGT7Bj7sPbkM1PayWuaVZL0DkpuZw,1240
279
278
  mlrun/projects/operations.py,sha256=Rc__P5ucNAY2G-lHc2LrnZs15PUbNFt8-NqNNT2Bjpk,20623
280
279
  mlrun/projects/pipelines.py,sha256=nGDzBABEOqoe9sWbax4SfF8CVLgrvK0NLWBadzEthVE,52219
281
- mlrun/projects/project.py,sha256=a75Sj1lYzWNggTXIKxerSwy52YqNciGvrT2k-ddRmkQ,254149
280
+ mlrun/projects/project.py,sha256=3cHsUMyOtm0jTB8UFhcwRWY5WHgR2L_VqNhPc3Nb0OU,254157
282
281
  mlrun/runtimes/__init__.py,sha256=8cqrYKy1a0_87XG7V_p96untQ4t8RocadM4LVEEN1JM,9029
283
- mlrun/runtimes/base.py,sha256=FVEooeQMpwxIK2iW1R0FNbC5P1sZ_efKtJcsdNSYNmc,38266
284
- mlrun/runtimes/daskjob.py,sha256=kR5sDQtXtXY_VGn5Y3mapjEEB5P6Lj30pSrPe1DqsAg,20077
282
+ mlrun/runtimes/base.py,sha256=UD2wwxXIZ5ocY-pw7Mzc98plhp-OEgyBuPDtPuVdx98,38346
283
+ mlrun/runtimes/daskjob.py,sha256=IN6gKKrmCIjWooj5FgFm-pAb2i7ra1ERRzClfu_rYGI,20102
285
284
  mlrun/runtimes/funcdoc.py,sha256=zRFHrJsV8rhDLJwoUhcfZ7Cs0j-tQ76DxwUqdXV_Wyc,9810
286
285
  mlrun/runtimes/function_reference.py,sha256=fnMKUEieKgy4JyVLhFpDtr6JvKgOaQP8F_K2H3-Pk9U,5030
287
286
  mlrun/runtimes/generators.py,sha256=X8NDlCEPveDDPOHtOGcSpbl3pAVM3DP7fuPj5xVhxEY,7290
@@ -300,11 +299,11 @@ mlrun/runtimes/mpijob/abstract.py,sha256=QjAG4OZ6JEQ58w5-qYNd6hUGwvaW8ynLtlr9jNf
300
299
  mlrun/runtimes/mpijob/v1.py,sha256=zSlRkiWHz4B3yht66sVf4mlfDs8YT9EnP9DfBLn5VNs,3372
301
300
  mlrun/runtimes/nuclio/__init__.py,sha256=gx1kizzKv8pGT5TNloN1js1hdbxqDw3rM90sLVYVffY,794
302
301
  mlrun/runtimes/nuclio/api_gateway.py,sha256=vH9ClKVP4Mb24rvA67xPuAvAhX-gAv6vVtjVxyplhdc,26969
303
- mlrun/runtimes/nuclio/function.py,sha256=07_ypKlvWRb4ckpc_xjKjGR_7EnsRnJV_w80DvEsJcU,54523
302
+ mlrun/runtimes/nuclio/function.py,sha256=8cCcZKWkhvxWp2L5aOoNI6Q2Ya96RFWRswL942LDZy8,54586
304
303
  mlrun/runtimes/nuclio/nuclio.py,sha256=sLK8KdGO1LbftlL3HqPZlFOFTAAuxJACZCVl1c0Ha6E,2942
305
304
  mlrun/runtimes/nuclio/serving.py,sha256=OadofTgla-1HoupdEbiOdgNbqE6LmFcCVOaffBjAByI,35383
306
305
  mlrun/runtimes/nuclio/application/__init__.py,sha256=rRs5vasy_G9IyoTpYIjYDafGoL6ifFBKgBtsXn31Atw,614
307
- mlrun/runtimes/nuclio/application/application.py,sha256=v8ph54xYi8oAZXM-zbaD6KqG2r2Y6BNyBqlfs-1cPy0,29069
306
+ mlrun/runtimes/nuclio/application/application.py,sha256=5HaB4JEF0PlgP17tyyh-g5X5XfGev4PvEtgVXkScVkg,32080
308
307
  mlrun/runtimes/nuclio/application/reverse_proxy.go,sha256=lEHH74vr2PridIHp1Jkc_NjkrWb5b6zawRrNxHQhwGU,2913
309
308
  mlrun/runtimes/sparkjob/__init__.py,sha256=GPP_ekItxiU9Ydn3mJa4Obph02Bg6DO-JYs791_MV58,607
310
309
  mlrun/runtimes/sparkjob/spark3job.py,sha256=3dW7RG2T58F2dsUw0TsRvE3SIFcekx3CerLdcaG1f50,41458
@@ -312,10 +311,10 @@ mlrun/serving/__init__.py,sha256=nriJAcVn5aatwU03T7SsE6ngJEGTxr3wIGt4WuvCCzY,139
312
311
  mlrun/serving/merger.py,sha256=pfOQoozUyObCTpqXAMk94PmhZefn4bBrKufO3MKnkAc,6193
313
312
  mlrun/serving/remote.py,sha256=Igha2FipK3-6rV_PZ1K464kTbiTu8rhc6SMm-HiEJ6o,18817
314
313
  mlrun/serving/routers.py,sha256=SmBOlHn7rT2gWTa-W8f16UB0UthgIFc4D1cPOZAA9ss,54003
315
- mlrun/serving/server.py,sha256=_P_SR4_7YKqruVzzDHgSPHWlNLGPG5-ksSUwuGhnmjg,38851
314
+ mlrun/serving/server.py,sha256=t5nME4nnoubuyQxD_LM_kGtfEKMM6ccgxalmvLYekiw,39513
316
315
  mlrun/serving/serving_wrapper.py,sha256=UL9hhWCfMPcTJO_XrkvNaFvck1U1E7oS8trTZyak0cA,835
317
- mlrun/serving/states.py,sha256=-eo1IGLm96Kd0bTrwj211nUcwomMizQ6MxrqtURNxAg,124069
318
- mlrun/serving/system_steps.py,sha256=tCxkJ54peOzRTMaqvHQCbcwx0ITqZkSpGXbtpRUEfzU,18463
316
+ mlrun/serving/states.py,sha256=1hKGyLqV9dTsBOmi94DOcyXx43C7falgig5YgbF1PW4,126612
317
+ mlrun/serving/system_steps.py,sha256=kGaQ2OXsdluthXm_15G-f98caj3n04hq6LTIEBjzLM0,19426
319
318
  mlrun/serving/utils.py,sha256=Zbfqm8TKNcTE8zRBezVBzpvR2WKeKeIRN7otNIaiYEc,4170
320
319
  mlrun/serving/v1_serving.py,sha256=c6J_MtpE-Tqu00-6r4eJOCO6rUasHDal9W2eBIcrl50,11853
321
320
  mlrun/serving/v2_serving.py,sha256=257LVOvWxV0KjeY0-Kxro6YgKmPu2QzNne2IORlXi5E,25434
@@ -329,7 +328,7 @@ mlrun/utils/async_http.py,sha256=8Olx8TNNeXB07nEGwlqhEgFgnFAD71vBU_bqaA9JW-w,122
329
328
  mlrun/utils/azure_vault.py,sha256=IEFizrDGDbAaoWwDr1WoA88S_EZ0T--vjYtY-i0cvYQ,3450
330
329
  mlrun/utils/clones.py,sha256=qbAGyEbSvlewn3Tw_DpQZP9z6MGzFhSaZfI1CblX8Fg,7515
331
330
  mlrun/utils/condition_evaluator.py,sha256=-nGfRmZzivn01rHTroiGY4rqEv8T1irMyhzxEei-sKc,1897
332
- mlrun/utils/helpers.py,sha256=fMlwtYBzUK98nCTFCA5FGm1imqIdpJi0CuAPmO10YZs,82641
331
+ mlrun/utils/helpers.py,sha256=_uJlkMEY9bWNIAU247qnRmA7FslUK9M0g-7eB6GkbAE,83235
333
332
  mlrun/utils/http.py,sha256=5ZU2VpokaUM_DT3HBSqTm8xjUqTPjZN5fKkSIvKlTl0,8704
334
333
  mlrun/utils/logger.py,sha256=uaCgI_ezzaXf7nJDCy-1Nrjds8vSXqDbzmjmb3IyCQo,14864
335
334
  mlrun/utils/regex.py,sha256=FcRwWD8x9X3HLhCCU2F0AVKTFah784Pr7ZAe3a02jw8,5199
@@ -338,7 +337,7 @@ mlrun/utils/singleton.py,sha256=fNOfAUtha6OPCV_M1umWnGD0iabnnRwBke9otIspv30,868
338
337
  mlrun/utils/v3io_clients.py,sha256=0aCFiQFBmgdSeLzJr_nEP6SG-zyieSgH8RdtcUq4dc0,1294
339
338
  mlrun/utils/vault.py,sha256=-36b_PG0Fk9coPJiX6F704NF1nmKDdCH9Bg17wep88w,10446
340
339
  mlrun/utils/notifications/__init__.py,sha256=eUzQDBxSQmMZASRY-YAnYS6tL5801P0wEjycp3Dvoe0,990
341
- mlrun/utils/notifications/notification_pusher.py,sha256=82UjmO4CI6ujt8_P04ftY3oBd4hUiYLxlMckJBuqs2U,27358
340
+ mlrun/utils/notifications/notification_pusher.py,sha256=tspup8ZNUggLxx4No2da9EY7GwHsihY33A8oN_tHKpk,27356
342
341
  mlrun/utils/notifications/notification/__init__.py,sha256=9Rfy6Jm8n0LaEDO1VAQb6kIbr7_uVuQhK1pS_abELIY,2581
343
342
  mlrun/utils/notifications/notification/base.py,sha256=-9e3XqUixrWwImnTGrIL4enJRSIUP9gMrJVxwaLqeXc,5403
344
343
  mlrun/utils/notifications/notification/console.py,sha256=ICbIhOf9fEBJky_3j9TFiKAewDGyDHJr9l4VeT7G2sc,2745
@@ -348,11 +347,11 @@ mlrun/utils/notifications/notification/mail.py,sha256=ZyJ3eqd8simxffQmXzqd3bgbAq
348
347
  mlrun/utils/notifications/notification/slack.py,sha256=kfhogR5keR7Zjh0VCjJNK3NR5_yXT7Cv-x9GdOUW4Z8,7294
349
348
  mlrun/utils/notifications/notification/webhook.py,sha256=zxh8CAlbPnTazsk6r05X5TKwqUZVOH5KBU2fJbzQlG4,5330
350
349
  mlrun/utils/version/__init__.py,sha256=YnzE6tlf24uOQ8y7Z7l96QLAI6-QEii7-77g8ynmzy0,613
351
- mlrun/utils/version/version.json,sha256=1hAlhHbCP3fWtgQa3l5zk4ROJntlDhuVxmDS5HRBMiY,90
350
+ mlrun/utils/version/version.json,sha256=jGLPW_bDwSwnMZQIJaVf33n7OzZJsZWP52SMz71BFMU,90
352
351
  mlrun/utils/version/version.py,sha256=M2hVhRrgkN3SxacZHs3ZqaOsqAA7B6a22ne324IQ1HE,1877
353
- mlrun-1.10.0rc18.dist-info/licenses/LICENSE,sha256=zTiv1CxWNkOk1q8eJS1G_8oD4gWpWLwWxj_Agcsi8Os,11337
354
- mlrun-1.10.0rc18.dist-info/METADATA,sha256=Rx-oVfq1W7TA73agpQeaFDhrevZ_RYVTXG6ormcXWvk,26195
355
- mlrun-1.10.0rc18.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
356
- mlrun-1.10.0rc18.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
357
- mlrun-1.10.0rc18.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
358
- mlrun-1.10.0rc18.dist-info/RECORD,,
352
+ mlrun-1.10.0rc20.dist-info/licenses/LICENSE,sha256=zTiv1CxWNkOk1q8eJS1G_8oD4gWpWLwWxj_Agcsi8Os,11337
353
+ mlrun-1.10.0rc20.dist-info/METADATA,sha256=w7awwnxAikehkD4Xg0MRsNM20NqAynzmZm6XnnYPj00,26196
354
+ mlrun-1.10.0rc20.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
355
+ mlrun-1.10.0rc20.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
356
+ mlrun-1.10.0rc20.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
357
+ mlrun-1.10.0rc20.dist-info/RECORD,,
@@ -1,259 +0,0 @@
1
- # Copyright 2023 Iguazio
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
6
- #
7
- # http://www.apache.org/licenses/LICENSE-2.0
8
- #
9
- # Unless required by applicable law or agreed to in writing, software
10
- # distributed under the License is distributed on an "AS IS" BASIS,
11
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
- # See the License for the specific language governing permissions and
13
- # limitations under the License.
14
-
15
- """
16
- Schemas were moved to mlrun.common.schemas.
17
- For backwards compatibility reasons, we have left this folder untouched so that older version of mlrun would
18
- be able to migrate to newer version without having to upgrade into an intermediate version.
19
-
20
- The DeprecationHelper class is used to print a deprecation warning when the old import is used, and return the new
21
- schema.
22
- """
23
-
24
- import sys
25
- import warnings
26
-
27
- import mlrun.common.formatters
28
- import mlrun.common.schemas
29
- import mlrun.common.schemas.artifact as old_artifact
30
- import mlrun.common.schemas.auth as old_auth
31
- import mlrun.common.schemas.background_task as old_background_task
32
- import mlrun.common.schemas.client_spec as old_client_spec
33
- import mlrun.common.schemas.clusterization_spec as old_clusterization_spec
34
- import mlrun.common.schemas.constants as old_constants
35
- import mlrun.common.schemas.feature_store as old_feature_store
36
- import mlrun.common.schemas.frontend_spec as old_frontend_spec
37
- import mlrun.common.schemas.function as old_function
38
- import mlrun.common.schemas.http as old_http
39
- import mlrun.common.schemas.k8s as old_k8s
40
- import mlrun.common.schemas.memory_reports as old_memory_reports
41
- import mlrun.common.schemas.model_monitoring.grafana
42
- import mlrun.common.schemas.object as old_object
43
- import mlrun.common.schemas.pipeline as old_pipeline
44
- import mlrun.common.schemas.project as old_project
45
- import mlrun.common.schemas.runtime_resource as old_runtime_resource
46
- import mlrun.common.schemas.schedule as old_schedule
47
- import mlrun.common.schemas.secret as old_secret
48
- import mlrun.common.schemas.tag as old_tag
49
-
50
-
51
- class DeprecationHelper:
52
- """A helper class to deprecate old schemas"""
53
-
54
- def __init__(self, new_target, version="1.4.0"):
55
- self._new_target = new_target
56
- self._version = version
57
-
58
- def _warn(self):
59
- warnings.warn(
60
- f"mlrun.api.schemas.{self._new_target.__name__} is deprecated since version {self._version}, "
61
- f"Use mlrun.common.schemas.{self._new_target.__name__} instead.",
62
- FutureWarning,
63
- )
64
-
65
- def __call__(self, *args, **kwargs):
66
- self._warn()
67
- return self._new_target(*args, **kwargs)
68
-
69
- def __getattr__(self, attr):
70
- self._warn()
71
- return getattr(self._new_target, attr)
72
-
73
-
74
- # for backwards compatibility, we need to inject the old import path to `sys.modules`
75
- sys.modules["mlrun.api.schemas.artifact"] = old_artifact
76
- sys.modules["mlrun.api.schemas.auth"] = old_auth
77
- sys.modules["mlrun.api.schemas.background_task"] = old_background_task
78
- sys.modules["mlrun.api.schemas.client_spec"] = old_client_spec
79
- sys.modules["mlrun.api.schemas.clusterization_spec"] = old_clusterization_spec
80
- sys.modules["mlrun.api.schemas.constants"] = old_constants
81
- sys.modules["mlrun.api.schemas.feature_store"] = old_feature_store
82
- sys.modules["mlrun.api.schemas.frontend_spec"] = old_frontend_spec
83
- sys.modules["mlrun.api.schemas.function"] = old_function
84
- sys.modules["mlrun.api.schemas.http"] = old_http
85
- sys.modules["mlrun.api.schemas.k8s"] = old_k8s
86
- sys.modules["mlrun.api.schemas.memory_reports"] = old_memory_reports
87
- sys.modules["mlrun.api.schemas.object"] = old_object
88
- sys.modules["mlrun.api.schemas.pipeline"] = old_pipeline
89
- sys.modules["mlrun.api.schemas.project"] = old_project
90
- sys.modules["mlrun.api.schemas.runtime_resource"] = old_runtime_resource
91
- sys.modules["mlrun.api.schemas.schedule"] = old_schedule
92
- sys.modules["mlrun.api.schemas.secret"] = old_secret
93
- sys.modules["mlrun.api.schemas.tag"] = old_tag
94
-
95
- # The DeprecationHelper class is used to print a deprecation warning when the old import is used,
96
- # and return the new schema. This is done for backwards compatibility with mlrun.api.schemas.
97
- ArtifactCategories = DeprecationHelper(mlrun.common.schemas.ArtifactCategories)
98
- ArtifactIdentifier = DeprecationHelper(mlrun.common.schemas.ArtifactIdentifier)
99
- ArtifactsFormat = DeprecationHelper(mlrun.common.formatters.ArtifactFormat)
100
- AuthInfo = DeprecationHelper(mlrun.common.schemas.AuthInfo)
101
- AuthorizationAction = DeprecationHelper(mlrun.common.schemas.AuthorizationAction)
102
- AuthorizationResourceTypes = DeprecationHelper(
103
- mlrun.common.schemas.AuthorizationResourceTypes
104
- )
105
- AuthorizationVerificationInput = DeprecationHelper(
106
- mlrun.common.schemas.AuthorizationVerificationInput
107
- )
108
- Credentials = DeprecationHelper(mlrun.common.schemas.Credentials)
109
- ProjectsRole = DeprecationHelper(mlrun.common.schemas.ProjectsRole)
110
-
111
- BackgroundTask = DeprecationHelper(mlrun.common.schemas.BackgroundTask)
112
- BackgroundTaskMetadata = DeprecationHelper(mlrun.common.schemas.BackgroundTaskMetadata)
113
- BackgroundTaskSpec = DeprecationHelper(mlrun.common.schemas.BackgroundTaskSpec)
114
- BackgroundTaskState = DeprecationHelper(mlrun.common.schemas.BackgroundTaskState)
115
- BackgroundTaskStatus = DeprecationHelper(mlrun.common.schemas.BackgroundTaskStatus)
116
- ClientSpe = DeprecationHelper(mlrun.common.schemas.ClientSpec)
117
- ClusterizationSpec = DeprecationHelper(mlrun.common.schemas.ClusterizationSpec)
118
- WaitForChiefToReachOnlineStateFeatureFlag = DeprecationHelper(
119
- mlrun.common.schemas.WaitForChiefToReachOnlineStateFeatureFlag
120
- )
121
- APIStates = DeprecationHelper(mlrun.common.schemas.APIStates)
122
- ClusterizationRole = DeprecationHelper(mlrun.common.schemas.ClusterizationRole)
123
- DeletionStrategy = DeprecationHelper(mlrun.common.schemas.DeletionStrategy)
124
- FeatureStorePartitionByField = DeprecationHelper(
125
- mlrun.common.schemas.FeatureStorePartitionByField
126
- )
127
- HeaderNames = DeprecationHelper(mlrun.common.schemas.HeaderNames)
128
- LogsCollectorMode = DeprecationHelper(mlrun.common.schemas.LogsCollectorMode)
129
- OrderType = DeprecationHelper(mlrun.common.schemas.OrderType)
130
- PatchMode = DeprecationHelper(mlrun.common.schemas.PatchMode)
131
- RunPartitionByField = DeprecationHelper(mlrun.common.schemas.RunPartitionByField)
132
- SortField = DeprecationHelper(mlrun.common.schemas.SortField)
133
- EntitiesOutput = DeprecationHelper(mlrun.common.schemas.EntitiesOutput)
134
- Entity = DeprecationHelper(mlrun.common.schemas.Entity)
135
- EntityListOutput = DeprecationHelper(mlrun.common.schemas.EntityListOutput)
136
- EntityRecord = DeprecationHelper(mlrun.common.schemas.EntityRecord)
137
- Feature = DeprecationHelper(mlrun.common.schemas.Feature)
138
- FeatureListOutput = DeprecationHelper(mlrun.common.schemas.FeatureListOutput)
139
- FeatureRecord = DeprecationHelper(mlrun.common.schemas.FeatureRecord)
140
- FeatureSet = DeprecationHelper(mlrun.common.schemas.FeatureSet)
141
- FeatureSetDigestOutput = DeprecationHelper(mlrun.common.schemas.FeatureSetDigestOutput)
142
- FeatureSetDigestSpec = DeprecationHelper(mlrun.common.schemas.FeatureSetDigestSpec)
143
- FeatureSetIngestInput = DeprecationHelper(mlrun.common.schemas.FeatureSetIngestInput)
144
- FeatureSetIngestOutput = DeprecationHelper(mlrun.common.schemas.FeatureSetIngestOutput)
145
- FeatureSetRecord = DeprecationHelper(mlrun.common.schemas.FeatureSetRecord)
146
- FeatureSetsOutput = DeprecationHelper(mlrun.common.schemas.FeatureSetsOutput)
147
- FeatureSetSpec = DeprecationHelper(mlrun.common.schemas.FeatureSetSpec)
148
- FeatureSetsTagsOutput = DeprecationHelper(mlrun.common.schemas.FeatureSetsTagsOutput)
149
- FeaturesOutput = DeprecationHelper(mlrun.common.schemas.FeaturesOutput)
150
- FeatureVector = DeprecationHelper(mlrun.common.schemas.FeatureVector)
151
- FeatureVectorRecord = DeprecationHelper(mlrun.common.schemas.FeatureVectorRecord)
152
- FeatureVectorsOutput = DeprecationHelper(mlrun.common.schemas.FeatureVectorsOutput)
153
- FeatureVectorsTagsOutput = DeprecationHelper(
154
- mlrun.common.schemas.FeatureVectorsTagsOutput
155
- )
156
- AuthenticationFeatureFlag = DeprecationHelper(
157
- mlrun.common.schemas.AuthenticationFeatureFlag
158
- )
159
- FeatureFlags = DeprecationHelper(mlrun.common.schemas.FeatureFlags)
160
- FrontendSpec = DeprecationHelper(mlrun.common.schemas.FrontendSpec)
161
- NuclioStreamsFeatureFlag = DeprecationHelper(
162
- mlrun.common.schemas.NuclioStreamsFeatureFlag
163
- )
164
- PreemptionNodesFeatureFlag = DeprecationHelper(
165
- mlrun.common.schemas.PreemptionNodesFeatureFlag
166
- )
167
- ProjectMembershipFeatureFlag = DeprecationHelper(
168
- mlrun.common.schemas.ProjectMembershipFeatureFlag
169
- )
170
- FunctionState = DeprecationHelper(mlrun.common.schemas.FunctionState)
171
- PreemptionModes = DeprecationHelper(mlrun.common.schemas.PreemptionModes)
172
- SecurityContextEnrichmentModes = DeprecationHelper(
173
- mlrun.common.schemas.SecurityContextEnrichmentModes
174
- )
175
- HTTPSessionRetryMode = DeprecationHelper(mlrun.common.schemas.HTTPSessionRetryMode)
176
- NodeSelectorOperator = DeprecationHelper(mlrun.common.schemas.NodeSelectorOperator)
177
- Resources = DeprecationHelper(mlrun.common.schemas.Resources)
178
- ResourceSpec = DeprecationHelper(mlrun.common.schemas.ResourceSpec)
179
- IndexedHubSource = DeprecationHelper(mlrun.common.schemas.IndexedHubSource)
180
- HubCatalog = DeprecationHelper(mlrun.common.schemas.HubCatalog)
181
- HubItem = DeprecationHelper(mlrun.common.schemas.HubItem)
182
- HubObjectMetadata = DeprecationHelper(mlrun.common.schemas.HubObjectMetadata)
183
- HubSource = DeprecationHelper(mlrun.common.schemas.HubSource)
184
- HubSourceSpec = DeprecationHelper(mlrun.common.schemas.HubSourceSpec)
185
- last_source_index = DeprecationHelper(mlrun.common.schemas.last_source_index)
186
- MostCommonObjectTypesReport = DeprecationHelper(
187
- mlrun.common.schemas.MostCommonObjectTypesReport
188
- )
189
- ObjectTypeReport = DeprecationHelper(mlrun.common.schemas.ObjectTypeReport)
190
- Features = DeprecationHelper(mlrun.common.schemas.Features)
191
- FeatureValues = DeprecationHelper(mlrun.common.schemas.FeatureValues)
192
- GrafanaColumn = DeprecationHelper(
193
- mlrun.common.schemas.model_monitoring.grafana.GrafanaColumn
194
- )
195
-
196
- GrafanaNumberColumn = DeprecationHelper(
197
- mlrun.common.schemas.model_monitoring.grafana.GrafanaNumberColumn
198
- )
199
- GrafanaStringColumn = DeprecationHelper(
200
- mlrun.common.schemas.model_monitoring.grafana.GrafanaStringColumn
201
- )
202
- GrafanaTable = DeprecationHelper(
203
- mlrun.common.schemas.model_monitoring.grafana.GrafanaTable
204
- )
205
- ModelEndpoint = DeprecationHelper(mlrun.common.schemas.ModelEndpoint)
206
- ModelEndpointList = DeprecationHelper(mlrun.common.schemas.ModelEndpointList)
207
- ModelEndpointMetadata = DeprecationHelper(mlrun.common.schemas.ModelEndpointMetadata)
208
- ModelEndpointSpec = DeprecationHelper(mlrun.common.schemas.ModelEndpointSpec)
209
- ModelEndpointStatus = DeprecationHelper(mlrun.common.schemas.ModelEndpointStatus)
210
- NotificationSeverity = DeprecationHelper(mlrun.common.schemas.NotificationSeverity)
211
- NotificationStatus = DeprecationHelper(mlrun.common.schemas.NotificationStatus)
212
- ObjectKind = DeprecationHelper(mlrun.common.schemas.ObjectKind)
213
- ObjectMetadata = DeprecationHelper(mlrun.common.schemas.ObjectMetadata)
214
- ObjectSpec = DeprecationHelper(mlrun.common.schemas.ObjectSpec)
215
- ObjectStatus = DeprecationHelper(mlrun.common.schemas.ObjectStatus)
216
- PipelinesFormat = DeprecationHelper(mlrun.common.formatters.PipelineFormat)
217
- PipelinesOutput = DeprecationHelper(mlrun.common.schemas.PipelinesOutput)
218
- PipelinesPagination = DeprecationHelper(mlrun.common.schemas.PipelinesPagination)
219
- IguazioProject = DeprecationHelper(mlrun.common.schemas.IguazioProject)
220
- Project = DeprecationHelper(mlrun.common.schemas.Project)
221
- ProjectDesiredState = DeprecationHelper(mlrun.common.schemas.ProjectDesiredState)
222
- ProjectMetadata = DeprecationHelper(mlrun.common.schemas.ProjectMetadata)
223
- ProjectOwner = DeprecationHelper(mlrun.common.schemas.ProjectOwner)
224
- ProjectsFormat = DeprecationHelper(mlrun.common.formatters.ProjectFormat)
225
- ProjectsOutput = DeprecationHelper(mlrun.common.schemas.ProjectsOutput)
226
- ProjectSpec = DeprecationHelper(mlrun.common.schemas.ProjectSpec)
227
- ProjectState = DeprecationHelper(mlrun.common.schemas.ProjectState)
228
- ProjectStatus = DeprecationHelper(mlrun.common.schemas.ProjectStatus)
229
- ProjectSummariesOutput = DeprecationHelper(mlrun.common.schemas.ProjectSummariesOutput)
230
- ProjectSummary = DeprecationHelper(mlrun.common.schemas.ProjectSummary)
231
- GroupedByJobRuntimeResourcesOutput = DeprecationHelper(
232
- mlrun.common.schemas.GroupedByJobRuntimeResourcesOutput
233
- )
234
- GroupedByProjectRuntimeResourcesOutput = DeprecationHelper(
235
- mlrun.common.schemas.GroupedByProjectRuntimeResourcesOutput
236
- )
237
- KindRuntimeResources = DeprecationHelper(mlrun.common.schemas.KindRuntimeResources)
238
- ListRuntimeResourcesGroupByField = DeprecationHelper(
239
- mlrun.common.schemas.ListRuntimeResourcesGroupByField
240
- )
241
- RuntimeResource = DeprecationHelper(mlrun.common.schemas.RuntimeResource)
242
- RuntimeResources = DeprecationHelper(mlrun.common.schemas.RuntimeResources)
243
- RuntimeResourcesOutput = DeprecationHelper(mlrun.common.schemas.RuntimeResourcesOutput)
244
- ScheduleCronTrigger = DeprecationHelper(mlrun.common.schemas.ScheduleCronTrigger)
245
- ScheduleInput = DeprecationHelper(mlrun.common.schemas.ScheduleInput)
246
- ScheduleKinds = DeprecationHelper(mlrun.common.schemas.ScheduleKinds)
247
- ScheduleOutput = DeprecationHelper(mlrun.common.schemas.ScheduleOutput)
248
- ScheduleRecord = DeprecationHelper(mlrun.common.schemas.ScheduleRecord)
249
- SchedulesOutput = DeprecationHelper(mlrun.common.schemas.SchedulesOutput)
250
- ScheduleUpdate = DeprecationHelper(mlrun.common.schemas.ScheduleUpdate)
251
- AuthSecretData = DeprecationHelper(mlrun.common.schemas.AuthSecretData)
252
- SecretKeysData = DeprecationHelper(mlrun.common.schemas.SecretKeysData)
253
- SecretProviderName = DeprecationHelper(mlrun.common.schemas.SecretProviderName)
254
- SecretsData = DeprecationHelper(mlrun.common.schemas.SecretsData)
255
- UserSecretCreationRequest = DeprecationHelper(
256
- mlrun.common.schemas.UserSecretCreationRequest
257
- )
258
- Tag = DeprecationHelper(mlrun.common.schemas.Tag)
259
- TagObjects = DeprecationHelper(mlrun.common.schemas.TagObjects)