You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: instana_client/models/service.py
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,8 @@ class Service(BaseModel):
32
32
id: Annotated[str, Field(min_length=1, strict=True)] =Field(description="Unique ID of the Service. Eg: `3feb3dcd206c166ef2b41c707e0cd38d7cd325aa`.")
33
33
label: Annotated[str, Field(min_length=1, strict=True)] =Field(description="Name of the Service. Eg: `payment`.")
34
34
snapshot_ids: List[StrictStr] =Field(description="A unique identifier the metrics are assigned to.", alias="snapshotIds")
35
-
technologies: Optional[List[StrictStr]] =Field(default=None, description="List of technologies: `Eg:[\"springbootApplicationContainer\"]`") types: List[StrictStr] =Field(description="Shows types of Endpoints a Service can consist of. It may be one or more. Eg: `HTTP` `OPENTELEMETRY` can be in 1 Service.")
35
+
technologies: Optional[List[StrictStr]] =Field(default=None, description="List of technologies: `Eg:[\"springbootApplicationContainer\"]`")
36
+
types: List[StrictStr] =Field(description="Shows types of Endpoints a Service can consist of. It may be one or more. Eg: `HTTP` `OPENTELEMETRY` can be in 1 Service.")
0 commit comments