v2.12.0
Storage Box API Experimental
This release adds support for the Storage Box API.
The Storage Box integration will be introduced as an experimental feature. This experimental phase is expected to last at least until 12 January 2026. During this period, upcoming minor releases of the project may include breaking changes to features related to Storage Boxes.
This release includes all changes from the recent Storage Box API changelog entry.
Examples
response = client.storage_boxes.create(
name="string",
location=Location(name="fsn1"),
storage_box_type=StorageBoxType(name="bx11"),
labels={
"environment": "prod",
"example.com/my": "label",
"just-a-key": "",
},
password="my-password",
access_settings=StorageBoxAccessSettings(
reachable_externally=False,
samba_enabled=False,
ssh_enabled=False,
webdav_enabled=False,
zfs_enabled=False,
),
ssh_keys=[SSHKey(public_key="ssh-rsa AAAjjk76kgf...Xt")],
)
response.action.wait_until_finished()
storage_box = response.storage_box