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 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type AgentStatus string
// Enum values for AgentStatus
const (
AgentStatusHealthy AgentStatus = "HEALTHY"
AgentStatusUnhealthy AgentStatus = "UNHEALTHY"
AgentStatusRunning AgentStatus = "RUNNING"
AgentStatusUnknown AgentStatus = "UNKNOWN"
AgentStatusBlacklisted AgentStatus = "BLACKLISTED"
AgentStatusShutdown AgentStatus = "SHUTDOWN"
)
// Values returns all known values for AgentStatus. 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 (AgentStatus) Values() []AgentStatus {
return []AgentStatus{
"HEALTHY",
"UNHEALTHY",
"RUNNING",
"UNKNOWN",
"BLACKLISTED",
"SHUTDOWN",
}
}
type BatchDeleteConfigurationTaskStatus string
// Enum values for BatchDeleteConfigurationTaskStatus
const (
BatchDeleteConfigurationTaskStatusInitializing BatchDeleteConfigurationTaskStatus = "INITIALIZING"
BatchDeleteConfigurationTaskStatusValidating BatchDeleteConfigurationTaskStatus = "VALIDATING"
BatchDeleteConfigurationTaskStatusDeleting BatchDeleteConfigurationTaskStatus = "DELETING"
BatchDeleteConfigurationTaskStatusCompleted BatchDeleteConfigurationTaskStatus = "COMPLETED"
BatchDeleteConfigurationTaskStatusFailed BatchDeleteConfigurationTaskStatus = "FAILED"
)
// Values returns all known values for BatchDeleteConfigurationTaskStatus. 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 (BatchDeleteConfigurationTaskStatus) Values() []BatchDeleteConfigurationTaskStatus {
return []BatchDeleteConfigurationTaskStatus{
"INITIALIZING",
"VALIDATING",
"DELETING",
"COMPLETED",
"FAILED",
}
}
type BatchDeleteImportDataErrorCode string
// Enum values for BatchDeleteImportDataErrorCode
const (
BatchDeleteImportDataErrorCodeNotFound BatchDeleteImportDataErrorCode = "NOT_FOUND"
BatchDeleteImportDataErrorCodeInternalServerError BatchDeleteImportDataErrorCode = "INTERNAL_SERVER_ERROR"
BatchDeleteImportDataErrorCodeOverLimit BatchDeleteImportDataErrorCode = "OVER_LIMIT"
)
// Values returns all known values for BatchDeleteImportDataErrorCode. 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 (BatchDeleteImportDataErrorCode) Values() []BatchDeleteImportDataErrorCode {
return []BatchDeleteImportDataErrorCode{
"NOT_FOUND",
"INTERNAL_SERVER_ERROR",
"OVER_LIMIT",
}
}
type ConfigurationItemType string
// Enum values for ConfigurationItemType
const (
ConfigurationItemTypeServer ConfigurationItemType = "SERVER"
ConfigurationItemTypeProcess ConfigurationItemType = "PROCESS"
ConfigurationItemTypeConnections ConfigurationItemType = "CONNECTION"
ConfigurationItemTypeApplication ConfigurationItemType = "APPLICATION"
)
// Values returns all known values for ConfigurationItemType. 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 (ConfigurationItemType) Values() []ConfigurationItemType {
return []ConfigurationItemType{
"SERVER",
"PROCESS",
"CONNECTION",
"APPLICATION",
}
}
type ContinuousExportStatus string
// Enum values for ContinuousExportStatus
const (
ContinuousExportStatusStartInProgress ContinuousExportStatus = "START_IN_PROGRESS"
ContinuousExportStatusStartFailed ContinuousExportStatus = "START_FAILED"
ContinuousExportStatusActive ContinuousExportStatus = "ACTIVE"
ContinuousExportStatusError ContinuousExportStatus = "ERROR"
ContinuousExportStatusStopInProgress ContinuousExportStatus = "STOP_IN_PROGRESS"
ContinuousExportStatusStopFailed ContinuousExportStatus = "STOP_FAILED"
ContinuousExportStatusInactive ContinuousExportStatus = "INACTIVE"
)
// Values returns all known values for ContinuousExportStatus. 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 (ContinuousExportStatus) Values() []ContinuousExportStatus {
return []ContinuousExportStatus{
"START_IN_PROGRESS",
"START_FAILED",
"ACTIVE",
"ERROR",
"STOP_IN_PROGRESS",
"STOP_FAILED",
"INACTIVE",
}
}
type DataSource string
// Enum values for DataSource
const (
DataSourceAgent DataSource = "AGENT"
)
// Values returns all known values for DataSource. 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 (DataSource) Values() []DataSource {
return []DataSource{
"AGENT",
}
}
type DeleteAgentErrorCode string
// Enum values for DeleteAgentErrorCode
const (
DeleteAgentErrorCodeNotFound DeleteAgentErrorCode = "NOT_FOUND"
DeleteAgentErrorCodeInternalServerError DeleteAgentErrorCode = "INTERNAL_SERVER_ERROR"
DeleteAgentErrorCodeAgentInUse DeleteAgentErrorCode = "AGENT_IN_USE"
)
// Values returns all known values for DeleteAgentErrorCode. 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 (DeleteAgentErrorCode) Values() []DeleteAgentErrorCode {
return []DeleteAgentErrorCode{
"NOT_FOUND",
"INTERNAL_SERVER_ERROR",
"AGENT_IN_USE",
}
}
type DeletionConfigurationItemType string
// Enum values for DeletionConfigurationItemType
const (
DeletionConfigurationItemTypeServer DeletionConfigurationItemType = "SERVER"
)
// Values returns all known values for DeletionConfigurationItemType. 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 (DeletionConfigurationItemType) Values() []DeletionConfigurationItemType {
return []DeletionConfigurationItemType{
"SERVER",
}
}
type ExportDataFormat string
// Enum values for ExportDataFormat
const (
ExportDataFormatCsv ExportDataFormat = "CSV"
)
// Values returns all known values for ExportDataFormat. 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 (ExportDataFormat) Values() []ExportDataFormat {
return []ExportDataFormat{
"CSV",
}
}
type ExportStatus string
// Enum values for ExportStatus
const (
ExportStatusFailed ExportStatus = "FAILED"
ExportStatusSucceeded ExportStatus = "SUCCEEDED"
ExportStatusInProgress ExportStatus = "IN_PROGRESS"
)
// Values returns all known values for ExportStatus. 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 (ExportStatus) Values() []ExportStatus {
return []ExportStatus{
"FAILED",
"SUCCEEDED",
"IN_PROGRESS",
}
}
type ImportStatus string
// Enum values for ImportStatus
const (
ImportStatusImportInProgress ImportStatus = "IMPORT_IN_PROGRESS"
ImportStatusImportComplete ImportStatus = "IMPORT_COMPLETE"
ImportStatusImportCompleteWithErrors ImportStatus = "IMPORT_COMPLETE_WITH_ERRORS"
ImportStatusImportFailed ImportStatus = "IMPORT_FAILED"
ImportStatusImportFailedServerLimitExceeded ImportStatus = "IMPORT_FAILED_SERVER_LIMIT_EXCEEDED"
ImportStatusImportFailedRecordLimitExceeded ImportStatus = "IMPORT_FAILED_RECORD_LIMIT_EXCEEDED"
ImportStatusDeleteInProgress ImportStatus = "DELETE_IN_PROGRESS"
ImportStatusDeleteComplete ImportStatus = "DELETE_COMPLETE"
ImportStatusDeleteFailed ImportStatus = "DELETE_FAILED"
ImportStatusDeleteFailedLimitExceeded ImportStatus = "DELETE_FAILED_LIMIT_EXCEEDED"
ImportStatusInternalError ImportStatus = "INTERNAL_ERROR"
)
// Values returns all known values for ImportStatus. 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 (ImportStatus) Values() []ImportStatus {
return []ImportStatus{
"IMPORT_IN_PROGRESS",
"IMPORT_COMPLETE",
"IMPORT_COMPLETE_WITH_ERRORS",
"IMPORT_FAILED",
"IMPORT_FAILED_SERVER_LIMIT_EXCEEDED",
"IMPORT_FAILED_RECORD_LIMIT_EXCEEDED",
"DELETE_IN_PROGRESS",
"DELETE_COMPLETE",
"DELETE_FAILED",
"DELETE_FAILED_LIMIT_EXCEEDED",
"INTERNAL_ERROR",
}
}
type ImportTaskFilterName string
// Enum values for ImportTaskFilterName
const (
ImportTaskFilterNameImportTaskId ImportTaskFilterName = "IMPORT_TASK_ID"
ImportTaskFilterNameStatus ImportTaskFilterName = "STATUS"
ImportTaskFilterNameName ImportTaskFilterName = "NAME"
)
// Values returns all known values for ImportTaskFilterName. 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 (ImportTaskFilterName) Values() []ImportTaskFilterName {
return []ImportTaskFilterName{
"IMPORT_TASK_ID",
"STATUS",
"NAME",
}
}
type OfferingClass string
// Enum values for OfferingClass
const (
OfferingClassStandard OfferingClass = "STANDARD"
OfferingClassConvertible OfferingClass = "CONVERTIBLE"
)
// Values returns all known values for OfferingClass. 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 (OfferingClass) Values() []OfferingClass {
return []OfferingClass{
"STANDARD",
"CONVERTIBLE",
}
}
type OrderString string
// Enum values for OrderString
const (
OrderStringAsc OrderString = "ASC"
OrderStringDesc OrderString = "DESC"
)
// Values returns all known values for OrderString. 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 (OrderString) Values() []OrderString {
return []OrderString{
"ASC",
"DESC",
}
}
type PurchasingOption string
// Enum values for PurchasingOption
const (
PurchasingOptionAllUpfront PurchasingOption = "ALL_UPFRONT"
PurchasingOptionPartialUpfront PurchasingOption = "PARTIAL_UPFRONT"
PurchasingOptionNoUpfront PurchasingOption = "NO_UPFRONT"
)
// Values returns all known values for PurchasingOption. 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 (PurchasingOption) Values() []PurchasingOption {
return []PurchasingOption{
"ALL_UPFRONT",
"PARTIAL_UPFRONT",
"NO_UPFRONT",
}
}
type Tenancy string
// Enum values for Tenancy
const (
TenancyDedicated Tenancy = "DEDICATED"
TenancyShared Tenancy = "SHARED"
)
// Values returns all known values for Tenancy. 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 (Tenancy) Values() []Tenancy {
return []Tenancy{
"DEDICATED",
"SHARED",
}
}
type TermLength string
// Enum values for TermLength
const (
TermLengthOneYear TermLength = "ONE_YEAR"
TermLengthThreeYear TermLength = "THREE_YEAR"
)
// Values returns all known values for TermLength. 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 (TermLength) Values() []TermLength {
return []TermLength{
"ONE_YEAR",
"THREE_YEAR",
}
}
|