@@ -42,7 +42,7 @@ var instancesCreate = cli.Command{
4242 & requestflag.StringFlag {
4343 Name : "hotplug-size" ,
4444 Usage : `Additional memory for hotplug (human-readable format like "3GB", "1G")` ,
45- Value : "3GB" ,
45+ Value : requestflag. Value [ string ]( "3GB" ) ,
4646 Config : requestflag.RequestConfig {
4747 BodyPath : "hotplug_size" ,
4848 },
@@ -57,23 +57,23 @@ var instancesCreate = cli.Command{
5757 & requestflag.StringFlag {
5858 Name : "overlay-size" ,
5959 Usage : `Writable overlay disk size (human-readable format like "10GB", "50G")` ,
60- Value : "10GB" ,
60+ Value : requestflag. Value [ string ]( "10GB" ) ,
6161 Config : requestflag.RequestConfig {
6262 BodyPath : "overlay_size" ,
6363 },
6464 },
6565 & requestflag.StringFlag {
6666 Name : "size" ,
6767 Usage : `Base memory size (human-readable format like "1GB", "512MB", "2G")` ,
68- Value : "1GB" ,
68+ Value : requestflag. Value [ string ]( "1GB" ) ,
6969 Config : requestflag.RequestConfig {
7070 BodyPath : "size" ,
7171 },
7272 },
7373 & requestflag.IntFlag {
7474 Name : "vcpus" ,
7575 Usage : "Number of virtual CPUs" ,
76- Value : 2 ,
76+ Value : requestflag. Value [ int64 ]( 2 ) ,
7777 Config : requestflag.RequestConfig {
7878 BodyPath : "vcpus" ,
7979 },
@@ -139,7 +139,7 @@ var instancesLogs = cli.Command{
139139 & requestflag.IntFlag {
140140 Name : "tail" ,
141141 Usage : "Number of lines to return from end" ,
142- Value : 100 ,
142+ Value : requestflag. Value [ int64 ]( 100 ) ,
143143 Config : requestflag.RequestConfig {
144144 QueryPath : "tail" ,
145145 },
0 commit comments