-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathauthorization_policy.go
339 lines (337 loc) · 14.8 KB
/
authorization_policy.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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
package models
import (
i561e97a8befe7661a44c8f54600992b4207a3a0cf6770e5559949bc276de2e22 "github.com/google/uuid"
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91 "github.com/microsoft/kiota-abstractions-go/serialization"
)
type AuthorizationPolicy struct {
PolicyBase
}
// NewAuthorizationPolicy instantiates a new AuthorizationPolicy and sets the default values.
func NewAuthorizationPolicy()(*AuthorizationPolicy) {
m := &AuthorizationPolicy{
PolicyBase: *NewPolicyBase(),
}
odataTypeValue := "#microsoft.graph.authorizationPolicy"
m.SetOdataType(&odataTypeValue)
return m
}
// CreateAuthorizationPolicyFromDiscriminatorValue creates a new instance of the appropriate class based on discriminator value
// returns a Parsable when successful
func CreateAuthorizationPolicyFromDiscriminatorValue(parseNode i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, error) {
return NewAuthorizationPolicy(), nil
}
// GetAllowedToSignUpEmailBasedSubscriptions gets the allowedToSignUpEmailBasedSubscriptions property value. Indicates whether users can sign up for email based subscriptions.
// returns a *bool when successful
func (m *AuthorizationPolicy) GetAllowedToSignUpEmailBasedSubscriptions()(*bool) {
val, err := m.GetBackingStore().Get("allowedToSignUpEmailBasedSubscriptions")
if err != nil {
panic(err)
}
if val != nil {
return val.(*bool)
}
return nil
}
// GetAllowedToUseSSPR gets the allowedToUseSSPR property value. Indicates whether administrators of the tenant can use the Self-Service Password Reset (SSPR). For more information, see Self-service password reset for administrators.
// returns a *bool when successful
func (m *AuthorizationPolicy) GetAllowedToUseSSPR()(*bool) {
val, err := m.GetBackingStore().Get("allowedToUseSSPR")
if err != nil {
panic(err)
}
if val != nil {
return val.(*bool)
}
return nil
}
// GetAllowEmailVerifiedUsersToJoinOrganization gets the allowEmailVerifiedUsersToJoinOrganization property value. Indicates whether a user can join the tenant by email validation.
// returns a *bool when successful
func (m *AuthorizationPolicy) GetAllowEmailVerifiedUsersToJoinOrganization()(*bool) {
val, err := m.GetBackingStore().Get("allowEmailVerifiedUsersToJoinOrganization")
if err != nil {
panic(err)
}
if val != nil {
return val.(*bool)
}
return nil
}
// GetAllowInvitesFrom gets the allowInvitesFrom property value. Indicates who can invite guests to the organization. Possible values are: none, adminsAndGuestInviters, adminsGuestInvitersAndAllMembers, everyone. everyone is the default setting for all cloud environments except US Government. For more information, see allowInvitesFrom values.
// returns a *AllowInvitesFrom when successful
func (m *AuthorizationPolicy) GetAllowInvitesFrom()(*AllowInvitesFrom) {
val, err := m.GetBackingStore().Get("allowInvitesFrom")
if err != nil {
panic(err)
}
if val != nil {
return val.(*AllowInvitesFrom)
}
return nil
}
// GetAllowUserConsentForRiskyApps gets the allowUserConsentForRiskyApps property value. Indicates whether user consent for risky apps is allowed. We recommend keeping allowUserConsentForRiskyApps as false. Default value is false.
// returns a *bool when successful
func (m *AuthorizationPolicy) GetAllowUserConsentForRiskyApps()(*bool) {
val, err := m.GetBackingStore().Get("allowUserConsentForRiskyApps")
if err != nil {
panic(err)
}
if val != nil {
return val.(*bool)
}
return nil
}
// GetBlockMsolPowerShell gets the blockMsolPowerShell property value. To disable the use of MSOL PowerShell, set this property to true. This also disables user-based access to the legacy service endpoint used by MSOL PowerShell. This doesn't affect Microsoft Entra Connect or Microsoft Graph.
// returns a *bool when successful
func (m *AuthorizationPolicy) GetBlockMsolPowerShell()(*bool) {
val, err := m.GetBackingStore().Get("blockMsolPowerShell")
if err != nil {
panic(err)
}
if val != nil {
return val.(*bool)
}
return nil
}
// GetDefaultUserRolePermissions gets the defaultUserRolePermissions property value. The defaultUserRolePermissions property
// returns a DefaultUserRolePermissionsable when successful
func (m *AuthorizationPolicy) GetDefaultUserRolePermissions()(DefaultUserRolePermissionsable) {
val, err := m.GetBackingStore().Get("defaultUserRolePermissions")
if err != nil {
panic(err)
}
if val != nil {
return val.(DefaultUserRolePermissionsable)
}
return nil
}
// GetFieldDeserializers the deserialization information for the current model
// returns a map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error) when successful
func (m *AuthorizationPolicy) GetFieldDeserializers()(map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error)) {
res := m.PolicyBase.GetFieldDeserializers()
res["allowedToSignUpEmailBasedSubscriptions"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetBoolValue()
if err != nil {
return err
}
if val != nil {
m.SetAllowedToSignUpEmailBasedSubscriptions(val)
}
return nil
}
res["allowedToUseSSPR"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetBoolValue()
if err != nil {
return err
}
if val != nil {
m.SetAllowedToUseSSPR(val)
}
return nil
}
res["allowEmailVerifiedUsersToJoinOrganization"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetBoolValue()
if err != nil {
return err
}
if val != nil {
m.SetAllowEmailVerifiedUsersToJoinOrganization(val)
}
return nil
}
res["allowInvitesFrom"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetEnumValue(ParseAllowInvitesFrom)
if err != nil {
return err
}
if val != nil {
m.SetAllowInvitesFrom(val.(*AllowInvitesFrom))
}
return nil
}
res["allowUserConsentForRiskyApps"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetBoolValue()
if err != nil {
return err
}
if val != nil {
m.SetAllowUserConsentForRiskyApps(val)
}
return nil
}
res["blockMsolPowerShell"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetBoolValue()
if err != nil {
return err
}
if val != nil {
m.SetBlockMsolPowerShell(val)
}
return nil
}
res["defaultUserRolePermissions"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetObjectValue(CreateDefaultUserRolePermissionsFromDiscriminatorValue)
if err != nil {
return err
}
if val != nil {
m.SetDefaultUserRolePermissions(val.(DefaultUserRolePermissionsable))
}
return nil
}
res["guestUserRoleId"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetUUIDValue()
if err != nil {
return err
}
if val != nil {
m.SetGuestUserRoleId(val)
}
return nil
}
return res
}
// GetGuestUserRoleId gets the guestUserRoleId property value. Represents role templateId for the role that should be granted to guests. Currently following roles are supported: User (a0b1b346-4d3e-4e8b-98f8-753987be4970), Guest User (10dae51f-b6af-4016-8d66-8c2a99b929b3), and Restricted Guest User (2af84b1e-32c8-42b7-82bc-daa82404023b).
// returns a *UUID when successful
func (m *AuthorizationPolicy) GetGuestUserRoleId()(*i561e97a8befe7661a44c8f54600992b4207a3a0cf6770e5559949bc276de2e22.UUID) {
val, err := m.GetBackingStore().Get("guestUserRoleId")
if err != nil {
panic(err)
}
if val != nil {
return val.(*i561e97a8befe7661a44c8f54600992b4207a3a0cf6770e5559949bc276de2e22.UUID)
}
return nil
}
// Serialize serializes information the current object
func (m *AuthorizationPolicy) Serialize(writer i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.SerializationWriter)(error) {
err := m.PolicyBase.Serialize(writer)
if err != nil {
return err
}
{
err = writer.WriteBoolValue("allowedToSignUpEmailBasedSubscriptions", m.GetAllowedToSignUpEmailBasedSubscriptions())
if err != nil {
return err
}
}
{
err = writer.WriteBoolValue("allowedToUseSSPR", m.GetAllowedToUseSSPR())
if err != nil {
return err
}
}
{
err = writer.WriteBoolValue("allowEmailVerifiedUsersToJoinOrganization", m.GetAllowEmailVerifiedUsersToJoinOrganization())
if err != nil {
return err
}
}
if m.GetAllowInvitesFrom() != nil {
cast := (*m.GetAllowInvitesFrom()).String()
err = writer.WriteStringValue("allowInvitesFrom", &cast)
if err != nil {
return err
}
}
{
err = writer.WriteBoolValue("allowUserConsentForRiskyApps", m.GetAllowUserConsentForRiskyApps())
if err != nil {
return err
}
}
{
err = writer.WriteBoolValue("blockMsolPowerShell", m.GetBlockMsolPowerShell())
if err != nil {
return err
}
}
{
err = writer.WriteObjectValue("defaultUserRolePermissions", m.GetDefaultUserRolePermissions())
if err != nil {
return err
}
}
{
err = writer.WriteUUIDValue("guestUserRoleId", m.GetGuestUserRoleId())
if err != nil {
return err
}
}
return nil
}
// SetAllowedToSignUpEmailBasedSubscriptions sets the allowedToSignUpEmailBasedSubscriptions property value. Indicates whether users can sign up for email based subscriptions.
func (m *AuthorizationPolicy) SetAllowedToSignUpEmailBasedSubscriptions(value *bool)() {
err := m.GetBackingStore().Set("allowedToSignUpEmailBasedSubscriptions", value)
if err != nil {
panic(err)
}
}
// SetAllowedToUseSSPR sets the allowedToUseSSPR property value. Indicates whether administrators of the tenant can use the Self-Service Password Reset (SSPR). For more information, see Self-service password reset for administrators.
func (m *AuthorizationPolicy) SetAllowedToUseSSPR(value *bool)() {
err := m.GetBackingStore().Set("allowedToUseSSPR", value)
if err != nil {
panic(err)
}
}
// SetAllowEmailVerifiedUsersToJoinOrganization sets the allowEmailVerifiedUsersToJoinOrganization property value. Indicates whether a user can join the tenant by email validation.
func (m *AuthorizationPolicy) SetAllowEmailVerifiedUsersToJoinOrganization(value *bool)() {
err := m.GetBackingStore().Set("allowEmailVerifiedUsersToJoinOrganization", value)
if err != nil {
panic(err)
}
}
// SetAllowInvitesFrom sets the allowInvitesFrom property value. Indicates who can invite guests to the organization. Possible values are: none, adminsAndGuestInviters, adminsGuestInvitersAndAllMembers, everyone. everyone is the default setting for all cloud environments except US Government. For more information, see allowInvitesFrom values.
func (m *AuthorizationPolicy) SetAllowInvitesFrom(value *AllowInvitesFrom)() {
err := m.GetBackingStore().Set("allowInvitesFrom", value)
if err != nil {
panic(err)
}
}
// SetAllowUserConsentForRiskyApps sets the allowUserConsentForRiskyApps property value. Indicates whether user consent for risky apps is allowed. We recommend keeping allowUserConsentForRiskyApps as false. Default value is false.
func (m *AuthorizationPolicy) SetAllowUserConsentForRiskyApps(value *bool)() {
err := m.GetBackingStore().Set("allowUserConsentForRiskyApps", value)
if err != nil {
panic(err)
}
}
// SetBlockMsolPowerShell sets the blockMsolPowerShell property value. To disable the use of MSOL PowerShell, set this property to true. This also disables user-based access to the legacy service endpoint used by MSOL PowerShell. This doesn't affect Microsoft Entra Connect or Microsoft Graph.
func (m *AuthorizationPolicy) SetBlockMsolPowerShell(value *bool)() {
err := m.GetBackingStore().Set("blockMsolPowerShell", value)
if err != nil {
panic(err)
}
}
// SetDefaultUserRolePermissions sets the defaultUserRolePermissions property value. The defaultUserRolePermissions property
func (m *AuthorizationPolicy) SetDefaultUserRolePermissions(value DefaultUserRolePermissionsable)() {
err := m.GetBackingStore().Set("defaultUserRolePermissions", value)
if err != nil {
panic(err)
}
}
// SetGuestUserRoleId sets the guestUserRoleId property value. Represents role templateId for the role that should be granted to guests. Currently following roles are supported: User (a0b1b346-4d3e-4e8b-98f8-753987be4970), Guest User (10dae51f-b6af-4016-8d66-8c2a99b929b3), and Restricted Guest User (2af84b1e-32c8-42b7-82bc-daa82404023b).
func (m *AuthorizationPolicy) SetGuestUserRoleId(value *i561e97a8befe7661a44c8f54600992b4207a3a0cf6770e5559949bc276de2e22.UUID)() {
err := m.GetBackingStore().Set("guestUserRoleId", value)
if err != nil {
panic(err)
}
}
type AuthorizationPolicyable interface {
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable
PolicyBaseable
GetAllowedToSignUpEmailBasedSubscriptions()(*bool)
GetAllowedToUseSSPR()(*bool)
GetAllowEmailVerifiedUsersToJoinOrganization()(*bool)
GetAllowInvitesFrom()(*AllowInvitesFrom)
GetAllowUserConsentForRiskyApps()(*bool)
GetBlockMsolPowerShell()(*bool)
GetDefaultUserRolePermissions()(DefaultUserRolePermissionsable)
GetGuestUserRoleId()(*i561e97a8befe7661a44c8f54600992b4207a3a0cf6770e5559949bc276de2e22.UUID)
SetAllowedToSignUpEmailBasedSubscriptions(value *bool)()
SetAllowedToUseSSPR(value *bool)()
SetAllowEmailVerifiedUsersToJoinOrganization(value *bool)()
SetAllowInvitesFrom(value *AllowInvitesFrom)()
SetAllowUserConsentForRiskyApps(value *bool)()
SetBlockMsolPowerShell(value *bool)()
SetDefaultUserRolePermissions(value DefaultUserRolePermissionsable)()
SetGuestUserRoleId(value *i561e97a8befe7661a44c8f54600992b4207a3a0cf6770e5559949bc276de2e22.UUID)()
}