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 (682 lines) | stat: -rw-r--r-- 21,574 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
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
// Code generated by smithy-go-codegen DO NOT EDIT.

package types

type AdditionalResourceType string

// Enum values for AdditionalResourceType
const (
	AdditionalResourceTypeHelpfulResource AdditionalResourceType = "HELPFUL_RESOURCE"
	AdditionalResourceTypeImprovementPlan AdditionalResourceType = "IMPROVEMENT_PLAN"
)

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

type AnswerReason string

// Enum values for AnswerReason
const (
	AnswerReasonOutOfScope              AnswerReason = "OUT_OF_SCOPE"
	AnswerReasonBusinessPriorities      AnswerReason = "BUSINESS_PRIORITIES"
	AnswerReasonArchitectureConstraints AnswerReason = "ARCHITECTURE_CONSTRAINTS"
	AnswerReasonOther                   AnswerReason = "OTHER"
	AnswerReasonNone                    AnswerReason = "NONE"
)

// Values returns all known values for AnswerReason. 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 (AnswerReason) Values() []AnswerReason {
	return []AnswerReason{
		"OUT_OF_SCOPE",
		"BUSINESS_PRIORITIES",
		"ARCHITECTURE_CONSTRAINTS",
		"OTHER",
		"NONE",
	}
}

type CheckFailureReason string

// Enum values for CheckFailureReason
const (
	CheckFailureReasonAssumeRoleError        CheckFailureReason = "ASSUME_ROLE_ERROR"
	CheckFailureReasonAccessDenied           CheckFailureReason = "ACCESS_DENIED"
	CheckFailureReasonUnknownError           CheckFailureReason = "UNKNOWN_ERROR"
	CheckFailureReasonPremiumSupportRequired CheckFailureReason = "PREMIUM_SUPPORT_REQUIRED"
)

// Values returns all known values for CheckFailureReason. 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 (CheckFailureReason) Values() []CheckFailureReason {
	return []CheckFailureReason{
		"ASSUME_ROLE_ERROR",
		"ACCESS_DENIED",
		"UNKNOWN_ERROR",
		"PREMIUM_SUPPORT_REQUIRED",
	}
}

type CheckProvider string

// Enum values for CheckProvider
const (
	CheckProviderTrustedAdvisor CheckProvider = "TRUSTED_ADVISOR"
)

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

type CheckStatus string

// Enum values for CheckStatus
const (
	CheckStatusOkay         CheckStatus = "OKAY"
	CheckStatusWarning      CheckStatus = "WARNING"
	CheckStatusError        CheckStatus = "ERROR"
	CheckStatusNotAvailable CheckStatus = "NOT_AVAILABLE"
	CheckStatusFetchFailed  CheckStatus = "FETCH_FAILED"
)

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

type ChoiceReason string

// Enum values for ChoiceReason
const (
	ChoiceReasonOutOfScope              ChoiceReason = "OUT_OF_SCOPE"
	ChoiceReasonBusinessPriorities      ChoiceReason = "BUSINESS_PRIORITIES"
	ChoiceReasonArchitectureConstraints ChoiceReason = "ARCHITECTURE_CONSTRAINTS"
	ChoiceReasonOther                   ChoiceReason = "OTHER"
	ChoiceReasonNone                    ChoiceReason = "NONE"
)

// Values returns all known values for ChoiceReason. 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 (ChoiceReason) Values() []ChoiceReason {
	return []ChoiceReason{
		"OUT_OF_SCOPE",
		"BUSINESS_PRIORITIES",
		"ARCHITECTURE_CONSTRAINTS",
		"OTHER",
		"NONE",
	}
}

type ChoiceStatus string

// Enum values for ChoiceStatus
const (
	ChoiceStatusSelected      ChoiceStatus = "SELECTED"
	ChoiceStatusNotApplicable ChoiceStatus = "NOT_APPLICABLE"
	ChoiceStatusUnselected    ChoiceStatus = "UNSELECTED"
)

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

type DefinitionType string

// Enum values for DefinitionType
const (
	DefinitionTypeWorkloadMetadata DefinitionType = "WORKLOAD_METADATA"
	DefinitionTypeAppRegistry      DefinitionType = "APP_REGISTRY"
)

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

type DifferenceStatus string

// Enum values for DifferenceStatus
const (
	DifferenceStatusUpdated DifferenceStatus = "UPDATED"
	DifferenceStatusNew     DifferenceStatus = "NEW"
	DifferenceStatusDeleted DifferenceStatus = "DELETED"
)

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

type DiscoveryIntegrationStatus string

// Enum values for DiscoveryIntegrationStatus
const (
	DiscoveryIntegrationStatusEnabled  DiscoveryIntegrationStatus = "ENABLED"
	DiscoveryIntegrationStatusDisabled DiscoveryIntegrationStatus = "DISABLED"
)

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

type ImportLensStatus string

// Enum values for ImportLensStatus
const (
	ImportLensStatusInProgress ImportLensStatus = "IN_PROGRESS"
	ImportLensStatusComplete   ImportLensStatus = "COMPLETE"
	ImportLensStatusError      ImportLensStatus = "ERROR"
)

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

type LensStatus string

// Enum values for LensStatus
const (
	LensStatusCurrent    LensStatus = "CURRENT"
	LensStatusNotCurrent LensStatus = "NOT_CURRENT"
	LensStatusDeprecated LensStatus = "DEPRECATED"
	LensStatusDeleted    LensStatus = "DELETED"
	LensStatusUnshared   LensStatus = "UNSHARED"
)

// Values returns all known values for LensStatus. 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 (LensStatus) Values() []LensStatus {
	return []LensStatus{
		"CURRENT",
		"NOT_CURRENT",
		"DEPRECATED",
		"DELETED",
		"UNSHARED",
	}
}

type LensStatusType string

// Enum values for LensStatusType
const (
	LensStatusTypeAll       LensStatusType = "ALL"
	LensStatusTypeDraft     LensStatusType = "DRAFT"
	LensStatusTypePublished LensStatusType = "PUBLISHED"
)

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

type LensType string

// Enum values for LensType
const (
	LensTypeAwsOfficial  LensType = "AWS_OFFICIAL"
	LensTypeCustomShared LensType = "CUSTOM_SHARED"
	LensTypeCustomSelf   LensType = "CUSTOM_SELF"
)

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

type MetricType string

// Enum values for MetricType
const (
	MetricTypeWorkload MetricType = "WORKLOAD"
)

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

type NotificationType string

// Enum values for NotificationType
const (
	NotificationTypeLensVersionUpgraded   NotificationType = "LENS_VERSION_UPGRADED"
	NotificationTypeLensVersionDeprecated NotificationType = "LENS_VERSION_DEPRECATED"
)

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

type OrganizationSharingStatus string

// Enum values for OrganizationSharingStatus
const (
	OrganizationSharingStatusEnabled  OrganizationSharingStatus = "ENABLED"
	OrganizationSharingStatusDisabled OrganizationSharingStatus = "DISABLED"
)

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

type PermissionType string

// Enum values for PermissionType
const (
	PermissionTypeReadonly    PermissionType = "READONLY"
	PermissionTypeContributor PermissionType = "CONTRIBUTOR"
)

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

type ProfileNotificationType string

// Enum values for ProfileNotificationType
const (
	ProfileNotificationTypeProfileAnswersUpdated ProfileNotificationType = "PROFILE_ANSWERS_UPDATED"
	ProfileNotificationTypeProfileDeleted        ProfileNotificationType = "PROFILE_DELETED"
)

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

type ProfileOwnerType string

// Enum values for ProfileOwnerType
const (
	ProfileOwnerTypeSelf   ProfileOwnerType = "SELF"
	ProfileOwnerTypeShared ProfileOwnerType = "SHARED"
)

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

type Question string

// Enum values for Question
const (
	QuestionUnanswered Question = "UNANSWERED"
	QuestionAnswered   Question = "ANSWERED"
)

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

type QuestionPriority string

// Enum values for QuestionPriority
const (
	QuestionPriorityPrioritized QuestionPriority = "PRIORITIZED"
	QuestionPriorityNone        QuestionPriority = "NONE"
)

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

type QuestionType string

// Enum values for QuestionType
const (
	QuestionTypePrioritized    QuestionType = "PRIORITIZED"
	QuestionTypeNonPrioritized QuestionType = "NON_PRIORITIZED"
)

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

type ReportFormat string

// Enum values for ReportFormat
const (
	ReportFormatPdf  ReportFormat = "PDF"
	ReportFormatJson ReportFormat = "JSON"
)

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

type ReviewTemplateAnswerStatus string

// Enum values for ReviewTemplateAnswerStatus
const (
	ReviewTemplateAnswerStatusUnanswered ReviewTemplateAnswerStatus = "UNANSWERED"
	ReviewTemplateAnswerStatusAnswered   ReviewTemplateAnswerStatus = "ANSWERED"
)

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

type ReviewTemplateUpdateStatus string

// Enum values for ReviewTemplateUpdateStatus
const (
	ReviewTemplateUpdateStatusCurrent        ReviewTemplateUpdateStatus = "CURRENT"
	ReviewTemplateUpdateStatusLensNotCurrent ReviewTemplateUpdateStatus = "LENS_NOT_CURRENT"
)

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

type Risk string

// Enum values for Risk
const (
	RiskUnanswered    Risk = "UNANSWERED"
	RiskHigh          Risk = "HIGH"
	RiskMedium        Risk = "MEDIUM"
	RiskNone          Risk = "NONE"
	RiskNotApplicable Risk = "NOT_APPLICABLE"
)

// Values returns all known values for Risk. 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 (Risk) Values() []Risk {
	return []Risk{
		"UNANSWERED",
		"HIGH",
		"MEDIUM",
		"NONE",
		"NOT_APPLICABLE",
	}
}

type ShareInvitationAction string

// Enum values for ShareInvitationAction
const (
	ShareInvitationActionAccept ShareInvitationAction = "ACCEPT"
	ShareInvitationActionReject ShareInvitationAction = "REJECT"
)

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

type ShareResourceType string

// Enum values for ShareResourceType
const (
	ShareResourceTypeWorkload ShareResourceType = "WORKLOAD"
	ShareResourceTypeLens     ShareResourceType = "LENS"
	ShareResourceTypeProfile  ShareResourceType = "PROFILE"
	ShareResourceTypeTemplate ShareResourceType = "TEMPLATE"
)

// Values returns all known values for ShareResourceType. 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 (ShareResourceType) Values() []ShareResourceType {
	return []ShareResourceType{
		"WORKLOAD",
		"LENS",
		"PROFILE",
		"TEMPLATE",
	}
}

type ShareStatus string

// Enum values for ShareStatus
const (
	ShareStatusAccepted    ShareStatus = "ACCEPTED"
	ShareStatusRejected    ShareStatus = "REJECTED"
	ShareStatusPending     ShareStatus = "PENDING"
	ShareStatusRevoked     ShareStatus = "REVOKED"
	ShareStatusExpired     ShareStatus = "EXPIRED"
	ShareStatusAssociating ShareStatus = "ASSOCIATING"
	ShareStatusAssociated  ShareStatus = "ASSOCIATED"
	ShareStatusFailed      ShareStatus = "FAILED"
)

// Values returns all known values for ShareStatus. 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 (ShareStatus) Values() []ShareStatus {
	return []ShareStatus{
		"ACCEPTED",
		"REJECTED",
		"PENDING",
		"REVOKED",
		"EXPIRED",
		"ASSOCIATING",
		"ASSOCIATED",
		"FAILED",
	}
}

type TrustedAdvisorIntegrationStatus string

// Enum values for TrustedAdvisorIntegrationStatus
const (
	TrustedAdvisorIntegrationStatusEnabled  TrustedAdvisorIntegrationStatus = "ENABLED"
	TrustedAdvisorIntegrationStatusDisabled TrustedAdvisorIntegrationStatus = "DISABLED"
)

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

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",
	}
}

type WorkloadEnvironment string

// Enum values for WorkloadEnvironment
const (
	WorkloadEnvironmentProduction    WorkloadEnvironment = "PRODUCTION"
	WorkloadEnvironmentPreproduction WorkloadEnvironment = "PREPRODUCTION"
)

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

type WorkloadImprovementStatus string

// Enum values for WorkloadImprovementStatus
const (
	WorkloadImprovementStatusNotApplicable    WorkloadImprovementStatus = "NOT_APPLICABLE"
	WorkloadImprovementStatusNotStarted       WorkloadImprovementStatus = "NOT_STARTED"
	WorkloadImprovementStatusInProgress       WorkloadImprovementStatus = "IN_PROGRESS"
	WorkloadImprovementStatusComplete         WorkloadImprovementStatus = "COMPLETE"
	WorkloadImprovementStatusRiskAcknowledged WorkloadImprovementStatus = "RISK_ACKNOWLEDGED"
)

// Values returns all known values for WorkloadImprovementStatus. 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 (WorkloadImprovementStatus) Values() []WorkloadImprovementStatus {
	return []WorkloadImprovementStatus{
		"NOT_APPLICABLE",
		"NOT_STARTED",
		"IN_PROGRESS",
		"COMPLETE",
		"RISK_ACKNOWLEDGED",
	}
}