Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
## Release (2025-xx-xx)
- `stackitmarketplace`: [v1.15.0](services/stackitmarketplace/CHANGELOG.md#v1150)
- **Feature:** Add `EndUserLicenseAgreement`, `ProductDescription` and `ServiceLevelAgreement` attributes and add them to `Assets` struct
- `postgresflex`: [v1.2.0](services/postgresflex/CHANGELOG.md#v120)
- **Breaking Change:** The attribute type for `PartialUpdateInstancePayload` and `UpdateInstancePayload` changed from `Storage` to `StorageUpdate`.
- **Deprecation:** `StorageUpdate`: updating the performance class field is not possible.
Expand Down
3 changes: 3 additions & 0 deletions services/stackitmarketplace/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v1.15.0
- **Feature:** Add `EndUserLicenseAgreement`, `ProductDescription` and `ServiceLevelAgreement` attributes and add them to `Assets` struct

## v1.14.0
- **Feature:** Add `has_private_plan_option` attribute to `CatalogProductDetail` model class

Expand Down
2 changes: 1 addition & 1 deletion services/stackitmarketplace/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "stackit-stackitmarketplace"

[tool.poetry]
name = "stackit-stackitmarketplace"
version = "v1.14.0"
version = "v1.15.0"
authors = [
"STACKIT Developer Tools <developer-tools@stackit.cloud>",
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@
"ApiException",
"ApproveSubscriptionPayload",
"Assets",
"AssetsEndUserLicenseAgreement",
"AssetsProductDescription",
"AssetsServiceLevelAgreement",
"BecomeVendor",
"CatalogPricingOptionHighlight",
"CatalogProductDetail",
Expand Down Expand Up @@ -92,6 +95,15 @@
ApproveSubscriptionPayload as ApproveSubscriptionPayload,
)
from stackit.stackitmarketplace.models.assets import Assets as Assets
from stackit.stackitmarketplace.models.assets_end_user_license_agreement import (
AssetsEndUserLicenseAgreement as AssetsEndUserLicenseAgreement,
)
from stackit.stackitmarketplace.models.assets_product_description import (
AssetsProductDescription as AssetsProductDescription,
)
from stackit.stackitmarketplace.models.assets_service_level_agreement import (
AssetsServiceLevelAgreement as AssetsServiceLevelAgreement,
)
from stackit.stackitmarketplace.models.become_vendor import BecomeVendor as BecomeVendor
from stackit.stackitmarketplace.models.catalog_pricing_option_highlight import (
CatalogPricingOptionHighlight as CatalogPricingOptionHighlight,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,15 @@
ApproveSubscriptionPayload,
)
from stackit.stackitmarketplace.models.assets import Assets
from stackit.stackitmarketplace.models.assets_end_user_license_agreement import (
AssetsEndUserLicenseAgreement,
)
from stackit.stackitmarketplace.models.assets_product_description import (
AssetsProductDescription,
)
from stackit.stackitmarketplace.models.assets_service_level_agreement import (
AssetsServiceLevelAgreement,
)
from stackit.stackitmarketplace.models.become_vendor import BecomeVendor
from stackit.stackitmarketplace.models.catalog_pricing_option_highlight import (
CatalogPricingOptionHighlight,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,15 @@
from pydantic import BaseModel, ConfigDict, Field
from typing_extensions import Self

from stackit.stackitmarketplace.models.assets_end_user_license_agreement import (
AssetsEndUserLicenseAgreement,
)
from stackit.stackitmarketplace.models.assets_product_description import (
AssetsProductDescription,
)
from stackit.stackitmarketplace.models.assets_service_level_agreement import (
AssetsServiceLevelAgreement,
)
from stackit.stackitmarketplace.models.service_certificate import ServiceCertificate


Expand All @@ -29,8 +38,18 @@ class Assets(BaseModel):
The assets associated with the product.
""" # noqa: E501

end_user_license_agreement: Optional[AssetsEndUserLicenseAgreement] = Field(
default=None, alias="endUserLicenseAgreement"
)
product_description: Optional[AssetsProductDescription] = Field(default=None, alias="productDescription")
service_certificate: Optional[ServiceCertificate] = Field(default=None, alias="serviceCertificate")
__properties: ClassVar[List[str]] = ["serviceCertificate"]
service_level_agreement: Optional[AssetsServiceLevelAgreement] = Field(default=None, alias="serviceLevelAgreement")
__properties: ClassVar[List[str]] = [
"endUserLicenseAgreement",
"productDescription",
"serviceCertificate",
"serviceLevelAgreement",
]

model_config = ConfigDict(
populate_by_name=True,
Expand Down Expand Up @@ -69,9 +88,18 @@ def to_dict(self) -> Dict[str, Any]:
exclude=excluded_fields,
exclude_none=True,
)
# override the default output from pydantic by calling `to_dict()` of end_user_license_agreement
if self.end_user_license_agreement:
_dict["endUserLicenseAgreement"] = self.end_user_license_agreement.to_dict()
# override the default output from pydantic by calling `to_dict()` of product_description
if self.product_description:
_dict["productDescription"] = self.product_description.to_dict()
# override the default output from pydantic by calling `to_dict()` of service_certificate
if self.service_certificate:
_dict["serviceCertificate"] = self.service_certificate.to_dict()
# override the default output from pydantic by calling `to_dict()` of service_level_agreement
if self.service_level_agreement:
_dict["serviceLevelAgreement"] = self.service_level_agreement.to_dict()
return _dict

@classmethod
Expand All @@ -85,11 +113,26 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:

_obj = cls.model_validate(
{
"endUserLicenseAgreement": (
AssetsEndUserLicenseAgreement.from_dict(obj["endUserLicenseAgreement"])
if obj.get("endUserLicenseAgreement") is not None
else None
),
"productDescription": (
AssetsProductDescription.from_dict(obj["productDescription"])
if obj.get("productDescription") is not None
else None
),
"serviceCertificate": (
ServiceCertificate.from_dict(obj["serviceCertificate"])
if obj.get("serviceCertificate") is not None
else None
)
),
"serviceLevelAgreement": (
AssetsServiceLevelAgreement.from_dict(obj["serviceLevelAgreement"])
if obj.get("serviceLevelAgreement") is not None
else None
),
}
)
return _obj
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
# coding: utf-8

"""
STACKIT Marketplace API

API to manage STACKIT Marketplace.

The version of the OpenAPI document: 1
Contact: marketplace@stackit.cloud
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
""" # noqa: E501

from __future__ import annotations

import json
import pprint
from typing import Any, ClassVar, Dict, List, Optional, Set

from pydantic import BaseModel, ConfigDict
from typing_extensions import Self

from stackit.stackitmarketplace.models.localized_version import LocalizedVersion


class AssetsEndUserLicenseAgreement(BaseModel):
"""
The related end user license agreement of the (subscription) product.
""" # noqa: E501

version: Optional[LocalizedVersion] = None
__properties: ClassVar[List[str]] = ["version"]

model_config = ConfigDict(
populate_by_name=True,
validate_assignment=True,
protected_namespaces=(),
)

def to_str(self) -> str:
"""Returns the string representation of the model using alias"""
return pprint.pformat(self.model_dump(by_alias=True))

def to_json(self) -> str:
"""Returns the JSON representation of the model using alias"""
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
return json.dumps(self.to_dict())

@classmethod
def from_json(cls, json_str: str) -> Optional[Self]:
"""Create an instance of AssetsEndUserLicenseAgreement from a JSON string"""
return cls.from_dict(json.loads(json_str))

def to_dict(self) -> Dict[str, Any]:
"""Return the dictionary representation of the model using alias.

This has the following differences from calling pydantic's
`self.model_dump(by_alias=True)`:

* `None` is only added to the output dict for nullable fields that
were set at model initialization. Other fields with value `None`
are ignored.
"""
excluded_fields: Set[str] = set([])

_dict = self.model_dump(
by_alias=True,
exclude=excluded_fields,
exclude_none=True,
)
# override the default output from pydantic by calling `to_dict()` of version
if self.version:
_dict["version"] = self.version.to_dict()
return _dict

@classmethod
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
"""Create an instance of AssetsEndUserLicenseAgreement from a dict"""
if obj is None:
return None

if not isinstance(obj, dict):
return cls.model_validate(obj)

_obj = cls.model_validate(
{"version": LocalizedVersion.from_dict(obj["version"]) if obj.get("version") is not None else None}
)
return _obj
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
# coding: utf-8

"""
STACKIT Marketplace API

API to manage STACKIT Marketplace.

The version of the OpenAPI document: 1
Contact: marketplace@stackit.cloud
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
""" # noqa: E501

from __future__ import annotations

import json
import pprint
from typing import Any, ClassVar, Dict, List, Optional, Set

from pydantic import BaseModel, ConfigDict
from typing_extensions import Self

from stackit.stackitmarketplace.models.localized_version import LocalizedVersion


class AssetsProductDescription(BaseModel):
"""
The related product description of the (subscription) product.
""" # noqa: E501

version: Optional[LocalizedVersion] = None
__properties: ClassVar[List[str]] = ["version"]

model_config = ConfigDict(
populate_by_name=True,
validate_assignment=True,
protected_namespaces=(),
)

def to_str(self) -> str:
"""Returns the string representation of the model using alias"""
return pprint.pformat(self.model_dump(by_alias=True))

def to_json(self) -> str:
"""Returns the JSON representation of the model using alias"""
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
return json.dumps(self.to_dict())

@classmethod
def from_json(cls, json_str: str) -> Optional[Self]:
"""Create an instance of AssetsProductDescription from a JSON string"""
return cls.from_dict(json.loads(json_str))

def to_dict(self) -> Dict[str, Any]:
"""Return the dictionary representation of the model using alias.

This has the following differences from calling pydantic's
`self.model_dump(by_alias=True)`:

* `None` is only added to the output dict for nullable fields that
were set at model initialization. Other fields with value `None`
are ignored.
"""
excluded_fields: Set[str] = set([])

_dict = self.model_dump(
by_alias=True,
exclude=excluded_fields,
exclude_none=True,
)
# override the default output from pydantic by calling `to_dict()` of version
if self.version:
_dict["version"] = self.version.to_dict()
return _dict

@classmethod
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
"""Create an instance of AssetsProductDescription from a dict"""
if obj is None:
return None

if not isinstance(obj, dict):
return cls.model_validate(obj)

_obj = cls.model_validate(
{"version": LocalizedVersion.from_dict(obj["version"]) if obj.get("version") is not None else None}
)
return _obj
Loading