1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type DeploymentFilterKey string
// Enum values for DeploymentFilterKey
const (
DeploymentFilterKeyWorkloadName DeploymentFilterKey = "WORKLOAD_NAME"
DeploymentFilterKeyDeploymentStatus DeploymentFilterKey = "DEPLOYMENT_STATUS"
)
// Values returns all known values for DeploymentFilterKey. Note that this can be
// expanded in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (DeploymentFilterKey) Values() []DeploymentFilterKey {
return []DeploymentFilterKey{
"WORKLOAD_NAME",
"DEPLOYMENT_STATUS",
}
}
type DeploymentStatus string
// Enum values for DeploymentStatus
const (
DeploymentStatusCompleted DeploymentStatus = "COMPLETED"
DeploymentStatusCreating DeploymentStatus = "CREATING"
DeploymentStatusDeleteInProgress DeploymentStatus = "DELETE_IN_PROGRESS"
DeploymentStatusDeleteInitiating DeploymentStatus = "DELETE_INITIATING"
DeploymentStatusDeleteFailed DeploymentStatus = "DELETE_FAILED"
DeploymentStatusDeleted DeploymentStatus = "DELETED"
DeploymentStatusFailed DeploymentStatus = "FAILED"
DeploymentStatusInProgress DeploymentStatus = "IN_PROGRESS"
DeploymentStatusValidating DeploymentStatus = "VALIDATING"
)
// Values returns all known values for DeploymentStatus. Note that this can be
// expanded in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (DeploymentStatus) Values() []DeploymentStatus {
return []DeploymentStatus{
"COMPLETED",
"CREATING",
"DELETE_IN_PROGRESS",
"DELETE_INITIATING",
"DELETE_FAILED",
"DELETED",
"FAILED",
"IN_PROGRESS",
"VALIDATING",
}
}
type EventStatus string
// Enum values for EventStatus
const (
EventStatusCanceled EventStatus = "CANCELED"
EventStatusCanceling EventStatus = "CANCELING"
EventStatusCompleted EventStatus = "COMPLETED"
EventStatusCreated EventStatus = "CREATED"
EventStatusFailed EventStatus = "FAILED"
EventStatusInProgress EventStatus = "IN_PROGRESS"
EventStatusPending EventStatus = "PENDING"
EventStatusTimedOut EventStatus = "TIMED_OUT"
)
// Values returns all known values for EventStatus. Note that this can be expanded
// in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (EventStatus) Values() []EventStatus {
return []EventStatus{
"CANCELED",
"CANCELING",
"COMPLETED",
"CREATED",
"FAILED",
"IN_PROGRESS",
"PENDING",
"TIMED_OUT",
}
}
type WorkloadDeploymentPatternStatus string
// Enum values for WorkloadDeploymentPatternStatus
const (
WorkloadDeploymentPatternStatusActive WorkloadDeploymentPatternStatus = "ACTIVE"
WorkloadDeploymentPatternStatusInactive WorkloadDeploymentPatternStatus = "INACTIVE"
WorkloadDeploymentPatternStatusDisabled WorkloadDeploymentPatternStatus = "DISABLED"
WorkloadDeploymentPatternStatusDeleted WorkloadDeploymentPatternStatus = "DELETED"
)
// Values returns all known values for WorkloadDeploymentPatternStatus. Note that
// this can be expanded in the future, and so it is only as up to date as the
// client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (WorkloadDeploymentPatternStatus) Values() []WorkloadDeploymentPatternStatus {
return []WorkloadDeploymentPatternStatus{
"ACTIVE",
"INACTIVE",
"DISABLED",
"DELETED",
}
}
type WorkloadStatus string
// Enum values for WorkloadStatus
const (
WorkloadStatusActive WorkloadStatus = "ACTIVE"
WorkloadStatusInactive WorkloadStatus = "INACTIVE"
WorkloadStatusDisabled WorkloadStatus = "DISABLED"
WorkloadStatusDeleted WorkloadStatus = "DELETED"
)
// Values returns all known values for WorkloadStatus. Note that this can be
// expanded in the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (WorkloadStatus) Values() []WorkloadStatus {
return []WorkloadStatus{
"ACTIVE",
"INACTIVE",
"DISABLED",
"DELETED",
}
}
|