Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.17 KB

File metadata and controls

31 lines (22 loc) · 1.17 KB

SyntheticLocationConfiguration

Properties

Name Type Description Notes
cluster_name str [optional]
namespace str [optional]
tenant_type str [optional]

Example

from instana_client.models.synthetic_location_configuration import SyntheticLocationConfiguration

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

# convert the object into a dict
synthetic_location_configuration_dict = synthetic_location_configuration_instance.to_dict()
# create an instance of SyntheticLocationConfiguration from a dict
synthetic_location_configuration_from_dict = SyntheticLocationConfiguration.from_dict(synthetic_location_configuration_dict)

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