运行部署信息¶
属性¶
名称 |
类型 |
描述 |
备注 |
|---|---|---|---|
instance_name |
str |
||
cluster_type |
str |
||
版本 |
字符串 |
||
creation_time |
str |
||
前端 |
str |
||
引擎 |
字符串 |
||
存储 |
str |
示例¶
from graphscope.flex.rest.models.running_deployment_info import RunningDeploymentInfo
# TODO update the JSON string below
json = "{}"
# create an instance of RunningDeploymentInfo from a JSON string
running_deployment_info_instance = RunningDeploymentInfo.from_json(json)
# print the JSON string representation of the object
print(RunningDeploymentInfo.to_json())
# convert the object into a dict
running_deployment_info_dict = running_deployment_info_instance.to_dict()
# create an instance of RunningDeploymentInfo from a dict
running_deployment_info_from_dict = RunningDeploymentInfo.from_dict(running_deployment_info_dict)