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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type DbInstanceType string
// Enum values for DbInstanceType
const (
DbInstanceTypeDbInfluxMedium DbInstanceType = "db.influx.medium"
DbInstanceTypeDbInfluxLarge DbInstanceType = "db.influx.large"
DbInstanceTypeDbInfluxXlarge DbInstanceType = "db.influx.xlarge"
DbInstanceTypeDbInflux2xlarge DbInstanceType = "db.influx.2xlarge"
DbInstanceTypeDbInflux4xlarge DbInstanceType = "db.influx.4xlarge"
DbInstanceTypeDbInflux8xlarge DbInstanceType = "db.influx.8xlarge"
DbInstanceTypeDbInflux12xlarge DbInstanceType = "db.influx.12xlarge"
DbInstanceTypeDbInflux16xlarge DbInstanceType = "db.influx.16xlarge"
)
// Values returns all known values for DbInstanceType. 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 (DbInstanceType) Values() []DbInstanceType {
return []DbInstanceType{
"db.influx.medium",
"db.influx.large",
"db.influx.xlarge",
"db.influx.2xlarge",
"db.influx.4xlarge",
"db.influx.8xlarge",
"db.influx.12xlarge",
"db.influx.16xlarge",
}
}
type DbStorageType string
// Enum values for DbStorageType
const (
DbStorageTypeInfluxIoIncludedT1 DbStorageType = "InfluxIOIncludedT1"
DbStorageTypeInfluxIoIncludedT2 DbStorageType = "InfluxIOIncludedT2"
DbStorageTypeInfluxIoIncludedT3 DbStorageType = "InfluxIOIncludedT3"
)
// Values returns all known values for DbStorageType. 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 (DbStorageType) Values() []DbStorageType {
return []DbStorageType{
"InfluxIOIncludedT1",
"InfluxIOIncludedT2",
"InfluxIOIncludedT3",
}
}
type DeploymentType string
// Enum values for DeploymentType
const (
DeploymentTypeSingleAz DeploymentType = "SINGLE_AZ"
DeploymentTypeWithMultiazStandby DeploymentType = "WITH_MULTIAZ_STANDBY"
)
// Values returns all known values for DeploymentType. 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 (DeploymentType) Values() []DeploymentType {
return []DeploymentType{
"SINGLE_AZ",
"WITH_MULTIAZ_STANDBY",
}
}
type LogLevel string
// Enum values for LogLevel
const (
LogLevelDebug LogLevel = "debug"
LogLevelInfo LogLevel = "info"
LogLevelError LogLevel = "error"
)
// Values returns all known values for LogLevel. 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 (LogLevel) Values() []LogLevel {
return []LogLevel{
"debug",
"info",
"error",
}
}
type Status string
// Enum values for Status
const (
StatusCreating Status = "CREATING"
StatusAvailable Status = "AVAILABLE"
StatusDeleting Status = "DELETING"
StatusModifying Status = "MODIFYING"
StatusUpdating Status = "UPDATING"
StatusDeleted Status = "DELETED"
StatusFailed Status = "FAILED"
)
// Values returns all known values for Status. 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 (Status) Values() []Status {
return []Status{
"CREATING",
"AVAILABLE",
"DELETING",
"MODIFYING",
"UPDATING",
"DELETED",
"FAILED",
}
}
type TracingType string
// Enum values for TracingType
const (
TracingTypeLog TracingType = "log"
TracingTypeJaeger TracingType = "jaeger"
)
// Values returns all known values for TracingType. 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 (TracingType) Values() []TracingType {
return []TracingType{
"log",
"jaeger",
}
}
type ValidationExceptionReason string
// Enum values for ValidationExceptionReason
const (
ValidationExceptionReasonFieldValidationFailed ValidationExceptionReason = "FIELD_VALIDATION_FAILED"
ValidationExceptionReasonOther ValidationExceptionReason = "OTHER"
)
// Values returns all known values for ValidationExceptionReason. 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 (ValidationExceptionReason) Values() []ValidationExceptionReason {
return []ValidationExceptionReason{
"FIELD_VALIDATION_FAILED",
"OTHER",
}
}
|