Documentation
¶
Index ¶
- type EventType
- type Graph
- type GraphNode
- type Image
- type ImageDescription
- type ImageEvent
- type ImageLink
- type ImagePage
- type ImagePageSummary
- type ImageReleaseNotes
- type ImageVulnerability
- type JobRun
- type JobRunResult
- type PaginationMetadata
- type RawImage
- type StepRun
- type StepRunResult
- type WorkflowRun
- type WorkflowRunResult
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Image ¶
type Image struct {
Reference string `json:"reference"`
Created *time.Time `json:"created,omitempty"`
LatestReference string `json:"latestReference,omitempty"`
LatestCreated *time.Time `json:"latestCreated,omitempty"`
VersionDiffSortable uint64 `json:"-"`
Description string `json:"description,omitempty"`
Tags []string `json:"tags"`
Links []ImageLink `json:"links"`
Vulnerabilities []ImageVulnerability `json:"vulnerabilities"`
LastModified time.Time `json:"lastModified"`
Image string `json:"image,omitempty"`
}
type ImageDescription ¶
type ImageEvent ¶
type ImagePage ¶
type ImagePage struct {
Images []Image `json:"images"`
Summary ImagePageSummary `json:"summary"`
Pagination PaginationMetadata `json:"pagination"`
}
type ImagePageSummary ¶
type ImageReleaseNotes ¶
type ImageVulnerability ¶
type JobRun ¶ added in v0.17.0
type JobRun struct {
Result JobRunResult `json:"result"`
Steps []StepRun `json:"steps"`
DependsOn []string `json:"dependsOn"`
JobID string `json:"jobId,omitempty"`
JobName string `json:"jobName,omitempty"`
Started time.Time `json:"started,omitempty"`
DurationSeconds float64 `json:"duration,omitempty"`
}
type JobRunResult ¶ added in v0.17.0
type JobRunResult string
const ( JobRunResultSucceeded JobRunResult = "succeeded" JobRunResultSkipped JobRunResult = "skipped" JobRunResultFailed JobRunResult = "failed" )
type PaginationMetadata ¶
type StepRunResult ¶ added in v0.17.0
type StepRunResult string
const ( StepRunResultSucceeded StepRunResult = "succeeded" StepRunResultSkipped StepRunResult = "skipped" StepRunResultFailed StepRunResult = "failed" )
type WorkflowRun ¶ added in v0.17.0
type WorkflowRunResult ¶ added in v0.17.0
type WorkflowRunResult string
const ( WorkflowRunResultSucceeded WorkflowRunResult = "succeeded" WorkflowRunResultFailed WorkflowRunResult = "failed" )
Click to show internal directories.
Click to hide internal directories.