Skip to content

Commit e1bd64b

Browse files
Generate alb
1 parent 23b3304 commit e1bd64b

File tree

7 files changed

+13
-11
lines changed

7 files changed

+13
-11
lines changed

services/alb/src/stackit/alb/api/default_api.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def create_credentials(
6868
) -> CreateCredentialsResponse:
6969
"""Create credentials for observability of the application load balancer
7070
71-
Creates and stores credentials for use with Application Load Balancer Observability. For example, when using ARGUS, credentials must first be created via the ARGUS API and then stored with this endpoint to be used by the Application Load Balancer.
71+
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.
7272
7373
:param project_id: (required)
7474
:type project_id: str
@@ -144,7 +144,7 @@ def create_credentials_with_http_info(
144144
) -> ApiResponse[CreateCredentialsResponse]:
145145
"""Create credentials for observability of the application load balancer
146146
147-
Creates and stores credentials for use with Application Load Balancer Observability. For example, when using ARGUS, credentials must first be created via the ARGUS API and then stored with this endpoint to be used by the Application Load Balancer.
147+
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.
148148
149149
:param project_id: (required)
150150
:type project_id: str
@@ -220,7 +220,7 @@ def create_credentials_without_preload_content(
220220
) -> RESTResponseType:
221221
"""Create credentials for observability of the application load balancer
222222
223-
Creates and stores credentials for use with Application Load Balancer Observability. For example, when using ARGUS, credentials must first be created via the ARGUS API and then stored with this endpoint to be used by the Application Load Balancer.
223+
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.
224224
225225
:param project_id: (required)
226226
:type project_id: str

services/alb/src/stackit/alb/models/create_credentials_payload.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@ class CreateCredentialsPayload(BaseModel):
3232
)
3333
password: Optional[StrictStr] = Field(
3434
default=None,
35-
description="A valid password used for an existing ARGUS instance, which is used during basic auth.",
35+
description="A valid password used for an existing STACKIT Observability instance, which is used during basic auth.",
3636
)
3737
username: Optional[StrictStr] = Field(
3838
default=None,
39-
description="A valid username used for an existing ARGUS instance, which is used during basic auth.",
39+
description="A valid username used for an existing STACKIT Observability instance, which is used during basic auth.",
4040
)
4141
__properties: ClassVar[List[str]] = ["displayName", "password", "username"]
4242

services/alb/src/stackit/alb/models/credentials_response.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,9 @@ class CredentialsResponse(BaseModel):
3636
default=None, description="Credential name", alias="displayName"
3737
)
3838
region: Optional[StrictStr] = Field(default=None, description="Region of the Credential")
39-
username: Optional[StrictStr] = Field(default=None, description="The username used for the ARGUS instance")
39+
username: Optional[StrictStr] = Field(
40+
default=None, description="The username used for the STACKIT Observability instance"
41+
)
4042
__properties: ClassVar[List[str]] = ["credentialsRef", "displayName", "region", "username"]
4143

4244
@field_validator("display_name")

services/alb/src/stackit/alb/models/loadbalancer_option_logs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class LoadbalancerOptionLogs(BaseModel):
3333
)
3434
push_url: Optional[StrictStr] = Field(
3535
default=None,
36-
description="The ARGUS/Loki remote write Push URL you want the logs to be shipped to.",
36+
description="The Observability(Logs)/Loki remote write Push URL you want the logs to be shipped to.",
3737
alias="pushUrl",
3838
)
3939
__properties: ClassVar[List[str]] = ["credentialsRef", "pushUrl"]

services/alb/src/stackit/alb/models/loadbalancer_option_metrics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class LoadbalancerOptionMetrics(BaseModel):
3333
)
3434
push_url: Optional[StrictStr] = Field(
3535
default=None,
36-
description="The ARGUS/Prometheus remote write Push URL you want the metrics to be shipped to.",
36+
description="The Observability(Metrics)/Prometheus remote write push URL you want the metrics to be shipped to.",
3737
alias="pushUrl",
3838
)
3939
__properties: ClassVar[List[str]] = ["credentialsRef", "pushUrl"]

services/alb/src/stackit/alb/models/loadbalancer_option_observability.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
class LoadbalancerOptionObservability(BaseModel):
2828
"""
29-
We offer Application Load Balancer metrics observability via ARGUS or external solutions. Not changeable after creation.
29+
We offer Load Balancer observability via STACKIT Observability or external solutions.
3030
""" # noqa: E501
3131

3232
logs: Optional[LoadbalancerOptionLogs] = None

services/alb/src/stackit/alb/models/update_credentials_payload.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@ class UpdateCredentialsPayload(BaseModel):
3232
)
3333
password: Optional[StrictStr] = Field(
3434
default=None,
35-
description="A valid password used for an existing ARGUS instance, which is used during basic auth.",
35+
description="A valid password used for an existing STACKIT Observability instance, which is used during basic auth.",
3636
)
3737
username: Optional[StrictStr] = Field(
3838
default=None,
39-
description="A valid username used for an existing ARGUS instance, which is used during basic auth.",
39+
description="A valid username used for an existing STACKIT Observability instance, which is used during basic auth.",
4040
)
4141
__properties: ClassVar[List[str]] = ["displayName", "password", "username"]
4242

0 commit comments

Comments
 (0)