summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/yaegashi/msgraph.go/beta/WindowsFeatureUpdateProfileAction.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/WindowsFeatureUpdateProfileAction.go')
-rw-r--r--vendor/github.com/yaegashi/msgraph.go/beta/WindowsFeatureUpdateProfileAction.go37
1 files changed, 0 insertions, 37 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsFeatureUpdateProfileAction.go b/vendor/github.com/yaegashi/msgraph.go/beta/WindowsFeatureUpdateProfileAction.go
deleted file mode 100644
index 972e706d..00000000
--- a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsFeatureUpdateProfileAction.go
+++ /dev/null
@@ -1,37 +0,0 @@
-// 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)
-}