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