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
Copy file name to clipboardExpand all lines: pve_client/models/cluster_bulk_action_migrate_request.py
+1-5Lines changed: 1 addition & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -32,8 +32,6 @@ class ClusterBulkActionMigrateRequest(BaseModel):
32
32
33
33
max_workers: Optional[Annotated[int, Field(le=64, strict=True, ge=1)]] =Field(default=1, description="Defines the maximum number of tasks running concurrently.", alias="max-workers")
34
34
35
-
maxworkers: Optional[Annotated[int, Field(le=64, strict=True, ge=1)]] =Field(default=1, description="Defines the maximum number of tasks running concurrently. Deprecated, use 'max-workers' instead.")
36
-
37
35
online: Optional[PveBoolean] =Field(default=None, description="Enable live migration for VMs and restart migration for CTs.")
Copy file name to clipboardExpand all lines: pve_client/models/cluster_bulk_action_shutdown_request.py
+1-5Lines changed: 1 addition & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -34,14 +34,11 @@ class ClusterBulkActionShutdownRequest(BaseModel):
34
34
35
35
max_workers: Optional[Annotated[int, Field(le=64, strict=True, ge=1)]] =Field(default=4, description="Defines the maximum number of tasks running concurrently.", alias="max-workers")
36
36
37
-
maxworkers: Optional[Annotated[int, Field(le=64, strict=True, ge=1)]] =Field(default=4, description="Defines the maximum number of tasks running concurrently. Deprecated, use 'max-workers' instead.")
38
-
39
37
timeout: Optional[StrictInt] =Field(default=180, description="Default shutdown timeout in seconds if none is configured for the guest.")
40
38
41
39
vms: Optional[List[Annotated[int, Field(le=999999999, strict=True, ge=100)]]] =Field(default=None, description="Only consider guests from this list of VMIDs.")
Copy file name to clipboardExpand all lines: pve_client/models/cluster_bulk_action_start_request.py
+1-5Lines changed: 1 addition & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -31,14 +31,11 @@ class ClusterBulkActionStartRequest(BaseModel):
31
31
32
32
max_workers: Optional[Annotated[int, Field(le=64, strict=True, ge=1)]] =Field(default=4, description="Defines the maximum number of tasks running concurrently.", alias="max-workers")
33
33
34
-
maxworkers: Optional[Annotated[int, Field(le=64, strict=True, ge=1)]] =Field(default=4, description="Defines the maximum number of tasks running concurrently. Deprecated, use 'max-workers' instead.")
35
-
36
34
timeout: Optional[StrictInt] =Field(default=None, description="Default start timeout in seconds. Only valid for VMs. (default depends on the guest configuration).")
37
35
38
36
vms: Optional[List[Annotated[int, Field(le=999999999, strict=True, ge=100)]]] =Field(default=None, description="Only consider guests from this list of VMIDs.")
Copy file name to clipboardExpand all lines: pve_client/models/cluster_bulk_action_suspend_request.py
+1-5Lines changed: 1 addition & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -32,16 +32,13 @@ class ClusterBulkActionSuspendRequest(BaseModel):
32
32
33
33
max_workers: Optional[Annotated[int, Field(le=64, strict=True, ge=1)]] =Field(default=4, description="Defines the maximum number of tasks running concurrently.", alias="max-workers")
34
34
35
-
maxworkers: Optional[Annotated[int, Field(le=64, strict=True, ge=1)]] =Field(default=4, description="Defines the maximum number of tasks running concurrently. Deprecated, use 'max-workers' instead.")
36
-
37
35
statestorage: Optional[Annotated[str, Field(strict=True)]] =Field(default=None, description="The storage for the VM state.")
38
36
39
37
to_disk: Optional[PveBoolean] =Field(default=None, description="If set, suspends the guests to disk. Will be resumed on next start.", alias="to-disk")
40
38
41
39
vms: Optional[List[Annotated[int, Field(le=999999999, strict=True, ge=100)]]] =Field(default=None, description="Only consider guests from this list of VMIDs.")
migration_unsecure: Optional[PveBoolean] =Field(default=None, description="Migration is secure using SSH tunnel by default. For secure private networks you can disable it to speed up migration. Deprecated, use the 'migration' property instead!")
82
-
83
80
next_id: Optional[PveNextIdField] =Field(default=None, description="Control the range for the free VMID auto-selection pool.", alias="next-id")
Copy file name to clipboardExpand all lines: pve_client/models/nodes_migrateall_request.py
+1-5Lines changed: 1 addition & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -32,16 +32,13 @@ class NodesMigrateallRequest(BaseModel):
32
32
33
33
max_workers: Optional[Annotated[int, Field(le=64, strict=True, ge=1)]] =Field(default=None, description="Maximal number of parallel migration job. If not set, uses'max_workers' from datacenter.cfg. One of both must be set!", alias="max-workers")
34
34
35
-
maxworkers: Optional[Annotated[int, Field(le=64, strict=True, ge=1)]] =Field(default=None, description="Maximal number of parallel migration job. If not set, uses'max_workers' from datacenter.cfg. One of both must be set!Deprecated, use 'max-workers' instead.")
0 commit comments