Skip to content
Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def create_credentials(
) -> CreateCredentialsResponse:
"""Create credentials for observability of the Load Balancer

Create credentials can be used to store existing credentials, which are valid to be used for Load Balancer Observability. This means, e.g. when using ARGUS, that credentials first must be created for that ARGUS instance (by using their API) and then can be provided to the Load Balancer by storing them with this endpoint.
Created credentials can be stored and used for the load balancer observability. For example, when using STACKIT Observability, credentials first must be created for that STACKIT Observability instance (by using their API or the STACKIT Portal) and then can be provided to the load balancer by storing them with this endpoint.

:param project_id: (required)
:type project_id: str
Expand Down Expand Up @@ -162,7 +162,7 @@ def create_credentials_with_http_info(
) -> ApiResponse[CreateCredentialsResponse]:
"""Create credentials for observability of the Load Balancer

Create credentials can be used to store existing credentials, which are valid to be used for Load Balancer Observability. This means, e.g. when using ARGUS, that credentials first must be created for that ARGUS instance (by using their API) and then can be provided to the Load Balancer by storing them with this endpoint.
Created credentials can be stored and used for the load balancer observability. For example, when using STACKIT Observability, credentials first must be created for that STACKIT Observability instance (by using their API or the STACKIT Portal) and then can be provided to the load balancer by storing them with this endpoint.

:param project_id: (required)
:type project_id: str
Expand Down Expand Up @@ -238,7 +238,7 @@ def create_credentials_without_preload_content(
) -> RESTResponseType:
"""Create credentials for observability of the Load Balancer

Create credentials can be used to store existing credentials, which are valid to be used for Load Balancer Observability. This means, e.g. when using ARGUS, that credentials first must be created for that ARGUS instance (by using their API) and then can be provided to the Load Balancer by storing them with this endpoint.
Created credentials can be stored and used for the load balancer observability. For example, when using STACKIT Observability, credentials first must be created for that STACKIT Observability instance (by using their API or the STACKIT Portal) and then can be provided to the load balancer by storing them with this endpoint.

:param project_id: (required)
:type project_id: str
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ class CreateCredentialsPayload(BaseModel):
)
password: Optional[StrictStr] = Field(
default=None,
description="A valid password used for an existing ARGUS instance, which is used during basic auth.",
description="A valid password used for an existing STACKIT Observability instance, which is used during basic auth.",
)
username: Optional[StrictStr] = Field(
default=None,
description="A valid username used for an existing ARGUS instance, which is used during basic auth.",
description="A valid username used for an existing STACKIT Observability instance, which is used during basic auth.",
)
__properties: ClassVar[List[str]] = ["displayName", "password", "username"]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ class CredentialsResponse(BaseModel):
default=None, description="Credential name", alias="displayName"
)
region: Optional[StrictStr] = Field(default=None, description="Region of the Credential")
username: Optional[StrictStr] = Field(default=None, description="The username used for the ARGUS instance")
username: Optional[StrictStr] = Field(
default=None, description="The username used for the STACKIT Observability instance"
)
__properties: ClassVar[List[str]] = ["credentialsRef", "displayName", "region", "username"]

@field_validator("display_name")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class LoadbalancerOptionLogs(BaseModel):
)
push_url: Optional[StrictStr] = Field(
default=None,
description="The ARGUS/Loki remote write Push URL you want the logs to be shipped to.",
description="The Observability(Logs)/Loki remote write Push URL you want the logs to be shipped to.",
alias="pushUrl",
)
__properties: ClassVar[List[str]] = ["credentialsRef", "pushUrl"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class LoadbalancerOptionMetrics(BaseModel):
)
push_url: Optional[StrictStr] = Field(
default=None,
description="The ARGUS/Prometheus remote write Push URL you want the metrics to be shipped to.",
description="The Observability(Metrics)/Prometheus remote write push URL you want the metrics to be shipped to.",
alias="pushUrl",
)
__properties: ClassVar[List[str]] = ["credentialsRef", "pushUrl"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

class LoadbalancerOptionObservability(BaseModel):
"""
We offer Load Balancer metrics observability via ARGUS or external solutions. Not changeable after creation.
We offer Load Balancer observability via STACKIT Observability or external solutions.
""" # noqa: E501

logs: Optional[LoadbalancerOptionLogs] = None
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ class UpdateCredentialsPayload(BaseModel):
)
password: Optional[StrictStr] = Field(
default=None,
description="A valid password used for an existing ARGUS instance, which is used during basic auth.",
description="A valid password used for an existing STACKIT Observability instance, which is used during basic auth.",
)
username: Optional[StrictStr] = Field(
default=None,
description="A valid username used for an existing ARGUS instance, which is used during basic auth.",
description="A valid username used for an existing STACKIT Observability instance, which is used during basic auth.",
)
__properties: ClassVar[List[str]] = ["displayName", "password", "username"]

Expand Down