1// Code generated by smithy-go-codegen DO NOT EDIT.
2
3package types
4
5type AgentStatus string
6
7// Enum values for AgentStatus
8const (
9	AgentStatusHealthy     AgentStatus = "HEALTHY"
10	AgentStatusUnhealthy   AgentStatus = "UNHEALTHY"
11	AgentStatusRunning     AgentStatus = "RUNNING"
12	AgentStatusUnknown     AgentStatus = "UNKNOWN"
13	AgentStatusBlacklisted AgentStatus = "BLACKLISTED"
14	AgentStatusShutdown    AgentStatus = "SHUTDOWN"
15)
16
17// Values returns all known values for AgentStatus. Note that this can be expanded
18// in the future, and so it is only as up to date as the client. The ordering of
19// this slice is not guaranteed to be stable across updates.
20func (AgentStatus) Values() []AgentStatus {
21	return []AgentStatus{
22		"HEALTHY",
23		"UNHEALTHY",
24		"RUNNING",
25		"UNKNOWN",
26		"BLACKLISTED",
27		"SHUTDOWN",
28	}
29}
30
31type BatchDeleteImportDataErrorCode string
32
33// Enum values for BatchDeleteImportDataErrorCode
34const (
35	BatchDeleteImportDataErrorCodeNotFound            BatchDeleteImportDataErrorCode = "NOT_FOUND"
36	BatchDeleteImportDataErrorCodeInternalServerError BatchDeleteImportDataErrorCode = "INTERNAL_SERVER_ERROR"
37	BatchDeleteImportDataErrorCodeOverLimit           BatchDeleteImportDataErrorCode = "OVER_LIMIT"
38)
39
40// Values returns all known values for BatchDeleteImportDataErrorCode. Note that
41// this can be expanded in the future, and so it is only as up to date as the
42// client. The ordering of this slice is not guaranteed to be stable across
43// updates.
44func (BatchDeleteImportDataErrorCode) Values() []BatchDeleteImportDataErrorCode {
45	return []BatchDeleteImportDataErrorCode{
46		"NOT_FOUND",
47		"INTERNAL_SERVER_ERROR",
48		"OVER_LIMIT",
49	}
50}
51
52type ConfigurationItemType string
53
54// Enum values for ConfigurationItemType
55const (
56	ConfigurationItemTypeServer      ConfigurationItemType = "SERVER"
57	ConfigurationItemTypeProcess     ConfigurationItemType = "PROCESS"
58	ConfigurationItemTypeConnections ConfigurationItemType = "CONNECTION"
59	ConfigurationItemTypeApplication ConfigurationItemType = "APPLICATION"
60)
61
62// Values returns all known values for ConfigurationItemType. Note that this can be
63// expanded in the future, and so it is only as up to date as the client. The
64// ordering of this slice is not guaranteed to be stable across updates.
65func (ConfigurationItemType) Values() []ConfigurationItemType {
66	return []ConfigurationItemType{
67		"SERVER",
68		"PROCESS",
69		"CONNECTION",
70		"APPLICATION",
71	}
72}
73
74type ContinuousExportStatus string
75
76// Enum values for ContinuousExportStatus
77const (
78	ContinuousExportStatusStartInProgress ContinuousExportStatus = "START_IN_PROGRESS"
79	ContinuousExportStatusStartFailed     ContinuousExportStatus = "START_FAILED"
80	ContinuousExportStatusActive          ContinuousExportStatus = "ACTIVE"
81	ContinuousExportStatusError           ContinuousExportStatus = "ERROR"
82	ContinuousExportStatusStopInProgress  ContinuousExportStatus = "STOP_IN_PROGRESS"
83	ContinuousExportStatusStopFailed      ContinuousExportStatus = "STOP_FAILED"
84	ContinuousExportStatusInactive        ContinuousExportStatus = "INACTIVE"
85)
86
87// Values returns all known values for ContinuousExportStatus. Note that this can
88// be expanded in the future, and so it is only as up to date as the client. The
89// ordering of this slice is not guaranteed to be stable across updates.
90func (ContinuousExportStatus) Values() []ContinuousExportStatus {
91	return []ContinuousExportStatus{
92		"START_IN_PROGRESS",
93		"START_FAILED",
94		"ACTIVE",
95		"ERROR",
96		"STOP_IN_PROGRESS",
97		"STOP_FAILED",
98		"INACTIVE",
99	}
100}
101
102type DataSource string
103
104// Enum values for DataSource
105const (
106	DataSourceAgent DataSource = "AGENT"
107)
108
109// Values returns all known values for DataSource. Note that this can be expanded
110// in the future, and so it is only as up to date as the client. The ordering of
111// this slice is not guaranteed to be stable across updates.
112func (DataSource) Values() []DataSource {
113	return []DataSource{
114		"AGENT",
115	}
116}
117
118type ExportDataFormat string
119
120// Enum values for ExportDataFormat
121const (
122	ExportDataFormatCsv     ExportDataFormat = "CSV"
123	ExportDataFormatGraphml ExportDataFormat = "GRAPHML"
124)
125
126// Values returns all known values for ExportDataFormat. Note that this can be
127// expanded in the future, and so it is only as up to date as the client. The
128// ordering of this slice is not guaranteed to be stable across updates.
129func (ExportDataFormat) Values() []ExportDataFormat {
130	return []ExportDataFormat{
131		"CSV",
132		"GRAPHML",
133	}
134}
135
136type ExportStatus string
137
138// Enum values for ExportStatus
139const (
140	ExportStatusFailed     ExportStatus = "FAILED"
141	ExportStatusSucceeded  ExportStatus = "SUCCEEDED"
142	ExportStatusInProgress ExportStatus = "IN_PROGRESS"
143)
144
145// Values returns all known values for ExportStatus. Note that this can be expanded
146// in the future, and so it is only as up to date as the client. The ordering of
147// this slice is not guaranteed to be stable across updates.
148func (ExportStatus) Values() []ExportStatus {
149	return []ExportStatus{
150		"FAILED",
151		"SUCCEEDED",
152		"IN_PROGRESS",
153	}
154}
155
156type ImportStatus string
157
158// Enum values for ImportStatus
159const (
160	ImportStatusImportInProgress                ImportStatus = "IMPORT_IN_PROGRESS"
161	ImportStatusImportComplete                  ImportStatus = "IMPORT_COMPLETE"
162	ImportStatusImportCompleteWithErrors        ImportStatus = "IMPORT_COMPLETE_WITH_ERRORS"
163	ImportStatusImportFailed                    ImportStatus = "IMPORT_FAILED"
164	ImportStatusImportFailedServerLimitExceeded ImportStatus = "IMPORT_FAILED_SERVER_LIMIT_EXCEEDED"
165	ImportStatusImportFailedRecordLimitExceeded ImportStatus = "IMPORT_FAILED_RECORD_LIMIT_EXCEEDED"
166	ImportStatusDeleteInProgress                ImportStatus = "DELETE_IN_PROGRESS"
167	ImportStatusDeleteComplete                  ImportStatus = "DELETE_COMPLETE"
168	ImportStatusDeleteFailed                    ImportStatus = "DELETE_FAILED"
169	ImportStatusDeleteFailedLimitExceeded       ImportStatus = "DELETE_FAILED_LIMIT_EXCEEDED"
170	ImportStatusInternalError                   ImportStatus = "INTERNAL_ERROR"
171)
172
173// Values returns all known values for ImportStatus. Note that this can be expanded
174// in the future, and so it is only as up to date as the client. The ordering of
175// this slice is not guaranteed to be stable across updates.
176func (ImportStatus) Values() []ImportStatus {
177	return []ImportStatus{
178		"IMPORT_IN_PROGRESS",
179		"IMPORT_COMPLETE",
180		"IMPORT_COMPLETE_WITH_ERRORS",
181		"IMPORT_FAILED",
182		"IMPORT_FAILED_SERVER_LIMIT_EXCEEDED",
183		"IMPORT_FAILED_RECORD_LIMIT_EXCEEDED",
184		"DELETE_IN_PROGRESS",
185		"DELETE_COMPLETE",
186		"DELETE_FAILED",
187		"DELETE_FAILED_LIMIT_EXCEEDED",
188		"INTERNAL_ERROR",
189	}
190}
191
192type ImportTaskFilterName string
193
194// Enum values for ImportTaskFilterName
195const (
196	ImportTaskFilterNameImportTaskId ImportTaskFilterName = "IMPORT_TASK_ID"
197	ImportTaskFilterNameStatus       ImportTaskFilterName = "STATUS"
198	ImportTaskFilterNameName         ImportTaskFilterName = "NAME"
199)
200
201// Values returns all known values for ImportTaskFilterName. Note that this can be
202// expanded in the future, and so it is only as up to date as the client. The
203// ordering of this slice is not guaranteed to be stable across updates.
204func (ImportTaskFilterName) Values() []ImportTaskFilterName {
205	return []ImportTaskFilterName{
206		"IMPORT_TASK_ID",
207		"STATUS",
208		"NAME",
209	}
210}
211
212type OrderString string
213
214// Enum values for OrderString
215const (
216	OrderStringAsc  OrderString = "ASC"
217	OrderStringDesc OrderString = "DESC"
218)
219
220// Values returns all known values for OrderString. Note that this can be expanded
221// in the future, and so it is only as up to date as the client. The ordering of
222// this slice is not guaranteed to be stable across updates.
223func (OrderString) Values() []OrderString {
224	return []OrderString{
225		"ASC",
226		"DESC",
227	}
228}
229