Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.06 KB

File metadata and controls

30 lines (22 loc) · 1.06 KB

ClusterEdit

Properties

Name Type Description Notes
name object Новое название кластера [optional]
description object Новое описание кластера [optional]
oidc_provider ClusterEditOidcProvider [optional]

Example

from timeweb_cloud_api.models.cluster_edit import ClusterEdit

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

# convert the object into a dict
cluster_edit_dict = cluster_edit_instance.to_dict()
# create an instance of ClusterEdit from a dict
cluster_edit_form_dict = cluster_edit.from_dict(cluster_edit_dict)

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