Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit8b7a841

Browse files
Generate alb
1 parent23b3304 commit8b7a841

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 usingARGUS, credentialsmustfirst be createdvia the ARGUSAPIand thenstored with this endpointtobe usedbythe Application Load Balancer.
71+
Created credentials can be stored and used for the load balancer observability.For example, when usingSTACKIT Observability, credentials firstmustbe createdfor that STACKIT Observability instance (by using theirAPIor the STACKIT Portal)and thencan be providedtothe load balancerbystoring 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 usingARGUS, credentialsmustfirst be createdvia the ARGUSAPIand thenstored with this endpointtobe usedbythe Application Load Balancer.
147+
Created credentials can be stored and used for the load balancer observability.For example, when usingSTACKIT Observability, credentials firstmustbe createdfor that STACKIT Observability instance (by using theirAPIor the STACKIT Portal)and thencan be providedtothe load balancerbystoring 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 usingARGUS, credentialsmustfirst be createdvia the ARGUSAPIand thenstored with this endpointtobe usedbythe Application Load Balancer.
223+
Created credentials can be stored and used for the load balancer observability.For example, when usingSTACKIT Observability, credentials firstmustbe createdfor that STACKIT Observability instance (by using theirAPIor the STACKIT Portal)and thencan be providedtothe load balancerbystoring 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 existingARGUS instance, which is used during basic auth.",
35+
description="A valid password used for an existingSTACKIT 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 existingARGUS instance, which is used during basic auth.",
39+
description="A valid username used for an existingSTACKIT 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="TheARGUS/Loki remote write Push URL you want the logs to be shipped to.",
36+
description="TheObservability(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="TheARGUS/Prometheus remote writePush URL you want the metrics to be shipped to.",
36+
description="TheObservability(Metrics)/Prometheus remote writepush 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
classLoadbalancerOptionObservability(BaseModel):
2828
"""
29-
We offerApplicationLoad Balancermetricsobservability viaARGUSor external solutions. Not changeable after creation.
29+
We offer Load Balancer observability viaSTACKIT Observabilityor 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 existingARGUS instance, which is used during basic auth.",
35+
description="A valid password used for an existingSTACKIT 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 existingARGUS instance, which is used during basic auth.",
39+
description="A valid username used for an existingSTACKIT Observability instance, which is used during basic auth.",
4040
)
4141
__properties:ClassVar[List[str]]= ["displayName","password","username"]
4242

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp