File: enums.go

package info (click to toggle)
golang-github-aws-aws-sdk-go-v2 1.24.1-2~bpo12%2B1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm-backports
  • size: 554,032 kB
  • sloc: java: 15,941; makefile: 419; sh: 175
file content (193 lines) | stat: -rw-r--r-- 7,180 bytes parent folder | download
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
// Code generated by smithy-go-codegen DO NOT EDIT.

package types

type AppliedStatus string

// Enum values for AppliedStatus
const (
	AppliedStatusApplied    AppliedStatus = "APPLIED"
	AppliedStatusNotApplied AppliedStatus = "NOT_APPLIED"
)

// Values returns all known values for AppliedStatus. 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 (AppliedStatus) Values() []AppliedStatus {
	return []AppliedStatus{
		"APPLIED",
		"NOT_APPLIED",
	}
}

type AutoshiftAppliedStatus string

// Enum values for AutoshiftAppliedStatus
const (
	AutoshiftAppliedStatusApplied    AutoshiftAppliedStatus = "APPLIED"
	AutoshiftAppliedStatusNotApplied AutoshiftAppliedStatus = "NOT_APPLIED"
)

// Values returns all known values for AutoshiftAppliedStatus. 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 (AutoshiftAppliedStatus) Values() []AutoshiftAppliedStatus {
	return []AutoshiftAppliedStatus{
		"APPLIED",
		"NOT_APPLIED",
	}
}

type AutoshiftExecutionStatus string

// Enum values for AutoshiftExecutionStatus
const (
	AutoshiftExecutionStatusActive    AutoshiftExecutionStatus = "ACTIVE"
	AutoshiftExecutionStatusCompleted AutoshiftExecutionStatus = "COMPLETED"
)

// Values returns all known values for AutoshiftExecutionStatus. 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 (AutoshiftExecutionStatus) Values() []AutoshiftExecutionStatus {
	return []AutoshiftExecutionStatus{
		"ACTIVE",
		"COMPLETED",
	}
}

type ConflictExceptionReason string

// Enum values for ConflictExceptionReason
const (
	ConflictExceptionReasonZonalShiftAlreadyExists            ConflictExceptionReason = "ZonalShiftAlreadyExists"
	ConflictExceptionReasonZonalShiftStatusNotActive          ConflictExceptionReason = "ZonalShiftStatusNotActive"
	ConflictExceptionReasonSimultaneousZonalShiftsConflict    ConflictExceptionReason = "SimultaneousZonalShiftsConflict"
	ConflictExceptionReasonPracticeConfigurationAlreadyExists ConflictExceptionReason = "PracticeConfigurationAlreadyExists"
	ConflictExceptionReasonAutoshiftEnabled                   ConflictExceptionReason = "AutoShiftEnabled"
	ConflictExceptionReasonPracticeConfigurationDoesNotExist  ConflictExceptionReason = "PracticeConfigurationDoesNotExist"
)

// Values returns all known values for ConflictExceptionReason. 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 (ConflictExceptionReason) Values() []ConflictExceptionReason {
	return []ConflictExceptionReason{
		"ZonalShiftAlreadyExists",
		"ZonalShiftStatusNotActive",
		"SimultaneousZonalShiftsConflict",
		"PracticeConfigurationAlreadyExists",
		"AutoShiftEnabled",
		"PracticeConfigurationDoesNotExist",
	}
}

type ControlConditionType string

// Enum values for ControlConditionType
const (
	ControlConditionTypeCloudwatch ControlConditionType = "CLOUDWATCH"
)

// Values returns all known values for ControlConditionType. 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 (ControlConditionType) Values() []ControlConditionType {
	return []ControlConditionType{
		"CLOUDWATCH",
	}
}

type PracticeRunOutcome string

// Enum values for PracticeRunOutcome
const (
	PracticeRunOutcomeFailed      PracticeRunOutcome = "FAILED"
	PracticeRunOutcomeInterrupted PracticeRunOutcome = "INTERRUPTED"
	PracticeRunOutcomePending     PracticeRunOutcome = "PENDING"
	PracticeRunOutcomeSucceeded   PracticeRunOutcome = "SUCCEEDED"
)

// Values returns all known values for PracticeRunOutcome. 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 (PracticeRunOutcome) Values() []PracticeRunOutcome {
	return []PracticeRunOutcome{
		"FAILED",
		"INTERRUPTED",
		"PENDING",
		"SUCCEEDED",
	}
}

type ValidationExceptionReason string

// Enum values for ValidationExceptionReason
const (
	ValidationExceptionReasonInvalidExpiresIn          ValidationExceptionReason = "InvalidExpiresIn"
	ValidationExceptionReasonInvalidStatus             ValidationExceptionReason = "InvalidStatus"
	ValidationExceptionReasonMissingValue              ValidationExceptionReason = "MissingValue"
	ValidationExceptionReasonInvalidToken              ValidationExceptionReason = "InvalidToken"
	ValidationExceptionReasonInvalidResourceIdentifier ValidationExceptionReason = "InvalidResourceIdentifier"
	ValidationExceptionReasonInvalidAz                 ValidationExceptionReason = "InvalidAz"
	ValidationExceptionReasonUnsupportedAz             ValidationExceptionReason = "UnsupportedAz"
	ValidationExceptionReasonInvalidAlarmCondition     ValidationExceptionReason = "InvalidAlarmCondition"
	ValidationExceptionReasonInvalidConditionType      ValidationExceptionReason = "InvalidConditionType"
	ValidationExceptionReasonInvalidPracticeBlocker    ValidationExceptionReason = "InvalidPracticeBlocker"
)

// 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{
		"InvalidExpiresIn",
		"InvalidStatus",
		"MissingValue",
		"InvalidToken",
		"InvalidResourceIdentifier",
		"InvalidAz",
		"UnsupportedAz",
		"InvalidAlarmCondition",
		"InvalidConditionType",
		"InvalidPracticeBlocker",
	}
}

type ZonalAutoshiftStatus string

// Enum values for ZonalAutoshiftStatus
const (
	ZonalAutoshiftStatusEnabled  ZonalAutoshiftStatus = "ENABLED"
	ZonalAutoshiftStatusDisabled ZonalAutoshiftStatus = "DISABLED"
)

// Values returns all known values for ZonalAutoshiftStatus. 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 (ZonalAutoshiftStatus) Values() []ZonalAutoshiftStatus {
	return []ZonalAutoshiftStatus{
		"ENABLED",
		"DISABLED",
	}
}

type ZonalShiftStatus string

// Enum values for ZonalShiftStatus
const (
	ZonalShiftStatusActive   ZonalShiftStatus = "ACTIVE"
	ZonalShiftStatusExpired  ZonalShiftStatus = "EXPIRED"
	ZonalShiftStatusCanceled ZonalShiftStatus = "CANCELED"
)

// Values returns all known values for ZonalShiftStatus. 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 (ZonalShiftStatus) Values() []ZonalShiftStatus {
	return []ZonalShiftStatus{
		"ACTIVE",
		"EXPIRED",
		"CANCELED",
	}
}