forked from Azure/azure-sdk-for-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
enums.go
169 lines (144 loc) · 6.29 KB
/
enums.go
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
package account
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
//
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is regenerated.
// AADObjectType enumerates the values for aad object type.
type AADObjectType string
const (
// Group ...
Group AADObjectType = "Group"
// ServicePrincipal ...
ServicePrincipal AADObjectType = "ServicePrincipal"
// User ...
User AADObjectType = "User"
)
// PossibleAADObjectTypeValues returns an array of possible values for the AADObjectType const type.
func PossibleAADObjectTypeValues() []AADObjectType {
return []AADObjectType{Group, ServicePrincipal, User}
}
// DataLakeAnalyticsAccountState enumerates the values for data lake analytics account state.
type DataLakeAnalyticsAccountState string
const (
// Active ...
Active DataLakeAnalyticsAccountState = "Active"
// Suspended ...
Suspended DataLakeAnalyticsAccountState = "Suspended"
)
// PossibleDataLakeAnalyticsAccountStateValues returns an array of possible values for the DataLakeAnalyticsAccountState const type.
func PossibleDataLakeAnalyticsAccountStateValues() []DataLakeAnalyticsAccountState {
return []DataLakeAnalyticsAccountState{Active, Suspended}
}
// DataLakeAnalyticsAccountStatus enumerates the values for data lake analytics account status.
type DataLakeAnalyticsAccountStatus string
const (
// Canceled ...
Canceled DataLakeAnalyticsAccountStatus = "Canceled"
// Creating ...
Creating DataLakeAnalyticsAccountStatus = "Creating"
// Deleted ...
Deleted DataLakeAnalyticsAccountStatus = "Deleted"
// Deleting ...
Deleting DataLakeAnalyticsAccountStatus = "Deleting"
// Failed ...
Failed DataLakeAnalyticsAccountStatus = "Failed"
// Patching ...
Patching DataLakeAnalyticsAccountStatus = "Patching"
// Resuming ...
Resuming DataLakeAnalyticsAccountStatus = "Resuming"
// Running ...
Running DataLakeAnalyticsAccountStatus = "Running"
// Succeeded ...
Succeeded DataLakeAnalyticsAccountStatus = "Succeeded"
// Suspending ...
Suspending DataLakeAnalyticsAccountStatus = "Suspending"
// Undeleting ...
Undeleting DataLakeAnalyticsAccountStatus = "Undeleting"
)
// PossibleDataLakeAnalyticsAccountStatusValues returns an array of possible values for the DataLakeAnalyticsAccountStatus const type.
func PossibleDataLakeAnalyticsAccountStatusValues() []DataLakeAnalyticsAccountStatus {
return []DataLakeAnalyticsAccountStatus{Canceled, Creating, Deleted, Deleting, Failed, Patching, Resuming, Running, Succeeded, Suspending, Undeleting}
}
// FirewallAllowAzureIpsState enumerates the values for firewall allow azure ips state.
type FirewallAllowAzureIpsState string
const (
// Disabled ...
Disabled FirewallAllowAzureIpsState = "Disabled"
// Enabled ...
Enabled FirewallAllowAzureIpsState = "Enabled"
)
// PossibleFirewallAllowAzureIpsStateValues returns an array of possible values for the FirewallAllowAzureIpsState const type.
func PossibleFirewallAllowAzureIpsStateValues() []FirewallAllowAzureIpsState {
return []FirewallAllowAzureIpsState{Disabled, Enabled}
}
// FirewallState enumerates the values for firewall state.
type FirewallState string
const (
// FirewallStateDisabled ...
FirewallStateDisabled FirewallState = "Disabled"
// FirewallStateEnabled ...
FirewallStateEnabled FirewallState = "Enabled"
)
// PossibleFirewallStateValues returns an array of possible values for the FirewallState const type.
func PossibleFirewallStateValues() []FirewallState {
return []FirewallState{FirewallStateDisabled, FirewallStateEnabled}
}
// OperationOrigin enumerates the values for operation origin.
type OperationOrigin string
const (
// OperationOriginSystem ...
OperationOriginSystem OperationOrigin = "system"
// OperationOriginUser ...
OperationOriginUser OperationOrigin = "user"
// OperationOriginUsersystem ...
OperationOriginUsersystem OperationOrigin = "user,system"
)
// PossibleOperationOriginValues returns an array of possible values for the OperationOrigin const type.
func PossibleOperationOriginValues() []OperationOrigin {
return []OperationOrigin{OperationOriginSystem, OperationOriginUser, OperationOriginUsersystem}
}
// SubscriptionState enumerates the values for subscription state.
type SubscriptionState string
const (
// SubscriptionStateDeleted ...
SubscriptionStateDeleted SubscriptionState = "Deleted"
// SubscriptionStateRegistered ...
SubscriptionStateRegistered SubscriptionState = "Registered"
// SubscriptionStateSuspended ...
SubscriptionStateSuspended SubscriptionState = "Suspended"
// SubscriptionStateUnregistered ...
SubscriptionStateUnregistered SubscriptionState = "Unregistered"
// SubscriptionStateWarned ...
SubscriptionStateWarned SubscriptionState = "Warned"
)
// PossibleSubscriptionStateValues returns an array of possible values for the SubscriptionState const type.
func PossibleSubscriptionStateValues() []SubscriptionState {
return []SubscriptionState{SubscriptionStateDeleted, SubscriptionStateRegistered, SubscriptionStateSuspended, SubscriptionStateUnregistered, SubscriptionStateWarned}
}
// TierType enumerates the values for tier type.
type TierType string
const (
// Commitment100000AUHours ...
Commitment100000AUHours TierType = "Commitment_100000AUHours"
// Commitment10000AUHours ...
Commitment10000AUHours TierType = "Commitment_10000AUHours"
// Commitment1000AUHours ...
Commitment1000AUHours TierType = "Commitment_1000AUHours"
// Commitment100AUHours ...
Commitment100AUHours TierType = "Commitment_100AUHours"
// Commitment500000AUHours ...
Commitment500000AUHours TierType = "Commitment_500000AUHours"
// Commitment50000AUHours ...
Commitment50000AUHours TierType = "Commitment_50000AUHours"
// Commitment5000AUHours ...
Commitment5000AUHours TierType = "Commitment_5000AUHours"
// Commitment500AUHours ...
Commitment500AUHours TierType = "Commitment_500AUHours"
// Consumption ...
Consumption TierType = "Consumption"
)
// PossibleTierTypeValues returns an array of possible values for the TierType const type.
func PossibleTierTypeValues() []TierType {
return []TierType{Commitment100000AUHours, Commitment10000AUHours, Commitment1000AUHours, Commitment100AUHours, Commitment500000AUHours, Commitment50000AUHours, Commitment5000AUHours, Commitment500AUHours, Consumption}
}