Deployment information for a plugin.
| 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] |
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)