Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion services/telemetrylink/oas_commit
Original file line number Diff line number Diff line change
@@ -1 +1 @@
da4701b7dbe20e984aef89711bb9ba716e19fcba
f385f3b154cb566b3c9e5156c29b28150f2af4a2
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ class CreateOrUpdateFolderTelemetryLinkPayload(BaseModel):
display_name: Annotated[str, Field(min_length=1, strict=True, max_length=32)] = Field(
description="The display name is a short name chosen by the user to identify the resource.", alias="displayName"
)
enabled: StrictBool = Field(
description="Indicates whether routing through the link to a telemetry-router is active."
enabled: Optional[StrictBool] = Field(
default=True, description="Indicates whether routing through the link to a telemetry-router is active."
)
telemetry_router_id: Annotated[str, Field(strict=True, max_length=1024)] = Field(
description="The ID of the telemetry-router to route the telemetry data.", alias="telemetryRouterId"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ class CreateOrUpdateOrganizationTelemetryLinkPayload(BaseModel):
display_name: Annotated[str, Field(min_length=1, strict=True, max_length=32)] = Field(
description="The display name is a short name chosen by the user to identify the resource.", alias="displayName"
)
enabled: StrictBool = Field(
description="Indicates whether routing through the link to a telemetry-router is active."
enabled: Optional[StrictBool] = Field(
default=True, description="Indicates whether routing through the link to a telemetry-router is active."
)
telemetry_router_id: Annotated[str, Field(strict=True, max_length=1024)] = Field(
description="The ID of the telemetry-router to route the telemetry data.", alias="telemetryRouterId"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ class CreateOrUpdateProjectTelemetryLinkPayload(BaseModel):
display_name: Annotated[str, Field(min_length=1, strict=True, max_length=32)] = Field(
description="The display name is a short name chosen by the user to identify the resource.", alias="displayName"
)
enabled: StrictBool = Field(
description="Indicates whether routing through the link to a telemetry-router is active."
enabled: Optional[StrictBool] = Field(
default=True, description="Indicates whether routing through the link to a telemetry-router is active."
)
telemetry_router_id: Annotated[str, Field(strict=True, max_length=1024)] = Field(
description="The ID of the telemetry-router to route the telemetry data.", alias="telemetryRouterId"
Expand Down
Loading