1
0
Fork 0
mirror of https://github.com/ansible-collections/hetzner.hcloud.git synced 2026-02-04 08:01:49 +00:00

feat: Storage Box support no longer experimental

This commit is contained in:
phm07 2026-01-23 13:10:04 +01:00 committed by jo
parent 7f535fef44
commit 0ad7f8dac3
No known key found for this signature in database
GPG key ID: B2FEC9B22722B984
8 changed files with 0 additions and 35 deletions

View file

@ -35,10 +35,3 @@ def experimental_warning_function(product: str, maturity: str, url: str):
module.warn(message)
return fn
storage_box_experimental_warning = experimental_warning_function(
"Storage Box support",
"experimental",
"https://github.com/ansible-collections/hetzner.hcloud/issues/756",
)

View file

@ -15,8 +15,6 @@ short_description: Create and manage Storage Boxes in Hetzner.
description:
- Create, update and delete Storage Boxes in Hetzner.
- See the L(Storage Boxes API documentation,https://docs.hetzner.cloud/reference/hetzner#storage-boxes) for more details.
- B(Experimental:) Storage Box support is experimental, breaking changes may occur within minor releases.
See https://github.com/ansible-collections/hetzner.hcloud/issues/756 for more details.
author:
- Jonas Lammler (@jooola)
@ -346,7 +344,6 @@ hcloud_storage_box:
from ..module_utils import _storage_box
from ..module_utils._base import AnsibleHCloud, AnsibleModule
from ..module_utils._client import client_resource_not_found
from ..module_utils._experimental import storage_box_experimental_warning
from ..module_utils._vendor.hcloud import HCloudException
from ..module_utils._vendor.hcloud.locations import Location
from ..module_utils._vendor.hcloud.storage_box_types import StorageBoxType
@ -364,7 +361,6 @@ class AnsibleStorageBox(AnsibleHCloud):
storage_box: BoundStorageBox | None = None
def __init__(self, module: AnsibleModule):
storage_box_experimental_warning(module)
super().__init__(module)
def _prepare_result(self):

View file

@ -15,8 +15,6 @@ short_description: Gather infos about Hetzner Storage Boxes.
description:
- Gather infos about Hetzner Storage Boxes.
- See the L(Storage Boxes API documentation,https://docs.hetzner.cloud/reference/hetzner#storage-boxes) for more details.
- B(Experimental:) Storage Box support is experimental, breaking changes may occur within minor releases.
See https://github.com/ansible-collections/hetzner.hcloud/issues/756 for more details.
author:
- Jonas Lammler (@jooola)
@ -187,7 +185,6 @@ from ansible.module_utils.basic import AnsibleModule
from ..module_utils import _storage_box
from ..module_utils._base import AnsibleHCloud
from ..module_utils._experimental import storage_box_experimental_warning
from ..module_utils._vendor.hcloud import HCloudException
from ..module_utils._vendor.hcloud.storage_boxes import (
BoundStorageBox,
@ -200,7 +197,6 @@ class AnsibleStorageBox(AnsibleHCloud):
storage_box: list[BoundStorageBox] | None = None
def __init__(self, module: AnsibleModule):
storage_box_experimental_warning(module)
super().__init__(module)
def _prepare_result(self):

View file

@ -15,8 +15,6 @@ short_description: Create and manage Storage Box Snapshots in Hetzner.
description:
- Create, update and delete Storage Box Snapshots in Hetzner.
- See the L(Storage Box Snapshots API documentation,https://docs.hetzner.cloud/reference/hetzner#storage-box-snapshots) for more details.
- B(Experimental:) Storage Box support is experimental, breaking changes may occur within minor releases.
See https://github.com/ansible-collections/hetzner.hcloud/issues/756 for more details.
author:
- Jonas Lammler (@jooola)
@ -142,7 +140,6 @@ hcloud_storage_box_snapshot:
from ..module_utils import _storage_box, _storage_box_snapshot
from ..module_utils._base import AnsibleHCloud, AnsibleModule
from ..module_utils._experimental import storage_box_experimental_warning
from ..module_utils._vendor.hcloud import HCloudException
from ..module_utils._vendor.hcloud.storage_boxes import (
BoundStorageBox,
@ -157,7 +154,6 @@ class AnsibleStorageBoxSnapshot(AnsibleHCloud):
storage_box_snapshot: BoundStorageBoxSnapshot | None = None
def __init__(self, module: AnsibleModule):
storage_box_experimental_warning(module)
super().__init__(module)
def _prepare_result(self):

View file

@ -15,8 +15,6 @@ short_description: Gather infos about Hetzner Storage Box Snapshots.
description:
- Gather infos about Hetzner Storage Box Snapshots.
- See the L(Storage Boxes API documentation,https://docs.hetzner.cloud/reference/hetzner#storage-boxes) for more details.
- B(Experimental:) Storage Box support is experimental, breaking changes may occur within minor releases.
See https://github.com/ansible-collections/hetzner.hcloud/issues/756 for more details.
author:
- Jonas Lammler (@jooola)
@ -136,7 +134,6 @@ hcloud_storage_box_snapshot_info:
from ..module_utils import _storage_box, _storage_box_snapshot
from ..module_utils._base import AnsibleHCloud, AnsibleModule
from ..module_utils._experimental import storage_box_experimental_warning
from ..module_utils._vendor.hcloud import HCloudException
from ..module_utils._vendor.hcloud.storage_boxes import (
BoundStorageBox,
@ -151,7 +148,6 @@ class AnsibleStorageBoxSnapshotInfo(AnsibleHCloud):
storage_box_snapshots: list[BoundStorageBoxSnapshot] | None = None
def __init__(self, module: AnsibleModule):
storage_box_experimental_warning(module)
super().__init__(module)
def _prepare_result(self):

View file

@ -15,8 +15,6 @@ short_description: Create and manage Storage Box Subaccounts in Hetzner.
description:
- Create, update and delete Storage Box Subaccounts in Hetzner.
- See the L(Storage Box Subaccounts API documentation,https://docs.hetzner.cloud/reference/hetzner#storage-box-subaccounts) for more details.
- B(Experimental:) Storage Box support is experimental, breaking changes may occur within minor releases.
See https://github.com/ansible-collections/hetzner.hcloud/issues/756 for more details.
author:
- Jonas Lammler (@jooola)
@ -225,7 +223,6 @@ hcloud_storage_box_subaccount:
from ..module_utils import _storage_box, _storage_box_subaccount
from ..module_utils._base import AnsibleHCloud, AnsibleModule
from ..module_utils._client import client_resource_not_found
from ..module_utils._experimental import storage_box_experimental_warning
from ..module_utils._vendor.hcloud import HCloudException
from ..module_utils._vendor.hcloud.storage_boxes import (
BoundStorageBox,
@ -241,7 +238,6 @@ class AnsibleStorageBoxSubaccount(AnsibleHCloud):
storage_box_subaccount: BoundStorageBoxSubaccount | None = None
def __init__(self, module: AnsibleModule):
storage_box_experimental_warning(module)
super().__init__(module)
def _prepare_result(self):

View file

@ -15,8 +15,6 @@ short_description: Gather infos about Hetzner Storage Box Subaccounts.
description:
- Gather infos about Hetzner Storage Box Subaccounts.
- See the L(Storage Box Subaccounts API documentation,https://docs.hetzner.cloud/reference/hetzner#storage-box-subaccounts) for more details.
- B(Experimental:) Storage Box support is experimental, breaking changes may occur within minor releases.
See https://github.com/ansible-collections/hetzner.hcloud/issues/756 for more details.
author:
- Jonas Lammler (@jooola)
@ -160,7 +158,6 @@ from ansible.module_utils.basic import AnsibleModule
from ..module_utils import _storage_box, _storage_box_subaccount
from ..module_utils._base import AnsibleHCloud
from ..module_utils._experimental import storage_box_experimental_warning
from ..module_utils._vendor.hcloud import HCloudException
from ..module_utils._vendor.hcloud.storage_boxes import (
BoundStorageBox,
@ -175,7 +172,6 @@ class AnsibleStorageBoxSubaccountInfo(AnsibleHCloud):
storage_box_subaccounts: list[BoundStorageBoxSubaccount] | None = None
def __init__(self, module: AnsibleModule):
storage_box_experimental_warning(module)
super().__init__(module)
def _prepare_result(self):

View file

@ -15,8 +15,6 @@ short_description: Gather infos about Hetzner Storage Box Types.
description:
- Gather infos about available Hetzner Storage Box Types.
- See the L(Storage Box Types documentation,https://docs.hetzner.cloud/reference/hetzner#storage-box-types) for more details.
- B(Experimental:) Storage Box support is experimental, breaking changes may occur within minor releases.
See https://github.com/ansible-collections/hetzner.hcloud/issues/756 for more details.
author:
- Jonas Lammler (@jooola)
@ -111,7 +109,6 @@ hcloud_storage_box_type_info:
from ansible.module_utils.basic import AnsibleModule
from ..module_utils._base import AnsibleHCloud
from ..module_utils._experimental import storage_box_experimental_warning
from ..module_utils._vendor.hcloud import HCloudException
from ..module_utils._vendor.hcloud.storage_box_types import BoundStorageBoxType
@ -122,7 +119,6 @@ class AnsibleStorageBoxTypeInfo(AnsibleHCloud):
storage_box_types: list[BoundStorageBoxType] | None = None
def __init__(self, module: AnsibleModule):
storage_box_experimental_warning(module)
super().__init__(module)
def _prepare_result(self):