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 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type DatastoreStatus string
// Enum values for DatastoreStatus
const (
DatastoreStatusCreating DatastoreStatus = "CREATING"
DatastoreStatusCreateFailed DatastoreStatus = "CREATE_FAILED"
DatastoreStatusActive DatastoreStatus = "ACTIVE"
DatastoreStatusDeleting DatastoreStatus = "DELETING"
DatastoreStatusDeleted DatastoreStatus = "DELETED"
)
// Values returns all known values for DatastoreStatus. 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 (DatastoreStatus) Values() []DatastoreStatus {
return []DatastoreStatus{
"CREATING",
"CREATE_FAILED",
"ACTIVE",
"DELETING",
"DELETED",
}
}
type ImageSetState string
// Enum values for ImageSetState
const (
ImageSetStateActive ImageSetState = "ACTIVE"
ImageSetStateLocked ImageSetState = "LOCKED"
ImageSetStateDeleted ImageSetState = "DELETED"
)
// Values returns all known values for ImageSetState. 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 (ImageSetState) Values() []ImageSetState {
return []ImageSetState{
"ACTIVE",
"LOCKED",
"DELETED",
}
}
type ImageSetWorkflowStatus string
// Enum values for ImageSetWorkflowStatus
const (
ImageSetWorkflowStatusCreated ImageSetWorkflowStatus = "CREATED"
ImageSetWorkflowStatusCopied ImageSetWorkflowStatus = "COPIED"
ImageSetWorkflowStatusCopying ImageSetWorkflowStatus = "COPYING"
ImageSetWorkflowStatusCopyingWithReadOnlyAccess ImageSetWorkflowStatus = "COPYING_WITH_READ_ONLY_ACCESS"
ImageSetWorkflowStatusCopyFailed ImageSetWorkflowStatus = "COPY_FAILED"
ImageSetWorkflowStatusUpdating ImageSetWorkflowStatus = "UPDATING"
ImageSetWorkflowStatusUpdated ImageSetWorkflowStatus = "UPDATED"
ImageSetWorkflowStatusUpdateFailed ImageSetWorkflowStatus = "UPDATE_FAILED"
ImageSetWorkflowStatusDeleting ImageSetWorkflowStatus = "DELETING"
ImageSetWorkflowStatusDeleted ImageSetWorkflowStatus = "DELETED"
)
// Values returns all known values for ImageSetWorkflowStatus. 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 (ImageSetWorkflowStatus) Values() []ImageSetWorkflowStatus {
return []ImageSetWorkflowStatus{
"CREATED",
"COPIED",
"COPYING",
"COPYING_WITH_READ_ONLY_ACCESS",
"COPY_FAILED",
"UPDATING",
"UPDATED",
"UPDATE_FAILED",
"DELETING",
"DELETED",
}
}
type JobStatus string
// Enum values for JobStatus
const (
JobStatusSubmitted JobStatus = "SUBMITTED"
JobStatusInProgress JobStatus = "IN_PROGRESS"
JobStatusCompleted JobStatus = "COMPLETED"
JobStatusFailed JobStatus = "FAILED"
)
// Values returns all known values for JobStatus. 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 (JobStatus) Values() []JobStatus {
return []JobStatus{
"SUBMITTED",
"IN_PROGRESS",
"COMPLETED",
"FAILED",
}
}
type Operator string
// Enum values for Operator
const (
OperatorEqual Operator = "EQUAL"
OperatorBetween Operator = "BETWEEN"
)
// Values returns all known values for Operator. 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 (Operator) Values() []Operator {
return []Operator{
"EQUAL",
"BETWEEN",
}
}
type SortField string
// Enum values for SortField
const (
SortFieldUpdatedAt SortField = "updatedAt"
SortFieldCreatedAt SortField = "createdAt"
SortFieldDICOMStudyDateAndTime SortField = "DICOMStudyDateAndTime"
)
// Values returns all known values for SortField. 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 (SortField) Values() []SortField {
return []SortField{
"updatedAt",
"createdAt",
"DICOMStudyDateAndTime",
}
}
type SortOrder string
// Enum values for SortOrder
const (
SortOrderAsc SortOrder = "ASC"
SortOrderDesc SortOrder = "DESC"
)
// Values returns all known values for SortOrder. 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 (SortOrder) Values() []SortOrder {
return []SortOrder{
"ASC",
"DESC",
}
}
|