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
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
import "context"
// EnrollmentConfigurationAssignmentRequestBuilder is request builder for EnrollmentConfigurationAssignment
type EnrollmentConfigurationAssignmentRequestBuilder struct{ BaseRequestBuilder }
// Request returns EnrollmentConfigurationAssignmentRequest
func (b *EnrollmentConfigurationAssignmentRequestBuilder) Request() *EnrollmentConfigurationAssignmentRequest {
return &EnrollmentConfigurationAssignmentRequest{
BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client},
}
}
// EnrollmentConfigurationAssignmentRequest is request for EnrollmentConfigurationAssignment
type EnrollmentConfigurationAssignmentRequest struct{ BaseRequest }
// Get performs GET request for EnrollmentConfigurationAssignment
func (r *EnrollmentConfigurationAssignmentRequest) Get(ctx context.Context) (resObj *EnrollmentConfigurationAssignment, err error) {
var query string
if r.query != nil {
query = "?" + r.query.Encode()
}
err = r.JSONRequest(ctx, "GET", query, nil, &resObj)
return
}
// Update performs PATCH request for EnrollmentConfigurationAssignment
func (r *EnrollmentConfigurationAssignmentRequest) Update(ctx context.Context, reqObj *EnrollmentConfigurationAssignment) error {
return r.JSONRequest(ctx, "PATCH", "", reqObj, nil)
}
// Delete performs DELETE request for EnrollmentConfigurationAssignment
func (r *EnrollmentConfigurationAssignmentRequest) Delete(ctx context.Context) error {
return r.JSONRequest(ctx, "DELETE", "", nil, nil)
}
// EnrollmentProfileRequestBuilder is request builder for EnrollmentProfile
type EnrollmentProfileRequestBuilder struct{ BaseRequestBuilder }
// Request returns EnrollmentProfileRequest
func (b *EnrollmentProfileRequestBuilder) Request() *EnrollmentProfileRequest {
return &EnrollmentProfileRequest{
BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client},
}
}
// EnrollmentProfileRequest is request for EnrollmentProfile
type EnrollmentProfileRequest struct{ BaseRequest }
// Get performs GET request for EnrollmentProfile
func (r *EnrollmentProfileRequest) Get(ctx context.Context) (resObj *EnrollmentProfile, err error) {
var query string
if r.query != nil {
query = "?" + r.query.Encode()
}
err = r.JSONRequest(ctx, "GET", query, nil, &resObj)
return
}
// Update performs PATCH request for EnrollmentProfile
func (r *EnrollmentProfileRequest) Update(ctx context.Context, reqObj *EnrollmentProfile) error {
return r.JSONRequest(ctx, "PATCH", "", reqObj, nil)
}
// Delete performs DELETE request for EnrollmentProfile
func (r *EnrollmentProfileRequest) Delete(ctx context.Context) error {
return r.JSONRequest(ctx, "DELETE", "", nil, nil)
}
//
type EnrollmentProfileSetDefaultProfileRequestBuilder struct{ BaseRequestBuilder }
// SetDefaultProfile action undocumented
func (b *EnrollmentProfileRequestBuilder) SetDefaultProfile(reqObj *EnrollmentProfileSetDefaultProfileRequestParameter) *EnrollmentProfileSetDefaultProfileRequestBuilder {
bb := &EnrollmentProfileSetDefaultProfileRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
bb.BaseRequestBuilder.baseURL += "/setDefaultProfile"
bb.BaseRequestBuilder.requestObject = reqObj
return bb
}
//
type EnrollmentProfileSetDefaultProfileRequest struct{ BaseRequest }
//
func (b *EnrollmentProfileSetDefaultProfileRequestBuilder) Request() *EnrollmentProfileSetDefaultProfileRequest {
return &EnrollmentProfileSetDefaultProfileRequest{
BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client, requestObject: b.requestObject},
}
}
//
func (r *EnrollmentProfileSetDefaultProfileRequest) Post(ctx context.Context) error {
return r.JSONRequest(ctx, "POST", "", r.requestObject, nil)
}
//
type EnrollmentProfileUpdateDeviceProfileAssignmentRequestBuilder struct{ BaseRequestBuilder }
// UpdateDeviceProfileAssignment action undocumented
func (b *EnrollmentProfileRequestBuilder) UpdateDeviceProfileAssignment(reqObj *EnrollmentProfileUpdateDeviceProfileAssignmentRequestParameter) *EnrollmentProfileUpdateDeviceProfileAssignmentRequestBuilder {
bb := &EnrollmentProfileUpdateDeviceProfileAssignmentRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
bb.BaseRequestBuilder.baseURL += "/updateDeviceProfileAssignment"
bb.BaseRequestBuilder.requestObject = reqObj
return bb
}
//
type EnrollmentProfileUpdateDeviceProfileAssignmentRequest struct{ BaseRequest }
//
func (b *EnrollmentProfileUpdateDeviceProfileAssignmentRequestBuilder) Request() *EnrollmentProfileUpdateDeviceProfileAssignmentRequest {
return &EnrollmentProfileUpdateDeviceProfileAssignmentRequest{
BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client, requestObject: b.requestObject},
}
}
//
func (r *EnrollmentProfileUpdateDeviceProfileAssignmentRequest) Post(ctx context.Context) error {
return r.JSONRequest(ctx, "POST", "", r.requestObject, nil)
}
|