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

Generator: Update SDK /services/alb#2480

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
rubenhoenle merged 1 commit intomainfromgenerator-bot-18785411730/alb
Oct 24, 2025
Merged
Show file tree
Hide file tree
Changes fromall 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
6 changes: 3 additions & 3 deletionsservices/alb/src/stackit/alb/api/default_api.py
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -68,7 +68,7 @@ def create_credentials(
) -> CreateCredentialsResponse:
"""Create credentials for observability of the application load balancer

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.
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.

:param project_id: (required)
:type project_id: str
Expand DownExpand Up@@ -144,7 +144,7 @@ def create_credentials_with_http_info(
) -> ApiResponse[CreateCredentialsResponse]:
"""Create credentials for observability of the application load balancer

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.
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.

:param project_id: (required)
:type project_id: str
Expand DownExpand Up@@ -220,7 +220,7 @@ def create_credentials_without_preload_content(
) -> RESTResponseType:
"""Create credentials for observability of the application load balancer

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.
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.

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

Expand Down
View file
Open in desktop
Original file line numberDiff line numberDiff 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
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -33,7 +33,7 @@ class LoadbalancerOptionLogs(BaseModel):
)
push_url: Optional[StrictStr] = Field(
default=None,
description="TheARGUS/Loki remote write Push URL you want the logs to be shipped to.",
description="TheObservability(Logs)/Loki remote write Push URL you want the logs to be shipped to.",
alias="pushUrl",
)
__properties: ClassVar[List[str]] = ["credentialsRef", "pushUrl"]
Expand Down
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -33,7 +33,7 @@ class LoadbalancerOptionMetrics(BaseModel):
)
push_url: Optional[StrictStr] = Field(
default=None,
description="TheARGUS/Prometheus remote writePush URL you want the metrics to be shipped to.",
description="TheObservability(Metrics)/Prometheus remote writepush URL you want the metrics to be shipped to.",
alias="pushUrl",
)
__properties: ClassVar[List[str]] = ["credentialsRef", "pushUrl"]
Expand Down
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -26,7 +26,7 @@

class LoadbalancerOptionObservability(BaseModel):
"""
We offerApplicationLoad Balancermetricsobservability viaARGUSor external solutions. Not changeable after creation.
We offer Load Balancer observability viaSTACKIT Observabilityor external solutions.
""" # noqa: E501

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

Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp