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
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type AuthenticationMethod string
// Enum values for AuthenticationMethod
const (
AuthenticationMethodX509ClientCertificate AuthenticationMethod = "X509ClientCertificate"
AuthenticationMethodSignatureVersion4 AuthenticationMethod = "SignatureVersion4"
)
// Values returns all known values for AuthenticationMethod. 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 (AuthenticationMethod) Values() []AuthenticationMethod {
return []AuthenticationMethod{
"X509ClientCertificate",
"SignatureVersion4",
}
}
type Protocol string
// Enum values for Protocol
const (
ProtocolMqttV311 Protocol = "MqttV3_1_1"
ProtocolMqttV5 Protocol = "MqttV5"
ProtocolMqttV311OverWebSocket Protocol = "MqttV3_1_1_OverWebSocket"
ProtocolMqttV5OverWebSocket Protocol = "MqttV5_OverWebSocket"
)
// Values returns all known values for Protocol. 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 (Protocol) Values() []Protocol {
return []Protocol{
"MqttV3_1_1",
"MqttV5",
"MqttV3_1_1_OverWebSocket",
"MqttV5_OverWebSocket",
}
}
type Status string
// Enum values for Status
const (
StatusPass Status = "PASS"
StatusFail Status = "FAIL"
StatusCanceled Status = "CANCELED"
StatusPending Status = "PENDING"
StatusRunning Status = "RUNNING"
StatusStopping Status = "STOPPING"
StatusStopped Status = "STOPPED"
StatusPassWithWarnings Status = "PASS_WITH_WARNINGS"
StatusError Status = "ERROR"
)
// 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{
"PASS",
"FAIL",
"CANCELED",
"PENDING",
"RUNNING",
"STOPPING",
"STOPPED",
"PASS_WITH_WARNINGS",
"ERROR",
}
}
type SuiteRunStatus string
// Enum values for SuiteRunStatus
const (
SuiteRunStatusPass SuiteRunStatus = "PASS"
SuiteRunStatusFail SuiteRunStatus = "FAIL"
SuiteRunStatusCanceled SuiteRunStatus = "CANCELED"
SuiteRunStatusPending SuiteRunStatus = "PENDING"
SuiteRunStatusRunning SuiteRunStatus = "RUNNING"
SuiteRunStatusStopping SuiteRunStatus = "STOPPING"
SuiteRunStatusStopped SuiteRunStatus = "STOPPED"
SuiteRunStatusPassWithWarnings SuiteRunStatus = "PASS_WITH_WARNINGS"
SuiteRunStatusError SuiteRunStatus = "ERROR"
)
// Values returns all known values for SuiteRunStatus. 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 (SuiteRunStatus) Values() []SuiteRunStatus {
return []SuiteRunStatus{
"PASS",
"FAIL",
"CANCELED",
"PENDING",
"RUNNING",
"STOPPING",
"STOPPED",
"PASS_WITH_WARNINGS",
"ERROR",
}
}
type TestCaseScenarioStatus string
// Enum values for TestCaseScenarioStatus
const (
TestCaseScenarioStatusPass TestCaseScenarioStatus = "PASS"
TestCaseScenarioStatusFail TestCaseScenarioStatus = "FAIL"
TestCaseScenarioStatusCanceled TestCaseScenarioStatus = "CANCELED"
TestCaseScenarioStatusPending TestCaseScenarioStatus = "PENDING"
TestCaseScenarioStatusRunning TestCaseScenarioStatus = "RUNNING"
TestCaseScenarioStatusStopping TestCaseScenarioStatus = "STOPPING"
TestCaseScenarioStatusStopped TestCaseScenarioStatus = "STOPPED"
TestCaseScenarioStatusPassWithWarnings TestCaseScenarioStatus = "PASS_WITH_WARNINGS"
TestCaseScenarioStatusError TestCaseScenarioStatus = "ERROR"
)
// Values returns all known values for TestCaseScenarioStatus. 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 (TestCaseScenarioStatus) Values() []TestCaseScenarioStatus {
return []TestCaseScenarioStatus{
"PASS",
"FAIL",
"CANCELED",
"PENDING",
"RUNNING",
"STOPPING",
"STOPPED",
"PASS_WITH_WARNINGS",
"ERROR",
}
}
type TestCaseScenarioType string
// Enum values for TestCaseScenarioType
const (
TestCaseScenarioTypeAdvanced TestCaseScenarioType = "Advanced"
TestCaseScenarioTypeBasic TestCaseScenarioType = "Basic"
)
// Values returns all known values for TestCaseScenarioType. 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 (TestCaseScenarioType) Values() []TestCaseScenarioType {
return []TestCaseScenarioType{
"Advanced",
"Basic",
}
}
|