Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BaseImage ¶
type BaseImage struct {
// created time
CreatedTime int64 `json:"createdTime,omitempty"`
// docker Url
// Required: true
DockerURL *string `json:"dockerUrl"`
// groups
Groups []string `json:"groups"`
// id
ID strfmt.UUID `json:"id,omitempty"`
// language
// Required: true
Language Language `json:"language"`
// name
// Required: true
// Pattern: ^[\w\d\-]+$
Name *string `json:"name"`
// public
Public *bool `json:"public,omitempty"`
// reason
Reason []string `json:"reason"`
// spec
Spec Spec `json:"spec,omitempty"`
// status
Status Status `json:"status,omitempty"`
// tags
Tags BaseImageTags `json:"tags"`
}
func (*BaseImage) MarshalBinary ¶
MarshalBinary interface implementation
func (*BaseImage) UnmarshalBinary ¶
UnmarshalBinary interface implementation
type BaseImageTags ¶
type BaseImageTags []*Tag
type Error ¶
type Error struct {
// code
Code int64 `json:"code,omitempty"`
// message
// Required: true
Message *string `json:"message"`
}
func (*Error) MarshalBinary ¶
MarshalBinary interface implementation
func (*Error) UnmarshalBinary ¶
UnmarshalBinary interface implementation
type GetBaseImagesOKBody ¶
type GetBaseImagesOKBody []*BaseImage
type GetImagesOKBody ¶
type GetImagesOKBody []*Image
type Image ¶
type Image struct {
// base image name
// Required: true
// Pattern: ^[\w\d\-]+$
BaseImageName *string `json:"baseImageName"`
// created time
CreatedTime int64 `json:"createdTime,omitempty"`
// docker Url
DockerURL string `json:"dockerUrl,omitempty"`
// groups
Groups []string `json:"groups"`
// id
ID strfmt.UUID `json:"id,omitempty"`
// language
Language Language `json:"language,omitempty"`
// name
// Required: true
// Pattern: ^[\w\d\-]+$
Name *string `json:"name"`
// reason
Reason []string `json:"reason"`
// spec
Spec Spec `json:"spec,omitempty"`
// status
Status Status `json:"status,omitempty"`
// tags
Tags ImageTags `json:"tags"`
}
func (*Image) MarshalBinary ¶
MarshalBinary interface implementation
func (*Image) UnmarshalBinary ¶
UnmarshalBinary interface implementation
type Status ¶
type Status string
const ( // StatusINITIALIZED captures enum value "INITIALIZED" StatusINITIALIZED Status = "INITIALIZED" // StatusCREATING captures enum value "CREATING" StatusCREATING Status = "CREATING" // StatusREADY captures enum value "READY" StatusREADY Status = "READY" // StatusERROR captures enum value "ERROR" StatusERROR Status = "ERROR" // StatusDELETED captures enum value "DELETED" StatusDELETED Status = "DELETED" )
type Tag ¶
type Tag struct {
// key
Key string `json:"key,omitempty"`
// value
Value string `json:"value,omitempty"`
}
func (*Tag) MarshalBinary ¶
MarshalBinary interface implementation
func (*Tag) UnmarshalBinary ¶
UnmarshalBinary interface implementation
Click to show internal directories.
Click to hide internal directories.