File: enums.go

package info (click to toggle)
golang-github-aws-aws-sdk-go-v2 1.30.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 662,428 kB
  • sloc: java: 16,875; makefile: 432; sh: 175
file content (374 lines) | stat: -rw-r--r-- 10,877 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
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
// Code generated by smithy-go-codegen DO NOT EDIT.

package types

type CaptureTool string

// Enum values for CaptureTool
const (
	CaptureToolPrecisely CaptureTool = "Precisely"
	CaptureToolAwsDms    CaptureTool = "AWS DMS"
)

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

type CloudFormationActionType string

// Enum values for CloudFormationActionType
const (
	CloudFormationActionTypeCreate CloudFormationActionType = "Create"
	CloudFormationActionTypeDelete CloudFormationActionType = "Delete"
)

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

type ComparisonStatusEnum string

// Enum values for ComparisonStatusEnum
const (
	ComparisonStatusEnumDifferent  ComparisonStatusEnum = "Different"
	ComparisonStatusEnumEquivalent ComparisonStatusEnum = "Equivalent"
	ComparisonStatusEnumEqual      ComparisonStatusEnum = "Equal"
)

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

type DataSetType string

// Enum values for DataSetType
const (
	DataSetTypePs DataSetType = "PS"
)

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

type Format string

// Enum values for Format
const (
	FormatFixed          Format = "FIXED"
	FormatVariable       Format = "VARIABLE"
	FormatLineSequential Format = "LINE_SEQUENTIAL"
)

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

type M2ManagedActionType string

// Enum values for M2ManagedActionType
const (
	M2ManagedActionTypeConfigure   M2ManagedActionType = "Configure"
	M2ManagedActionTypeDeconfigure M2ManagedActionType = "Deconfigure"
)

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

type M2ManagedRuntime string

// Enum values for M2ManagedRuntime
const (
	M2ManagedRuntimeMicrofocus M2ManagedRuntime = "MicroFocus"
)

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

type M2NonManagedActionType string

// Enum values for M2NonManagedActionType
const (
	M2NonManagedActionTypeConfigure   M2NonManagedActionType = "Configure"
	M2NonManagedActionTypeDeconfigure M2NonManagedActionType = "Deconfigure"
)

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

type M2NonManagedRuntime string

// Enum values for M2NonManagedRuntime
const (
	M2NonManagedRuntimeBluage M2NonManagedRuntime = "BluAge"
)

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

type ScriptType string

// Enum values for ScriptType
const (
	ScriptTypeSelenium ScriptType = "Selenium"
)

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

type SourceDatabase string

// Enum values for SourceDatabase
const (
	SourceDatabaseZOsDb2 SourceDatabase = "z/OS-DB2"
)

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

type StepRunStatus string

// Enum values for StepRunStatus
const (
	StepRunStatusSuccess StepRunStatus = "Success"
	StepRunStatusFailed  StepRunStatus = "Failed"
	StepRunStatusRunning StepRunStatus = "Running"
)

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

type TargetDatabase string

// Enum values for TargetDatabase
const (
	TargetDatabasePostgresql TargetDatabase = "PostgreSQL"
)

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

type TestCaseLifecycle string

// Enum values for TestCaseLifecycle
const (
	TestCaseLifecycleActive   TestCaseLifecycle = "Active"
	TestCaseLifecycleDeleting TestCaseLifecycle = "Deleting"
)

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

type TestCaseRunStatus string

// Enum values for TestCaseRunStatus
const (
	TestCaseRunStatusSuccess TestCaseRunStatus = "Success"
	TestCaseRunStatusRunning TestCaseRunStatus = "Running"
	TestCaseRunStatusFailed  TestCaseRunStatus = "Failed"
)

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

type TestConfigurationLifecycle string

// Enum values for TestConfigurationLifecycle
const (
	TestConfigurationLifecycleActive   TestConfigurationLifecycle = "Active"
	TestConfigurationLifecycleDeleting TestConfigurationLifecycle = "Deleting"
)

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

type TestRunStatus string

// Enum values for TestRunStatus
const (
	TestRunStatusSuccess  TestRunStatus = "Success"
	TestRunStatusRunning  TestRunStatus = "Running"
	TestRunStatusFailed   TestRunStatus = "Failed"
	TestRunStatusDeleting TestRunStatus = "Deleting"
)

// Values returns all known values for TestRunStatus. 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 (TestRunStatus) Values() []TestRunStatus {
	return []TestRunStatus{
		"Success",
		"Running",
		"Failed",
		"Deleting",
	}
}

type TestSuiteLifecycle string

// Enum values for TestSuiteLifecycle
const (
	TestSuiteLifecycleCreating TestSuiteLifecycle = "Creating"
	TestSuiteLifecycleUpdating TestSuiteLifecycle = "Updating"
	TestSuiteLifecycleActive   TestSuiteLifecycle = "Active"
	TestSuiteLifecycleFailed   TestSuiteLifecycle = "Failed"
	TestSuiteLifecycleDeleting TestSuiteLifecycle = "Deleting"
)

// Values returns all known values for TestSuiteLifecycle. 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 (TestSuiteLifecycle) Values() []TestSuiteLifecycle {
	return []TestSuiteLifecycle{
		"Creating",
		"Updating",
		"Active",
		"Failed",
		"Deleting",
	}
}

type ValidationExceptionReason string

// Enum values for ValidationExceptionReason
const (
	ValidationExceptionReasonUnknownOperation      ValidationExceptionReason = "unknownOperation"
	ValidationExceptionReasonCannotParse           ValidationExceptionReason = "cannotParse"
	ValidationExceptionReasonFieldValidationFailed ValidationExceptionReason = "fieldValidationFailed"
	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{
		"unknownOperation",
		"cannotParse",
		"fieldValidationFailed",
		"other",
	}
}