Documentation
¶
Index ¶
- type App
- type AppAndChannels
- type Channel
- type CollectorInfo
- type Customer
- type EntitlementSpec
- type EntitlementValue
- type InstallCommands
- type InstallerSpec
- type KotsAppRelease
- type KotsCreateReleaseRequest
- type KotsGetReleaseResponse
- type KotsListReleasesResponse
- type KotsUpdateReleaseRequest
- type LintLinePosition
- type LintMessage
- type LintPosition
- type PlatformChannel
- type ReleaseInfo
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AppAndChannels ¶
type Channel ¶
type CollectorInfo ¶ added in v0.12.0
type Customer ¶ added in v0.18.0
type EntitlementSpec ¶ added in v0.11.0
type EntitlementValue ¶ added in v0.11.0
type InstallCommands ¶ added in v0.31.0
type InstallerSpec ¶ added in v0.21.0
type KotsAppRelease ¶ added in v0.33.2
type KotsAppRelease struct {
AppID string `json:"appId"`
Sequence int64 `json:"sequence"`
CreatedAt time.Time `json:"created"`
IsArchived bool `json:"isArchived"`
Spec string `json:"spec"`
ReleaseNotes string `json:"releaseNotes"`
IsReleaseNotEditable bool `json:"isReleaseNotEditable"`
Channels []*Channel `json:"channels"`
}
type KotsCreateReleaseRequest ¶ added in v0.36.1
type KotsCreateReleaseRequest struct {
SpecGzip []byte `json:"spec_gzip"`
}
type KotsGetReleaseResponse ¶ added in v0.36.1
type KotsGetReleaseResponse struct {
Release KotsAppRelease `json:"release"`
}
type KotsListReleasesResponse ¶ added in v0.36.1
type KotsListReleasesResponse struct {
Releases []*KotsAppRelease `json:"releases"`
}
KotsListReleasesResponse contains the JSON releases list
type KotsUpdateReleaseRequest ¶ added in v0.36.1
type KotsUpdateReleaseRequest struct {
SpecGzip []byte `json:"spec_gzip"`
}
type LintLinePosition ¶ added in v0.8.0
type LintMessage ¶ added in v0.8.0
type LintMessage struct {
Rule string `json:"rule"`
Type string `json:"type"`
Path string `json:"path"`
Message string `json:"message"`
Positions []*LintPosition `json:"positions"`
}
type LintPosition ¶ added in v0.8.0
type LintPosition struct {
Path string `json:"path"`
Start LintLinePosition `json:"start"`
End LintLinePosition `json:"end"`
}
type PlatformChannel ¶ added in v0.12.0
Click to show internal directories.
Click to hide internal directories.