mirror of
https://github.com/ansible-collections/hetzner.hcloud.git
synced 2026-02-04 08:01:49 +00:00
This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [hcloud](https://redirect.github.com/hetznercloud/hcloud-python) ([changelog](https://redirect.github.com/hetznercloud/hcloud-python/blob/main/CHANGELOG.md)) | `2.12.0` -> `2.13.0` |  |  | --- ### Release Notes <details> <summary>hetznercloud/hcloud-python (hcloud)</summary> ### [`v2.13.0`](https://redirect.github.com/hetznercloud/hcloud-python/blob/HEAD/CHANGELOG.md#v2130) [Compare Source](https://redirect.github.com/hetznercloud/hcloud-python/compare/v2.12.0...v2.13.0) ##### Features - add per primary ip actions list operations ([#​608](https://redirect.github.com/hetznercloud/hcloud-python/issues/608)) - deprecate datacenter in `primary ips` and `servers` ([#​609](https://redirect.github.com/hetznercloud/hcloud-python/issues/609)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/ansible-collections/hetzner.hcloud). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi41OS4wIiwidXBkYXRlZEluVmVyIjoiNDIuNTkuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: jo <ljonas@riseup.net>
152 lines
4.4 KiB
Python
152 lines
4.4 KiB
Python
from __future__ import annotations
|
|
|
|
from typing import TYPE_CHECKING
|
|
|
|
from ..core import BaseDomain, DomainIdentityMixin
|
|
|
|
if TYPE_CHECKING:
|
|
from ..actions import BoundAction
|
|
from .client import BoundCertificate
|
|
|
|
|
|
__all__ = [
|
|
"Certificate",
|
|
"ManagedCertificateStatus",
|
|
"ManagedCertificateError",
|
|
"CreateManagedCertificateResponse",
|
|
]
|
|
|
|
|
|
class Certificate(BaseDomain, DomainIdentityMixin):
|
|
"""Certificate Domain
|
|
|
|
:param id: int ID of Certificate
|
|
:param name: str Name of Certificate
|
|
:param certificate: str Certificate and chain in PEM format, in order so that each record directly certifies the one preceding
|
|
:param not_valid_before: datetime
|
|
Point in time when the Certificate becomes valid
|
|
:param not_valid_after: datetime
|
|
Point in time when the Certificate becomes invalid
|
|
:param domain_names: List[str] List of domains and subdomains covered by this certificate
|
|
:param fingerprint: str Fingerprint of the Certificate
|
|
:param labels: dict
|
|
User-defined labels (key-value pairs)
|
|
:param created: datetime
|
|
Point in time when the certificate was created
|
|
:param type: str Type of Certificate
|
|
:param status: ManagedCertificateStatus Current status of a type managed Certificate, always none for type uploaded Certificates
|
|
"""
|
|
|
|
__api_properties__ = (
|
|
"id",
|
|
"name",
|
|
"certificate",
|
|
"not_valid_before",
|
|
"not_valid_after",
|
|
"domain_names",
|
|
"fingerprint",
|
|
"created",
|
|
"labels",
|
|
"type",
|
|
"status",
|
|
)
|
|
__slots__ = __api_properties__
|
|
|
|
TYPE_UPLOADED = "uploaded"
|
|
TYPE_MANAGED = "managed"
|
|
|
|
def __init__(
|
|
self,
|
|
id: int | None = None,
|
|
name: str | None = None,
|
|
certificate: str | None = None,
|
|
not_valid_before: str | None = None,
|
|
not_valid_after: str | None = None,
|
|
domain_names: list[str] | None = None,
|
|
fingerprint: str | None = None,
|
|
created: str | None = None,
|
|
labels: dict[str, str] | None = None,
|
|
type: str | None = None,
|
|
status: ManagedCertificateStatus | None = None,
|
|
):
|
|
self.id = id
|
|
self.name = name
|
|
self.type = type
|
|
self.certificate = certificate
|
|
self.domain_names = domain_names
|
|
self.fingerprint = fingerprint
|
|
self.not_valid_before = self._parse_datetime(not_valid_before)
|
|
self.not_valid_after = self._parse_datetime(not_valid_after)
|
|
self.created = self._parse_datetime(created)
|
|
self.labels = labels
|
|
self.status = status
|
|
|
|
|
|
class ManagedCertificateStatus(BaseDomain):
|
|
"""ManagedCertificateStatus Domain
|
|
|
|
:param issuance: str
|
|
Status of the issuance process of the Certificate
|
|
:param renewal: str
|
|
Status of the renewal process of the Certificate
|
|
:param error: ManagedCertificateError
|
|
If issuance or renewal reports failure, this property contains information about what happened
|
|
"""
|
|
|
|
__api_properties__ = (
|
|
"issuance",
|
|
"renewal",
|
|
"error",
|
|
)
|
|
__slots__ = __api_properties__
|
|
|
|
def __init__(
|
|
self,
|
|
issuance: str | None = None,
|
|
renewal: str | None = None,
|
|
error: ManagedCertificateError | None = None,
|
|
):
|
|
self.issuance = issuance
|
|
self.renewal = renewal
|
|
self.error = error
|
|
|
|
|
|
class ManagedCertificateError(BaseDomain):
|
|
"""ManagedCertificateError Domain
|
|
|
|
:param code: str
|
|
Error code identifying the error
|
|
:param message:
|
|
Message detailing the error
|
|
"""
|
|
|
|
__api_properties__ = (
|
|
"code",
|
|
"message",
|
|
)
|
|
__slots__ = __api_properties__
|
|
|
|
def __init__(self, code: str | None = None, message: str | None = None):
|
|
self.code = code
|
|
self.message = message
|
|
|
|
|
|
class CreateManagedCertificateResponse(BaseDomain):
|
|
"""Create Managed Certificate Response Domain
|
|
|
|
:param certificate: :class:`BoundCertificate <hcloud.certificate.client.BoundCertificate>`
|
|
The created server
|
|
:param action: :class:`BoundAction <hcloud.actions.client.BoundAction>`
|
|
Shows the progress of the certificate creation
|
|
"""
|
|
|
|
__api_properties__ = ("certificate", "action")
|
|
__slots__ = __api_properties__
|
|
|
|
def __init__(
|
|
self,
|
|
certificate: BoundCertificate,
|
|
action: BoundAction,
|
|
):
|
|
self.certificate = certificate
|
|
self.action = action
|