You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"`config` will be deprecated in 3.0.0 and will be ignored now. Please use `ads.set_auth()` to config the auth information."
300
+
"Parameter `config` will be removed from ModelDeployment constructor in 3.0.0 and will be ignored now. Please use `ads.set_auth()` to config the auth information."
296
301
)
297
302
298
303
ifproperties:
299
304
warnings.warn(
300
-
"`properties` will be deprecated in 3.0.0. Please use `spec` or the builder pattern to initialize model deployment instance."
305
+
"Parameter `properties` will be removed from ModelDeployment constructor in 3.0.0. Please use `spec` or the builder pattern to initialize model deployment instance."
301
306
)
302
307
303
308
ifmodel_deployment_urlormodel_deployment_id:
304
309
warnings.warn(
305
-
"`model_deployment_url` and `model_deployment_id` will be deprecated in 3.0.0 and will be ignored now. These two fields will be auto-populated from the service side."
310
+
"Parameter `model_deployment_url` and `model_deployment_id` will be removed from ModelDeployment constructor in 3.0.0 and will be ignored now. These two fields will be auto-populated from the service side."
306
311
)
307
312
308
313
initialize_spec= {}
@@ -694,6 +699,11 @@ def update(
694
699
ModelDeployment
695
700
The instance of ModelDeployment.
696
701
"""
702
+
ifproperties:
703
+
warnings.warn(
704
+
"Parameter `properties` will be removed from ModelDeployment update() in 3.0.0. Please use the builder pattern to update model deployment instance."
0 commit comments