Documentation
¶
Index ¶
Constants ¶
View Source
const ( RootPath = "/v1" SystemsPath = RootPath + "/systems" SystemPathFormat = SystemsPath + "/%v" BuildsPathFormat = SystemPathFormat + "/builds" BuildPathFormat = BuildsPathFormat + "/%v" BuildLogsPathFormat = BuildPathFormat + "/logs" DeploysPathFormat = SystemPathFormat + "/deploys" DeployPathFormat = DeploysPathFormat + "/%v" NodePoolsPathFormat = SystemPathFormat + "/node-pools" NodePoolPathFormat = NodePoolsPathFormat + "/%v" SystemSecretsPathFormat = SystemPathFormat + "/secrets" SystemSecretPathFormat = SystemSecretsPathFormat + "/%v" JobsPathFormat = SystemPathFormat + "/jobs" JobPathFormat = JobsPathFormat + "/%v" JobLogsPathFormat = JobPathFormat + "/logs" ServicesPathFormat = SystemPathFormat + "/services" ServicePathFormat = ServicesPathFormat + "/%v" ServiceLogsPathFormat = ServicePathFormat + "/logs" TeardownsPathFormat = SystemPathFormat + "/teardowns" TeardownPathFormat = TeardownsPathFormat + "/%v" VersionsPathFormat = SystemPathFormat + "/versions" VersionPathFormat = VersionsPathFormat + "/%v" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BuildRequest ¶
type CreateSystemRequest ¶
type DeployRequest ¶
type RunJobRequest ¶
type RunJobRequest struct { Path tree.Path `json:"path"` Command []string `json:"command,omitempty"` Environment definitionv1.ContainerEnvironment `json:"environment,omitempty"` }
type SetSecretRequest ¶
type SetSecretRequest struct {
Value string `json:"value"`
}
Click to show internal directories.
Click to hide internal directories.