mirror of
https://github.com/ansible-collections/hetzner.hcloud.git
synced 2026-02-04 08:01:49 +00:00
* deps: update dependency hcloud to v1.27.1 * chore: update vendored files --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: jo <ljonas@riseup.net>
44 lines
1.2 KiB
Python
44 lines
1.2 KiB
Python
from __future__ import annotations
|
|
|
|
try:
|
|
from dateutil.parser import isoparse
|
|
except ImportError:
|
|
isoparse = None
|
|
|
|
from ..core import BaseDomain, DomainIdentityMixin
|
|
|
|
|
|
class SSHKey(BaseDomain, DomainIdentityMixin):
|
|
"""SSHKey Domain
|
|
|
|
:param id: int
|
|
ID of the SSH key
|
|
:param name: str
|
|
Name of the SSH key (must be unique per project)
|
|
:param fingerprint: str
|
|
Fingerprint of public key
|
|
:param public_key: str
|
|
Public Key
|
|
:param labels: Dict
|
|
User-defined labels (key-value pairs)
|
|
:param created: datetime
|
|
Point in time when the SSH Key was created
|
|
"""
|
|
|
|
__slots__ = ("id", "name", "fingerprint", "public_key", "labels", "created")
|
|
|
|
def __init__(
|
|
self,
|
|
id: int | None = None,
|
|
name: str | None = None,
|
|
fingerprint: str | None = None,
|
|
public_key: str | None = None,
|
|
labels: dict[str, str] | None = None,
|
|
created: str | None = None,
|
|
):
|
|
self.id = id
|
|
self.name = name
|
|
self.fingerprint = fingerprint
|
|
self.public_key = public_key
|
|
self.labels = labels
|
|
self.created = isoparse(created) if created else None
|