20 lines
523 B
Go
20 lines
523 B
Go
/*
|
|
* HyperOne API
|
|
*
|
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
*
|
|
* API version: 0.0.2
|
|
* Generated by: OpenAPI Generator (https://openapi-generator.tech)
|
|
*/
|
|
|
|
package openapi
|
|
|
|
type ImageCreate struct {
|
|
Name string `json:"name"`
|
|
Vm string `json:"vm,omitempty"`
|
|
Replica string `json:"replica,omitempty"`
|
|
Service string `json:"service,omitempty"`
|
|
Description string `json:"description,omitempty"`
|
|
Tag map[string]interface{} `json:"tag,omitempty"`
|
|
}
|