From 46227bace48fe1e5019ddf733470585b8baea057 Mon Sep 17 00:00:00 2001 From: stackit-pipeline <142982727+stackit-pipeline@users.noreply.github.com> Date: Thu, 6 Feb 2025 09:54:43 +0100 Subject: [PATCH] Generator: Update SDK /services/logme (#629) * Generate logme * Add changelog Signed-off-by: Alexander Dahmen --------- Signed-off-by: Alexander Dahmen Co-authored-by: Alexander Dahmen --- CHANGELOG.md | 2 ++ services/logme/CHANGELOG.md | 4 ++++ services/logme/pyproject.toml | 2 +- services/logme/src/stackit/logme/api/default_api.py | 12 ++++++------ .../src/stackit/logme/models/instance_parameters.py | 13 ------------- 5 files changed, 13 insertions(+), 20 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c67eab0..3d807b17 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ ## Release (2025-XX-XX) +- `logme`: [v0.3.0](services/logme/CHANGELOG.md#v030-2025-02-05) + - **Breaking Change:** Remove mistakenly implemented `syslog-use-udp`. Does not exist. - `serverupdate`: [v0.3.0](services/serverupdate/CHANGELOG.md#v030-2025-02-06) - **Breaking Change:**: Remove field `BackupProperties` from `CreateUpdatePayload` model - **Fix**: Remove field `Id` from `CreateUpdateSchedulePayload` model diff --git a/services/logme/CHANGELOG.md b/services/logme/CHANGELOG.md index c5612bde..45abe561 100644 --- a/services/logme/CHANGELOG.md +++ b/services/logme/CHANGELOG.md @@ -1,3 +1,7 @@ +## v0.3.0 (2025-02-05) + +- **Breaking Change:** Remove mistakenly implemented `syslog-use-udp`. Does not exist. + ## v0.2.1 (2025-01-14) - **Bugfix**: `configuration.py` region adjustment was missing diff --git a/services/logme/pyproject.toml b/services/logme/pyproject.toml index 802fbb4a..de42de09 100644 --- a/services/logme/pyproject.toml +++ b/services/logme/pyproject.toml @@ -3,7 +3,7 @@ name = "stackit-logme" [tool.poetry] name = "stackit-logme" -version = "v0.2.1" +version = "v0.3.0" authors = [ "STACKIT Developer Tools ", ] diff --git a/services/logme/src/stackit/logme/api/default_api.py b/services/logme/src/stackit/logme/api/default_api.py index fd4cfa4e..0394bd09 100644 --- a/services/logme/src/stackit/logme/api/default_api.py +++ b/services/logme/src/stackit/logme/api/default_api.py @@ -3039,7 +3039,7 @@ def _list_instances_serialize( @validate_call def list_offerings( self, - project_id: StrictStr, + project_id: Annotated[StrictStr, Field(description="Project id on which user has permissions")], _request_timeout: Union[ None, Annotated[StrictFloat, Field(gt=0)], @@ -3054,7 +3054,7 @@ def list_offerings( Get the service offerings that the service broker offers. - :param project_id: (required) + :param project_id: Project id on which user has permissions (required) :type project_id: str :param _request_timeout: timeout setting for this request. If one number provided, it will be total request @@ -3099,7 +3099,7 @@ def list_offerings( @validate_call def list_offerings_with_http_info( self, - project_id: StrictStr, + project_id: Annotated[StrictStr, Field(description="Project id on which user has permissions")], _request_timeout: Union[ None, Annotated[StrictFloat, Field(gt=0)], @@ -3114,7 +3114,7 @@ def list_offerings_with_http_info( Get the service offerings that the service broker offers. - :param project_id: (required) + :param project_id: Project id on which user has permissions (required) :type project_id: str :param _request_timeout: timeout setting for this request. If one number provided, it will be total request @@ -3159,7 +3159,7 @@ def list_offerings_with_http_info( @validate_call def list_offerings_without_preload_content( self, - project_id: StrictStr, + project_id: Annotated[StrictStr, Field(description="Project id on which user has permissions")], _request_timeout: Union[ None, Annotated[StrictFloat, Field(gt=0)], @@ -3174,7 +3174,7 @@ def list_offerings_without_preload_content( Get the service offerings that the service broker offers. - :param project_id: (required) + :param project_id: Project id on which user has permissions (required) :type project_id: str :param _request_timeout: timeout setting for this request. If one number provided, it will be total request diff --git a/services/logme/src/stackit/logme/models/instance_parameters.py b/services/logme/src/stackit/logme/models/instance_parameters.py index b4c03c15..1ce62495 100644 --- a/services/logme/src/stackit/logme/models/instance_parameters.py +++ b/services/logme/src/stackit/logme/models/instance_parameters.py @@ -84,7 +84,6 @@ class InstanceParameters(BaseModel): description="Comma separated list of IP networks in CIDR notation which are allowed to access this instance.", ) syslog: Optional[List[StrictStr]] = None - syslog_use_udp: Optional[StrictStr] = Field(default=None, alias="syslog-use-udp") __properties: ClassVar[List[str]] = [ "enable_monitoring", "fluentd-tcp", @@ -109,7 +108,6 @@ class InstanceParameters(BaseModel): "opensearch-tls-protocols", "sgw_acl", "syslog", - "syslog-use-udp", ] @field_validator("opensearch_tls_ciphers") @@ -123,16 +121,6 @@ def opensearch_tls_ciphers_validate_enum(cls, value): raise ValueError("each list item must be one of ('TLSv1.2', 'TLSv1.3')") return value - @field_validator("syslog_use_udp") - def syslog_use_udp_validate_enum(cls, value): - """Validates the enum""" - if value is None: - return value - - if value not in set(["yes", "no"]): - raise ValueError("must be one of enum values ('yes', 'no')") - return value - model_config = ConfigDict( populate_by_name=True, validate_assignment=True, @@ -223,7 +211,6 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "opensearch-tls-protocols": obj.get("opensearch-tls-protocols"), "sgw_acl": obj.get("sgw_acl"), "syslog": obj.get("syslog"), - "syslog-use-udp": obj.get("syslog-use-udp"), } ) return _obj