You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Given a volume or snapshot, returns the migration plan for a call to the RPC ApplyBlockMigration. This plan will include zero or one volume, and zero or more snapshots, which will need to be migrated together. This RPC does not perform the actual migration itself, ApplyBlockMigration must be used. The validation_key value returned by this call must be provided to the ApplyBlockMigration call to confirm that all resources listed in the plan should be migrated.
4097
+
Given a volume or snapshot, returns the migration plan for a call to the "Apply a migration plan" endpoint. This plan will include zero or one volume, and zero or more snapshots, which will need to be migrated together. This endpoint does not perform the actual migration itself, the "Apply a migration plan" endpoint must be used. The validation_key value returned by this endpoint must be provided to the call to the "Apply a migration plan" endpoint to confirm that all resources listed in the plan should be migrated.
4098
4098
:param zone: Zone to target. If none is passed will use default zone from the config.
4099
4099
:param volume_id: The volume for which the migration plan will be generated.
4100
4100
One-Of ('resource'): at most one of 'volume_id', 'snapshot_id' could be set.
Migrate a volume and/or snapshots to SBS (Scaleway Block Storage).
4139
-
To be used, this RPC must be preceded by a call to PlanBlockMigration. To migrate all resources mentioned in the MigrationPlan, the validation_key returned in the MigrationPlan must be provided.
4140
-
:param validation_key: A value to be retrieved from a call to PlanBlockMigration, to confirm that the volume and/or snapshots specified in said plan should be migrated.
4139
+
To be used, the call to this endpoint must be preceded by a call to the "Plan a migration" endpoint. To migrate all resources mentioned in the migration plan, the validation_key returned in the plan must be provided.
4140
+
:param validation_key: A value to be retrieved from a call to the "Plan a migration" endpoint, to confirm that the volume and/or snapshots specified in said plan should be migrated.
4141
4141
:param zone: Zone to target. If none is passed will use default zone from the config.
4142
-
:param volume_id: The volume to migrate, along with potentially other resources, according to the migration plan generated with a call to PlanBlockMigration.
4142
+
:param volume_id: The volume to migrate, along with potentially other resources, according to the migration plan generated with a call to the "Plan a migration" endpoint.
4143
4143
One-Of ('resource'): at most one of 'volume_id', 'snapshot_id' could be set.
4144
-
:param snapshot_id: The snapshot to migrate, along with potentially other resources, according to the migration plan generated with a call to PlanBlockMigration.
4144
+
:param snapshot_id: The snapshot to migrate, along with potentially other resources, according to the migration plan generated with a call to the "Plan a migration" endpoint.
4145
4145
One-Of ('resource'): at most one of 'volume_id', 'snapshot_id' could be set.
Copy file name to clipboardExpand all lines: scaleway-async/scaleway_async/instance/v1/types.py
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1491,7 +1491,7 @@ class SecurityGroupTemplate:
1491
1491
classApplyBlockMigrationRequest:
1492
1492
validation_key: str
1493
1493
"""
1494
-
A value to be retrieved from a call to PlanBlockMigration, to confirm that the volume and/or snapshots specified in said plan should be migrated.
1494
+
A value to be retrieved from a call to the "Plan a migration" endpoint, to confirm that the volume and/or snapshots specified in said plan should be migrated.
1495
1495
"""
1496
1496
1497
1497
zone: Optional[Zone]
@@ -3004,7 +3004,7 @@ class MigrationPlan:
3004
3004
3005
3005
validation_key: str
3006
3006
"""
3007
-
A value to be passed to ApplyBlockMigrationRequest, to confirm that the execution of the plan is being requested.
3007
+
A value to be passed to the call to the "Apply a migration plan" endpoint, to confirm that the execution of the plan is being requested.
Copy file name to clipboardExpand all lines: scaleway/scaleway/instance/v1/api.py
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -4094,7 +4094,7 @@ def plan_block_migration(
4094
4094
) ->MigrationPlan:
4095
4095
"""
4096
4096
Get a volume or snapshot's migration plan.
4097
-
Given a volume or snapshot, returns the migration plan for a call to the RPC ApplyBlockMigration. This plan will include zero or one volume, and zero or more snapshots, which will need to be migrated together. This RPC does not perform the actual migration itself, ApplyBlockMigration must be used. The validation_key value returned by this call must be provided to the ApplyBlockMigration call to confirm that all resources listed in the plan should be migrated.
4097
+
Given a volume or snapshot, returns the migration plan for a call to the "Apply a migration plan" endpoint. This plan will include zero or one volume, and zero or more snapshots, which will need to be migrated together. This endpoint does not perform the actual migration itself, the "Apply a migration plan" endpoint must be used. The validation_key value returned by this endpoint must be provided to the call to the "Apply a migration plan" endpoint to confirm that all resources listed in the plan should be migrated.
4098
4098
:param zone: Zone to target. If none is passed will use default zone from the config.
4099
4099
:param volume_id: The volume for which the migration plan will be generated.
4100
4100
One-Of ('resource'): at most one of 'volume_id', 'snapshot_id' could be set.
Migrate a volume and/or snapshots to SBS (Scaleway Block Storage).
4139
-
To be used, this RPC must be preceded by a call to PlanBlockMigration. To migrate all resources mentioned in the MigrationPlan, the validation_key returned in the MigrationPlan must be provided.
4140
-
:param validation_key: A value to be retrieved from a call to PlanBlockMigration, to confirm that the volume and/or snapshots specified in said plan should be migrated.
4139
+
To be used, the call to this endpoint must be preceded by a call to the "Plan a migration" endpoint. To migrate all resources mentioned in the migration plan, the validation_key returned in the plan must be provided.
4140
+
:param validation_key: A value to be retrieved from a call to the "Plan a migration" endpoint, to confirm that the volume and/or snapshots specified in said plan should be migrated.
4141
4141
:param zone: Zone to target. If none is passed will use default zone from the config.
4142
-
:param volume_id: The volume to migrate, along with potentially other resources, according to the migration plan generated with a call to PlanBlockMigration.
4142
+
:param volume_id: The volume to migrate, along with potentially other resources, according to the migration plan generated with a call to the "Plan a migration" endpoint.
4143
4143
One-Of ('resource'): at most one of 'volume_id', 'snapshot_id' could be set.
4144
-
:param snapshot_id: The snapshot to migrate, along with potentially other resources, according to the migration plan generated with a call to PlanBlockMigration.
4144
+
:param snapshot_id: The snapshot to migrate, along with potentially other resources, according to the migration plan generated with a call to the "Plan a migration" endpoint.
4145
4145
One-Of ('resource'): at most one of 'volume_id', 'snapshot_id' could be set.
Copy file name to clipboardExpand all lines: scaleway/scaleway/instance/v1/types.py
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1491,7 +1491,7 @@ class SecurityGroupTemplate:
1491
1491
classApplyBlockMigrationRequest:
1492
1492
validation_key: str
1493
1493
"""
1494
-
A value to be retrieved from a call to PlanBlockMigration, to confirm that the volume and/or snapshots specified in said plan should be migrated.
1494
+
A value to be retrieved from a call to the "Plan a migration" endpoint, to confirm that the volume and/or snapshots specified in said plan should be migrated.
1495
1495
"""
1496
1496
1497
1497
zone: Optional[Zone]
@@ -3004,7 +3004,7 @@ class MigrationPlan:
3004
3004
3005
3005
validation_key: str
3006
3006
"""
3007
-
A value to be passed to ApplyBlockMigrationRequest, to confirm that the execution of the plan is being requested.
3007
+
A value to be passed to the call to the "Apply a migration plan" endpoint, to confirm that the execution of the plan is being requested.
0 commit comments