deployment_v1alpha

package
v0.9.0 Latest Latest
Warning

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

Go to latest
Published: May 28, 2026 License: Apache-2.0 Imports: 6 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func AdaptDeployment

func AdaptDeployment(t Deployment) *rpc.Interface

Types

type AccessInfo added in v0.4.0

type AccessInfo struct {
	// contains filtered or unexported fields
}

func (*AccessInfo) ClusterHostname added in v0.4.0

func (v *AccessInfo) ClusterHostname() string

func (*AccessInfo) DefaultRoute added in v0.4.0

func (v *AccessInfo) DefaultRoute() bool

func (*AccessInfo) HasClusterHostname added in v0.4.0

func (v *AccessInfo) HasClusterHostname() bool

func (*AccessInfo) HasDefaultRoute added in v0.4.0

func (v *AccessInfo) HasDefaultRoute() bool

func (*AccessInfo) HasHostnames added in v0.4.0

func (v *AccessInfo) HasHostnames() bool

func (*AccessInfo) Hostnames added in v0.4.0

func (v *AccessInfo) Hostnames() *[]string

func (*AccessInfo) MarshalCBOR added in v0.4.0

func (v *AccessInfo) MarshalCBOR() ([]byte, error)

func (*AccessInfo) MarshalJSON added in v0.4.0

func (v *AccessInfo) MarshalJSON() ([]byte, error)

func (*AccessInfo) SetClusterHostname added in v0.4.0

func (v *AccessInfo) SetClusterHostname(cluster_hostname string)

func (*AccessInfo) SetDefaultRoute added in v0.4.0

func (v *AccessInfo) SetDefaultRoute(default_route bool)

func (*AccessInfo) SetHostnames added in v0.4.0

func (v *AccessInfo) SetHostnames(hostnames *[]string)

func (*AccessInfo) UnmarshalCBOR added in v0.4.0

func (v *AccessInfo) UnmarshalCBOR(data []byte) error

func (*AccessInfo) UnmarshalJSON added in v0.4.0

func (v *AccessInfo) UnmarshalJSON(data []byte) error

type Deployment

type Deployment interface {
	CreateDeployment(ctx context.Context, state *DeploymentCreateDeployment) error
	UpdateDeploymentStatus(ctx context.Context, state *DeploymentUpdateDeploymentStatus) error
	UpdateDeploymentPhase(ctx context.Context, state *DeploymentUpdateDeploymentPhase) error
	UpdateFailedDeployment(ctx context.Context, state *DeploymentUpdateFailedDeployment) error
	UpdateDeploymentAppVersion(ctx context.Context, state *DeploymentUpdateDeploymentAppVersion) error
	ListDeployments(ctx context.Context, state *DeploymentListDeployments) error
	GetDeploymentById(ctx context.Context, state *DeploymentGetDeploymentById) error
	GetActiveDeployment(ctx context.Context, state *DeploymentGetActiveDeployment) error
	CancelDeployment(ctx context.Context, state *DeploymentCancelDeployment) error
	DeployVersion(ctx context.Context, state *DeploymentDeployVersion) error
	SetEnvVars(ctx context.Context, state *DeploymentSetEnvVars) error
	DeleteEnvVars(ctx context.Context, state *DeploymentDeleteEnvVars) error
}

type DeploymentCancelDeployment added in v0.3.0

type DeploymentCancelDeployment struct {
	rpc.Call
	// contains filtered or unexported fields
}

func (*DeploymentCancelDeployment) Args added in v0.3.0

func (*DeploymentCancelDeployment) Results added in v0.3.0

type DeploymentCancelDeploymentArgs added in v0.3.0

type DeploymentCancelDeploymentArgs struct {
	// contains filtered or unexported fields
}

func (*DeploymentCancelDeploymentArgs) CallerUserId added in v0.3.0

func (v *DeploymentCancelDeploymentArgs) CallerUserId() string

func (*DeploymentCancelDeploymentArgs) DeploymentId added in v0.3.0

func (v *DeploymentCancelDeploymentArgs) DeploymentId() string

func (*DeploymentCancelDeploymentArgs) HasCallerUserId added in v0.3.0

func (v *DeploymentCancelDeploymentArgs) HasCallerUserId() bool

func (*DeploymentCancelDeploymentArgs) HasDeploymentId added in v0.3.0

func (v *DeploymentCancelDeploymentArgs) HasDeploymentId() bool

func (*DeploymentCancelDeploymentArgs) MarshalCBOR added in v0.3.0

func (v *DeploymentCancelDeploymentArgs) MarshalCBOR() ([]byte, error)

func (*DeploymentCancelDeploymentArgs) MarshalJSON added in v0.3.0

func (v *DeploymentCancelDeploymentArgs) MarshalJSON() ([]byte, error)

func (*DeploymentCancelDeploymentArgs) UnmarshalCBOR added in v0.3.0

func (v *DeploymentCancelDeploymentArgs) UnmarshalCBOR(data []byte) error

func (*DeploymentCancelDeploymentArgs) UnmarshalJSON added in v0.3.0

func (v *DeploymentCancelDeploymentArgs) UnmarshalJSON(data []byte) error

type DeploymentCancelDeploymentResults added in v0.3.0

type DeploymentCancelDeploymentResults struct {
	// contains filtered or unexported fields
}

func (*DeploymentCancelDeploymentResults) MarshalCBOR added in v0.3.0

func (v *DeploymentCancelDeploymentResults) MarshalCBOR() ([]byte, error)

func (*DeploymentCancelDeploymentResults) MarshalJSON added in v0.3.0

func (v *DeploymentCancelDeploymentResults) MarshalJSON() ([]byte, error)

func (*DeploymentCancelDeploymentResults) SetError added in v0.3.0

func (v *DeploymentCancelDeploymentResults) SetError(error string)

func (*DeploymentCancelDeploymentResults) SetSuccess added in v0.3.0

func (v *DeploymentCancelDeploymentResults) SetSuccess(success bool)

func (*DeploymentCancelDeploymentResults) UnmarshalCBOR added in v0.3.0

func (v *DeploymentCancelDeploymentResults) UnmarshalCBOR(data []byte) error

func (*DeploymentCancelDeploymentResults) UnmarshalJSON added in v0.3.0

func (v *DeploymentCancelDeploymentResults) UnmarshalJSON(data []byte) error

type DeploymentClient

type DeploymentClient struct {
	rpc.Client
}

func NewDeploymentClient

func NewDeploymentClient(client rpc.Client) *DeploymentClient

func (DeploymentClient) CancelDeployment added in v0.3.0

func (v DeploymentClient) CancelDeployment(ctx context.Context, deployment_id string, caller_user_id string) (*DeploymentClientCancelDeploymentResults, error)

func (DeploymentClient) CreateDeployment

func (v DeploymentClient) CreateDeployment(ctx context.Context, app_name string, cluster_id string, app_version_id string, git_info *GitInfo) (*DeploymentClientCreateDeploymentResults, error)

func (DeploymentClient) DeleteEnvVars added in v0.5.0

func (v DeploymentClient) DeleteEnvVars(ctx context.Context, app_name string, cluster_id string, keys []string, service string) (*DeploymentClientDeleteEnvVarsResults, error)

func (DeploymentClient) DeployVersion added in v0.4.0

func (v DeploymentClient) DeployVersion(ctx context.Context, app_name string, cluster_id string, app_version_id string, is_rollback bool, env_vars []*EnvironmentVariable, ephemeral_label string, ephemeral_ttl string) (*DeploymentClientDeployVersionResults, error)

func (DeploymentClient) Export

func (c DeploymentClient) Export() Deployment

func (DeploymentClient) GetActiveDeployment

func (v DeploymentClient) GetActiveDeployment(ctx context.Context, app_name string, cluster_id string) (*DeploymentClientGetActiveDeploymentResults, error)

func (DeploymentClient) GetDeploymentById

func (v DeploymentClient) GetDeploymentById(ctx context.Context, deployment_id string) (*DeploymentClientGetDeploymentByIdResults, error)

func (DeploymentClient) ListDeployments

func (v DeploymentClient) ListDeployments(ctx context.Context, app_name string, cluster_id string, status string, limit int32) (*DeploymentClientListDeploymentsResults, error)

func (DeploymentClient) SetEnvVars added in v0.5.0

func (v DeploymentClient) SetEnvVars(ctx context.Context, app_name string, cluster_id string, vars []*EnvironmentVariable, service string) (*DeploymentClientSetEnvVarsResults, error)

func (DeploymentClient) UpdateDeploymentAppVersion

func (v DeploymentClient) UpdateDeploymentAppVersion(ctx context.Context, deployment_id string, app_version_id string) (*DeploymentClientUpdateDeploymentAppVersionResults, error)

func (DeploymentClient) UpdateDeploymentPhase

func (v DeploymentClient) UpdateDeploymentPhase(ctx context.Context, deployment_id string, phase string) (*DeploymentClientUpdateDeploymentPhaseResults, error)

func (DeploymentClient) UpdateDeploymentStatus

func (v DeploymentClient) UpdateDeploymentStatus(ctx context.Context, deployment_id string, status string, error_message string) (*DeploymentClientUpdateDeploymentStatusResults, error)

func (DeploymentClient) UpdateFailedDeployment

func (v DeploymentClient) UpdateFailedDeployment(ctx context.Context, deployment_id string, error_message string, build_logs string) (*DeploymentClientUpdateFailedDeploymentResults, error)

type DeploymentClientCancelDeploymentResults added in v0.3.0

type DeploymentClientCancelDeploymentResults struct {
	// contains filtered or unexported fields
}

func (*DeploymentClientCancelDeploymentResults) Error added in v0.3.0

func (*DeploymentClientCancelDeploymentResults) HasError added in v0.3.0

func (*DeploymentClientCancelDeploymentResults) HasSuccess added in v0.3.0

func (*DeploymentClientCancelDeploymentResults) Success added in v0.3.0

type DeploymentClientCreateDeploymentResults

type DeploymentClientCreateDeploymentResults struct {
	// contains filtered or unexported fields
}

func (*DeploymentClientCreateDeploymentResults) Deployment

func (*DeploymentClientCreateDeploymentResults) Error

func (*DeploymentClientCreateDeploymentResults) HasDeployment

func (v *DeploymentClientCreateDeploymentResults) HasDeployment() bool

func (*DeploymentClientCreateDeploymentResults) HasError

func (*DeploymentClientCreateDeploymentResults) HasLockInfo

func (*DeploymentClientCreateDeploymentResults) LockInfo

type DeploymentClientDeleteEnvVarsResults added in v0.5.0

type DeploymentClientDeleteEnvVarsResults struct {
	// contains filtered or unexported fields
}

func (*DeploymentClientDeleteEnvVarsResults) AccessInfo added in v0.5.0

func (*DeploymentClientDeleteEnvVarsResults) DeletedSources added in v0.5.0

func (v *DeploymentClientDeleteEnvVarsResults) DeletedSources() []string

func (*DeploymentClientDeleteEnvVarsResults) Deployment added in v0.5.0

func (*DeploymentClientDeleteEnvVarsResults) Error added in v0.5.0

func (*DeploymentClientDeleteEnvVarsResults) HasAccessInfo added in v0.5.0

func (v *DeploymentClientDeleteEnvVarsResults) HasAccessInfo() bool

func (*DeploymentClientDeleteEnvVarsResults) HasDeletedSources added in v0.5.0

func (v *DeploymentClientDeleteEnvVarsResults) HasDeletedSources() bool

func (*DeploymentClientDeleteEnvVarsResults) HasDeployment added in v0.5.0

func (v *DeploymentClientDeleteEnvVarsResults) HasDeployment() bool

func (*DeploymentClientDeleteEnvVarsResults) HasError added in v0.5.0

func (*DeploymentClientDeleteEnvVarsResults) HasLockInfo added in v0.5.0

func (v *DeploymentClientDeleteEnvVarsResults) HasLockInfo() bool

func (*DeploymentClientDeleteEnvVarsResults) HasVersionId added in v0.5.0

func (v *DeploymentClientDeleteEnvVarsResults) HasVersionId() bool

func (*DeploymentClientDeleteEnvVarsResults) LockInfo added in v0.5.0

func (*DeploymentClientDeleteEnvVarsResults) VersionId added in v0.5.0

type DeploymentClientDeployVersionResults added in v0.4.0

type DeploymentClientDeployVersionResults struct {
	// contains filtered or unexported fields
}

func (*DeploymentClientDeployVersionResults) AccessInfo added in v0.4.0

func (*DeploymentClientDeployVersionResults) Deployment added in v0.4.0

func (*DeploymentClientDeployVersionResults) Error added in v0.4.0

func (*DeploymentClientDeployVersionResults) HasAccessInfo added in v0.4.0

func (v *DeploymentClientDeployVersionResults) HasAccessInfo() bool

func (*DeploymentClientDeployVersionResults) HasDeployment added in v0.4.0

func (v *DeploymentClientDeployVersionResults) HasDeployment() bool

func (*DeploymentClientDeployVersionResults) HasError added in v0.4.0

func (*DeploymentClientDeployVersionResults) HasLockInfo added in v0.4.0

func (v *DeploymentClientDeployVersionResults) HasLockInfo() bool

func (*DeploymentClientDeployVersionResults) LockInfo added in v0.4.0

type DeploymentClientGetActiveDeploymentResults

type DeploymentClientGetActiveDeploymentResults struct {
	// contains filtered or unexported fields
}

func (*DeploymentClientGetActiveDeploymentResults) Deployment

func (*DeploymentClientGetActiveDeploymentResults) HasDeployment

type DeploymentClientGetDeploymentByIdResults

type DeploymentClientGetDeploymentByIdResults struct {
	// contains filtered or unexported fields
}

func (*DeploymentClientGetDeploymentByIdResults) Deployment

func (*DeploymentClientGetDeploymentByIdResults) HasDeployment

type DeploymentClientListDeploymentsResults

type DeploymentClientListDeploymentsResults struct {
	// contains filtered or unexported fields
}

func (*DeploymentClientListDeploymentsResults) Deployments

func (*DeploymentClientListDeploymentsResults) HasDeployments

func (v *DeploymentClientListDeploymentsResults) HasDeployments() bool

type DeploymentClientSetEnvVarsResults added in v0.5.0

type DeploymentClientSetEnvVarsResults struct {
	// contains filtered or unexported fields
}

func (*DeploymentClientSetEnvVarsResults) AccessInfo added in v0.5.0

func (*DeploymentClientSetEnvVarsResults) Deployment added in v0.5.0

func (*DeploymentClientSetEnvVarsResults) Error added in v0.5.0

func (*DeploymentClientSetEnvVarsResults) HasAccessInfo added in v0.5.0

func (v *DeploymentClientSetEnvVarsResults) HasAccessInfo() bool

func (*DeploymentClientSetEnvVarsResults) HasDeployment added in v0.5.0

func (v *DeploymentClientSetEnvVarsResults) HasDeployment() bool

func (*DeploymentClientSetEnvVarsResults) HasError added in v0.5.0

func (*DeploymentClientSetEnvVarsResults) HasLockInfo added in v0.5.0

func (v *DeploymentClientSetEnvVarsResults) HasLockInfo() bool

func (*DeploymentClientSetEnvVarsResults) HasVersionId added in v0.5.0

func (v *DeploymentClientSetEnvVarsResults) HasVersionId() bool

func (*DeploymentClientSetEnvVarsResults) LockInfo added in v0.5.0

func (*DeploymentClientSetEnvVarsResults) VersionId added in v0.5.0

type DeploymentClientUpdateDeploymentAppVersionResults

type DeploymentClientUpdateDeploymentAppVersionResults struct {
	// contains filtered or unexported fields
}

func (*DeploymentClientUpdateDeploymentAppVersionResults) Deployment

func (*DeploymentClientUpdateDeploymentAppVersionResults) HasDeployment

type DeploymentClientUpdateDeploymentPhaseResults

type DeploymentClientUpdateDeploymentPhaseResults struct {
	// contains filtered or unexported fields
}

func (*DeploymentClientUpdateDeploymentPhaseResults) Deployment

func (*DeploymentClientUpdateDeploymentPhaseResults) HasDeployment

type DeploymentClientUpdateDeploymentStatusResults

type DeploymentClientUpdateDeploymentStatusResults struct {
	// contains filtered or unexported fields
}

func (*DeploymentClientUpdateDeploymentStatusResults) Deployment

func (*DeploymentClientUpdateDeploymentStatusResults) HasDeployment

type DeploymentClientUpdateFailedDeploymentResults

type DeploymentClientUpdateFailedDeploymentResults struct {
	// contains filtered or unexported fields
}

func (*DeploymentClientUpdateFailedDeploymentResults) Deployment

func (*DeploymentClientUpdateFailedDeploymentResults) HasDeployment

type DeploymentCreateDeployment

type DeploymentCreateDeployment struct {
	rpc.Call
	// contains filtered or unexported fields
}

func (*DeploymentCreateDeployment) Args

func (*DeploymentCreateDeployment) Results

type DeploymentCreateDeploymentArgs

type DeploymentCreateDeploymentArgs struct {
	// contains filtered or unexported fields
}

func (*DeploymentCreateDeploymentArgs) AppName

func (*DeploymentCreateDeploymentArgs) AppVersionId

func (v *DeploymentCreateDeploymentArgs) AppVersionId() string

func (*DeploymentCreateDeploymentArgs) ClusterId

func (v *DeploymentCreateDeploymentArgs) ClusterId() string

func (*DeploymentCreateDeploymentArgs) GitInfo

func (*DeploymentCreateDeploymentArgs) HasAppName

func (v *DeploymentCreateDeploymentArgs) HasAppName() bool

func (*DeploymentCreateDeploymentArgs) HasAppVersionId

func (v *DeploymentCreateDeploymentArgs) HasAppVersionId() bool

func (*DeploymentCreateDeploymentArgs) HasClusterId

func (v *DeploymentCreateDeploymentArgs) HasClusterId() bool

func (*DeploymentCreateDeploymentArgs) HasGitInfo

func (v *DeploymentCreateDeploymentArgs) HasGitInfo() bool

func (*DeploymentCreateDeploymentArgs) MarshalCBOR

func (v *DeploymentCreateDeploymentArgs) MarshalCBOR() ([]byte, error)

func (*DeploymentCreateDeploymentArgs) MarshalJSON

func (v *DeploymentCreateDeploymentArgs) MarshalJSON() ([]byte, error)

func (*DeploymentCreateDeploymentArgs) UnmarshalCBOR

func (v *DeploymentCreateDeploymentArgs) UnmarshalCBOR(data []byte) error

func (*DeploymentCreateDeploymentArgs) UnmarshalJSON

func (v *DeploymentCreateDeploymentArgs) UnmarshalJSON(data []byte) error

type DeploymentCreateDeploymentResults

type DeploymentCreateDeploymentResults struct {
	// contains filtered or unexported fields
}

func (*DeploymentCreateDeploymentResults) MarshalCBOR

func (v *DeploymentCreateDeploymentResults) MarshalCBOR() ([]byte, error)

func (*DeploymentCreateDeploymentResults) MarshalJSON

func (v *DeploymentCreateDeploymentResults) MarshalJSON() ([]byte, error)

func (*DeploymentCreateDeploymentResults) SetDeployment

func (v *DeploymentCreateDeploymentResults) SetDeployment(deployment *DeploymentInfo)

func (*DeploymentCreateDeploymentResults) SetError

func (v *DeploymentCreateDeploymentResults) SetError(error string)

func (*DeploymentCreateDeploymentResults) SetLockInfo

func (v *DeploymentCreateDeploymentResults) SetLockInfo(lock_info *DeploymentLockInfo)

func (*DeploymentCreateDeploymentResults) UnmarshalCBOR

func (v *DeploymentCreateDeploymentResults) UnmarshalCBOR(data []byte) error

func (*DeploymentCreateDeploymentResults) UnmarshalJSON

func (v *DeploymentCreateDeploymentResults) UnmarshalJSON(data []byte) error

type DeploymentDeleteEnvVars added in v0.5.0

type DeploymentDeleteEnvVars struct {
	rpc.Call
	// contains filtered or unexported fields
}

func (*DeploymentDeleteEnvVars) Args added in v0.5.0

func (*DeploymentDeleteEnvVars) Results added in v0.5.0

type DeploymentDeleteEnvVarsArgs added in v0.5.0

type DeploymentDeleteEnvVarsArgs struct {
	// contains filtered or unexported fields
}

func (*DeploymentDeleteEnvVarsArgs) AppName added in v0.5.0

func (v *DeploymentDeleteEnvVarsArgs) AppName() string

func (*DeploymentDeleteEnvVarsArgs) ClusterId added in v0.5.0

func (v *DeploymentDeleteEnvVarsArgs) ClusterId() string

func (*DeploymentDeleteEnvVarsArgs) HasAppName added in v0.5.0

func (v *DeploymentDeleteEnvVarsArgs) HasAppName() bool

func (*DeploymentDeleteEnvVarsArgs) HasClusterId added in v0.5.0

func (v *DeploymentDeleteEnvVarsArgs) HasClusterId() bool

func (*DeploymentDeleteEnvVarsArgs) HasKeys added in v0.5.0

func (v *DeploymentDeleteEnvVarsArgs) HasKeys() bool

func (*DeploymentDeleteEnvVarsArgs) HasService added in v0.5.0

func (v *DeploymentDeleteEnvVarsArgs) HasService() bool

func (*DeploymentDeleteEnvVarsArgs) Keys added in v0.5.0

func (v *DeploymentDeleteEnvVarsArgs) Keys() []string

func (*DeploymentDeleteEnvVarsArgs) MarshalCBOR added in v0.5.0

func (v *DeploymentDeleteEnvVarsArgs) MarshalCBOR() ([]byte, error)

func (*DeploymentDeleteEnvVarsArgs) MarshalJSON added in v0.5.0

func (v *DeploymentDeleteEnvVarsArgs) MarshalJSON() ([]byte, error)

func (*DeploymentDeleteEnvVarsArgs) Service added in v0.5.0

func (v *DeploymentDeleteEnvVarsArgs) Service() string

func (*DeploymentDeleteEnvVarsArgs) UnmarshalCBOR added in v0.5.0

func (v *DeploymentDeleteEnvVarsArgs) UnmarshalCBOR(data []byte) error

func (*DeploymentDeleteEnvVarsArgs) UnmarshalJSON added in v0.5.0

func (v *DeploymentDeleteEnvVarsArgs) UnmarshalJSON(data []byte) error

type DeploymentDeleteEnvVarsResults added in v0.5.0

type DeploymentDeleteEnvVarsResults struct {
	// contains filtered or unexported fields
}

func (*DeploymentDeleteEnvVarsResults) MarshalCBOR added in v0.5.0

func (v *DeploymentDeleteEnvVarsResults) MarshalCBOR() ([]byte, error)

func (*DeploymentDeleteEnvVarsResults) MarshalJSON added in v0.5.0

func (v *DeploymentDeleteEnvVarsResults) MarshalJSON() ([]byte, error)

func (*DeploymentDeleteEnvVarsResults) SetAccessInfo added in v0.5.0

func (v *DeploymentDeleteEnvVarsResults) SetAccessInfo(access_info **AccessInfo)

func (*DeploymentDeleteEnvVarsResults) SetDeletedSources added in v0.5.0

func (v *DeploymentDeleteEnvVarsResults) SetDeletedSources(deleted_sources *[]string)

func (*DeploymentDeleteEnvVarsResults) SetDeployment added in v0.5.0

func (v *DeploymentDeleteEnvVarsResults) SetDeployment(deployment *DeploymentInfo)

func (*DeploymentDeleteEnvVarsResults) SetError added in v0.5.0

func (v *DeploymentDeleteEnvVarsResults) SetError(error string)

func (*DeploymentDeleteEnvVarsResults) SetLockInfo added in v0.5.0

func (v *DeploymentDeleteEnvVarsResults) SetLockInfo(lock_info *DeploymentLockInfo)

func (*DeploymentDeleteEnvVarsResults) SetVersionId added in v0.5.0

func (v *DeploymentDeleteEnvVarsResults) SetVersionId(version_id string)

func (*DeploymentDeleteEnvVarsResults) UnmarshalCBOR added in v0.5.0

func (v *DeploymentDeleteEnvVarsResults) UnmarshalCBOR(data []byte) error

func (*DeploymentDeleteEnvVarsResults) UnmarshalJSON added in v0.5.0

func (v *DeploymentDeleteEnvVarsResults) UnmarshalJSON(data []byte) error

type DeploymentDeployVersion added in v0.4.0

type DeploymentDeployVersion struct {
	rpc.Call
	// contains filtered or unexported fields
}

func (*DeploymentDeployVersion) Args added in v0.4.0

func (*DeploymentDeployVersion) Results added in v0.4.0

type DeploymentDeployVersionArgs added in v0.4.0

type DeploymentDeployVersionArgs struct {
	// contains filtered or unexported fields
}

func (*DeploymentDeployVersionArgs) AppName added in v0.4.0

func (v *DeploymentDeployVersionArgs) AppName() string

func (*DeploymentDeployVersionArgs) AppVersionId added in v0.4.0

func (v *DeploymentDeployVersionArgs) AppVersionId() string

func (*DeploymentDeployVersionArgs) ClusterId added in v0.4.0

func (v *DeploymentDeployVersionArgs) ClusterId() string

func (*DeploymentDeployVersionArgs) EnvVars added in v0.4.0

func (*DeploymentDeployVersionArgs) EphemeralLabel added in v0.8.0

func (v *DeploymentDeployVersionArgs) EphemeralLabel() string

func (*DeploymentDeployVersionArgs) EphemeralTtl added in v0.8.0

func (v *DeploymentDeployVersionArgs) EphemeralTtl() string

func (*DeploymentDeployVersionArgs) HasAppName added in v0.4.0

func (v *DeploymentDeployVersionArgs) HasAppName() bool

func (*DeploymentDeployVersionArgs) HasAppVersionId added in v0.4.0

func (v *DeploymentDeployVersionArgs) HasAppVersionId() bool

func (*DeploymentDeployVersionArgs) HasClusterId added in v0.4.0

func (v *DeploymentDeployVersionArgs) HasClusterId() bool

func (*DeploymentDeployVersionArgs) HasEnvVars added in v0.4.0

func (v *DeploymentDeployVersionArgs) HasEnvVars() bool

func (*DeploymentDeployVersionArgs) HasEphemeralLabel added in v0.8.0

func (v *DeploymentDeployVersionArgs) HasEphemeralLabel() bool

func (*DeploymentDeployVersionArgs) HasEphemeralTtl added in v0.8.0

func (v *DeploymentDeployVersionArgs) HasEphemeralTtl() bool

func (*DeploymentDeployVersionArgs) HasIsRollback added in v0.4.0

func (v *DeploymentDeployVersionArgs) HasIsRollback() bool

func (*DeploymentDeployVersionArgs) IsRollback added in v0.4.0

func (v *DeploymentDeployVersionArgs) IsRollback() bool

func (*DeploymentDeployVersionArgs) MarshalCBOR added in v0.4.0

func (v *DeploymentDeployVersionArgs) MarshalCBOR() ([]byte, error)

func (*DeploymentDeployVersionArgs) MarshalJSON added in v0.4.0

func (v *DeploymentDeployVersionArgs) MarshalJSON() ([]byte, error)

func (*DeploymentDeployVersionArgs) UnmarshalCBOR added in v0.4.0

func (v *DeploymentDeployVersionArgs) UnmarshalCBOR(data []byte) error

func (*DeploymentDeployVersionArgs) UnmarshalJSON added in v0.4.0

func (v *DeploymentDeployVersionArgs) UnmarshalJSON(data []byte) error

type DeploymentDeployVersionResults added in v0.4.0

type DeploymentDeployVersionResults struct {
	// contains filtered or unexported fields
}

func (*DeploymentDeployVersionResults) MarshalCBOR added in v0.4.0

func (v *DeploymentDeployVersionResults) MarshalCBOR() ([]byte, error)

func (*DeploymentDeployVersionResults) MarshalJSON added in v0.4.0

func (v *DeploymentDeployVersionResults) MarshalJSON() ([]byte, error)

func (*DeploymentDeployVersionResults) SetAccessInfo added in v0.4.0

func (v *DeploymentDeployVersionResults) SetAccessInfo(access_info **AccessInfo)

func (*DeploymentDeployVersionResults) SetDeployment added in v0.4.0

func (v *DeploymentDeployVersionResults) SetDeployment(deployment *DeploymentInfo)

func (*DeploymentDeployVersionResults) SetError added in v0.4.0

func (v *DeploymentDeployVersionResults) SetError(error string)

func (*DeploymentDeployVersionResults) SetLockInfo added in v0.4.0

func (v *DeploymentDeployVersionResults) SetLockInfo(lock_info *DeploymentLockInfo)

func (*DeploymentDeployVersionResults) UnmarshalCBOR added in v0.4.0

func (v *DeploymentDeployVersionResults) UnmarshalCBOR(data []byte) error

func (*DeploymentDeployVersionResults) UnmarshalJSON added in v0.4.0

func (v *DeploymentDeployVersionResults) UnmarshalJSON(data []byte) error

type DeploymentGetActiveDeployment

type DeploymentGetActiveDeployment struct {
	rpc.Call
	// contains filtered or unexported fields
}

func (*DeploymentGetActiveDeployment) Args

func (*DeploymentGetActiveDeployment) Results

type DeploymentGetActiveDeploymentArgs

type DeploymentGetActiveDeploymentArgs struct {
	// contains filtered or unexported fields
}

func (*DeploymentGetActiveDeploymentArgs) AppName

func (*DeploymentGetActiveDeploymentArgs) ClusterId

func (*DeploymentGetActiveDeploymentArgs) HasAppName

func (v *DeploymentGetActiveDeploymentArgs) HasAppName() bool

func (*DeploymentGetActiveDeploymentArgs) HasClusterId

func (v *DeploymentGetActiveDeploymentArgs) HasClusterId() bool

func (*DeploymentGetActiveDeploymentArgs) MarshalCBOR

func (v *DeploymentGetActiveDeploymentArgs) MarshalCBOR() ([]byte, error)

func (*DeploymentGetActiveDeploymentArgs) MarshalJSON

func (v *DeploymentGetActiveDeploymentArgs) MarshalJSON() ([]byte, error)

func (*DeploymentGetActiveDeploymentArgs) UnmarshalCBOR

func (v *DeploymentGetActiveDeploymentArgs) UnmarshalCBOR(data []byte) error

func (*DeploymentGetActiveDeploymentArgs) UnmarshalJSON

func (v *DeploymentGetActiveDeploymentArgs) UnmarshalJSON(data []byte) error

type DeploymentGetActiveDeploymentResults

type DeploymentGetActiveDeploymentResults struct {
	// contains filtered or unexported fields
}

func (*DeploymentGetActiveDeploymentResults) MarshalCBOR

func (v *DeploymentGetActiveDeploymentResults) MarshalCBOR() ([]byte, error)

func (*DeploymentGetActiveDeploymentResults) MarshalJSON

func (v *DeploymentGetActiveDeploymentResults) MarshalJSON() ([]byte, error)

func (*DeploymentGetActiveDeploymentResults) SetDeployment

func (v *DeploymentGetActiveDeploymentResults) SetDeployment(deployment *DeploymentInfo)

func (*DeploymentGetActiveDeploymentResults) UnmarshalCBOR

func (v *DeploymentGetActiveDeploymentResults) UnmarshalCBOR(data []byte) error

func (*DeploymentGetActiveDeploymentResults) UnmarshalJSON

func (v *DeploymentGetActiveDeploymentResults) UnmarshalJSON(data []byte) error

type DeploymentGetDeploymentById

type DeploymentGetDeploymentById struct {
	rpc.Call
	// contains filtered or unexported fields
}

func (*DeploymentGetDeploymentById) Args

func (*DeploymentGetDeploymentById) Results

type DeploymentGetDeploymentByIdArgs

type DeploymentGetDeploymentByIdArgs struct {
	// contains filtered or unexported fields
}

func (*DeploymentGetDeploymentByIdArgs) DeploymentId

func (v *DeploymentGetDeploymentByIdArgs) DeploymentId() string

func (*DeploymentGetDeploymentByIdArgs) HasDeploymentId

func (v *DeploymentGetDeploymentByIdArgs) HasDeploymentId() bool

func (*DeploymentGetDeploymentByIdArgs) MarshalCBOR

func (v *DeploymentGetDeploymentByIdArgs) MarshalCBOR() ([]byte, error)

func (*DeploymentGetDeploymentByIdArgs) MarshalJSON

func (v *DeploymentGetDeploymentByIdArgs) MarshalJSON() ([]byte, error)

func (*DeploymentGetDeploymentByIdArgs) UnmarshalCBOR

func (v *DeploymentGetDeploymentByIdArgs) UnmarshalCBOR(data []byte) error

func (*DeploymentGetDeploymentByIdArgs) UnmarshalJSON

func (v *DeploymentGetDeploymentByIdArgs) UnmarshalJSON(data []byte) error

type DeploymentGetDeploymentByIdResults

type DeploymentGetDeploymentByIdResults struct {
	// contains filtered or unexported fields
}

func (*DeploymentGetDeploymentByIdResults) MarshalCBOR

func (v *DeploymentGetDeploymentByIdResults) MarshalCBOR() ([]byte, error)

func (*DeploymentGetDeploymentByIdResults) MarshalJSON

func (v *DeploymentGetDeploymentByIdResults) MarshalJSON() ([]byte, error)

func (*DeploymentGetDeploymentByIdResults) SetDeployment

func (v *DeploymentGetDeploymentByIdResults) SetDeployment(deployment *DeploymentInfo)

func (*DeploymentGetDeploymentByIdResults) UnmarshalCBOR

func (v *DeploymentGetDeploymentByIdResults) UnmarshalCBOR(data []byte) error

func (*DeploymentGetDeploymentByIdResults) UnmarshalJSON

func (v *DeploymentGetDeploymentByIdResults) UnmarshalJSON(data []byte) error

type DeploymentInfo

type DeploymentInfo struct {
	// contains filtered or unexported fields
}

func (*DeploymentInfo) AppName

func (v *DeploymentInfo) AppName() string

func (*DeploymentInfo) AppVersionId

func (v *DeploymentInfo) AppVersionId() string

func (*DeploymentInfo) AppVersionShortId added in v0.7.0

func (v *DeploymentInfo) AppVersionShortId() string

func (*DeploymentInfo) BuildLogs

func (v *DeploymentInfo) BuildLogs() string

func (*DeploymentInfo) ClusterId

func (v *DeploymentInfo) ClusterId() string

func (*DeploymentInfo) CompletedAt

func (v *DeploymentInfo) CompletedAt() *standard.Timestamp

func (*DeploymentInfo) DeployedAt

func (v *DeploymentInfo) DeployedAt() *standard.Timestamp

func (*DeploymentInfo) DeployedByUserEmail

func (v *DeploymentInfo) DeployedByUserEmail() string

func (*DeploymentInfo) DeployedByUserId

func (v *DeploymentInfo) DeployedByUserId() string

func (*DeploymentInfo) DeployedByUserName

func (v *DeploymentInfo) DeployedByUserName() string

func (*DeploymentInfo) ErrorMessage

func (v *DeploymentInfo) ErrorMessage() string

func (*DeploymentInfo) GitInfo

func (v *DeploymentInfo) GitInfo() *GitInfo

func (*DeploymentInfo) HasAppName

func (v *DeploymentInfo) HasAppName() bool

func (*DeploymentInfo) HasAppVersionId

func (v *DeploymentInfo) HasAppVersionId() bool

func (*DeploymentInfo) HasAppVersionShortId added in v0.7.0

func (v *DeploymentInfo) HasAppVersionShortId() bool

func (*DeploymentInfo) HasBuildLogs

func (v *DeploymentInfo) HasBuildLogs() bool

func (*DeploymentInfo) HasClusterId

func (v *DeploymentInfo) HasClusterId() bool

func (*DeploymentInfo) HasCompletedAt

func (v *DeploymentInfo) HasCompletedAt() bool

func (*DeploymentInfo) HasDeployedAt

func (v *DeploymentInfo) HasDeployedAt() bool

func (*DeploymentInfo) HasDeployedByUserEmail

func (v *DeploymentInfo) HasDeployedByUserEmail() bool

func (*DeploymentInfo) HasDeployedByUserId

func (v *DeploymentInfo) HasDeployedByUserId() bool

func (*DeploymentInfo) HasDeployedByUserName

func (v *DeploymentInfo) HasDeployedByUserName() bool

func (*DeploymentInfo) HasErrorMessage

func (v *DeploymentInfo) HasErrorMessage() bool

func (*DeploymentInfo) HasGitInfo

func (v *DeploymentInfo) HasGitInfo() bool

func (*DeploymentInfo) HasId

func (v *DeploymentInfo) HasId() bool

func (*DeploymentInfo) HasPhase

func (v *DeploymentInfo) HasPhase() bool

func (*DeploymentInfo) HasShortId added in v0.7.0

func (v *DeploymentInfo) HasShortId() bool

func (*DeploymentInfo) HasSourceDeploymentId added in v0.4.0

func (v *DeploymentInfo) HasSourceDeploymentId() bool

func (*DeploymentInfo) HasStatus

func (v *DeploymentInfo) HasStatus() bool

func (*DeploymentInfo) Id

func (v *DeploymentInfo) Id() string

func (*DeploymentInfo) MarshalCBOR

func (v *DeploymentInfo) MarshalCBOR() ([]byte, error)

func (*DeploymentInfo) MarshalJSON

func (v *DeploymentInfo) MarshalJSON() ([]byte, error)

func (*DeploymentInfo) Phase

func (v *DeploymentInfo) Phase() string

func (*DeploymentInfo) SetAppName

func (v *DeploymentInfo) SetAppName(app_name string)

func (*DeploymentInfo) SetAppVersionId

func (v *DeploymentInfo) SetAppVersionId(app_version_id string)

func (*DeploymentInfo) SetAppVersionShortId added in v0.7.0

func (v *DeploymentInfo) SetAppVersionShortId(app_version_short_id string)

func (*DeploymentInfo) SetBuildLogs

func (v *DeploymentInfo) SetBuildLogs(build_logs string)

func (*DeploymentInfo) SetClusterId

func (v *DeploymentInfo) SetClusterId(cluster_id string)

func (*DeploymentInfo) SetCompletedAt

func (v *DeploymentInfo) SetCompletedAt(completed_at *standard.Timestamp)

func (*DeploymentInfo) SetDeployedAt

func (v *DeploymentInfo) SetDeployedAt(deployed_at *standard.Timestamp)

func (*DeploymentInfo) SetDeployedByUserEmail

func (v *DeploymentInfo) SetDeployedByUserEmail(deployed_by_user_email string)

func (*DeploymentInfo) SetDeployedByUserId

func (v *DeploymentInfo) SetDeployedByUserId(deployed_by_user_id string)

func (*DeploymentInfo) SetDeployedByUserName

func (v *DeploymentInfo) SetDeployedByUserName(deployed_by_user_name string)

func (*DeploymentInfo) SetErrorMessage

func (v *DeploymentInfo) SetErrorMessage(error_message string)

func (*DeploymentInfo) SetGitInfo

func (v *DeploymentInfo) SetGitInfo(git_info *GitInfo)

func (*DeploymentInfo) SetId

func (v *DeploymentInfo) SetId(id string)

func (*DeploymentInfo) SetPhase

func (v *DeploymentInfo) SetPhase(phase string)

func (*DeploymentInfo) SetShortId added in v0.7.0

func (v *DeploymentInfo) SetShortId(short_id string)

func (*DeploymentInfo) SetSourceDeploymentId added in v0.4.0

func (v *DeploymentInfo) SetSourceDeploymentId(source_deployment_id string)

func (*DeploymentInfo) SetStatus

func (v *DeploymentInfo) SetStatus(status string)

func (*DeploymentInfo) ShortId added in v0.7.0

func (v *DeploymentInfo) ShortId() string

func (*DeploymentInfo) SourceDeploymentId added in v0.4.0

func (v *DeploymentInfo) SourceDeploymentId() string

func (*DeploymentInfo) Status

func (v *DeploymentInfo) Status() string

func (*DeploymentInfo) UnmarshalCBOR

func (v *DeploymentInfo) UnmarshalCBOR(data []byte) error

func (*DeploymentInfo) UnmarshalJSON

func (v *DeploymentInfo) UnmarshalJSON(data []byte) error

type DeploymentListDeployments

type DeploymentListDeployments struct {
	rpc.Call
	// contains filtered or unexported fields
}

func (*DeploymentListDeployments) Args

func (*DeploymentListDeployments) Results

type DeploymentListDeploymentsArgs

type DeploymentListDeploymentsArgs struct {
	// contains filtered or unexported fields
}

func (*DeploymentListDeploymentsArgs) AppName

func (*DeploymentListDeploymentsArgs) ClusterId

func (v *DeploymentListDeploymentsArgs) ClusterId() string

func (*DeploymentListDeploymentsArgs) HasAppName

func (v *DeploymentListDeploymentsArgs) HasAppName() bool

func (*DeploymentListDeploymentsArgs) HasClusterId

func (v *DeploymentListDeploymentsArgs) HasClusterId() bool

func (*DeploymentListDeploymentsArgs) HasLimit

func (v *DeploymentListDeploymentsArgs) HasLimit() bool

func (*DeploymentListDeploymentsArgs) HasStatus

func (v *DeploymentListDeploymentsArgs) HasStatus() bool

func (*DeploymentListDeploymentsArgs) Limit

func (*DeploymentListDeploymentsArgs) MarshalCBOR

func (v *DeploymentListDeploymentsArgs) MarshalCBOR() ([]byte, error)

func (*DeploymentListDeploymentsArgs) MarshalJSON

func (v *DeploymentListDeploymentsArgs) MarshalJSON() ([]byte, error)

func (*DeploymentListDeploymentsArgs) Status

func (*DeploymentListDeploymentsArgs) UnmarshalCBOR

func (v *DeploymentListDeploymentsArgs) UnmarshalCBOR(data []byte) error

func (*DeploymentListDeploymentsArgs) UnmarshalJSON

func (v *DeploymentListDeploymentsArgs) UnmarshalJSON(data []byte) error

type DeploymentListDeploymentsResults

type DeploymentListDeploymentsResults struct {
	// contains filtered or unexported fields
}

func (*DeploymentListDeploymentsResults) MarshalCBOR

func (v *DeploymentListDeploymentsResults) MarshalCBOR() ([]byte, error)

func (*DeploymentListDeploymentsResults) MarshalJSON

func (v *DeploymentListDeploymentsResults) MarshalJSON() ([]byte, error)

func (*DeploymentListDeploymentsResults) SetDeployments

func (v *DeploymentListDeploymentsResults) SetDeployments(deployments []*DeploymentInfo)

func (*DeploymentListDeploymentsResults) UnmarshalCBOR

func (v *DeploymentListDeploymentsResults) UnmarshalCBOR(data []byte) error

func (*DeploymentListDeploymentsResults) UnmarshalJSON

func (v *DeploymentListDeploymentsResults) UnmarshalJSON(data []byte) error

type DeploymentLockInfo

type DeploymentLockInfo struct {
	// contains filtered or unexported fields
}

func (*DeploymentLockInfo) AppName

func (v *DeploymentLockInfo) AppName() string

func (*DeploymentLockInfo) BlockingDeploymentId

func (v *DeploymentLockInfo) BlockingDeploymentId() string

func (*DeploymentLockInfo) BlockingDeploymentShortId added in v0.7.0

func (v *DeploymentLockInfo) BlockingDeploymentShortId() string

func (*DeploymentLockInfo) ClusterId

func (v *DeploymentLockInfo) ClusterId() string

func (*DeploymentLockInfo) CurrentPhase

func (v *DeploymentLockInfo) CurrentPhase() string

func (*DeploymentLockInfo) HasAppName

func (v *DeploymentLockInfo) HasAppName() bool

func (*DeploymentLockInfo) HasBlockingDeploymentId

func (v *DeploymentLockInfo) HasBlockingDeploymentId() bool

func (*DeploymentLockInfo) HasBlockingDeploymentShortId added in v0.7.0

func (v *DeploymentLockInfo) HasBlockingDeploymentShortId() bool

func (*DeploymentLockInfo) HasClusterId

func (v *DeploymentLockInfo) HasClusterId() bool

func (*DeploymentLockInfo) HasCurrentPhase

func (v *DeploymentLockInfo) HasCurrentPhase() bool

func (*DeploymentLockInfo) HasLockExpiresAt

func (v *DeploymentLockInfo) HasLockExpiresAt() bool

func (*DeploymentLockInfo) HasStartedAt

func (v *DeploymentLockInfo) HasStartedAt() bool

func (*DeploymentLockInfo) HasStartedBy

func (v *DeploymentLockInfo) HasStartedBy() bool

func (*DeploymentLockInfo) LockExpiresAt

func (v *DeploymentLockInfo) LockExpiresAt() *standard.Timestamp

func (*DeploymentLockInfo) MarshalCBOR

func (v *DeploymentLockInfo) MarshalCBOR() ([]byte, error)

func (*DeploymentLockInfo) MarshalJSON

func (v *DeploymentLockInfo) MarshalJSON() ([]byte, error)

func (*DeploymentLockInfo) SetAppName

func (v *DeploymentLockInfo) SetAppName(app_name string)

func (*DeploymentLockInfo) SetBlockingDeploymentId

func (v *DeploymentLockInfo) SetBlockingDeploymentId(blocking_deployment_id string)

func (*DeploymentLockInfo) SetBlockingDeploymentShortId added in v0.7.0

func (v *DeploymentLockInfo) SetBlockingDeploymentShortId(blocking_deployment_short_id string)

func (*DeploymentLockInfo) SetClusterId

func (v *DeploymentLockInfo) SetClusterId(cluster_id string)

func (*DeploymentLockInfo) SetCurrentPhase

func (v *DeploymentLockInfo) SetCurrentPhase(current_phase string)

func (*DeploymentLockInfo) SetLockExpiresAt

func (v *DeploymentLockInfo) SetLockExpiresAt(lock_expires_at *standard.Timestamp)

func (*DeploymentLockInfo) SetStartedAt

func (v *DeploymentLockInfo) SetStartedAt(started_at *standard.Timestamp)

func (*DeploymentLockInfo) SetStartedBy

func (v *DeploymentLockInfo) SetStartedBy(started_by string)

func (*DeploymentLockInfo) StartedAt

func (v *DeploymentLockInfo) StartedAt() *standard.Timestamp

func (*DeploymentLockInfo) StartedBy

func (v *DeploymentLockInfo) StartedBy() string

func (*DeploymentLockInfo) UnmarshalCBOR

func (v *DeploymentLockInfo) UnmarshalCBOR(data []byte) error

func (*DeploymentLockInfo) UnmarshalJSON

func (v *DeploymentLockInfo) UnmarshalJSON(data []byte) error

type DeploymentSetEnvVars added in v0.5.0

type DeploymentSetEnvVars struct {
	rpc.Call
	// contains filtered or unexported fields
}

func (*DeploymentSetEnvVars) Args added in v0.5.0

func (*DeploymentSetEnvVars) Results added in v0.5.0

type DeploymentSetEnvVarsArgs added in v0.5.0

type DeploymentSetEnvVarsArgs struct {
	// contains filtered or unexported fields
}

func (*DeploymentSetEnvVarsArgs) AppName added in v0.5.0

func (v *DeploymentSetEnvVarsArgs) AppName() string

func (*DeploymentSetEnvVarsArgs) ClusterId added in v0.5.0

func (v *DeploymentSetEnvVarsArgs) ClusterId() string

func (*DeploymentSetEnvVarsArgs) HasAppName added in v0.5.0

func (v *DeploymentSetEnvVarsArgs) HasAppName() bool

func (*DeploymentSetEnvVarsArgs) HasClusterId added in v0.5.0

func (v *DeploymentSetEnvVarsArgs) HasClusterId() bool

func (*DeploymentSetEnvVarsArgs) HasService added in v0.5.0

func (v *DeploymentSetEnvVarsArgs) HasService() bool

func (*DeploymentSetEnvVarsArgs) HasVars added in v0.5.0

func (v *DeploymentSetEnvVarsArgs) HasVars() bool

func (*DeploymentSetEnvVarsArgs) MarshalCBOR added in v0.5.0

func (v *DeploymentSetEnvVarsArgs) MarshalCBOR() ([]byte, error)

func (*DeploymentSetEnvVarsArgs) MarshalJSON added in v0.5.0

func (v *DeploymentSetEnvVarsArgs) MarshalJSON() ([]byte, error)

func (*DeploymentSetEnvVarsArgs) Service added in v0.5.0

func (v *DeploymentSetEnvVarsArgs) Service() string

func (*DeploymentSetEnvVarsArgs) UnmarshalCBOR added in v0.5.0

func (v *DeploymentSetEnvVarsArgs) UnmarshalCBOR(data []byte) error

func (*DeploymentSetEnvVarsArgs) UnmarshalJSON added in v0.5.0

func (v *DeploymentSetEnvVarsArgs) UnmarshalJSON(data []byte) error

func (*DeploymentSetEnvVarsArgs) Vars added in v0.5.0

type DeploymentSetEnvVarsResults added in v0.5.0

type DeploymentSetEnvVarsResults struct {
	// contains filtered or unexported fields
}

func (*DeploymentSetEnvVarsResults) MarshalCBOR added in v0.5.0

func (v *DeploymentSetEnvVarsResults) MarshalCBOR() ([]byte, error)

func (*DeploymentSetEnvVarsResults) MarshalJSON added in v0.5.0

func (v *DeploymentSetEnvVarsResults) MarshalJSON() ([]byte, error)

func (*DeploymentSetEnvVarsResults) SetAccessInfo added in v0.5.0

func (v *DeploymentSetEnvVarsResults) SetAccessInfo(access_info **AccessInfo)

func (*DeploymentSetEnvVarsResults) SetDeployment added in v0.5.0

func (v *DeploymentSetEnvVarsResults) SetDeployment(deployment *DeploymentInfo)

func (*DeploymentSetEnvVarsResults) SetError added in v0.5.0

func (v *DeploymentSetEnvVarsResults) SetError(error string)

func (*DeploymentSetEnvVarsResults) SetLockInfo added in v0.5.0

func (v *DeploymentSetEnvVarsResults) SetLockInfo(lock_info *DeploymentLockInfo)

func (*DeploymentSetEnvVarsResults) SetVersionId added in v0.5.0

func (v *DeploymentSetEnvVarsResults) SetVersionId(version_id string)

func (*DeploymentSetEnvVarsResults) UnmarshalCBOR added in v0.5.0

func (v *DeploymentSetEnvVarsResults) UnmarshalCBOR(data []byte) error

func (*DeploymentSetEnvVarsResults) UnmarshalJSON added in v0.5.0

func (v *DeploymentSetEnvVarsResults) UnmarshalJSON(data []byte) error

type DeploymentUpdateDeploymentAppVersion

type DeploymentUpdateDeploymentAppVersion struct {
	rpc.Call
	// contains filtered or unexported fields
}

func (*DeploymentUpdateDeploymentAppVersion) Args

func (*DeploymentUpdateDeploymentAppVersion) Results

type DeploymentUpdateDeploymentAppVersionArgs

type DeploymentUpdateDeploymentAppVersionArgs struct {
	// contains filtered or unexported fields
}

func (*DeploymentUpdateDeploymentAppVersionArgs) AppVersionId

func (*DeploymentUpdateDeploymentAppVersionArgs) DeploymentId

func (*DeploymentUpdateDeploymentAppVersionArgs) HasAppVersionId

func (v *DeploymentUpdateDeploymentAppVersionArgs) HasAppVersionId() bool

func (*DeploymentUpdateDeploymentAppVersionArgs) HasDeploymentId

func (v *DeploymentUpdateDeploymentAppVersionArgs) HasDeploymentId() bool

func (*DeploymentUpdateDeploymentAppVersionArgs) MarshalCBOR

func (v *DeploymentUpdateDeploymentAppVersionArgs) MarshalCBOR() ([]byte, error)

func (*DeploymentUpdateDeploymentAppVersionArgs) MarshalJSON

func (v *DeploymentUpdateDeploymentAppVersionArgs) MarshalJSON() ([]byte, error)

func (*DeploymentUpdateDeploymentAppVersionArgs) UnmarshalCBOR

func (v *DeploymentUpdateDeploymentAppVersionArgs) UnmarshalCBOR(data []byte) error

func (*DeploymentUpdateDeploymentAppVersionArgs) UnmarshalJSON

func (v *DeploymentUpdateDeploymentAppVersionArgs) UnmarshalJSON(data []byte) error

type DeploymentUpdateDeploymentAppVersionResults

type DeploymentUpdateDeploymentAppVersionResults struct {
	// contains filtered or unexported fields
}

func (*DeploymentUpdateDeploymentAppVersionResults) MarshalCBOR

func (*DeploymentUpdateDeploymentAppVersionResults) MarshalJSON

func (*DeploymentUpdateDeploymentAppVersionResults) SetDeployment

func (v *DeploymentUpdateDeploymentAppVersionResults) SetDeployment(deployment *DeploymentInfo)

func (*DeploymentUpdateDeploymentAppVersionResults) UnmarshalCBOR

func (v *DeploymentUpdateDeploymentAppVersionResults) UnmarshalCBOR(data []byte) error

func (*DeploymentUpdateDeploymentAppVersionResults) UnmarshalJSON

func (v *DeploymentUpdateDeploymentAppVersionResults) UnmarshalJSON(data []byte) error

type DeploymentUpdateDeploymentPhase

type DeploymentUpdateDeploymentPhase struct {
	rpc.Call
	// contains filtered or unexported fields
}

func (*DeploymentUpdateDeploymentPhase) Args

func (*DeploymentUpdateDeploymentPhase) Results

type DeploymentUpdateDeploymentPhaseArgs

type DeploymentUpdateDeploymentPhaseArgs struct {
	// contains filtered or unexported fields
}

func (*DeploymentUpdateDeploymentPhaseArgs) DeploymentId

func (v *DeploymentUpdateDeploymentPhaseArgs) DeploymentId() string

func (*DeploymentUpdateDeploymentPhaseArgs) HasDeploymentId

func (v *DeploymentUpdateDeploymentPhaseArgs) HasDeploymentId() bool

func (*DeploymentUpdateDeploymentPhaseArgs) HasPhase

func (*DeploymentUpdateDeploymentPhaseArgs) MarshalCBOR

func (v *DeploymentUpdateDeploymentPhaseArgs) MarshalCBOR() ([]byte, error)

func (*DeploymentUpdateDeploymentPhaseArgs) MarshalJSON

func (v *DeploymentUpdateDeploymentPhaseArgs) MarshalJSON() ([]byte, error)

func (*DeploymentUpdateDeploymentPhaseArgs) Phase

func (*DeploymentUpdateDeploymentPhaseArgs) UnmarshalCBOR

func (v *DeploymentUpdateDeploymentPhaseArgs) UnmarshalCBOR(data []byte) error

func (*DeploymentUpdateDeploymentPhaseArgs) UnmarshalJSON

func (v *DeploymentUpdateDeploymentPhaseArgs) UnmarshalJSON(data []byte) error

type DeploymentUpdateDeploymentPhaseResults

type DeploymentUpdateDeploymentPhaseResults struct {
	// contains filtered or unexported fields
}

func (*DeploymentUpdateDeploymentPhaseResults) MarshalCBOR

func (v *DeploymentUpdateDeploymentPhaseResults) MarshalCBOR() ([]byte, error)

func (*DeploymentUpdateDeploymentPhaseResults) MarshalJSON

func (v *DeploymentUpdateDeploymentPhaseResults) MarshalJSON() ([]byte, error)

func (*DeploymentUpdateDeploymentPhaseResults) SetDeployment

func (v *DeploymentUpdateDeploymentPhaseResults) SetDeployment(deployment *DeploymentInfo)

func (*DeploymentUpdateDeploymentPhaseResults) UnmarshalCBOR

func (v *DeploymentUpdateDeploymentPhaseResults) UnmarshalCBOR(data []byte) error

func (*DeploymentUpdateDeploymentPhaseResults) UnmarshalJSON

func (v *DeploymentUpdateDeploymentPhaseResults) UnmarshalJSON(data []byte) error

type DeploymentUpdateDeploymentStatus

type DeploymentUpdateDeploymentStatus struct {
	rpc.Call
	// contains filtered or unexported fields
}

func (*DeploymentUpdateDeploymentStatus) Args

func (*DeploymentUpdateDeploymentStatus) Results

type DeploymentUpdateDeploymentStatusArgs

type DeploymentUpdateDeploymentStatusArgs struct {
	// contains filtered or unexported fields
}

func (*DeploymentUpdateDeploymentStatusArgs) DeploymentId

func (v *DeploymentUpdateDeploymentStatusArgs) DeploymentId() string

func (*DeploymentUpdateDeploymentStatusArgs) ErrorMessage

func (v *DeploymentUpdateDeploymentStatusArgs) ErrorMessage() string

func (*DeploymentUpdateDeploymentStatusArgs) HasDeploymentId

func (v *DeploymentUpdateDeploymentStatusArgs) HasDeploymentId() bool

func (*DeploymentUpdateDeploymentStatusArgs) HasErrorMessage

func (v *DeploymentUpdateDeploymentStatusArgs) HasErrorMessage() bool

func (*DeploymentUpdateDeploymentStatusArgs) HasStatus

func (*DeploymentUpdateDeploymentStatusArgs) MarshalCBOR

func (v *DeploymentUpdateDeploymentStatusArgs) MarshalCBOR() ([]byte, error)

func (*DeploymentUpdateDeploymentStatusArgs) MarshalJSON

func (v *DeploymentUpdateDeploymentStatusArgs) MarshalJSON() ([]byte, error)

func (*DeploymentUpdateDeploymentStatusArgs) Status

func (*DeploymentUpdateDeploymentStatusArgs) UnmarshalCBOR

func (v *DeploymentUpdateDeploymentStatusArgs) UnmarshalCBOR(data []byte) error

func (*DeploymentUpdateDeploymentStatusArgs) UnmarshalJSON

func (v *DeploymentUpdateDeploymentStatusArgs) UnmarshalJSON(data []byte) error

type DeploymentUpdateDeploymentStatusResults

type DeploymentUpdateDeploymentStatusResults struct {
	// contains filtered or unexported fields
}

func (*DeploymentUpdateDeploymentStatusResults) MarshalCBOR

func (v *DeploymentUpdateDeploymentStatusResults) MarshalCBOR() ([]byte, error)

func (*DeploymentUpdateDeploymentStatusResults) MarshalJSON

func (v *DeploymentUpdateDeploymentStatusResults) MarshalJSON() ([]byte, error)

func (*DeploymentUpdateDeploymentStatusResults) SetDeployment

func (v *DeploymentUpdateDeploymentStatusResults) SetDeployment(deployment *DeploymentInfo)

func (*DeploymentUpdateDeploymentStatusResults) UnmarshalCBOR

func (v *DeploymentUpdateDeploymentStatusResults) UnmarshalCBOR(data []byte) error

func (*DeploymentUpdateDeploymentStatusResults) UnmarshalJSON

func (v *DeploymentUpdateDeploymentStatusResults) UnmarshalJSON(data []byte) error

type DeploymentUpdateFailedDeployment

type DeploymentUpdateFailedDeployment struct {
	rpc.Call
	// contains filtered or unexported fields
}

func (*DeploymentUpdateFailedDeployment) Args

func (*DeploymentUpdateFailedDeployment) Results

type DeploymentUpdateFailedDeploymentArgs

type DeploymentUpdateFailedDeploymentArgs struct {
	// contains filtered or unexported fields
}

func (*DeploymentUpdateFailedDeploymentArgs) BuildLogs

func (*DeploymentUpdateFailedDeploymentArgs) DeploymentId

func (v *DeploymentUpdateFailedDeploymentArgs) DeploymentId() string

func (*DeploymentUpdateFailedDeploymentArgs) ErrorMessage

func (v *DeploymentUpdateFailedDeploymentArgs) ErrorMessage() string

func (*DeploymentUpdateFailedDeploymentArgs) HasBuildLogs

func (v *DeploymentUpdateFailedDeploymentArgs) HasBuildLogs() bool

func (*DeploymentUpdateFailedDeploymentArgs) HasDeploymentId

func (v *DeploymentUpdateFailedDeploymentArgs) HasDeploymentId() bool

func (*DeploymentUpdateFailedDeploymentArgs) HasErrorMessage

func (v *DeploymentUpdateFailedDeploymentArgs) HasErrorMessage() bool

func (*DeploymentUpdateFailedDeploymentArgs) MarshalCBOR

func (v *DeploymentUpdateFailedDeploymentArgs) MarshalCBOR() ([]byte, error)

func (*DeploymentUpdateFailedDeploymentArgs) MarshalJSON

func (v *DeploymentUpdateFailedDeploymentArgs) MarshalJSON() ([]byte, error)

func (*DeploymentUpdateFailedDeploymentArgs) UnmarshalCBOR

func (v *DeploymentUpdateFailedDeploymentArgs) UnmarshalCBOR(data []byte) error

func (*DeploymentUpdateFailedDeploymentArgs) UnmarshalJSON

func (v *DeploymentUpdateFailedDeploymentArgs) UnmarshalJSON(data []byte) error

type DeploymentUpdateFailedDeploymentResults

type DeploymentUpdateFailedDeploymentResults struct {
	// contains filtered or unexported fields
}

func (*DeploymentUpdateFailedDeploymentResults) MarshalCBOR

func (v *DeploymentUpdateFailedDeploymentResults) MarshalCBOR() ([]byte, error)

func (*DeploymentUpdateFailedDeploymentResults) MarshalJSON

func (v *DeploymentUpdateFailedDeploymentResults) MarshalJSON() ([]byte, error)

func (*DeploymentUpdateFailedDeploymentResults) SetDeployment

func (v *DeploymentUpdateFailedDeploymentResults) SetDeployment(deployment *DeploymentInfo)

func (*DeploymentUpdateFailedDeploymentResults) UnmarshalCBOR

func (v *DeploymentUpdateFailedDeploymentResults) UnmarshalCBOR(data []byte) error

func (*DeploymentUpdateFailedDeploymentResults) UnmarshalJSON

func (v *DeploymentUpdateFailedDeploymentResults) UnmarshalJSON(data []byte) error

type EnvironmentVariable added in v0.4.0

type EnvironmentVariable struct {
	// contains filtered or unexported fields
}

func (*EnvironmentVariable) HasKey added in v0.4.0

func (v *EnvironmentVariable) HasKey() bool

func (*EnvironmentVariable) HasSensitive added in v0.4.0

func (v *EnvironmentVariable) HasSensitive() bool

func (*EnvironmentVariable) HasValue added in v0.4.0

func (v *EnvironmentVariable) HasValue() bool

func (*EnvironmentVariable) Key added in v0.4.0

func (v *EnvironmentVariable) Key() string

func (*EnvironmentVariable) MarshalCBOR added in v0.4.0

func (v *EnvironmentVariable) MarshalCBOR() ([]byte, error)

func (*EnvironmentVariable) MarshalJSON added in v0.4.0

func (v *EnvironmentVariable) MarshalJSON() ([]byte, error)

func (*EnvironmentVariable) Sensitive added in v0.4.0

func (v *EnvironmentVariable) Sensitive() bool

func (*EnvironmentVariable) SetKey added in v0.4.0

func (v *EnvironmentVariable) SetKey(key string)

func (*EnvironmentVariable) SetSensitive added in v0.4.0

func (v *EnvironmentVariable) SetSensitive(sensitive bool)

func (*EnvironmentVariable) SetValue added in v0.4.0

func (v *EnvironmentVariable) SetValue(value string)

func (*EnvironmentVariable) UnmarshalCBOR added in v0.4.0

func (v *EnvironmentVariable) UnmarshalCBOR(data []byte) error

func (*EnvironmentVariable) UnmarshalJSON added in v0.4.0

func (v *EnvironmentVariable) UnmarshalJSON(data []byte) error

func (*EnvironmentVariable) Value added in v0.4.0

func (v *EnvironmentVariable) Value() string

type GitInfo

type GitInfo struct {
	// contains filtered or unexported fields
}

func (*GitInfo) Branch

func (v *GitInfo) Branch() string

func (*GitInfo) CommitAuthorEmail

func (v *GitInfo) CommitAuthorEmail() string

func (*GitInfo) CommitAuthorName

func (v *GitInfo) CommitAuthorName() string

func (*GitInfo) CommitMessage

func (v *GitInfo) CommitMessage() string

func (*GitInfo) CommitTimestamp

func (v *GitInfo) CommitTimestamp() *standard.Timestamp

func (*GitInfo) HasBranch

func (v *GitInfo) HasBranch() bool

func (*GitInfo) HasCommitAuthorEmail

func (v *GitInfo) HasCommitAuthorEmail() bool

func (*GitInfo) HasCommitAuthorName

func (v *GitInfo) HasCommitAuthorName() bool

func (*GitInfo) HasCommitMessage

func (v *GitInfo) HasCommitMessage() bool

func (*GitInfo) HasCommitTimestamp

func (v *GitInfo) HasCommitTimestamp() bool

func (*GitInfo) HasIsDirty

func (v *GitInfo) HasIsDirty() bool

func (*GitInfo) HasRef

func (v *GitInfo) HasRef() bool

func (*GitInfo) HasRepository

func (v *GitInfo) HasRepository() bool

func (*GitInfo) HasSha

func (v *GitInfo) HasSha() bool

func (*GitInfo) HasWorkingTreeHash

func (v *GitInfo) HasWorkingTreeHash() bool

func (*GitInfo) IsDirty

func (v *GitInfo) IsDirty() bool

func (*GitInfo) MarshalCBOR

func (v *GitInfo) MarshalCBOR() ([]byte, error)

func (*GitInfo) MarshalJSON

func (v *GitInfo) MarshalJSON() ([]byte, error)

func (*GitInfo) Ref

func (v *GitInfo) Ref() string

func (*GitInfo) Repository

func (v *GitInfo) Repository() string

func (*GitInfo) SetBranch

func (v *GitInfo) SetBranch(branch string)

func (*GitInfo) SetCommitAuthorEmail

func (v *GitInfo) SetCommitAuthorEmail(commit_author_email string)

func (*GitInfo) SetCommitAuthorName

func (v *GitInfo) SetCommitAuthorName(commit_author_name string)

func (*GitInfo) SetCommitMessage

func (v *GitInfo) SetCommitMessage(commit_message string)

func (*GitInfo) SetCommitTimestamp

func (v *GitInfo) SetCommitTimestamp(commit_timestamp *standard.Timestamp)

func (*GitInfo) SetIsDirty

func (v *GitInfo) SetIsDirty(is_dirty bool)

func (*GitInfo) SetRef

func (v *GitInfo) SetRef(ref string)

func (*GitInfo) SetRepository

func (v *GitInfo) SetRepository(repository string)

func (*GitInfo) SetSha

func (v *GitInfo) SetSha(sha string)

func (*GitInfo) SetWorkingTreeHash

func (v *GitInfo) SetWorkingTreeHash(working_tree_hash string)

func (*GitInfo) Sha

func (v *GitInfo) Sha() string

func (*GitInfo) UnmarshalCBOR

func (v *GitInfo) UnmarshalCBOR(data []byte) error

func (*GitInfo) UnmarshalJSON

func (v *GitInfo) UnmarshalJSON(data []byte) error

func (*GitInfo) WorkingTreeHash

func (v *GitInfo) WorkingTreeHash() string

Jump to

Keyboard shortcuts

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