...
1 package account
2
3
4
5
6
7
8
9
10 type AADObjectType string
11
12 const (
13
14 Group AADObjectType = "Group"
15
16 ServicePrincipal AADObjectType = "ServicePrincipal"
17
18 User AADObjectType = "User"
19 )
20
21
22 func PossibleAADObjectTypeValues() []AADObjectType {
23 return []AADObjectType{Group, ServicePrincipal, User}
24 }
25
26
27 type DataLakeAnalyticsAccountState string
28
29 const (
30
31 Active DataLakeAnalyticsAccountState = "Active"
32
33 Suspended DataLakeAnalyticsAccountState = "Suspended"
34 )
35
36
37 func PossibleDataLakeAnalyticsAccountStateValues() []DataLakeAnalyticsAccountState {
38 return []DataLakeAnalyticsAccountState{Active, Suspended}
39 }
40
41
42 type DataLakeAnalyticsAccountStatus string
43
44 const (
45
46 Canceled DataLakeAnalyticsAccountStatus = "Canceled"
47
48 Creating DataLakeAnalyticsAccountStatus = "Creating"
49
50 Deleted DataLakeAnalyticsAccountStatus = "Deleted"
51
52 Deleting DataLakeAnalyticsAccountStatus = "Deleting"
53
54 Failed DataLakeAnalyticsAccountStatus = "Failed"
55
56 Patching DataLakeAnalyticsAccountStatus = "Patching"
57
58 Resuming DataLakeAnalyticsAccountStatus = "Resuming"
59
60 Running DataLakeAnalyticsAccountStatus = "Running"
61
62 Succeeded DataLakeAnalyticsAccountStatus = "Succeeded"
63
64 Suspending DataLakeAnalyticsAccountStatus = "Suspending"
65
66 Undeleting DataLakeAnalyticsAccountStatus = "Undeleting"
67 )
68
69
70 func PossibleDataLakeAnalyticsAccountStatusValues() []DataLakeAnalyticsAccountStatus {
71 return []DataLakeAnalyticsAccountStatus{Canceled, Creating, Deleted, Deleting, Failed, Patching, Resuming, Running, Succeeded, Suspending, Undeleting}
72 }
73
74
75 type FirewallAllowAzureIpsState string
76
77 const (
78
79 Disabled FirewallAllowAzureIpsState = "Disabled"
80
81 Enabled FirewallAllowAzureIpsState = "Enabled"
82 )
83
84
85 func PossibleFirewallAllowAzureIpsStateValues() []FirewallAllowAzureIpsState {
86 return []FirewallAllowAzureIpsState{Disabled, Enabled}
87 }
88
89
90 type FirewallState string
91
92 const (
93
94 FirewallStateDisabled FirewallState = "Disabled"
95
96 FirewallStateEnabled FirewallState = "Enabled"
97 )
98
99
100 func PossibleFirewallStateValues() []FirewallState {
101 return []FirewallState{FirewallStateDisabled, FirewallStateEnabled}
102 }
103
104
105 type OperationOrigin string
106
107 const (
108
109 OperationOriginSystem OperationOrigin = "system"
110
111 OperationOriginUser OperationOrigin = "user"
112
113 OperationOriginUsersystem OperationOrigin = "user,system"
114 )
115
116
117 func PossibleOperationOriginValues() []OperationOrigin {
118 return []OperationOrigin{OperationOriginSystem, OperationOriginUser, OperationOriginUsersystem}
119 }
120
121
122 type SubscriptionState string
123
124 const (
125
126 SubscriptionStateDeleted SubscriptionState = "Deleted"
127
128 SubscriptionStateRegistered SubscriptionState = "Registered"
129
130 SubscriptionStateSuspended SubscriptionState = "Suspended"
131
132 SubscriptionStateUnregistered SubscriptionState = "Unregistered"
133
134 SubscriptionStateWarned SubscriptionState = "Warned"
135 )
136
137
138 func PossibleSubscriptionStateValues() []SubscriptionState {
139 return []SubscriptionState{SubscriptionStateDeleted, SubscriptionStateRegistered, SubscriptionStateSuspended, SubscriptionStateUnregistered, SubscriptionStateWarned}
140 }
141
142
143 type TierType string
144
145 const (
146
147 Commitment100000AUHours TierType = "Commitment_100000AUHours"
148
149 Commitment10000AUHours TierType = "Commitment_10000AUHours"
150
151 Commitment1000AUHours TierType = "Commitment_1000AUHours"
152
153 Commitment100AUHours TierType = "Commitment_100AUHours"
154
155 Commitment500000AUHours TierType = "Commitment_500000AUHours"
156
157 Commitment50000AUHours TierType = "Commitment_50000AUHours"
158
159 Commitment5000AUHours TierType = "Commitment_5000AUHours"
160
161 Commitment500AUHours TierType = "Commitment_500AUHours"
162
163 Consumption TierType = "Consumption"
164 )
165
166
167 func PossibleTierTypeValues() []TierType {
168 return []TierType{Commitment100000AUHours, Commitment10000AUHours, Commitment1000AUHours, Commitment100AUHours, Commitment500000AUHours, Commitment50000AUHours, Commitment5000AUHours, Commitment500AUHours, Consumption}
169 }
170
View as plain text