summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/yaegashi/msgraph.go/beta/IntuneBrandingProfileAction.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/IntuneBrandingProfileAction.go')
-rw-r--r--vendor/github.com/yaegashi/msgraph.go/beta/IntuneBrandingProfileAction.go37
1 files changed, 0 insertions, 37 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/IntuneBrandingProfileAction.go b/vendor/github.com/yaegashi/msgraph.go/beta/IntuneBrandingProfileAction.go
deleted file mode 100644
index 7d07e985..00000000
--- a/vendor/github.com/yaegashi/msgraph.go/beta/IntuneBrandingProfileAction.go
+++ /dev/null
@@ -1,37 +0,0 @@
-// Code generated by msgraph-generate.go DO NOT EDIT.
-
-package msgraph
-
-import "context"
-
-// IntuneBrandingProfileAssignRequestParameter undocumented
-type IntuneBrandingProfileAssignRequestParameter struct {
- // Assignments undocumented
- Assignments []IntuneBrandingProfileAssignment `json:"assignments,omitempty"`
-}
-
-//
-type IntuneBrandingProfileAssignRequestBuilder struct{ BaseRequestBuilder }
-
-// Assign action undocumented
-func (b *IntuneBrandingProfileRequestBuilder) Assign(reqObj *IntuneBrandingProfileAssignRequestParameter) *IntuneBrandingProfileAssignRequestBuilder {
- bb := &IntuneBrandingProfileAssignRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
- bb.BaseRequestBuilder.baseURL += "/assign"
- bb.BaseRequestBuilder.requestObject = reqObj
- return bb
-}
-
-//
-type IntuneBrandingProfileAssignRequest struct{ BaseRequest }
-
-//
-func (b *IntuneBrandingProfileAssignRequestBuilder) Request() *IntuneBrandingProfileAssignRequest {
- return &IntuneBrandingProfileAssignRequest{
- BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client, requestObject: b.requestObject},
- }
-}
-
-//
-func (r *IntuneBrandingProfileAssignRequest) Post(ctx context.Context) error {
- return r.JSONRequest(ctx, "POST", "", r.requestObject, nil)
-}