mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-13 04:30:26 +00:00
38 lines
1.3 KiB
Go
38 lines
1.3 KiB
Go
|
// Code generated by msgraph-generate.go DO NOT EDIT.
|
||
|
|
||
|
package msgraph
|
||
|
|
||
|
import "context"
|
||
|
|
||
|
// WindowsFeatureUpdateProfileAssignRequestParameter undocumented
|
||
|
type WindowsFeatureUpdateProfileAssignRequestParameter struct {
|
||
|
// Assignments undocumented
|
||
|
Assignments []WindowsFeatureUpdateProfileAssignment `json:"assignments,omitempty"`
|
||
|
}
|
||
|
|
||
|
//
|
||
|
type WindowsFeatureUpdateProfileAssignRequestBuilder struct{ BaseRequestBuilder }
|
||
|
|
||
|
// Assign action undocumented
|
||
|
func (b *WindowsFeatureUpdateProfileRequestBuilder) Assign(reqObj *WindowsFeatureUpdateProfileAssignRequestParameter) *WindowsFeatureUpdateProfileAssignRequestBuilder {
|
||
|
bb := &WindowsFeatureUpdateProfileAssignRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
|
||
|
bb.BaseRequestBuilder.baseURL += "/assign"
|
||
|
bb.BaseRequestBuilder.requestObject = reqObj
|
||
|
return bb
|
||
|
}
|
||
|
|
||
|
//
|
||
|
type WindowsFeatureUpdateProfileAssignRequest struct{ BaseRequest }
|
||
|
|
||
|
//
|
||
|
func (b *WindowsFeatureUpdateProfileAssignRequestBuilder) Request() *WindowsFeatureUpdateProfileAssignRequest {
|
||
|
return &WindowsFeatureUpdateProfileAssignRequest{
|
||
|
BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client, requestObject: b.requestObject},
|
||
|
}
|
||
|
}
|
||
|
|
||
|
//
|
||
|
func (r *WindowsFeatureUpdateProfileAssignRequest) Post(ctx context.Context) error {
|
||
|
return r.JSONRequest(ctx, "POST", "", r.requestObject, nil)
|
||
|
}
|