-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathcloud_pc_provisioning_policy_assignment.go
125 lines (123 loc) · 5.54 KB
/
cloud_pc_provisioning_policy_assignment.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
package models
import (
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91 "github.com/microsoft/kiota-abstractions-go/serialization"
)
type CloudPcProvisioningPolicyAssignment struct {
Entity
}
// NewCloudPcProvisioningPolicyAssignment instantiates a new CloudPcProvisioningPolicyAssignment and sets the default values.
func NewCloudPcProvisioningPolicyAssignment()(*CloudPcProvisioningPolicyAssignment) {
m := &CloudPcProvisioningPolicyAssignment{
Entity: *NewEntity(),
}
return m
}
// CreateCloudPcProvisioningPolicyAssignmentFromDiscriminatorValue creates a new instance of the appropriate class based on discriminator value
// returns a Parsable when successful
func CreateCloudPcProvisioningPolicyAssignmentFromDiscriminatorValue(parseNode i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, error) {
return NewCloudPcProvisioningPolicyAssignment(), nil
}
// GetAssignedUsers gets the assignedUsers property value. The assignment targeted users for the provisioning policy. This list of users is computed based on assignments, licenses, group memberships, and policies. Read-only. Supports$expand.
// returns a []Userable when successful
func (m *CloudPcProvisioningPolicyAssignment) GetAssignedUsers()([]Userable) {
val, err := m.GetBackingStore().Get("assignedUsers")
if err != nil {
panic(err)
}
if val != nil {
return val.([]Userable)
}
return nil
}
// GetFieldDeserializers the deserialization information for the current model
// returns a map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error) when successful
func (m *CloudPcProvisioningPolicyAssignment) GetFieldDeserializers()(map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error)) {
res := m.Entity.GetFieldDeserializers()
res["assignedUsers"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetCollectionOfObjectValues(CreateUserFromDiscriminatorValue)
if err != nil {
return err
}
if val != nil {
res := make([]Userable, len(val))
for i, v := range val {
if v != nil {
res[i] = v.(Userable)
}
}
m.SetAssignedUsers(res)
}
return nil
}
res["target"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetObjectValue(CreateCloudPcManagementAssignmentTargetFromDiscriminatorValue)
if err != nil {
return err
}
if val != nil {
m.SetTarget(val.(CloudPcManagementAssignmentTargetable))
}
return nil
}
return res
}
// GetTarget gets the target property value. The assignment target for the provisioning policy. Currently, the only target supported for this policy is a user group. For details, see cloudPcManagementGroupAssignmentTarget.
// returns a CloudPcManagementAssignmentTargetable when successful
func (m *CloudPcProvisioningPolicyAssignment) GetTarget()(CloudPcManagementAssignmentTargetable) {
val, err := m.GetBackingStore().Get("target")
if err != nil {
panic(err)
}
if val != nil {
return val.(CloudPcManagementAssignmentTargetable)
}
return nil
}
// Serialize serializes information the current object
func (m *CloudPcProvisioningPolicyAssignment) Serialize(writer i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.SerializationWriter)(error) {
err := m.Entity.Serialize(writer)
if err != nil {
return err
}
if m.GetAssignedUsers() != nil {
cast := make([]i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, len(m.GetAssignedUsers()))
for i, v := range m.GetAssignedUsers() {
if v != nil {
cast[i] = v.(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable)
}
}
err = writer.WriteCollectionOfObjectValues("assignedUsers", cast)
if err != nil {
return err
}
}
{
err = writer.WriteObjectValue("target", m.GetTarget())
if err != nil {
return err
}
}
return nil
}
// SetAssignedUsers sets the assignedUsers property value. The assignment targeted users for the provisioning policy. This list of users is computed based on assignments, licenses, group memberships, and policies. Read-only. Supports$expand.
func (m *CloudPcProvisioningPolicyAssignment) SetAssignedUsers(value []Userable)() {
err := m.GetBackingStore().Set("assignedUsers", value)
if err != nil {
panic(err)
}
}
// SetTarget sets the target property value. The assignment target for the provisioning policy. Currently, the only target supported for this policy is a user group. For details, see cloudPcManagementGroupAssignmentTarget.
func (m *CloudPcProvisioningPolicyAssignment) SetTarget(value CloudPcManagementAssignmentTargetable)() {
err := m.GetBackingStore().Set("target", value)
if err != nil {
panic(err)
}
}
type CloudPcProvisioningPolicyAssignmentable interface {
Entityable
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable
GetAssignedUsers()([]Userable)
GetTarget()(CloudPcManagementAssignmentTargetable)
SetAssignedUsers(value []Userable)()
SetTarget(value CloudPcManagementAssignmentTargetable)()
}