Skip to content

Commit 016f8f7

Browse files
committed
docs: links and docs
1 parent 323698e commit 016f8f7

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

hcloud/storage_boxes/client.py

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ def change_protection(
407407
"""
408408
Changes the protection of a Storage Box.
409409
410-
See https://docs.hetzner.cloud/reference/cloud#TODO
410+
See https://docs.hetzner.cloud/reference/hetzner#storage-box-actions-change-protection
411411
412412
:param storage_box: Storage Box to update.
413413
:param delete: Prevents the Storage Box from being deleted.
@@ -431,10 +431,10 @@ def change_type(
431431
"""
432432
Changes the type of a Storage Box.
433433
434-
See https://docs.hetzner.cloud/reference/cloud#TODO
434+
See https://docs.hetzner.cloud/reference/hetzner#storage-box-actions-change-type
435435
436436
:param storage_box: Storage Box to update.
437-
:param storage_box_type: Type of Storage Box to change to.
437+
:param storage_box_type: Storage Box Type to change to.
438438
"""
439439
data: dict[str, Any] = {
440440
"storage_box_type": storage_box_type.id_or_name,
@@ -456,10 +456,10 @@ def reset_password(
456456
"""
457457
Reset the password of a Storage Box.
458458
459-
See https://docs.hetzner.cloud/reference/cloud#TODO
459+
See https://docs.hetzner.cloud/reference/hetzner#storage-box-actions-reset-password
460460
461461
:param storage_box: Storage Box to update.
462-
:param password: Password for the Storage Box.
462+
:param password: New password.
463463
"""
464464
data: dict[str, Any] = {
465465
"password": password,
@@ -480,10 +480,10 @@ def update_access_settings(
480480
"""
481481
Reset the password of a Storage Box.
482482
483-
See https://docs.hetzner.cloud/reference/cloud#TODO
483+
See https://docs.hetzner.cloud/reference/hetzner#storage-box-actions-update-access-settings
484484
485485
:param storage_box: Storage Box to update.
486-
:param access_settings: Access settings for the Storage Box.
486+
:param access_settings: New access settings for the Storage Box.
487487
"""
488488
data: dict[str, Any] = access_settings.to_payload()
489489

@@ -504,7 +504,7 @@ def rollback_snapshot(
504504
"""
505505
Rollback the Storage Box to the given snapshot.
506506
507-
See https://docs.hetzner.cloud/reference/cloud#TODO
507+
See https://docs.hetzner.cloud/reference/hetzner#storage-box-actions-rollback-snapshot
508508
509509
:param storage_box: Storage Box to update.
510510
:param snapshot: Snapshot to rollback to.
@@ -527,7 +527,7 @@ def disable_snapshot_plan(
527527
"""
528528
Disable the snapshot plan a Storage Box.
529529
530-
See https://docs.hetzner.cloud/reference/cloud#TODO
530+
See https://docs.hetzner.cloud/reference/hetzner#storage-box-actions-disable-snapshot-plan
531531
532532
:param storage_box: Storage Box to update.
533533
"""
@@ -545,7 +545,7 @@ def enable_snapshot_plan(
545545
"""
546546
Enable the snapshot plan a Storage Box.
547547
548-
See https://docs.hetzner.cloud/reference/cloud#TODO
548+
See https://docs.hetzner.cloud/reference/hetzner#storage-box-actions-enable-snapshot-plan
549549
550550
:param storage_box: Storage Box to update.
551551
:param snapshot_plan: Snapshot Plan to enable.

0 commit comments

Comments
 (0)