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 (256 lines) | stat: -rw-r--r-- 7,501 bytes parent folder | download | duplicates (3)
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
// Code generated by smithy-go-codegen DO NOT EDIT.

package types

type Action string

// Enum values for Action
const (
	ActionInitializeReset Action = "initiateDatabaseReset"
	ActionPerformReset    Action = "performDatabaseReset"
)

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

type Encoding string

// Enum values for Encoding
const (
	EncodingGzip Encoding = "gzip"
)

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

type Format string

// Enum values for Format
const (
	FormatCsv        Format = "csv"
	FormatOpencypher Format = "opencypher"
	FormatNtriples   Format = "ntriples"
	FormatNquads     Format = "nquads"
	FormatRdfxml     Format = "rdfxml"
	FormatTurtle     Format = "turtle"
)

// Values returns all known values for Format. Note that this can be expanded in
// the future, and so it is only as up to date as the client.
//
// The ordering of this slice is not guaranteed to be stable across updates.
func (Format) Values() []Format {
	return []Format{
		"csv",
		"opencypher",
		"ntriples",
		"nquads",
		"rdfxml",
		"turtle",
	}
}

type GraphSummaryType string

// Enum values for GraphSummaryType
const (
	GraphSummaryTypeBasic    GraphSummaryType = "basic"
	GraphSummaryTypeDetailed GraphSummaryType = "detailed"
)

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

type IteratorType string

// Enum values for IteratorType
const (
	IteratorTypeAtSequenceNumber    IteratorType = "AT_SEQUENCE_NUMBER"
	IteratorTypeAfterSequenceNumber IteratorType = "AFTER_SEQUENCE_NUMBER"
	IteratorTypeTrimHorizon         IteratorType = "TRIM_HORIZON"
	IteratorTypeLatest              IteratorType = "LATEST"
)

// Values returns all known values for IteratorType. 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 (IteratorType) Values() []IteratorType {
	return []IteratorType{
		"AT_SEQUENCE_NUMBER",
		"AFTER_SEQUENCE_NUMBER",
		"TRIM_HORIZON",
		"LATEST",
	}
}

type Mode string

// Enum values for Mode
const (
	ModeResume Mode = "RESUME"
	ModeNew    Mode = "NEW"
	ModeAuto   Mode = "AUTO"
)

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

type OpenCypherExplainMode string

// Enum values for OpenCypherExplainMode
const (
	OpenCypherExplainModeStatic  OpenCypherExplainMode = "static"
	OpenCypherExplainModeDynamic OpenCypherExplainMode = "dynamic"
	OpenCypherExplainModeDetails OpenCypherExplainMode = "details"
)

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

type Parallelism string

// Enum values for Parallelism
const (
	ParallelismLow           Parallelism = "LOW"
	ParallelismMedium        Parallelism = "MEDIUM"
	ParallelismHigh          Parallelism = "HIGH"
	ParallelismOversubscribe Parallelism = "OVERSUBSCRIBE"
)

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

type S3BucketRegion string

// Enum values for S3BucketRegion
const (
	S3BucketRegionUsEast1      S3BucketRegion = "us-east-1"
	S3BucketRegionUsEast2      S3BucketRegion = "us-east-2"
	S3BucketRegionUsWest1      S3BucketRegion = "us-west-1"
	S3BucketRegionUsWest2      S3BucketRegion = "us-west-2"
	S3BucketRegionCaCentral1   S3BucketRegion = "ca-central-1"
	S3BucketRegionSaEast1      S3BucketRegion = "sa-east-1"
	S3BucketRegionEuNorth1     S3BucketRegion = "eu-north-1"
	S3BucketRegionEuWest1      S3BucketRegion = "eu-west-1"
	S3BucketRegionEuWest2      S3BucketRegion = "eu-west-2"
	S3BucketRegionEuWest3      S3BucketRegion = "eu-west-3"
	S3BucketRegionEuCentral1   S3BucketRegion = "eu-central-1"
	S3BucketRegionMeSouth1     S3BucketRegion = "me-south-1"
	S3BucketRegionAfSouth1     S3BucketRegion = "af-south-1"
	S3BucketRegionApEast1      S3BucketRegion = "ap-east-1"
	S3BucketRegionApNortheast1 S3BucketRegion = "ap-northeast-1"
	S3BucketRegionApNortheast2 S3BucketRegion = "ap-northeast-2"
	S3BucketRegionApSoutheast1 S3BucketRegion = "ap-southeast-1"
	S3BucketRegionApSoutheast2 S3BucketRegion = "ap-southeast-2"
	S3BucketRegionApSouth1     S3BucketRegion = "ap-south-1"
	S3BucketRegionCnNorth1     S3BucketRegion = "cn-north-1"
	S3BucketRegionCnNorthwest1 S3BucketRegion = "cn-northwest-1"
	S3BucketRegionUsGovWest1   S3BucketRegion = "us-gov-west-1"
	S3BucketRegionUsGovEast1   S3BucketRegion = "us-gov-east-1"
)

// Values returns all known values for S3BucketRegion. 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 (S3BucketRegion) Values() []S3BucketRegion {
	return []S3BucketRegion{
		"us-east-1",
		"us-east-2",
		"us-west-1",
		"us-west-2",
		"ca-central-1",
		"sa-east-1",
		"eu-north-1",
		"eu-west-1",
		"eu-west-2",
		"eu-west-3",
		"eu-central-1",
		"me-south-1",
		"af-south-1",
		"ap-east-1",
		"ap-northeast-1",
		"ap-northeast-2",
		"ap-southeast-1",
		"ap-southeast-2",
		"ap-south-1",
		"cn-north-1",
		"cn-northwest-1",
		"us-gov-west-1",
		"us-gov-east-1",
	}
}

type StatisticsAutoGenerationMode string

// Enum values for StatisticsAutoGenerationMode
const (
	StatisticsAutoGenerationModeDisableAutocompute StatisticsAutoGenerationMode = "disableAutoCompute"
	StatisticsAutoGenerationModeEnableAutocompute  StatisticsAutoGenerationMode = "enableAutoCompute"
	StatisticsAutoGenerationModeRefresh            StatisticsAutoGenerationMode = "refresh"
)

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