Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.24 KB

File metadata and controls

33 lines (24 loc) · 1.24 KB

PluginDeploymentInfo

Deployment information for a plugin.

Properties

Name Type Description Notes
ray_cluster_url str Ray cluster URL where plugin is deployed [optional]
ray_deployment_name str Ray deployment name [optional]
feature_uri str Feature URI for accessing the plugin
deployed_at datetime When the plugin was deployed [optional]

Example

from mixpeek.models.plugin_deployment_info import PluginDeploymentInfo

# TODO update the JSON string below
json = "{}"
# create an instance of PluginDeploymentInfo from a JSON string
plugin_deployment_info_instance = PluginDeploymentInfo.from_json(json)
# print the JSON string representation of the object
print(PluginDeploymentInfo.to_json())

# convert the object into a dict
plugin_deployment_info_dict = plugin_deployment_info_instance.to_dict()
# create an instance of PluginDeploymentInfo from a dict
plugin_deployment_info_from_dict = PluginDeploymentInfo.from_dict(plugin_deployment_info_dict)

[Back to Model list] [Back to API list] [Back to README]