Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Cmd = &cobra.Command{ Use: "instance [operation] [flags]", Short: "Manage Instance Deployments for your service", Long: `This command helps you manage the deployment of your service instances.`, Run: run, SilenceUsage: true, }
View Source
var InstanceID string
Functions ¶
This section is empty.
Types ¶
type DeploymentType ¶ added in v0.10.21
type DeploymentType string
const (
TerraformDeploymentType DeploymentType = "terraform"
)
type InstanceStatusType ¶ added in v0.9.129
type InstanceStatusType string
const ( InstanceStatusRunning InstanceStatusType = "RUNNING" InstanceStatusStopped InstanceStatusType = "STOPPED" InstanceStatusFailed InstanceStatusType = "FAILED" InstanceStatusCancelled InstanceStatusType = "CANCELLED" InstanceStatusUnknown InstanceStatusType = "UNKNOWN" )
var InstanceStatus InstanceStatusType
type TerraformResponse ¶ added in v0.10.21
type TerraformResponse struct {
SyncState string `json:"syncState,omitempty"`
Files FileInfo `json:"files,omitempty"`
SyncError string `json:"syncError,omitempty"`
}
Define structs to match the JSON structure
Click to show internal directories.
Click to hide internal directories.