Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BuildSecret ¶
type BuildSecret struct {
// Name name of the build secret
//
// required: true
// example: SECRET_1
Name string `json:"name"`
// Status of the secret
// - Pending = Secret value is not set
// - Consistent = Secret value is set
//
// required: false
// enum: Pending,Consistent
// example: Consistent
Status string `json:"status"`
// Updated when the secret was last changed
//
// required: false
// swagger:strfmt date-time
Updated *time.Time `json:"updated,omitempty"`
}
BuildSecret holds general information about image hubs swagger:model BuildSecret
type BuildSecretStatus ¶
type BuildSecretStatus int
BuildSecretStatus Enumeration of the statuses of a build secret
const ( // Pending In configuration but not in cluster Pending BuildSecretStatus = iota // Consistent In configuration and in cluster Consistent )
func (BuildSecretStatus) String ¶
func (p BuildSecretStatus) String() string
Click to show internal directories.
Click to hide internal directories.