docs

package
v0.3.4 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 21, 2022 License: Apache-2.0 Imports: 1 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AllAppsParam

type AllAppsParam struct{}

swagger:parameters AllApps

type AppCreateParam

type AppCreateParam struct {
	// in: path
	Namespace string
	// in: body
	Service models.ApplicationCreateRequest
}

swagger:parameters AppCreate

type AppCreateResponse

type AppCreateResponse struct {
	// in: body
	Body models.Response
}

swagger:response AppCreateResponse

type AppDeleteParam

type AppDeleteParam struct {
	// in: path
	Namespace string
	// in: path
	App string
}

swagger:parameters AppDelete

type AppDeleteResponse

type AppDeleteResponse struct {
	// in: body
	Body models.ApplicationDeleteResponse
}

swagger:response AppDeleteResponse

type AppDeployParam

type AppDeployParam struct {
	// in: path
	Namespace string
	// in: path
	App string
	// in: body
	Body models.DeployRequest
}

swagger:parameters AppDeploy

type AppDeployResponse

type AppDeployResponse struct {
	// in: body
	Body models.DeployResponse
}

swagger:response AppDeployResponse

type AppImportGitParam

type AppImportGitParam struct {
	// in: path
	Namespace string
	// in: path
	App    string
	GitUrl string
	GitRev string
}

swagger:parameters AppImportGit

type AppImportGitResponse

type AppImportGitResponse struct {
	// in: body
	Body models.ImportGitResponse
}

swagger:response AppImportGitResponse

type AppLogsParam

type AppLogsParam struct {
	// in: path
	Namespace string
	// in: path
	App string
}

swagger:parameters AppLogs

type AppLogsResponse

type AppLogsResponse struct{}

swagger:response AppLogsResponse

type AppRestartParam added in v0.3.3

type AppRestartParam struct {
	// in: path
	Namespace string
	// in: path
	App string
}

swagger:parameters AppRestart

type AppRestartResponse added in v0.3.3

type AppRestartResponse struct {
	// in: body
	Body models.Response
}

swagger:response AppRestartResponse

type AppRunningParam

type AppRunningParam struct {
	// in: path
	Namespace string
	// in: path
	App string
}

swagger:parameters AppRunning

type AppRunningResponse

type AppRunningResponse struct {
	// in: body
	Body models.Response
}

swagger:response AppRunningResponse

type AppShowParam

type AppShowParam struct {
	// in: path
	Namespace string
	// in: path
	App string
}

swagger:parameters AppShow

type AppShowResponse

type AppShowResponse struct {
	// in: body
	Body models.App
}

swagger:response AppShowResponse

type AppStageParam

type AppStageParam struct {
	// in: path
	Namespace string
	// in: path
	App string
	// in: body
	Body models.StageRequest
}

swagger:parameters AppStage

type AppStageResponse

type AppStageResponse struct {
	// in: body
	Body models.StageResponse
}

swagger:response AppStageResponse

type AppUpdateParam

type AppUpdateParam struct {
	// in: path
	Namespace string
	// in: path
	App string
	// in: body
	Body models.ApplicationUpdateRequest
}

swagger:parameters AppUpdate

type AppUpdateResponse

type AppUpdateResponse struct {
	// in: body
	Body models.Response
}

swagger:response AppUpdateResponse

type AppUploadParam

type AppUploadParam struct {
	// in: path
	Namespace string
	// in: path
	App string
}

swagger:parameters AppUpload

type AppUploadResponse

type AppUploadResponse struct {
	// in: body
	Body models.UploadResponse
}

swagger:response AppUploadResponse

type AppsParam

type AppsParam struct {
	// in: path
	Namespace string
}

swagger:parameters Apps

type AppsResponse

type AppsResponse struct {
	// in: body
	Body models.AppList
}

swagger:response AppsResponse

type EnvListParams

type EnvListParams struct {
	// in: path
	Namespace string
	// in: path
	App string
}

swagger:parameters EnvList

type EnvListResponse

type EnvListResponse struct {
	// in: body
	Body models.EnvVariableMap
}

swagger:response EnvListResponse

type EnvMatch0Params

type EnvMatch0Params struct {
	// in: path
	Namespace string
	// in: path
	App string
}

swagger:parameters EnvMatch0

type EnvMatchParams

type EnvMatchParams struct {
	// in: path
	Namespace string
	// in: path
	App string
	// in: path
	Pattern string
}

swagger:parameters EnvMatch

type EnvMatchResponse

type EnvMatchResponse struct {
	// in: body
	Body models.EnvMatchResponse
}

swagger:response EnvMatchResponse

type EnvSetParams

type EnvSetParams struct {
	// in: path
	Namespace string
	// in: path
	App string
	// in: body
	Body models.EnvVariableMap
}

swagger:parameters EnvSet

type EnvSetResponse

type EnvSetResponse struct {
	// in: body
	Body models.Response
}

swagger:response EnvSetResponse

type EnvShowParams

type EnvShowParams struct {
	// in: path
	Namespace string
	// in: path
	App string
	// in: path
	Env string
}

swagger:parameters EnvShow

type EnvShowResponse

type EnvShowResponse struct {
	// in: body
	Body models.EnvVariable
}

swagger:response EnvShowResponse

type EnvUnsetParams

type EnvUnsetParams struct {
	// in: path
	Namespace string
	// in: path
	App string
	// in: path
	Env string
}

swagger:parameters EnvUnset

type EnvUnsetResponse

type EnvUnsetResponse struct {
	// in: body
	Body models.Response
}

swagger:response EnvUnsetResponse

type InfoResponse

type InfoResponse struct {
	// in: body
	Body models.InfoResponse
}

swagger:response InfoResponse

type NamespaceCreateParam

type NamespaceCreateParam struct {
	// in: body
	Body models.NamespaceCreateRequest
}

swagger:parameters NamespaceCreate

type NamespaceCreateResponse

type NamespaceCreateResponse struct {
	// in: body
	Body models.Response
}

swagger:response NamespaceCreateResponse

type NamespaceDeleteParam

type NamespaceDeleteParam struct {
	// in: path
	Namespace string
}

swagger:parameters NamespaceDelete

type NamespaceDeleteResponse

type NamespaceDeleteResponse struct {
	// in: body
	Body models.Response
}

swagger:response NamespaceDeleteResponse

type NamespaceMatch0Param

type NamespaceMatch0Param struct{}

swagger:parameters NamespaceMatch0

type NamespaceMatchParam

type NamespaceMatchParam struct {
	// in: path
	Pattern string
}

swagger:parameters NamespaceMatch

type NamespaceMatchResponse

type NamespaceMatchResponse struct {
	// in: body
	Body models.NamespacesMatchResponse
}

swagger:response NamespaceMatchResponse

type NamespaceShowParam

type NamespaceShowParam struct {
	// in: path
	Namespace string
}

swagger:parameters NamespaceShow

type NamespaceShowResponse

type NamespaceShowResponse struct {
	// in: body
	Body models.Namespace
}

swagger:response NamespaceShowResponse

type NamespacesResponse

type NamespacesResponse struct {
	// in: body
	Body models.NamespaceList
}

swagger:response NamespacesResponse

type ServiceAllServicesParam

type ServiceAllServicesParam struct{}

swagger:parameters AllServices

type ServiceAppsParam

type ServiceAppsParam struct {
	// in: path
	Namespace string
}

swagger:parameters ServiceApps

type ServiceAppsResponse

type ServiceAppsResponse struct {
	// in: body
	Body map[string]models.AppList
}

swagger:response ServiceAppsResponse

type ServiceBindResponse

type ServiceBindResponse struct {
	// in: body
	Body models.BindResponse
}

swagger:response ServiceBindResponse

type ServiceBindingCreateParams

type ServiceBindingCreateParams struct {
	// in: path
	Namespace string
	// in: path
	App string
	// in: body
	Body models.BindRequest
}

swagger:parameters ServiceBindingCreate

type ServiceBindingDeleteParams

type ServiceBindingDeleteParams struct {
	// in: path
	Namespace string
	// in: path
	App string
	// in: path
	Service string
}

swagger:parameters ServiceBindingDelete

type ServiceCreateParam

type ServiceCreateParam struct {
	// in: path
	Namespace string
	// in: body
	Service models.ServiceCreateRequest
}

swagger:parameters ServiceCreate

type ServiceCreateResponse

type ServiceCreateResponse struct {
	// in: body
	Body models.Response
}

swagger:response ServiceCreateResponse

type ServiceDeleteParam

type ServiceDeleteParam struct {
	// in: path
	Namespace string
	// in: path
	Service string
}

swagger:parameters ServiceDelete

type ServiceDeleteResponse

type ServiceDeleteResponse struct {
	// in: body
	Body models.ServiceDeleteResponse
}

swagger:response ServiceDeleteResponse

type ServiceReplaceParam added in v0.3.2

type ServiceReplaceParam struct {
	// in: path
	Namespace string
	// in: path
	Service string
	// in: body
	Body models.ServiceReplaceRequest
}

swagger:parameters ServiceReplace

type ServiceReplaceResponse added in v0.3.3

type ServiceReplaceResponse struct {
	// in: body
	Body models.Response
}

swagger:response ServiceReplaceResponse

type ServiceShowParam

type ServiceShowParam struct {
	// in: path
	Namespace string
	// in: path
	Service string
}

swagger:parameters ServiceShow

type ServiceShowResponse

type ServiceShowResponse struct {
	// in: body
	Body models.ServiceResponse
}

swagger:response ServiceShowResponse

type ServiceUnbindReponse

type ServiceUnbindReponse struct {
	// in:body
	Body models.Response
}

swagger:response ServiceUnbindReponse

type ServiceUpdateParam added in v0.3.0

type ServiceUpdateParam struct {
	// in: path
	Namespace string
	// in: path
	Service string
	// in: body
	Body models.ServiceUpdateRequest
}

swagger:parameters ServiceUpdate

type ServiceUpdateResponse added in v0.3.0

type ServiceUpdateResponse struct {
	// in: body
	Body models.Response
}

swagger:response ServiceUpdateResponse

type ServicesParam

type ServicesParam struct {
	// in: path
	Namespace string
}

swagger:parameters Services

type ServicesResponse

type ServicesResponse struct {
	// in: body
	Body models.ServiceResponseList
}

swagger:response ServicesResponse

type StagingCompleteParam

type StagingCompleteParam struct {
	// in: path
	Namespace string
	// in: path
	StageID string
}

swagger:parameters StagingComplete

type StagingCompleteResponse

type StagingCompleteResponse struct {
	// in: body
	Body models.Response
}

swagger:response StagingCompleteResponse

type StagingLogsParam

type StagingLogsParam struct {
	// in: path
	Namespace string
	// in: path
	StageID string
}

swagger:parameters StagingLogs

type StagingLogsResponse

type StagingLogsResponse struct{}

swagger:response StagingLogsResponse

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL