Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.13 KB

File metadata and controls

36 lines (27 loc) · 1.13 KB

SoftwareVersion

Properties

Name Type Description Notes
discovery_type str
metadata Dict[str, str] [optional]
name str
plugin str
software_type str
used_by List[SoftwareUser]
vendor str
version str

Example

from instana_client.models.software_version import SoftwareVersion

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

# convert the object into a dict
software_version_dict = software_version_instance.to_dict()
# create an instance of SoftwareVersion from a dict
software_version_from_dict = SoftwareVersion.from_dict(software_version_dict)

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