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

package types

type DatastoreStatus string

// Enum values for DatastoreStatus
const (
	DatastoreStatusCreating     DatastoreStatus = "CREATING"
	DatastoreStatusCreateFailed DatastoreStatus = "CREATE_FAILED"
	DatastoreStatusActive       DatastoreStatus = "ACTIVE"
	DatastoreStatusDeleting     DatastoreStatus = "DELETING"
	DatastoreStatusDeleted      DatastoreStatus = "DELETED"
)

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

type ImageSetState string

// Enum values for ImageSetState
const (
	ImageSetStateActive  ImageSetState = "ACTIVE"
	ImageSetStateLocked  ImageSetState = "LOCKED"
	ImageSetStateDeleted ImageSetState = "DELETED"
)

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

type ImageSetWorkflowStatus string

// Enum values for ImageSetWorkflowStatus
const (
	ImageSetWorkflowStatusCreated                   ImageSetWorkflowStatus = "CREATED"
	ImageSetWorkflowStatusCopied                    ImageSetWorkflowStatus = "COPIED"
	ImageSetWorkflowStatusCopying                   ImageSetWorkflowStatus = "COPYING"
	ImageSetWorkflowStatusCopyingWithReadOnlyAccess ImageSetWorkflowStatus = "COPYING_WITH_READ_ONLY_ACCESS"
	ImageSetWorkflowStatusCopyFailed                ImageSetWorkflowStatus = "COPY_FAILED"
	ImageSetWorkflowStatusUpdating                  ImageSetWorkflowStatus = "UPDATING"
	ImageSetWorkflowStatusUpdated                   ImageSetWorkflowStatus = "UPDATED"
	ImageSetWorkflowStatusUpdateFailed              ImageSetWorkflowStatus = "UPDATE_FAILED"
	ImageSetWorkflowStatusDeleting                  ImageSetWorkflowStatus = "DELETING"
	ImageSetWorkflowStatusDeleted                   ImageSetWorkflowStatus = "DELETED"
)

// Values returns all known values for ImageSetWorkflowStatus. 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 (ImageSetWorkflowStatus) Values() []ImageSetWorkflowStatus {
	return []ImageSetWorkflowStatus{
		"CREATED",
		"COPIED",
		"COPYING",
		"COPYING_WITH_READ_ONLY_ACCESS",
		"COPY_FAILED",
		"UPDATING",
		"UPDATED",
		"UPDATE_FAILED",
		"DELETING",
		"DELETED",
	}
}

type JobStatus string

// Enum values for JobStatus
const (
	JobStatusSubmitted  JobStatus = "SUBMITTED"
	JobStatusInProgress JobStatus = "IN_PROGRESS"
	JobStatusCompleted  JobStatus = "COMPLETED"
	JobStatusFailed     JobStatus = "FAILED"
)

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

type Operator string

// Enum values for Operator
const (
	OperatorEqual   Operator = "EQUAL"
	OperatorBetween Operator = "BETWEEN"
)

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