Skip to content

Commit ff07d35

Browse files
committed
fix: sanity test
1 parent ffda735 commit ff07d35

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

instana_client/models/service.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ class Service(BaseModel):
3232
id: Annotated[str, Field(min_length=1, strict=True)] = Field(description="Unique ID of the Service. Eg: `3feb3dcd206c166ef2b41c707e0cd38d7cd325aa`.")
3333
label: Annotated[str, Field(min_length=1, strict=True)] = Field(description="Name of the Service. Eg: `payment`.")
3434
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.")
3637
__properties: ClassVar[List[str]] = ["entityType", "id", "label", "snapshotIds", "technologies", "types"]
3738

3839
@field_validator('entity_type')

0 commit comments

Comments
 (0)