From 79a672129a8ff00e63664c8f7e008d2db9170793 Mon Sep 17 00:00:00 2001 From: SDK Generator Bot Date: Thu, 23 Oct 2025 09:04:24 +0000 Subject: [PATCH] Generate alb --- services/alb/src/stackit/alb/api/default_api.py | 6 +++--- .../src/stackit/alb/models/create_credentials_payload.py | 4 ++-- services/alb/src/stackit/alb/models/credentials_response.py | 4 +++- .../alb/src/stackit/alb/models/loadbalancer_option_logs.py | 2 +- .../src/stackit/alb/models/loadbalancer_option_metrics.py | 2 +- .../stackit/alb/models/loadbalancer_option_observability.py | 2 +- .../src/stackit/alb/models/update_credentials_payload.py | 4 ++-- 7 files changed, 13 insertions(+), 11 deletions(-) diff --git a/services/alb/src/stackit/alb/api/default_api.py b/services/alb/src/stackit/alb/api/default_api.py index e3ae463b5..27c3461df 100644 --- a/services/alb/src/stackit/alb/api/default_api.py +++ b/services/alb/src/stackit/alb/api/default_api.py @@ -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 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. + 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 @@ -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 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. + 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 @@ -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 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. + 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 diff --git a/services/alb/src/stackit/alb/models/create_credentials_payload.py b/services/alb/src/stackit/alb/models/create_credentials_payload.py index 63ca73034..234704541 100644 --- a/services/alb/src/stackit/alb/models/create_credentials_payload.py +++ b/services/alb/src/stackit/alb/models/create_credentials_payload.py @@ -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"] diff --git a/services/alb/src/stackit/alb/models/credentials_response.py b/services/alb/src/stackit/alb/models/credentials_response.py index 102302dcc..0e5c442d3 100644 --- a/services/alb/src/stackit/alb/models/credentials_response.py +++ b/services/alb/src/stackit/alb/models/credentials_response.py @@ -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") diff --git a/services/alb/src/stackit/alb/models/loadbalancer_option_logs.py b/services/alb/src/stackit/alb/models/loadbalancer_option_logs.py index 2566456d4..9260d7e11 100644 --- a/services/alb/src/stackit/alb/models/loadbalancer_option_logs.py +++ b/services/alb/src/stackit/alb/models/loadbalancer_option_logs.py @@ -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"] diff --git a/services/alb/src/stackit/alb/models/loadbalancer_option_metrics.py b/services/alb/src/stackit/alb/models/loadbalancer_option_metrics.py index 10fde81e0..62a317732 100644 --- a/services/alb/src/stackit/alb/models/loadbalancer_option_metrics.py +++ b/services/alb/src/stackit/alb/models/loadbalancer_option_metrics.py @@ -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"] diff --git a/services/alb/src/stackit/alb/models/loadbalancer_option_observability.py b/services/alb/src/stackit/alb/models/loadbalancer_option_observability.py index 6e9b14a93..42454e9c6 100644 --- a/services/alb/src/stackit/alb/models/loadbalancer_option_observability.py +++ b/services/alb/src/stackit/alb/models/loadbalancer_option_observability.py @@ -26,7 +26,7 @@ class LoadbalancerOptionObservability(BaseModel): """ - We offer Application 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 diff --git a/services/alb/src/stackit/alb/models/update_credentials_payload.py b/services/alb/src/stackit/alb/models/update_credentials_payload.py index 5dcdba4b9..e667f17a3 100644 --- a/services/alb/src/stackit/alb/models/update_credentials_payload.py +++ b/services/alb/src/stackit/alb/models/update_credentials_payload.py @@ -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"]