Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.06 KB

File metadata and controls

30 lines (21 loc) · 1.06 KB

ServiceMap

Properties

Name Type Description Notes
connections List[ServiceMapConnection] A list which indicates which services are consumers and which are providers in the communication chain.
services List[ExtendedService] List of services in the topology.

Example

from instana_client.models.service_map import ServiceMap

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

# convert the object into a dict
service_map_dict = service_map_instance.to_dict()
# create an instance of ServiceMap from a dict
service_map_from_dict = ServiceMap.from_dict(service_map_dict)

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