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/loadbalancer#2464

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

Closed
Closed
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
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -86,7 +86,7 @@ def create_credentials(
) -> CreateCredentialsResponse:
"""Create credentials for observability of the Load Balancer

Create credentials can beused to store existing credentials, which are valid to beused forLoad Balancer Observability. This means, e.g.when usingARGUS, thatcredentials first must be created for thatARGUSinstance (by using their API) andthen can be provided to theLoad Balancer by storing them with this endpoint.
Created credentials can bestored andused forthe load balancer observability. For example,when usingSTACKIT Observability,credentials first must be created for thatSTACKIT Observabilityinstance (by using their API or the STACKIT Portal) and then can be provided to theload balancer by storing them with this endpoint.

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

Create credentials can beused to store existing credentials, which are valid to beused forLoad Balancer Observability. This means, e.g.when usingARGUS, thatcredentials first must be created for thatARGUSinstance (by using their API) andthen can be provided to theLoad Balancer by storing them with this endpoint.
Created credentials can bestored andused forthe load balancer observability. For example,when usingSTACKIT Observability,credentials first must be created for thatSTACKIT Observabilityinstance (by using their API or the STACKIT Portal) and then can be provided to theload balancer by storing them with this endpoint.

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

Create credentials can beused to store existing credentials, which are valid to beused forLoad Balancer Observability. This means, e.g.when usingARGUS, thatcredentials first must be created for thatARGUSinstance (by using their API) andthen can be provided to theLoad Balancer by storing them with this endpoint.
Created credentials can bestored andused forthe load balancer observability. For example,when usingSTACKIT Observability,credentials first must be created for thatSTACKIT Observabilityinstance (by using their API or the STACKIT Portal) and then can be provided to theload balancer by storing 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
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
Original file line numberDiff line numberDiff line change
Expand Up@@ -28,7 +28,7 @@

classLoadbalancerOptionObservability(BaseModel):
"""
We offer Load 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