File: enums.go

package info (click to toggle)
golang-github-aws-aws-sdk-go-v2 1.17.1-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 384,244 kB
  • sloc: java: 13,538; makefile: 400; sh: 137
file content (608 lines) | stat: -rw-r--r-- 20,845 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
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
// Code generated by smithy-go-codegen DO NOT EDIT.

package types

type ApplicationInstanceHealthStatus string

// Enum values for ApplicationInstanceHealthStatus
const (
	ApplicationInstanceHealthStatusRunning      ApplicationInstanceHealthStatus = "RUNNING"
	ApplicationInstanceHealthStatusError        ApplicationInstanceHealthStatus = "ERROR"
	ApplicationInstanceHealthStatusNotAvailable ApplicationInstanceHealthStatus = "NOT_AVAILABLE"
)

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

type ApplicationInstanceStatus string

// Enum values for ApplicationInstanceStatus
const (
	ApplicationInstanceStatusDeploymentPending    ApplicationInstanceStatus = "DEPLOYMENT_PENDING"
	ApplicationInstanceStatusDeploymentRequested  ApplicationInstanceStatus = "DEPLOYMENT_REQUESTED"
	ApplicationInstanceStatusDeploymentInProgress ApplicationInstanceStatus = "DEPLOYMENT_IN_PROGRESS"
	ApplicationInstanceStatusDeploymentError      ApplicationInstanceStatus = "DEPLOYMENT_ERROR"
	ApplicationInstanceStatusDeploymentSucceeded  ApplicationInstanceStatus = "DEPLOYMENT_SUCCEEDED"
	ApplicationInstanceStatusRemovalPending       ApplicationInstanceStatus = "REMOVAL_PENDING"
	ApplicationInstanceStatusRemovalRequested     ApplicationInstanceStatus = "REMOVAL_REQUESTED"
	ApplicationInstanceStatusRemovalInProgress    ApplicationInstanceStatus = "REMOVAL_IN_PROGRESS"
	ApplicationInstanceStatusRemovalFailed        ApplicationInstanceStatus = "REMOVAL_FAILED"
	ApplicationInstanceStatusRemovalSucceeded     ApplicationInstanceStatus = "REMOVAL_SUCCEEDED"
	ApplicationInstanceStatusDeploymentFailed     ApplicationInstanceStatus = "DEPLOYMENT_FAILED"
)

// Values returns all known values for ApplicationInstanceStatus. 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 (ApplicationInstanceStatus) Values() []ApplicationInstanceStatus {
	return []ApplicationInstanceStatus{
		"DEPLOYMENT_PENDING",
		"DEPLOYMENT_REQUESTED",
		"DEPLOYMENT_IN_PROGRESS",
		"DEPLOYMENT_ERROR",
		"DEPLOYMENT_SUCCEEDED",
		"REMOVAL_PENDING",
		"REMOVAL_REQUESTED",
		"REMOVAL_IN_PROGRESS",
		"REMOVAL_FAILED",
		"REMOVAL_SUCCEEDED",
		"DEPLOYMENT_FAILED",
	}
}

type ConnectionType string

// Enum values for ConnectionType
const (
	ConnectionTypeStaticIp ConnectionType = "STATIC_IP"
	ConnectionTypeDhcp     ConnectionType = "DHCP"
)

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

type DesiredState string

// Enum values for DesiredState
const (
	DesiredStateRunning DesiredState = "RUNNING"
	DesiredStateStopped DesiredState = "STOPPED"
	DesiredStateRemoved DesiredState = "REMOVED"
)

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

type DeviceAggregatedStatus string

// Enum values for DeviceAggregatedStatus
const (
	DeviceAggregatedStatusError                DeviceAggregatedStatus = "ERROR"
	DeviceAggregatedStatusAwaitingProvisioning DeviceAggregatedStatus = "AWAITING_PROVISIONING"
	DeviceAggregatedStatusPending              DeviceAggregatedStatus = "PENDING"
	DeviceAggregatedStatusFailed               DeviceAggregatedStatus = "FAILED"
	DeviceAggregatedStatusDeleting             DeviceAggregatedStatus = "DELETING"
	DeviceAggregatedStatusOnline               DeviceAggregatedStatus = "ONLINE"
	DeviceAggregatedStatusOffline              DeviceAggregatedStatus = "OFFLINE"
	DeviceAggregatedStatusLeaseExpired         DeviceAggregatedStatus = "LEASE_EXPIRED"
	DeviceAggregatedStatusUpdateNeeded         DeviceAggregatedStatus = "UPDATE_NEEDED"
	DeviceAggregatedStatusRebooting            DeviceAggregatedStatus = "REBOOTING"
)

// Values returns all known values for DeviceAggregatedStatus. 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 (DeviceAggregatedStatus) Values() []DeviceAggregatedStatus {
	return []DeviceAggregatedStatus{
		"ERROR",
		"AWAITING_PROVISIONING",
		"PENDING",
		"FAILED",
		"DELETING",
		"ONLINE",
		"OFFLINE",
		"LEASE_EXPIRED",
		"UPDATE_NEEDED",
		"REBOOTING",
	}
}

type DeviceBrand string

// Enum values for DeviceBrand
const (
	DeviceBrandAwsPanorama DeviceBrand = "AWS_PANORAMA"
	DeviceBrandLenovo      DeviceBrand = "LENOVO"
)

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

type DeviceConnectionStatus string

// Enum values for DeviceConnectionStatus
const (
	DeviceConnectionStatusOnline              DeviceConnectionStatus = "ONLINE"
	DeviceConnectionStatusOffline             DeviceConnectionStatus = "OFFLINE"
	DeviceConnectionStatusAwaitingCredentials DeviceConnectionStatus = "AWAITING_CREDENTIALS"
	DeviceConnectionStatusNotAvailable        DeviceConnectionStatus = "NOT_AVAILABLE"
	DeviceConnectionStatusError               DeviceConnectionStatus = "ERROR"
)

// Values returns all known values for DeviceConnectionStatus. 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 (DeviceConnectionStatus) Values() []DeviceConnectionStatus {
	return []DeviceConnectionStatus{
		"ONLINE",
		"OFFLINE",
		"AWAITING_CREDENTIALS",
		"NOT_AVAILABLE",
		"ERROR",
	}
}

type DeviceReportedStatus string

// Enum values for DeviceReportedStatus
const (
	DeviceReportedStatusStopping          DeviceReportedStatus = "STOPPING"
	DeviceReportedStatusStopped           DeviceReportedStatus = "STOPPED"
	DeviceReportedStatusStopError         DeviceReportedStatus = "STOP_ERROR"
	DeviceReportedStatusRemovalFailed     DeviceReportedStatus = "REMOVAL_FAILED"
	DeviceReportedStatusRemovalInProgress DeviceReportedStatus = "REMOVAL_IN_PROGRESS"
	DeviceReportedStatusStarting          DeviceReportedStatus = "STARTING"
	DeviceReportedStatusRunning           DeviceReportedStatus = "RUNNING"
	DeviceReportedStatusInstallError      DeviceReportedStatus = "INSTALL_ERROR"
	DeviceReportedStatusLaunched          DeviceReportedStatus = "LAUNCHED"
	DeviceReportedStatusLaunchError       DeviceReportedStatus = "LAUNCH_ERROR"
	DeviceReportedStatusInstallInProgress DeviceReportedStatus = "INSTALL_IN_PROGRESS"
)

// Values returns all known values for DeviceReportedStatus. 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 (DeviceReportedStatus) Values() []DeviceReportedStatus {
	return []DeviceReportedStatus{
		"STOPPING",
		"STOPPED",
		"STOP_ERROR",
		"REMOVAL_FAILED",
		"REMOVAL_IN_PROGRESS",
		"STARTING",
		"RUNNING",
		"INSTALL_ERROR",
		"LAUNCHED",
		"LAUNCH_ERROR",
		"INSTALL_IN_PROGRESS",
	}
}

type DeviceStatus string

// Enum values for DeviceStatus
const (
	DeviceStatusAwaitingProvisioning DeviceStatus = "AWAITING_PROVISIONING"
	DeviceStatusPending              DeviceStatus = "PENDING"
	DeviceStatusSucceeded            DeviceStatus = "SUCCEEDED"
	DeviceStatusFailed               DeviceStatus = "FAILED"
	DeviceStatusError                DeviceStatus = "ERROR"
	DeviceStatusDeleting             DeviceStatus = "DELETING"
)

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

type DeviceType string

// Enum values for DeviceType
const (
	DeviceTypePanoramaApplianceDeveloperKit DeviceType = "PANORAMA_APPLIANCE_DEVELOPER_KIT"
	DeviceTypePanoramaAppliance             DeviceType = "PANORAMA_APPLIANCE"
)

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

type JobResourceType string

// Enum values for JobResourceType
const (
	JobResourceTypePackage JobResourceType = "PACKAGE"
)

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

type JobType string

// Enum values for JobType
const (
	JobTypeOta    JobType = "OTA"
	JobTypeReboot JobType = "REBOOT"
)

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

type ListDevicesSortBy string

// Enum values for ListDevicesSortBy
const (
	ListDevicesSortByDeviceId               ListDevicesSortBy = "DEVICE_ID"
	ListDevicesSortByCreatedTime            ListDevicesSortBy = "CREATED_TIME"
	ListDevicesSortByName                   ListDevicesSortBy = "NAME"
	ListDevicesSortByDeviceAggregatedStatus ListDevicesSortBy = "DEVICE_AGGREGATED_STATUS"
)

// Values returns all known values for ListDevicesSortBy. 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 (ListDevicesSortBy) Values() []ListDevicesSortBy {
	return []ListDevicesSortBy{
		"DEVICE_ID",
		"CREATED_TIME",
		"NAME",
		"DEVICE_AGGREGATED_STATUS",
	}
}

type NetworkConnectionStatus string

// Enum values for NetworkConnectionStatus
const (
	NetworkConnectionStatusConnected    NetworkConnectionStatus = "CONNECTED"
	NetworkConnectionStatusNotConnected NetworkConnectionStatus = "NOT_CONNECTED"
	NetworkConnectionStatusConnecting   NetworkConnectionStatus = "CONNECTING"
)

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

type NodeCategory string

// Enum values for NodeCategory
const (
	NodeCategoryBusinessLogic NodeCategory = "BUSINESS_LOGIC"
	NodeCategoryMlModel       NodeCategory = "ML_MODEL"
	NodeCategoryMediaSource   NodeCategory = "MEDIA_SOURCE"
	NodeCategoryMediaSink     NodeCategory = "MEDIA_SINK"
)

// Values returns all known values for NodeCategory. 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 (NodeCategory) Values() []NodeCategory {
	return []NodeCategory{
		"BUSINESS_LOGIC",
		"ML_MODEL",
		"MEDIA_SOURCE",
		"MEDIA_SINK",
	}
}

type NodeFromTemplateJobStatus string

// Enum values for NodeFromTemplateJobStatus
const (
	NodeFromTemplateJobStatusPending   NodeFromTemplateJobStatus = "PENDING"
	NodeFromTemplateJobStatusSucceeded NodeFromTemplateJobStatus = "SUCCEEDED"
	NodeFromTemplateJobStatusFailed    NodeFromTemplateJobStatus = "FAILED"
)

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

type NodeInstanceStatus string

// Enum values for NodeInstanceStatus
const (
	NodeInstanceStatusRunning      NodeInstanceStatus = "RUNNING"
	NodeInstanceStatusError        NodeInstanceStatus = "ERROR"
	NodeInstanceStatusNotAvailable NodeInstanceStatus = "NOT_AVAILABLE"
	NodeInstanceStatusPaused       NodeInstanceStatus = "PAUSED"
)

// Values returns all known values for NodeInstanceStatus. 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 (NodeInstanceStatus) Values() []NodeInstanceStatus {
	return []NodeInstanceStatus{
		"RUNNING",
		"ERROR",
		"NOT_AVAILABLE",
		"PAUSED",
	}
}

type NodeSignalValue string

// Enum values for NodeSignalValue
const (
	NodeSignalValuePause  NodeSignalValue = "PAUSE"
	NodeSignalValueResume NodeSignalValue = "RESUME"
)

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

type PackageImportJobStatus string

// Enum values for PackageImportJobStatus
const (
	PackageImportJobStatusPending   PackageImportJobStatus = "PENDING"
	PackageImportJobStatusSucceeded PackageImportJobStatus = "SUCCEEDED"
	PackageImportJobStatusFailed    PackageImportJobStatus = "FAILED"
)

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

type PackageImportJobType string

// Enum values for PackageImportJobType
const (
	PackageImportJobTypeNodePackageVersion            PackageImportJobType = "NODE_PACKAGE_VERSION"
	PackageImportJobTypeMarketplaceNodePackageVersion PackageImportJobType = "MARKETPLACE_NODE_PACKAGE_VERSION"
)

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

type PackageVersionStatus string

// Enum values for PackageVersionStatus
const (
	PackageVersionStatusRegisterPending   PackageVersionStatus = "REGISTER_PENDING"
	PackageVersionStatusRegisterCompleted PackageVersionStatus = "REGISTER_COMPLETED"
	PackageVersionStatusFailed            PackageVersionStatus = "FAILED"
	PackageVersionStatusDeleting          PackageVersionStatus = "DELETING"
)

// Values returns all known values for PackageVersionStatus. 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 (PackageVersionStatus) Values() []PackageVersionStatus {
	return []PackageVersionStatus{
		"REGISTER_PENDING",
		"REGISTER_COMPLETED",
		"FAILED",
		"DELETING",
	}
}

type PortType string

// Enum values for PortType
const (
	PortTypeBoolean PortType = "BOOLEAN"
	PortTypeString  PortType = "STRING"
	PortTypeInt32   PortType = "INT32"
	PortTypeFloat32 PortType = "FLOAT32"
	PortTypeMedia   PortType = "MEDIA"
)

// Values returns all known values for PortType. 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 (PortType) Values() []PortType {
	return []PortType{
		"BOOLEAN",
		"STRING",
		"INT32",
		"FLOAT32",
		"MEDIA",
	}
}

type SortOrder string

// Enum values for SortOrder
const (
	SortOrderAscending  SortOrder = "ASCENDING"
	SortOrderDescending SortOrder = "DESCENDING"
)

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

type StatusFilter string

// Enum values for StatusFilter
const (
	StatusFilterDeploymentSucceeded  StatusFilter = "DEPLOYMENT_SUCCEEDED"
	StatusFilterDeploymentError      StatusFilter = "DEPLOYMENT_ERROR"
	StatusFilterRemovalSucceeded     StatusFilter = "REMOVAL_SUCCEEDED"
	StatusFilterRemovalFailed        StatusFilter = "REMOVAL_FAILED"
	StatusFilterProcessingDeployment StatusFilter = "PROCESSING_DEPLOYMENT"
	StatusFilterProcessingRemoval    StatusFilter = "PROCESSING_REMOVAL"
	StatusFilterDeploymentFailed     StatusFilter = "DEPLOYMENT_FAILED"
)

// Values returns all known values for StatusFilter. 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 (StatusFilter) Values() []StatusFilter {
	return []StatusFilter{
		"DEPLOYMENT_SUCCEEDED",
		"DEPLOYMENT_ERROR",
		"REMOVAL_SUCCEEDED",
		"REMOVAL_FAILED",
		"PROCESSING_DEPLOYMENT",
		"PROCESSING_REMOVAL",
		"DEPLOYMENT_FAILED",
	}
}

type TemplateType string

// Enum values for TemplateType
const (
	TemplateTypeRtspCameraStream TemplateType = "RTSP_CAMERA_STREAM"
)

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

type UpdateProgress string

// Enum values for UpdateProgress
const (
	UpdateProgressPending     UpdateProgress = "PENDING"
	UpdateProgressInProgress  UpdateProgress = "IN_PROGRESS"
	UpdateProgressVerifying   UpdateProgress = "VERIFYING"
	UpdateProgressRebooting   UpdateProgress = "REBOOTING"
	UpdateProgressDownloading UpdateProgress = "DOWNLOADING"
	UpdateProgressCompleted   UpdateProgress = "COMPLETED"
	UpdateProgressFailed      UpdateProgress = "FAILED"
)

// Values returns all known values for UpdateProgress. 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 (UpdateProgress) Values() []UpdateProgress {
	return []UpdateProgress{
		"PENDING",
		"IN_PROGRESS",
		"VERIFYING",
		"REBOOTING",
		"DOWNLOADING",
		"COMPLETED",
		"FAILED",
	}
}

type ValidationExceptionReason string

// Enum values for ValidationExceptionReason
const (
	ValidationExceptionReasonUnknownOperation      ValidationExceptionReason = "UNKNOWN_OPERATION"
	ValidationExceptionReasonCannotParse           ValidationExceptionReason = "CANNOT_PARSE"
	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{
		"UNKNOWN_OPERATION",
		"CANNOT_PARSE",
		"FIELD_VALIDATION_FAILED",
		"OTHER",
	}
}