...
1 package account
2
3
4
5
6
7
8
9
10 type DataLakeStoreAccountState string
11
12 const (
13
14 Active DataLakeStoreAccountState = "Active"
15
16 Suspended DataLakeStoreAccountState = "Suspended"
17 )
18
19
20 func PossibleDataLakeStoreAccountStateValues() []DataLakeStoreAccountState {
21 return []DataLakeStoreAccountState{Active, Suspended}
22 }
23
24
25 type DataLakeStoreAccountStatus string
26
27 const (
28
29 Canceled DataLakeStoreAccountStatus = "Canceled"
30
31 Creating DataLakeStoreAccountStatus = "Creating"
32
33 Deleted DataLakeStoreAccountStatus = "Deleted"
34
35 Deleting DataLakeStoreAccountStatus = "Deleting"
36
37 Failed DataLakeStoreAccountStatus = "Failed"
38
39 Patching DataLakeStoreAccountStatus = "Patching"
40
41 Resuming DataLakeStoreAccountStatus = "Resuming"
42
43 Running DataLakeStoreAccountStatus = "Running"
44
45 Succeeded DataLakeStoreAccountStatus = "Succeeded"
46
47 Suspending DataLakeStoreAccountStatus = "Suspending"
48
49 Undeleting DataLakeStoreAccountStatus = "Undeleting"
50 )
51
52
53 func PossibleDataLakeStoreAccountStatusValues() []DataLakeStoreAccountStatus {
54 return []DataLakeStoreAccountStatus{Canceled, Creating, Deleted, Deleting, Failed, Patching, Resuming, Running, Succeeded, Suspending, Undeleting}
55 }
56
57
58 type EncryptionConfigType string
59
60 const (
61
62 ServiceManaged EncryptionConfigType = "ServiceManaged"
63
64 UserManaged EncryptionConfigType = "UserManaged"
65 )
66
67
68 func PossibleEncryptionConfigTypeValues() []EncryptionConfigType {
69 return []EncryptionConfigType{ServiceManaged, UserManaged}
70 }
71
72
73 type EncryptionProvisioningState string
74
75 const (
76
77 EncryptionProvisioningStateCreating EncryptionProvisioningState = "Creating"
78
79 EncryptionProvisioningStateSucceeded EncryptionProvisioningState = "Succeeded"
80 )
81
82
83 func PossibleEncryptionProvisioningStateValues() []EncryptionProvisioningState {
84 return []EncryptionProvisioningState{EncryptionProvisioningStateCreating, EncryptionProvisioningStateSucceeded}
85 }
86
87
88 type EncryptionState string
89
90 const (
91
92 Disabled EncryptionState = "Disabled"
93
94 Enabled EncryptionState = "Enabled"
95 )
96
97
98 func PossibleEncryptionStateValues() []EncryptionState {
99 return []EncryptionState{Disabled, Enabled}
100 }
101
102
103 type FirewallAllowAzureIpsState string
104
105 const (
106
107 FirewallAllowAzureIpsStateDisabled FirewallAllowAzureIpsState = "Disabled"
108
109 FirewallAllowAzureIpsStateEnabled FirewallAllowAzureIpsState = "Enabled"
110 )
111
112
113 func PossibleFirewallAllowAzureIpsStateValues() []FirewallAllowAzureIpsState {
114 return []FirewallAllowAzureIpsState{FirewallAllowAzureIpsStateDisabled, FirewallAllowAzureIpsStateEnabled}
115 }
116
117
118 type FirewallState string
119
120 const (
121
122 FirewallStateDisabled FirewallState = "Disabled"
123
124 FirewallStateEnabled FirewallState = "Enabled"
125 )
126
127
128 func PossibleFirewallStateValues() []FirewallState {
129 return []FirewallState{FirewallStateDisabled, FirewallStateEnabled}
130 }
131
132
133 type OperationOrigin string
134
135 const (
136
137 System OperationOrigin = "system"
138
139 User OperationOrigin = "user"
140
141 Usersystem OperationOrigin = "user,system"
142 )
143
144
145 func PossibleOperationOriginValues() []OperationOrigin {
146 return []OperationOrigin{System, User, Usersystem}
147 }
148
149
150 type SubscriptionState string
151
152 const (
153
154 SubscriptionStateDeleted SubscriptionState = "Deleted"
155
156 SubscriptionStateRegistered SubscriptionState = "Registered"
157
158 SubscriptionStateSuspended SubscriptionState = "Suspended"
159
160 SubscriptionStateUnregistered SubscriptionState = "Unregistered"
161
162 SubscriptionStateWarned SubscriptionState = "Warned"
163 )
164
165
166 func PossibleSubscriptionStateValues() []SubscriptionState {
167 return []SubscriptionState{SubscriptionStateDeleted, SubscriptionStateRegistered, SubscriptionStateSuspended, SubscriptionStateUnregistered, SubscriptionStateWarned}
168 }
169
170
171 type TierType string
172
173 const (
174
175 Commitment100TB TierType = "Commitment_100TB"
176
177 Commitment10TB TierType = "Commitment_10TB"
178
179 Commitment1PB TierType = "Commitment_1PB"
180
181 Commitment1TB TierType = "Commitment_1TB"
182
183 Commitment500TB TierType = "Commitment_500TB"
184
185 Commitment5PB TierType = "Commitment_5PB"
186
187 Consumption TierType = "Consumption"
188 )
189
190
191 func PossibleTierTypeValues() []TierType {
192 return []TierType{Commitment100TB, Commitment10TB, Commitment1PB, Commitment1TB, Commitment500TB, Commitment5PB, Consumption}
193 }
194
195
196 type TrustedIDProviderState string
197
198 const (
199
200 TrustedIDProviderStateDisabled TrustedIDProviderState = "Disabled"
201
202 TrustedIDProviderStateEnabled TrustedIDProviderState = "Enabled"
203 )
204
205
206 func PossibleTrustedIDProviderStateValues() []TrustedIDProviderState {
207 return []TrustedIDProviderState{TrustedIDProviderStateDisabled, TrustedIDProviderStateEnabled}
208 }
209
210
211 type UsageUnit string
212
213 const (
214
215 Bytes UsageUnit = "Bytes"
216
217 BytesPerSecond UsageUnit = "BytesPerSecond"
218
219 Count UsageUnit = "Count"
220
221 CountsPerSecond UsageUnit = "CountsPerSecond"
222
223 Percent UsageUnit = "Percent"
224
225 Seconds UsageUnit = "Seconds"
226 )
227
228
229 func PossibleUsageUnitValues() []UsageUnit {
230 return []UsageUnit{Bytes, BytesPerSecond, Count, CountsPerSecond, Percent, Seconds}
231 }
232
View as plain text