Skip to content

Commit 1f5ac6c

Browse files
Generate telemetrylink
1 parent 55f6205 commit 1f5ac6c

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

services/telemetrylink/oas_commit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
da4701b7dbe20e984aef89711bb9ba716e19fcba
1+
79a99bf8bc8175f2f384c7636da1fae5f6a9bd60

services/telemetrylink/src/stackit/telemetrylink/models/create_or_update_folder_telemetry_link_payload.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ class CreateOrUpdateFolderTelemetryLinkPayload(BaseModel):
3636
display_name: Annotated[str, Field(min_length=1, strict=True, max_length=32)] = Field(
3737
description="The display name is a short name chosen by the user to identify the resource.", alias="displayName"
3838
)
39-
enabled: StrictBool = Field(
40-
description="Indicates whether routing through the link to a telemetry-router is active."
39+
enabled: Optional[StrictBool] = Field(
40+
default=True, description="Indicates whether routing through the link to a telemetry-router is active."
4141
)
4242
telemetry_router_id: Annotated[str, Field(strict=True, max_length=1024)] = Field(
4343
description="The ID of the telemetry-router to route the telemetry data.", alias="telemetryRouterId"

services/telemetrylink/src/stackit/telemetrylink/models/create_or_update_organization_telemetry_link_payload.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ class CreateOrUpdateOrganizationTelemetryLinkPayload(BaseModel):
3636
display_name: Annotated[str, Field(min_length=1, strict=True, max_length=32)] = Field(
3737
description="The display name is a short name chosen by the user to identify the resource.", alias="displayName"
3838
)
39-
enabled: StrictBool = Field(
40-
description="Indicates whether routing through the link to a telemetry-router is active."
39+
enabled: Optional[StrictBool] = Field(
40+
default=True, description="Indicates whether routing through the link to a telemetry-router is active."
4141
)
4242
telemetry_router_id: Annotated[str, Field(strict=True, max_length=1024)] = Field(
4343
description="The ID of the telemetry-router to route the telemetry data.", alias="telemetryRouterId"

services/telemetrylink/src/stackit/telemetrylink/models/create_or_update_project_telemetry_link_payload.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ class CreateOrUpdateProjectTelemetryLinkPayload(BaseModel):
3636
display_name: Annotated[str, Field(min_length=1, strict=True, max_length=32)] = Field(
3737
description="The display name is a short name chosen by the user to identify the resource.", alias="displayName"
3838
)
39-
enabled: StrictBool = Field(
40-
description="Indicates whether routing through the link to a telemetry-router is active."
39+
enabled: Optional[StrictBool] = Field(
40+
default=True, description="Indicates whether routing through the link to a telemetry-router is active."
4141
)
4242
telemetry_router_id: Annotated[str, Field(strict=True, max_length=1024)] = Field(
4343
description="The ID of the telemetry-router to route the telemetry data.", alias="telemetryRouterId"

0 commit comments

Comments
 (0)