Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.29 KB

File metadata and controls

31 lines (23 loc) · 1.29 KB

NetworkDriveAvailableResource

Properties

Name Type Description Notes
resource_id object ID сервиса.
resource_type object Тип ресурса.
ip object IP-адрес сервиса. [optional]
availability_zone AvailabilityZone

Example

from timeweb_cloud_api.models.network_drive_available_resource import NetworkDriveAvailableResource

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

# convert the object into a dict
network_drive_available_resource_dict = network_drive_available_resource_instance.to_dict()
# create an instance of NetworkDriveAvailableResource from a dict
network_drive_available_resource_form_dict = network_drive_available_resource.from_dict(network_drive_available_resource_dict)

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