diff options
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/RequestEnrollment.go')
-rw-r--r-- | vendor/github.com/yaegashi/msgraph.go/beta/RequestEnrollment.go | 123 |
1 files changed, 123 insertions, 0 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestEnrollment.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestEnrollment.go new file mode 100644 index 00000000..631378d7 --- /dev/null +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestEnrollment.go @@ -0,0 +1,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) +} |