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

package types

type ColumnType string

// Enum values for ColumnType
const (
	ColumnTypeNode  ColumnType = "NODE"
	ColumnTypeEdge  ColumnType = "EDGE"
	ColumnTypeValue ColumnType = "VALUE"
)

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

type ComponentUpdateType string

// Enum values for ComponentUpdateType
const (
	ComponentUpdateTypeCreate ComponentUpdateType = "CREATE"
	ComponentUpdateTypeUpdate ComponentUpdateType = "UPDATE"
	ComponentUpdateTypeDelete ComponentUpdateType = "DELETE"
)

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

type DestinationType string

// Enum values for DestinationType
const (
	DestinationTypeS3           DestinationType = "s3"
	DestinationTypeIotsitewise  DestinationType = "iotsitewise"
	DestinationTypeIottwinmaker DestinationType = "iottwinmaker"
)

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

type ErrorCode string

// Enum values for ErrorCode
const (
	ErrorCodeValidationError           ErrorCode = "VALIDATION_ERROR"
	ErrorCodeInternalFailure           ErrorCode = "INTERNAL_FAILURE"
	ErrorCodeSyncInitializingError     ErrorCode = "SYNC_INITIALIZING_ERROR"
	ErrorCodeSyncCreatingError         ErrorCode = "SYNC_CREATING_ERROR"
	ErrorCodeSyncProcessingError       ErrorCode = "SYNC_PROCESSING_ERROR"
	ErrorCodeSyncDeletingError         ErrorCode = "SYNC_DELETING_ERROR"
	ErrorCodeProcessingError           ErrorCode = "PROCESSING_ERROR"
	ErrorCodeCompositeComponentFailure ErrorCode = "COMPOSITE_COMPONENT_FAILURE"
)

// 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{
		"VALIDATION_ERROR",
		"INTERNAL_FAILURE",
		"SYNC_INITIALIZING_ERROR",
		"SYNC_CREATING_ERROR",
		"SYNC_PROCESSING_ERROR",
		"SYNC_DELETING_ERROR",
		"PROCESSING_ERROR",
		"COMPOSITE_COMPONENT_FAILURE",
	}
}

type GroupType string

// Enum values for GroupType
const (
	GroupTypeTabular GroupType = "TABULAR"
)

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

type InterpolationType string

// Enum values for InterpolationType
const (
	InterpolationTypeLinear InterpolationType = "LINEAR"
)

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

type MetadataTransferJobState string

// Enum values for MetadataTransferJobState
const (
	MetadataTransferJobStateValidating MetadataTransferJobState = "VALIDATING"
	MetadataTransferJobStatePending    MetadataTransferJobState = "PENDING"
	MetadataTransferJobStateRunning    MetadataTransferJobState = "RUNNING"
	MetadataTransferJobStateCancelling MetadataTransferJobState = "CANCELLING"
	MetadataTransferJobStateError      MetadataTransferJobState = "ERROR"
	MetadataTransferJobStateCompleted  MetadataTransferJobState = "COMPLETED"
	MetadataTransferJobStateCancelled  MetadataTransferJobState = "CANCELLED"
)

// Values returns all known values for MetadataTransferJobState. 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 (MetadataTransferJobState) Values() []MetadataTransferJobState {
	return []MetadataTransferJobState{
		"VALIDATING",
		"PENDING",
		"RUNNING",
		"CANCELLING",
		"ERROR",
		"COMPLETED",
		"CANCELLED",
	}
}

type Order string

// Enum values for Order
const (
	OrderAscending  Order = "ASCENDING"
	OrderDescending Order = "DESCENDING"
)

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

type OrderByTime string

// Enum values for OrderByTime
const (
	OrderByTimeAscending  OrderByTime = "ASCENDING"
	OrderByTimeDescending OrderByTime = "DESCENDING"
)

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

type ParentEntityUpdateType string

// Enum values for ParentEntityUpdateType
const (
	ParentEntityUpdateTypeUpdate ParentEntityUpdateType = "UPDATE"
	ParentEntityUpdateTypeDelete ParentEntityUpdateType = "DELETE"
)

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

type PricingMode string

// Enum values for PricingMode
const (
	PricingModeBasic        PricingMode = "BASIC"
	PricingModeStandard     PricingMode = "STANDARD"
	PricingModeTieredBundle PricingMode = "TIERED_BUNDLE"
)

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

type PricingTier string

// Enum values for PricingTier
const (
	PricingTierTier1 PricingTier = "TIER_1"
	PricingTierTier2 PricingTier = "TIER_2"
	PricingTierTier3 PricingTier = "TIER_3"
	PricingTierTier4 PricingTier = "TIER_4"
)

// Values returns all known values for PricingTier. 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 (PricingTier) Values() []PricingTier {
	return []PricingTier{
		"TIER_1",
		"TIER_2",
		"TIER_3",
		"TIER_4",
	}
}

type PropertyGroupUpdateType string

// Enum values for PropertyGroupUpdateType
const (
	PropertyGroupUpdateTypeUpdate PropertyGroupUpdateType = "UPDATE"
	PropertyGroupUpdateTypeDelete PropertyGroupUpdateType = "DELETE"
	PropertyGroupUpdateTypeCreate PropertyGroupUpdateType = "CREATE"
)

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

type PropertyUpdateType string

// Enum values for PropertyUpdateType
const (
	PropertyUpdateTypeUpdate PropertyUpdateType = "UPDATE"
	PropertyUpdateTypeDelete PropertyUpdateType = "DELETE"
	PropertyUpdateTypeCreate PropertyUpdateType = "CREATE"
)

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

type SceneErrorCode string

// Enum values for SceneErrorCode
const (
	SceneErrorCodeMatterportError SceneErrorCode = "MATTERPORT_ERROR"
)

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

type Scope string

// Enum values for Scope
const (
	ScopeEntity    Scope = "ENTITY"
	ScopeWorkspace Scope = "WORKSPACE"
)

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

type SourceType string

// Enum values for SourceType
const (
	SourceTypeS3           SourceType = "s3"
	SourceTypeIotsitewise  SourceType = "iotsitewise"
	SourceTypeIottwinmaker SourceType = "iottwinmaker"
)

// 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{
		"s3",
		"iotsitewise",
		"iottwinmaker",
	}
}

type State string

// Enum values for State
const (
	StateCreating State = "CREATING"
	StateUpdating State = "UPDATING"
	StateDeleting State = "DELETING"
	StateActive   State = "ACTIVE"
	StateError    State = "ERROR"
)

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

type SyncJobState string

// Enum values for SyncJobState
const (
	SyncJobStateCreating     SyncJobState = "CREATING"
	SyncJobStateInitializing SyncJobState = "INITIALIZING"
	SyncJobStateActive       SyncJobState = "ACTIVE"
	SyncJobStateDeleting     SyncJobState = "DELETING"
	SyncJobStateError        SyncJobState = "ERROR"
)

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

type SyncResourceState string

// Enum values for SyncResourceState
const (
	SyncResourceStateInitializing SyncResourceState = "INITIALIZING"
	SyncResourceStateProcessing   SyncResourceState = "PROCESSING"
	SyncResourceStateDeleted      SyncResourceState = "DELETED"
	SyncResourceStateInSync       SyncResourceState = "IN_SYNC"
	SyncResourceStateError        SyncResourceState = "ERROR"
)

// Values returns all known values for SyncResourceState. 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 (SyncResourceState) Values() []SyncResourceState {
	return []SyncResourceState{
		"INITIALIZING",
		"PROCESSING",
		"DELETED",
		"IN_SYNC",
		"ERROR",
	}
}

type SyncResourceType string

// Enum values for SyncResourceType
const (
	SyncResourceTypeEntity        SyncResourceType = "ENTITY"
	SyncResourceTypeComponentType SyncResourceType = "COMPONENT_TYPE"
)

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

type Type string

// Enum values for Type
const (
	TypeRelationship Type = "RELATIONSHIP"
	TypeString       Type = "STRING"
	TypeLong         Type = "LONG"
	TypeBoolean      Type = "BOOLEAN"
	TypeInteger      Type = "INTEGER"
	TypeDouble       Type = "DOUBLE"
	TypeList         Type = "LIST"
	TypeMap          Type = "MAP"
)

// Values returns all known values for Type. 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 (Type) Values() []Type {
	return []Type{
		"RELATIONSHIP",
		"STRING",
		"LONG",
		"BOOLEAN",
		"INTEGER",
		"DOUBLE",
		"LIST",
		"MAP",
	}
}

type UpdateReason string

// Enum values for UpdateReason
const (
	UpdateReasonDefault           UpdateReason = "DEFAULT"
	UpdateReasonPricingTierUpdate UpdateReason = "PRICING_TIER_UPDATE"
	UpdateReasonEntityCountUpdate UpdateReason = "ENTITY_COUNT_UPDATE"
	UpdateReasonPricingModeUpdate UpdateReason = "PRICING_MODE_UPDATE"
	UpdateReasonOverwritten       UpdateReason = "OVERWRITTEN"
)

// Values returns all known values for UpdateReason. 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 (UpdateReason) Values() []UpdateReason {
	return []UpdateReason{
		"DEFAULT",
		"PRICING_TIER_UPDATE",
		"ENTITY_COUNT_UPDATE",
		"PRICING_MODE_UPDATE",
		"OVERWRITTEN",
	}
}