Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var DeleteCmd = &cobra.Command{ Use: "delete <virtual machine ID> <backup ID>", Short: "Delete backup", Long: `This endpoint deletes a specified backup for a virtual machine.`, Args: cobra.MatchAll(cobra.ExactArgs(2)), Run: func(cmd *cobra.Command, args []string) { r, err := api.Request().VPSDeleteBackupV1WithResponse(context.TODO(), utils.StringToInt(args[0]), utils.StringToInt(args[1])) if err != nil { log.Fatal(err) } output.Format(cmd, r.Body, r.StatusCode()) }, }
View Source
var GroupCmd = &cobra.Command{
Use: "backups",
Short: "VM backup management",
Long: `Safeguard your data by managing backups. You can list available backups, restore a virtual machine from a backup, or delete backups as needed.`,
}
View Source
var ListCmd = &cobra.Command{ Use: "list <virtual machine ID>", Short: "Get backup list", Long: `This endpoint retrieves a list of backups for a specified virtual machine.`, Args: cobra.MatchAll(cobra.ExactArgs(1)), Run: func(cmd *cobra.Command, args []string) { r, err := api.Request().VPSGetBackupListV1WithResponse(context.TODO(), utils.StringToInt(args[0]), backupListRequestParameters(cmd)) if err != nil { log.Fatal(err) } output.Format(cmd, r.Body, r.StatusCode()) }, }
View Source
var RestoreCmd = &cobra.Command{ Use: "restore <virtual machine ID> <backup ID>", Short: "Restore backup", Long: `This endpoint restores a backup for a specified virtual machine. The system will then initiate the restore process, which may take some time depending on the size of the backup. All data on the virtual machine will be overwritten with the data from the backup.`, Args: cobra.MatchAll(cobra.ExactArgs(2)), Run: func(cmd *cobra.Command, args []string) { r, err := api.Request().VPSRestoreBackupV1WithResponse(context.TODO(), utils.StringToInt(args[0]), utils.StringToInt(args[1])) if err != nil { log.Fatal(err) } output.Format(cmd, r.Body, r.StatusCode()) }, }
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.