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 (731 lines) | stat: -rw-r--r-- 24,144 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
// Code generated by smithy-go-codegen DO NOT EDIT.

package types

type AssessmentReportType string

// Enum values for AssessmentReportType
const (
	AssessmentReportTypePdf AssessmentReportType = "pdf"
	AssessmentReportTypeCsv AssessmentReportType = "csv"
)

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

type AuthMechanismValue string

// Enum values for AuthMechanismValue
const (
	AuthMechanismValueDefault   AuthMechanismValue = "default"
	AuthMechanismValueMongodbCr AuthMechanismValue = "mongodb_cr"
	AuthMechanismValueScramSha1 AuthMechanismValue = "scram_sha_1"
)

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

type AuthTypeValue string

// Enum values for AuthTypeValue
const (
	AuthTypeValueNo       AuthTypeValue = "no"
	AuthTypeValuePassword AuthTypeValue = "password"
)

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

type CannedAclForObjectsValue string

// Enum values for CannedAclForObjectsValue
const (
	CannedAclForObjectsValueNone                   CannedAclForObjectsValue = "none"
	CannedAclForObjectsValuePrivate                CannedAclForObjectsValue = "private"
	CannedAclForObjectsValuePublicRead             CannedAclForObjectsValue = "public-read"
	CannedAclForObjectsValuePublicReadWrite        CannedAclForObjectsValue = "public-read-write"
	CannedAclForObjectsValueAuthenticatedRead      CannedAclForObjectsValue = "authenticated-read"
	CannedAclForObjectsValueAwsExecRead            CannedAclForObjectsValue = "aws-exec-read"
	CannedAclForObjectsValueBucketOwnerRead        CannedAclForObjectsValue = "bucket-owner-read"
	CannedAclForObjectsValueBucketOwnerFullControl CannedAclForObjectsValue = "bucket-owner-full-control"
)

// Values returns all known values for CannedAclForObjectsValue. 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 (CannedAclForObjectsValue) Values() []CannedAclForObjectsValue {
	return []CannedAclForObjectsValue{
		"none",
		"private",
		"public-read",
		"public-read-write",
		"authenticated-read",
		"aws-exec-read",
		"bucket-owner-read",
		"bucket-owner-full-control",
	}
}

type CharLengthSemantics string

// Enum values for CharLengthSemantics
const (
	CharLengthSemanticsDefault CharLengthSemantics = "default"
	CharLengthSemanticsChar    CharLengthSemantics = "char"
	CharLengthSemanticsByte    CharLengthSemantics = "byte"
)

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

type CollectorStatus string

// Enum values for CollectorStatus
const (
	CollectorStatusUnregistered CollectorStatus = "UNREGISTERED"
	CollectorStatusActive       CollectorStatus = "ACTIVE"
)

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

type CompressionTypeValue string

// Enum values for CompressionTypeValue
const (
	CompressionTypeValueNone CompressionTypeValue = "none"
	CompressionTypeValueGzip CompressionTypeValue = "gzip"
)

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

type DatabaseMode string

// Enum values for DatabaseMode
const (
	DatabaseModeDefault   DatabaseMode = "default"
	DatabaseModeBabelfish DatabaseMode = "babelfish"
)

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

type DataFormatValue string

// Enum values for DataFormatValue
const (
	DataFormatValueCsv     DataFormatValue = "csv"
	DataFormatValueParquet DataFormatValue = "parquet"
)

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

type DatePartitionDelimiterValue string

// Enum values for DatePartitionDelimiterValue
const (
	DatePartitionDelimiterValueSlash      DatePartitionDelimiterValue = "SLASH"
	DatePartitionDelimiterValueUnderscore DatePartitionDelimiterValue = "UNDERSCORE"
	DatePartitionDelimiterValueDash       DatePartitionDelimiterValue = "DASH"
	DatePartitionDelimiterValueNone       DatePartitionDelimiterValue = "NONE"
)

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

type DatePartitionSequenceValue string

// Enum values for DatePartitionSequenceValue
const (
	DatePartitionSequenceValueYyyymmdd   DatePartitionSequenceValue = "YYYYMMDD"
	DatePartitionSequenceValueYyyymmddhh DatePartitionSequenceValue = "YYYYMMDDHH"
	DatePartitionSequenceValueYyyymm     DatePartitionSequenceValue = "YYYYMM"
	DatePartitionSequenceValueMmyyyydd   DatePartitionSequenceValue = "MMYYYYDD"
	DatePartitionSequenceValueDdmmyyyy   DatePartitionSequenceValue = "DDMMYYYY"
)

// Values returns all known values for DatePartitionSequenceValue. 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 (DatePartitionSequenceValue) Values() []DatePartitionSequenceValue {
	return []DatePartitionSequenceValue{
		"YYYYMMDD",
		"YYYYMMDDHH",
		"YYYYMM",
		"MMYYYYDD",
		"DDMMYYYY",
	}
}

type DmsSslModeValue string

// Enum values for DmsSslModeValue
const (
	DmsSslModeValueNone       DmsSslModeValue = "none"
	DmsSslModeValueRequire    DmsSslModeValue = "require"
	DmsSslModeValueVerifyCa   DmsSslModeValue = "verify-ca"
	DmsSslModeValueVerifyFull DmsSslModeValue = "verify-full"
)

// Values returns all known values for DmsSslModeValue. 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 (DmsSslModeValue) Values() []DmsSslModeValue {
	return []DmsSslModeValue{
		"none",
		"require",
		"verify-ca",
		"verify-full",
	}
}

type EncodingTypeValue string

// Enum values for EncodingTypeValue
const (
	EncodingTypeValuePlain           EncodingTypeValue = "plain"
	EncodingTypeValuePlainDictionary EncodingTypeValue = "plain-dictionary"
	EncodingTypeValueRleDictionary   EncodingTypeValue = "rle-dictionary"
)

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

type EncryptionModeValue string

// Enum values for EncryptionModeValue
const (
	EncryptionModeValueSseS3  EncryptionModeValue = "sse-s3"
	EncryptionModeValueSseKms EncryptionModeValue = "sse-kms"
)

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

type EndpointSettingTypeValue string

// Enum values for EndpointSettingTypeValue
const (
	EndpointSettingTypeValueString  EndpointSettingTypeValue = "string"
	EndpointSettingTypeValueBoolean EndpointSettingTypeValue = "boolean"
	EndpointSettingTypeValueInteger EndpointSettingTypeValue = "integer"
	EndpointSettingTypeValueEnum    EndpointSettingTypeValue = "enum"
)

// Values returns all known values for EndpointSettingTypeValue. 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 (EndpointSettingTypeValue) Values() []EndpointSettingTypeValue {
	return []EndpointSettingTypeValue{
		"string",
		"boolean",
		"integer",
		"enum",
	}
}

type KafkaSaslMechanism string

// Enum values for KafkaSaslMechanism
const (
	KafkaSaslMechanismScramSha512 KafkaSaslMechanism = "scram-sha-512"
	KafkaSaslMechanismPlain       KafkaSaslMechanism = "plain"
)

// Values returns all known values for KafkaSaslMechanism. 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 (KafkaSaslMechanism) Values() []KafkaSaslMechanism {
	return []KafkaSaslMechanism{
		"scram-sha-512",
		"plain",
	}
}

type KafkaSecurityProtocol string

// Enum values for KafkaSecurityProtocol
const (
	KafkaSecurityProtocolPlaintext         KafkaSecurityProtocol = "plaintext"
	KafkaSecurityProtocolSslAuthentication KafkaSecurityProtocol = "ssl-authentication"
	KafkaSecurityProtocolSslEncryption     KafkaSecurityProtocol = "ssl-encryption"
	KafkaSecurityProtocolSaslSsl           KafkaSecurityProtocol = "sasl-ssl"
)

// Values returns all known values for KafkaSecurityProtocol. 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 (KafkaSecurityProtocol) Values() []KafkaSecurityProtocol {
	return []KafkaSecurityProtocol{
		"plaintext",
		"ssl-authentication",
		"ssl-encryption",
		"sasl-ssl",
	}
}

type KafkaSslEndpointIdentificationAlgorithm string

// Enum values for KafkaSslEndpointIdentificationAlgorithm
const (
	KafkaSslEndpointIdentificationAlgorithmNone  KafkaSslEndpointIdentificationAlgorithm = "none"
	KafkaSslEndpointIdentificationAlgorithmHttps KafkaSslEndpointIdentificationAlgorithm = "https"
)

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

type LongVarcharMappingType string

// Enum values for LongVarcharMappingType
const (
	LongVarcharMappingTypeWstring LongVarcharMappingType = "wstring"
	LongVarcharMappingTypeClob    LongVarcharMappingType = "clob"
	LongVarcharMappingTypeNclob   LongVarcharMappingType = "nclob"
)

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

type MessageFormatValue string

// Enum values for MessageFormatValue
const (
	MessageFormatValueJson            MessageFormatValue = "json"
	MessageFormatValueJsonUnformatted MessageFormatValue = "json-unformatted"
)

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

type MigrationTypeValue string

// Enum values for MigrationTypeValue
const (
	MigrationTypeValueFullLoad       MigrationTypeValue = "full-load"
	MigrationTypeValueCdc            MigrationTypeValue = "cdc"
	MigrationTypeValueFullLoadAndCdc MigrationTypeValue = "full-load-and-cdc"
)

// Values returns all known values for MigrationTypeValue. 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 (MigrationTypeValue) Values() []MigrationTypeValue {
	return []MigrationTypeValue{
		"full-load",
		"cdc",
		"full-load-and-cdc",
	}
}

type NestingLevelValue string

// Enum values for NestingLevelValue
const (
	NestingLevelValueNone NestingLevelValue = "none"
	NestingLevelValueOne  NestingLevelValue = "one"
)

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

type OriginTypeValue string

// Enum values for OriginTypeValue
const (
	OriginTypeValueSource OriginTypeValue = "SOURCE"
	OriginTypeValueTarget OriginTypeValue = "TARGET"
)

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

type ParquetVersionValue string

// Enum values for ParquetVersionValue
const (
	ParquetVersionValueParquet10 ParquetVersionValue = "parquet-1-0"
	ParquetVersionValueParquet20 ParquetVersionValue = "parquet-2-0"
)

// Values returns all known values for ParquetVersionValue. 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 (ParquetVersionValue) Values() []ParquetVersionValue {
	return []ParquetVersionValue{
		"parquet-1-0",
		"parquet-2-0",
	}
}

type PluginNameValue string

// Enum values for PluginNameValue
const (
	PluginNameValueNoPreference PluginNameValue = "no-preference"
	PluginNameValueTestDecoding PluginNameValue = "test-decoding"
	PluginNameValuePglogical    PluginNameValue = "pglogical"
)

// Values returns all known values for PluginNameValue. 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 (PluginNameValue) Values() []PluginNameValue {
	return []PluginNameValue{
		"no-preference",
		"test-decoding",
		"pglogical",
	}
}

type RedisAuthTypeValue string

// Enum values for RedisAuthTypeValue
const (
	RedisAuthTypeValueNone      RedisAuthTypeValue = "none"
	RedisAuthTypeValueAuthRole  RedisAuthTypeValue = "auth-role"
	RedisAuthTypeValueAuthToken RedisAuthTypeValue = "auth-token"
)

// Values returns all known values for RedisAuthTypeValue. 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 (RedisAuthTypeValue) Values() []RedisAuthTypeValue {
	return []RedisAuthTypeValue{
		"none",
		"auth-role",
		"auth-token",
	}
}

type RefreshSchemasStatusTypeValue string

// Enum values for RefreshSchemasStatusTypeValue
const (
	RefreshSchemasStatusTypeValueSuccessful RefreshSchemasStatusTypeValue = "successful"
	RefreshSchemasStatusTypeValueFailed     RefreshSchemasStatusTypeValue = "failed"
	RefreshSchemasStatusTypeValueRefreshing RefreshSchemasStatusTypeValue = "refreshing"
)

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

type ReleaseStatusValues string

// Enum values for ReleaseStatusValues
const (
	ReleaseStatusValuesBeta ReleaseStatusValues = "beta"
	ReleaseStatusValuesProd ReleaseStatusValues = "prod"
)

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

type ReloadOptionValue string

// Enum values for ReloadOptionValue
const (
	ReloadOptionValueDataReload   ReloadOptionValue = "data-reload"
	ReloadOptionValueValidateOnly ReloadOptionValue = "validate-only"
)

// Values returns all known values for ReloadOptionValue. 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 (ReloadOptionValue) Values() []ReloadOptionValue {
	return []ReloadOptionValue{
		"data-reload",
		"validate-only",
	}
}

type ReplicationEndpointTypeValue string

// Enum values for ReplicationEndpointTypeValue
const (
	ReplicationEndpointTypeValueSource ReplicationEndpointTypeValue = "source"
	ReplicationEndpointTypeValueTarget ReplicationEndpointTypeValue = "target"
)

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

type SafeguardPolicy string

// Enum values for SafeguardPolicy
const (
	SafeguardPolicyRelyOnSqlServerReplicationAgent SafeguardPolicy = "rely-on-sql-server-replication-agent"
	SafeguardPolicyExclusiveAutomaticTruncation    SafeguardPolicy = "exclusive-automatic-truncation"
	SafeguardPolicySharedAutomaticTruncation       SafeguardPolicy = "shared-automatic-truncation"
)

// Values returns all known values for SafeguardPolicy. 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 (SafeguardPolicy) Values() []SafeguardPolicy {
	return []SafeguardPolicy{
		"rely-on-sql-server-replication-agent",
		"exclusive-automatic-truncation",
		"shared-automatic-truncation",
	}
}

type SourceType string

// Enum values for SourceType
const (
	SourceTypeReplicationInstance SourceType = "replication-instance"
)

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

type SslSecurityProtocolValue string

// Enum values for SslSecurityProtocolValue
const (
	SslSecurityProtocolValuePlaintext     SslSecurityProtocolValue = "plaintext"
	SslSecurityProtocolValueSslEncryption SslSecurityProtocolValue = "ssl-encryption"
)

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

type StartReplicationTaskTypeValue string

// Enum values for StartReplicationTaskTypeValue
const (
	StartReplicationTaskTypeValueStartReplication StartReplicationTaskTypeValue = "start-replication"
	StartReplicationTaskTypeValueResumeProcessing StartReplicationTaskTypeValue = "resume-processing"
	StartReplicationTaskTypeValueReloadTarget     StartReplicationTaskTypeValue = "reload-target"
)

// Values returns all known values for StartReplicationTaskTypeValue. 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 (StartReplicationTaskTypeValue) Values() []StartReplicationTaskTypeValue {
	return []StartReplicationTaskTypeValue{
		"start-replication",
		"resume-processing",
		"reload-target",
	}
}

type TargetDbType string

// Enum values for TargetDbType
const (
	TargetDbTypeSpecificDatabase  TargetDbType = "specific-database"
	TargetDbTypeMultipleDatabases TargetDbType = "multiple-databases"
)

// Values returns all known values for TargetDbType. 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 (TargetDbType) Values() []TargetDbType {
	return []TargetDbType{
		"specific-database",
		"multiple-databases",
	}
}

type TlogAccessMode string

// Enum values for TlogAccessMode
const (
	TlogAccessModeBackupOnly   TlogAccessMode = "BackupOnly"
	TlogAccessModePreferBackup TlogAccessMode = "PreferBackup"
	TlogAccessModePreferTlog   TlogAccessMode = "PreferTlog"
	TlogAccessModeTlogOnly     TlogAccessMode = "TlogOnly"
)

// Values returns all known values for TlogAccessMode. 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 (TlogAccessMode) Values() []TlogAccessMode {
	return []TlogAccessMode{
		"BackupOnly",
		"PreferBackup",
		"PreferTlog",
		"TlogOnly",
	}
}

type VersionStatus string

// Enum values for VersionStatus
const (
	VersionStatusUpToDate    VersionStatus = "UP_TO_DATE"
	VersionStatusOutdated    VersionStatus = "OUTDATED"
	VersionStatusUnsupported VersionStatus = "UNSUPPORTED"
)

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