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 (936 lines) | stat: -rw-r--r-- 29,715 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
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
// Code generated by smithy-go-codegen DO NOT EDIT.

package types

type ActionPayloadFieldType string

// Enum values for ActionPayloadFieldType
const (
	ActionPayloadFieldTypeString  ActionPayloadFieldType = "STRING"
	ActionPayloadFieldTypeNumber  ActionPayloadFieldType = "NUMBER"
	ActionPayloadFieldTypeArray   ActionPayloadFieldType = "ARRAY"
	ActionPayloadFieldTypeBoolean ActionPayloadFieldType = "BOOLEAN"
)

// Values returns all known values for ActionPayloadFieldType. 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 (ActionPayloadFieldType) Values() []ActionPayloadFieldType {
	return []ActionPayloadFieldType{
		"STRING",
		"NUMBER",
		"ARRAY",
		"BOOLEAN",
	}
}

type APISchemaType string

// Enum values for APISchemaType
const (
	APISchemaTypeOpenApiV3 APISchemaType = "OPEN_API_V3"
)

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

type ApplicationStatus string

// Enum values for ApplicationStatus
const (
	ApplicationStatusCreating ApplicationStatus = "CREATING"
	ApplicationStatusActive   ApplicationStatus = "ACTIVE"
	ApplicationStatusDeleting ApplicationStatus = "DELETING"
	ApplicationStatusFailed   ApplicationStatus = "FAILED"
	ApplicationStatusUpdating ApplicationStatus = "UPDATING"
)

// Values returns all known values for ApplicationStatus. 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 (ApplicationStatus) Values() []ApplicationStatus {
	return []ApplicationStatus{
		"CREATING",
		"ACTIVE",
		"DELETING",
		"FAILED",
		"UPDATING",
	}
}

type AttachmentsControlMode string

// Enum values for AttachmentsControlMode
const (
	AttachmentsControlModeEnabled  AttachmentsControlMode = "ENABLED"
	AttachmentsControlModeDisabled AttachmentsControlMode = "DISABLED"
)

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

type AttachmentStatus string

// Enum values for AttachmentStatus
const (
	AttachmentStatusFailed    AttachmentStatus = "FAILED"
	AttachmentStatusSucceeded AttachmentStatus = "SUCCEEDED"
)

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

type AttributeType string

// Enum values for AttributeType
const (
	AttributeTypeString     AttributeType = "STRING"
	AttributeTypeStringList AttributeType = "STRING_LIST"
	AttributeTypeNumber     AttributeType = "NUMBER"
	AttributeTypeDate       AttributeType = "DATE"
)

// Values returns all known values for AttributeType. 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 (AttributeType) Values() []AttributeType {
	return []AttributeType{
		"STRING",
		"STRING_LIST",
		"NUMBER",
		"DATE",
	}
}

type AttributeValueOperator string

// Enum values for AttributeValueOperator
const (
	AttributeValueOperatorDelete AttributeValueOperator = "DELETE"
)

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

type ChatMode string

// Enum values for ChatMode
const (
	ChatModeRetrievalMode ChatMode = "RETRIEVAL_MODE"
	ChatModeCreatorMode   ChatMode = "CREATOR_MODE"
	ChatModePluginMode    ChatMode = "PLUGIN_MODE"
)

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

type ContentType string

// Enum values for ContentType
const (
	ContentTypePdf       ContentType = "PDF"
	ContentTypeHtml      ContentType = "HTML"
	ContentTypeMsWord    ContentType = "MS_WORD"
	ContentTypePlainText ContentType = "PLAIN_TEXT"
	ContentTypePpt       ContentType = "PPT"
	ContentTypeRtf       ContentType = "RTF"
	ContentTypeXml       ContentType = "XML"
	ContentTypeXslt      ContentType = "XSLT"
	ContentTypeMsExcel   ContentType = "MS_EXCEL"
	ContentTypeCsv       ContentType = "CSV"
	ContentTypeJson      ContentType = "JSON"
	ContentTypeMd        ContentType = "MD"
)

// Values returns all known values for ContentType. 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 (ContentType) Values() []ContentType {
	return []ContentType{
		"PDF",
		"HTML",
		"MS_WORD",
		"PLAIN_TEXT",
		"PPT",
		"RTF",
		"XML",
		"XSLT",
		"MS_EXCEL",
		"CSV",
		"JSON",
		"MD",
	}
}

type CreatorModeControl string

// Enum values for CreatorModeControl
const (
	CreatorModeControlEnabled  CreatorModeControl = "ENABLED"
	CreatorModeControlDisabled CreatorModeControl = "DISABLED"
)

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

type DataSourceStatus string

// Enum values for DataSourceStatus
const (
	DataSourceStatusPendingCreation DataSourceStatus = "PENDING_CREATION"
	DataSourceStatusCreating        DataSourceStatus = "CREATING"
	DataSourceStatusActive          DataSourceStatus = "ACTIVE"
	DataSourceStatusDeleting        DataSourceStatus = "DELETING"
	DataSourceStatusFailed          DataSourceStatus = "FAILED"
	DataSourceStatusUpdating        DataSourceStatus = "UPDATING"
)

// Values returns all known values for DataSourceStatus. 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 (DataSourceStatus) Values() []DataSourceStatus {
	return []DataSourceStatus{
		"PENDING_CREATION",
		"CREATING",
		"ACTIVE",
		"DELETING",
		"FAILED",
		"UPDATING",
	}
}

type DataSourceSyncJobStatus string

// Enum values for DataSourceSyncJobStatus
const (
	DataSourceSyncJobStatusFailed          DataSourceSyncJobStatus = "FAILED"
	DataSourceSyncJobStatusSucceeded       DataSourceSyncJobStatus = "SUCCEEDED"
	DataSourceSyncJobStatusSyncing         DataSourceSyncJobStatus = "SYNCING"
	DataSourceSyncJobStatusIncomplete      DataSourceSyncJobStatus = "INCOMPLETE"
	DataSourceSyncJobStatusStopping        DataSourceSyncJobStatus = "STOPPING"
	DataSourceSyncJobStatusAborted         DataSourceSyncJobStatus = "ABORTED"
	DataSourceSyncJobStatusSyncingIndexing DataSourceSyncJobStatus = "SYNCING_INDEXING"
)

// Values returns all known values for DataSourceSyncJobStatus. 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 (DataSourceSyncJobStatus) Values() []DataSourceSyncJobStatus {
	return []DataSourceSyncJobStatus{
		"FAILED",
		"SUCCEEDED",
		"SYNCING",
		"INCOMPLETE",
		"STOPPING",
		"ABORTED",
		"SYNCING_INDEXING",
	}
}

type DocumentAttributeBoostingLevel string

// Enum values for DocumentAttributeBoostingLevel
const (
	DocumentAttributeBoostingLevelNone     DocumentAttributeBoostingLevel = "NONE"
	DocumentAttributeBoostingLevelLow      DocumentAttributeBoostingLevel = "LOW"
	DocumentAttributeBoostingLevelMedium   DocumentAttributeBoostingLevel = "MEDIUM"
	DocumentAttributeBoostingLevelHigh     DocumentAttributeBoostingLevel = "HIGH"
	DocumentAttributeBoostingLevelVeryHigh DocumentAttributeBoostingLevel = "VERY_HIGH"
)

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

type DocumentContentOperator string

// Enum values for DocumentContentOperator
const (
	DocumentContentOperatorDelete DocumentContentOperator = "DELETE"
)

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

type DocumentEnrichmentConditionOperator string

// Enum values for DocumentEnrichmentConditionOperator
const (
	DocumentEnrichmentConditionOperatorGreaterThan         DocumentEnrichmentConditionOperator = "GREATER_THAN"
	DocumentEnrichmentConditionOperatorGreaterThanOrEquals DocumentEnrichmentConditionOperator = "GREATER_THAN_OR_EQUALS"
	DocumentEnrichmentConditionOperatorLessThan            DocumentEnrichmentConditionOperator = "LESS_THAN"
	DocumentEnrichmentConditionOperatorLessThanOrEquals    DocumentEnrichmentConditionOperator = "LESS_THAN_OR_EQUALS"
	DocumentEnrichmentConditionOperatorEquals              DocumentEnrichmentConditionOperator = "EQUALS"
	DocumentEnrichmentConditionOperatorNotEquals           DocumentEnrichmentConditionOperator = "NOT_EQUALS"
	DocumentEnrichmentConditionOperatorContains            DocumentEnrichmentConditionOperator = "CONTAINS"
	DocumentEnrichmentConditionOperatorNotContains         DocumentEnrichmentConditionOperator = "NOT_CONTAINS"
	DocumentEnrichmentConditionOperatorExists              DocumentEnrichmentConditionOperator = "EXISTS"
	DocumentEnrichmentConditionOperatorNotExists           DocumentEnrichmentConditionOperator = "NOT_EXISTS"
	DocumentEnrichmentConditionOperatorBeginsWith          DocumentEnrichmentConditionOperator = "BEGINS_WITH"
)

// Values returns all known values for DocumentEnrichmentConditionOperator. 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 (DocumentEnrichmentConditionOperator) Values() []DocumentEnrichmentConditionOperator {
	return []DocumentEnrichmentConditionOperator{
		"GREATER_THAN",
		"GREATER_THAN_OR_EQUALS",
		"LESS_THAN",
		"LESS_THAN_OR_EQUALS",
		"EQUALS",
		"NOT_EQUALS",
		"CONTAINS",
		"NOT_CONTAINS",
		"EXISTS",
		"NOT_EXISTS",
		"BEGINS_WITH",
	}
}

type DocumentStatus string

// Enum values for DocumentStatus
const (
	DocumentStatusReceived              DocumentStatus = "RECEIVED"
	DocumentStatusProcessing            DocumentStatus = "PROCESSING"
	DocumentStatusIndexed               DocumentStatus = "INDEXED"
	DocumentStatusUpdated               DocumentStatus = "UPDATED"
	DocumentStatusFailed                DocumentStatus = "FAILED"
	DocumentStatusDeleting              DocumentStatus = "DELETING"
	DocumentStatusDeleted               DocumentStatus = "DELETED"
	DocumentStatusDocumentFailedToIndex DocumentStatus = "DOCUMENT_FAILED_TO_INDEX"
)

// Values returns all known values for DocumentStatus. 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 (DocumentStatus) Values() []DocumentStatus {
	return []DocumentStatus{
		"RECEIVED",
		"PROCESSING",
		"INDEXED",
		"UPDATED",
		"FAILED",
		"DELETING",
		"DELETED",
		"DOCUMENT_FAILED_TO_INDEX",
	}
}

type ErrorCode string

// Enum values for ErrorCode
const (
	ErrorCodeInternalError    ErrorCode = "InternalError"
	ErrorCodeInvalidRequest   ErrorCode = "InvalidRequest"
	ErrorCodeResourceInactive ErrorCode = "ResourceInactive"
	ErrorCodeResourceNotFound ErrorCode = "ResourceNotFound"
)

// Values returns all known values for ErrorCode. 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 (ErrorCode) Values() []ErrorCode {
	return []ErrorCode{
		"InternalError",
		"InvalidRequest",
		"ResourceInactive",
		"ResourceNotFound",
	}
}

type GroupStatus string

// Enum values for GroupStatus
const (
	GroupStatusFailed     GroupStatus = "FAILED"
	GroupStatusSucceeded  GroupStatus = "SUCCEEDED"
	GroupStatusProcessing GroupStatus = "PROCESSING"
	GroupStatusDeleting   GroupStatus = "DELETING"
	GroupStatusDeleted    GroupStatus = "DELETED"
)

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

type IndexStatus string

// Enum values for IndexStatus
const (
	IndexStatusCreating IndexStatus = "CREATING"
	IndexStatusActive   IndexStatus = "ACTIVE"
	IndexStatusDeleting IndexStatus = "DELETING"
	IndexStatusFailed   IndexStatus = "FAILED"
	IndexStatusUpdating IndexStatus = "UPDATING"
)

// Values returns all known values for IndexStatus. 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 (IndexStatus) Values() []IndexStatus {
	return []IndexStatus{
		"CREATING",
		"ACTIVE",
		"DELETING",
		"FAILED",
		"UPDATING",
	}
}

type IndexType string

// Enum values for IndexType
const (
	IndexTypeEnterprise IndexType = "ENTERPRISE"
	IndexTypeStarter    IndexType = "STARTER"
)

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

type MemberRelation string

// Enum values for MemberRelation
const (
	MemberRelationAnd MemberRelation = "AND"
	MemberRelationOr  MemberRelation = "OR"
)

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

type MembershipType string

// Enum values for MembershipType
const (
	MembershipTypeIndex      MembershipType = "INDEX"
	MembershipTypeDatasource MembershipType = "DATASOURCE"
)

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

type MessageType string

// Enum values for MessageType
const (
	MessageTypeUser   MessageType = "USER"
	MessageTypeSystem MessageType = "SYSTEM"
)

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

type MessageUsefulness string

// Enum values for MessageUsefulness
const (
	MessageUsefulnessUseful    MessageUsefulness = "USEFUL"
	MessageUsefulnessNotUseful MessageUsefulness = "NOT_USEFUL"
)

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

type MessageUsefulnessReason string

// Enum values for MessageUsefulnessReason
const (
	MessageUsefulnessReasonNotFactuallyCorrect       MessageUsefulnessReason = "NOT_FACTUALLY_CORRECT"
	MessageUsefulnessReasonHarmfulOrUnsafe           MessageUsefulnessReason = "HARMFUL_OR_UNSAFE"
	MessageUsefulnessReasonIncorrectOrMissingSources MessageUsefulnessReason = "INCORRECT_OR_MISSING_SOURCES"
	MessageUsefulnessReasonNotHelpful                MessageUsefulnessReason = "NOT_HELPFUL"
	MessageUsefulnessReasonFactuallyCorrect          MessageUsefulnessReason = "FACTUALLY_CORRECT"
	MessageUsefulnessReasonComplete                  MessageUsefulnessReason = "COMPLETE"
	MessageUsefulnessReasonRelevantSources           MessageUsefulnessReason = "RELEVANT_SOURCES"
	MessageUsefulnessReasonHelpful                   MessageUsefulnessReason = "HELPFUL"
	MessageUsefulnessReasonNotBasedOnDocuments       MessageUsefulnessReason = "NOT_BASED_ON_DOCUMENTS"
	MessageUsefulnessReasonNotComplete               MessageUsefulnessReason = "NOT_COMPLETE"
	MessageUsefulnessReasonNotConcise                MessageUsefulnessReason = "NOT_CONCISE"
	MessageUsefulnessReasonOther                     MessageUsefulnessReason = "OTHER"
)

// Values returns all known values for MessageUsefulnessReason. 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 (MessageUsefulnessReason) Values() []MessageUsefulnessReason {
	return []MessageUsefulnessReason{
		"NOT_FACTUALLY_CORRECT",
		"HARMFUL_OR_UNSAFE",
		"INCORRECT_OR_MISSING_SOURCES",
		"NOT_HELPFUL",
		"FACTUALLY_CORRECT",
		"COMPLETE",
		"RELEVANT_SOURCES",
		"HELPFUL",
		"NOT_BASED_ON_DOCUMENTS",
		"NOT_COMPLETE",
		"NOT_CONCISE",
		"OTHER",
	}
}

type NumberAttributeBoostingType string

// Enum values for NumberAttributeBoostingType
const (
	NumberAttributeBoostingTypePrioritizeLargerValues  NumberAttributeBoostingType = "PRIORITIZE_LARGER_VALUES"
	NumberAttributeBoostingTypePrioritizeSmallerValues NumberAttributeBoostingType = "PRIORITIZE_SMALLER_VALUES"
)

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

type PersonalizationControlMode string

// Enum values for PersonalizationControlMode
const (
	PersonalizationControlModeEnabled  PersonalizationControlMode = "ENABLED"
	PersonalizationControlModeDisabled PersonalizationControlMode = "DISABLED"
)

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

type PluginBuildStatus string

// Enum values for PluginBuildStatus
const (
	PluginBuildStatusReady            PluginBuildStatus = "READY"
	PluginBuildStatusCreateInProgress PluginBuildStatus = "CREATE_IN_PROGRESS"
	PluginBuildStatusCreateFailed     PluginBuildStatus = "CREATE_FAILED"
	PluginBuildStatusUpdateInProgress PluginBuildStatus = "UPDATE_IN_PROGRESS"
	PluginBuildStatusUpdateFailed     PluginBuildStatus = "UPDATE_FAILED"
	PluginBuildStatusDeleteInProgress PluginBuildStatus = "DELETE_IN_PROGRESS"
	PluginBuildStatusDeleteFailed     PluginBuildStatus = "DELETE_FAILED"
)

// Values returns all known values for PluginBuildStatus. 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 (PluginBuildStatus) Values() []PluginBuildStatus {
	return []PluginBuildStatus{
		"READY",
		"CREATE_IN_PROGRESS",
		"CREATE_FAILED",
		"UPDATE_IN_PROGRESS",
		"UPDATE_FAILED",
		"DELETE_IN_PROGRESS",
		"DELETE_FAILED",
	}
}

type PluginState string

// Enum values for PluginState
const (
	PluginStateEnabled  PluginState = "ENABLED"
	PluginStateDisabled PluginState = "DISABLED"
)

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

type PluginType string

// Enum values for PluginType
const (
	PluginTypeServiceNow PluginType = "SERVICE_NOW"
	PluginTypeSalesforce PluginType = "SALESFORCE"
	PluginTypeJira       PluginType = "JIRA"
	PluginTypeZendesk    PluginType = "ZENDESK"
	PluginTypeCustom     PluginType = "CUSTOM"
)

// Values returns all known values for PluginType. 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 (PluginType) Values() []PluginType {
	return []PluginType{
		"SERVICE_NOW",
		"SALESFORCE",
		"JIRA",
		"ZENDESK",
		"CUSTOM",
	}
}

type QAppsControlMode string

// Enum values for QAppsControlMode
const (
	QAppsControlModeEnabled  QAppsControlMode = "ENABLED"
	QAppsControlModeDisabled QAppsControlMode = "DISABLED"
)

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

type ReadAccessType string

// Enum values for ReadAccessType
const (
	ReadAccessTypeAllow ReadAccessType = "ALLOW"
	ReadAccessTypeDeny  ReadAccessType = "DENY"
)

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

type ResponseScope string

// Enum values for ResponseScope
const (
	ResponseScopeEnterpriseContentOnly    ResponseScope = "ENTERPRISE_CONTENT_ONLY"
	ResponseScopeExtendedKnowledgeEnabled ResponseScope = "EXTENDED_KNOWLEDGE_ENABLED"
)

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

type RetrieverStatus string

// Enum values for RetrieverStatus
const (
	RetrieverStatusCreating RetrieverStatus = "CREATING"
	RetrieverStatusActive   RetrieverStatus = "ACTIVE"
	RetrieverStatusFailed   RetrieverStatus = "FAILED"
)

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

type RetrieverType string

// Enum values for RetrieverType
const (
	RetrieverTypeNativeIndex RetrieverType = "NATIVE_INDEX"
	RetrieverTypeKendraIndex RetrieverType = "KENDRA_INDEX"
)

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

type RuleType string

// Enum values for RuleType
const (
	RuleTypeContentBlockerRule   RuleType = "CONTENT_BLOCKER_RULE"
	RuleTypeContentRetrievalRule RuleType = "CONTENT_RETRIEVAL_RULE"
)

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

type Status string

// Enum values for Status
const (
	StatusEnabled  Status = "ENABLED"
	StatusDisabled Status = "DISABLED"
)

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

type StringAttributeValueBoostingLevel string

// Enum values for StringAttributeValueBoostingLevel
const (
	StringAttributeValueBoostingLevelLow      StringAttributeValueBoostingLevel = "LOW"
	StringAttributeValueBoostingLevelMedium   StringAttributeValueBoostingLevel = "MEDIUM"
	StringAttributeValueBoostingLevelHigh     StringAttributeValueBoostingLevel = "HIGH"
	StringAttributeValueBoostingLevelVeryHigh StringAttributeValueBoostingLevel = "VERY_HIGH"
)

// Values returns all known values for StringAttributeValueBoostingLevel. 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 (StringAttributeValueBoostingLevel) Values() []StringAttributeValueBoostingLevel {
	return []StringAttributeValueBoostingLevel{
		"LOW",
		"MEDIUM",
		"HIGH",
		"VERY_HIGH",
	}
}

type ValidationExceptionReason string

// Enum values for ValidationExceptionReason
const (
	ValidationExceptionReasonCannotParse           ValidationExceptionReason = "CANNOT_PARSE"
	ValidationExceptionReasonFieldValidationFailed ValidationExceptionReason = "FIELD_VALIDATION_FAILED"
	ValidationExceptionReasonUnknownOperation      ValidationExceptionReason = "UNKNOWN_OPERATION"
)

// 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{
		"CANNOT_PARSE",
		"FIELD_VALIDATION_FAILED",
		"UNKNOWN_OPERATION",
	}
}

type WebExperienceSamplePromptsControlMode string

// Enum values for WebExperienceSamplePromptsControlMode
const (
	WebExperienceSamplePromptsControlModeEnabled  WebExperienceSamplePromptsControlMode = "ENABLED"
	WebExperienceSamplePromptsControlModeDisabled WebExperienceSamplePromptsControlMode = "DISABLED"
)

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

type WebExperienceStatus string

// Enum values for WebExperienceStatus
const (
	WebExperienceStatusCreating          WebExperienceStatus = "CREATING"
	WebExperienceStatusActive            WebExperienceStatus = "ACTIVE"
	WebExperienceStatusDeleting          WebExperienceStatus = "DELETING"
	WebExperienceStatusFailed            WebExperienceStatus = "FAILED"
	WebExperienceStatusPendingAuthConfig WebExperienceStatus = "PENDING_AUTH_CONFIG"
)

// Values returns all known values for WebExperienceStatus. 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 (WebExperienceStatus) Values() []WebExperienceStatus {
	return []WebExperienceStatus{
		"CREATING",
		"ACTIVE",
		"DELETING",
		"FAILED",
		"PENDING_AUTH_CONFIG",
	}
}