| Name |
Type |
Description |
Notes |
| entity_type |
str |
Since, this is a Service, it will be of type `SERVICE`. |
[optional] |
| id |
str |
Unique ID of the Service. Eg: `3feb3dcd206c166ef2b41c707e0cd38d7cd325aa`. |
|
| label |
str |
Name of the Service. Eg: `payment`. |
|
| snapshot_ids |
List[str] |
A unique identifier the metrics are assigned to. |
|
| technologies |
List[str] |
List of technologies: `Eg:["springbootApplicationContainer"]` |
|
| types |
List[str] |
Shows types of Endpoints a Service can consist of. It may be one or more. Eg: `HTTP` `OPENTELEMETRY` can be in 1 Service. |
|
from instana_client.models.service import Service
# TODO update the JSON string below
json = "{}"
# create an instance of Service from a JSON string
service_instance = Service.from_json(json)
# print the JSON string representation of the object
print(Service.to_json())
# convert the object into a dict
service_dict = service_instance.to_dict()
# create an instance of Service from a dict
service_from_dict = Service.from_dict(service_dict)
[Back to Model list] [Back to API list] [Back to README]