|
|
|
@@ -2416,7 +2416,7 @@ type UpdateServerResp struct { |
|
|
|
|
|
|
|
type StartServerReq struct { |
|
|
|
ServerId string `json:"server_id" copier:"ServerId"` |
|
|
|
Action []map[string]string `json:"Action,optional" copier:"Action"` |
|
|
|
Action []map[string]string `json:"action,optional" copier:"Action"` |
|
|
|
Start_action string `json:"start_action" copier:"start_action"` |
|
|
|
} |
|
|
|
|
|
|
|
@@ -2428,7 +2428,7 @@ type StartServerResp struct { |
|
|
|
|
|
|
|
type StopServerReq struct { |
|
|
|
ServerId string `json:"server_id" copier:"ServerId"` |
|
|
|
Action []map[string]string `json:"Action,optional" copier:"Action"` |
|
|
|
Action []map[string]string `json:"action,optional" copier:"Action"` |
|
|
|
Stop_action string `json:"stop_action" copier:"stop_action"` |
|
|
|
} |
|
|
|
|
|
|
|
@@ -2891,8 +2891,8 @@ type Extra_specs struct { |
|
|
|
} |
|
|
|
|
|
|
|
type UpdateVolumeReq struct { |
|
|
|
Volume Volume `json:"volume" copier:"Volume"` |
|
|
|
VolumeTypeId string `json:"volume_type_id" copier:"VolumeTypeId"` |
|
|
|
Volume Volume `json:"volume" copier:"Volume"` |
|
|
|
VolumeId string `json:"volume_id" copier:"VolumeId"` |
|
|
|
} |
|
|
|
|
|
|
|
type UpdateVolumeResp struct { |
|
|
|
@@ -2945,7 +2945,7 @@ type CreateVolumeTypeResp struct { |
|
|
|
} |
|
|
|
|
|
|
|
type VolumeType struct { |
|
|
|
VolumeType string `json:"Volume_type" copier:"VolumeType"` |
|
|
|
Name string `json:"name" copier:"Name"` |
|
|
|
Description string `json:"description" copier:"Description"` |
|
|
|
ExtraSpecs ExtraSpecs `json:"extra_specs" copier:"ExtraSpecs"` |
|
|
|
Id string `json:"id" copier:"Id"` |
|
|
|
|