...
1 package hybriddata
2
3
4
5
6
7
8
9
10 type IsJobCancellable string
11
12 const (
13
14 Cancellable IsJobCancellable = "Cancellable"
15
16 NotCancellable IsJobCancellable = "NotCancellable"
17 )
18
19
20 func PossibleIsJobCancellableValues() []IsJobCancellable {
21 return []IsJobCancellable{Cancellable, NotCancellable}
22 }
23
24
25 type JobStatus string
26
27 const (
28
29 Cancelled JobStatus = "Cancelled"
30
31 Cancelling JobStatus = "Cancelling"
32
33 Failed JobStatus = "Failed"
34
35 InProgress JobStatus = "InProgress"
36
37 None JobStatus = "None"
38
39 Succeeded JobStatus = "Succeeded"
40
41 WaitingForAction JobStatus = "WaitingForAction"
42 )
43
44
45 func PossibleJobStatusValues() []JobStatus {
46 return []JobStatus{Cancelled, Cancelling, Failed, InProgress, None, Succeeded, WaitingForAction}
47 }
48
49
50 type RunLocation string
51
52 const (
53
54 RunLocationAustraliaeast RunLocation = "australiaeast"
55
56 RunLocationAustraliasoutheast RunLocation = "australiasoutheast"
57
58 RunLocationBrazilsouth RunLocation = "brazilsouth"
59
60 RunLocationCanadacentral RunLocation = "canadacentral"
61
62 RunLocationCanadaeast RunLocation = "canadaeast"
63
64 RunLocationCentralindia RunLocation = "centralindia"
65
66 RunLocationCentralus RunLocation = "centralus"
67
68 RunLocationEastasia RunLocation = "eastasia"
69
70 RunLocationEastus RunLocation = "eastus"
71
72 RunLocationEastus2 RunLocation = "eastus2"
73
74 RunLocationJapaneast RunLocation = "japaneast"
75
76 RunLocationJapanwest RunLocation = "japanwest"
77
78 RunLocationKoreacentral RunLocation = "koreacentral"
79
80 RunLocationKoreasouth RunLocation = "koreasouth"
81
82 RunLocationNone RunLocation = "none"
83
84 RunLocationNorthcentralus RunLocation = "northcentralus"
85
86 RunLocationNortheurope RunLocation = "northeurope"
87
88 RunLocationSouthcentralus RunLocation = "southcentralus"
89
90 RunLocationSoutheastasia RunLocation = "southeastasia"
91
92 RunLocationSouthindia RunLocation = "southindia"
93
94 RunLocationUksouth RunLocation = "uksouth"
95
96 RunLocationUkwest RunLocation = "ukwest"
97
98 RunLocationWestcentralus RunLocation = "westcentralus"
99
100 RunLocationWesteurope RunLocation = "westeurope"
101
102 RunLocationWestindia RunLocation = "westindia"
103
104 RunLocationWestus RunLocation = "westus"
105
106 RunLocationWestus2 RunLocation = "westus2"
107 )
108
109
110 func PossibleRunLocationValues() []RunLocation {
111 return []RunLocation{RunLocationAustraliaeast, RunLocationAustraliasoutheast, RunLocationBrazilsouth, RunLocationCanadacentral, RunLocationCanadaeast, RunLocationCentralindia, RunLocationCentralus, RunLocationEastasia, RunLocationEastus, RunLocationEastus2, RunLocationJapaneast, RunLocationJapanwest, RunLocationKoreacentral, RunLocationKoreasouth, RunLocationNone, RunLocationNorthcentralus, RunLocationNortheurope, RunLocationSouthcentralus, RunLocationSoutheastasia, RunLocationSouthindia, RunLocationUksouth, RunLocationUkwest, RunLocationWestcentralus, RunLocationWesteurope, RunLocationWestindia, RunLocationWestus, RunLocationWestus2}
112 }
113
114
115 type State string
116
117 const (
118
119 Disabled State = "Disabled"
120
121 Enabled State = "Enabled"
122
123 Supported State = "Supported"
124 )
125
126
127 func PossibleStateValues() []State {
128 return []State{Disabled, Enabled, Supported}
129 }
130
131
132 type SupportedAlgorithm string
133
134 const (
135
136 SupportedAlgorithmNone SupportedAlgorithm = "None"
137
138 SupportedAlgorithmPlainText SupportedAlgorithm = "PlainText"
139
140 SupportedAlgorithmRSA15 SupportedAlgorithm = "RSA1_5"
141
142 SupportedAlgorithmRSAOAEP SupportedAlgorithm = "RSA_OAEP"
143 )
144
145
146 func PossibleSupportedAlgorithmValues() []SupportedAlgorithm {
147 return []SupportedAlgorithm{SupportedAlgorithmNone, SupportedAlgorithmPlainText, SupportedAlgorithmRSA15, SupportedAlgorithmRSAOAEP}
148 }
149
150
151 type UserConfirmation string
152
153 const (
154
155 NotRequired UserConfirmation = "NotRequired"
156
157 Required UserConfirmation = "Required"
158 )
159
160
161 func PossibleUserConfirmationValues() []UserConfirmation {
162 return []UserConfirmation{NotRequired, Required}
163 }
164
View as plain text