Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 1.49 KB

File metadata and controls

41 lines (32 loc) · 1.49 KB

Assetsv3IPVertex

Properties

Name Type Description Notes
city str [optional]
country str [optional]
data_center str [optional]
description str [optional]
dns str [optional]
extended_properties List[Assetsv3CustomProperty] [optional]
ip_address str [optional]
ip_port List[Assetsv3ConnectionEdge] [optional]
mac_address str [optional]
region str [optional]
resolution_key str [optional]
state str [optional]
version str [optional]

Example

from ibm_gdsc_sdk_saas.models.assetsv3_ip_vertex import Assetsv3IPVertex

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

# convert the object into a dict
assetsv3_ip_vertex_dict = assetsv3_ip_vertex_instance.to_dict()
# create an instance of Assetsv3IPVertex from a dict
assetsv3_ip_vertex_from_dict = Assetsv3IPVertex.from_dict(assetsv3_ip_vertex_dict)

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