Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.25 KB

File metadata and controls

33 lines (24 loc) · 1.25 KB

ClusterRegistrationRequest

Properties

Name Type Description Notes
display_name str
storage_class str
region str [optional]
cloud_provider CloudProvider [optional]
credential ClusterCredential

Example

from platform_api_python_client.models.cluster_registration_request import ClusterRegistrationRequest

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

# convert the object into a dict
cluster_registration_request_dict = cluster_registration_request_instance.to_dict()
# create an instance of ClusterRegistrationRequest from a dict
cluster_registration_request_from_dict = ClusterRegistrationRequest.from_dict(cluster_registration_request_dict)

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