diff options
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/WindowsDefenderApplicationControlSupplementalPolicyAction.go')
-rw-r--r-- | vendor/github.com/yaegashi/msgraph.go/beta/WindowsDefenderApplicationControlSupplementalPolicyAction.go | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsDefenderApplicationControlSupplementalPolicyAction.go b/vendor/github.com/yaegashi/msgraph.go/beta/WindowsDefenderApplicationControlSupplementalPolicyAction.go deleted file mode 100644 index 73300e1e..00000000 --- a/vendor/github.com/yaegashi/msgraph.go/beta/WindowsDefenderApplicationControlSupplementalPolicyAction.go +++ /dev/null @@ -1,37 +0,0 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. - -package msgraph - -import "context" - -// WindowsDefenderApplicationControlSupplementalPolicyAssignRequestParameter undocumented -type WindowsDefenderApplicationControlSupplementalPolicyAssignRequestParameter struct { - // WdacPolicyAssignments undocumented - WdacPolicyAssignments []WindowsDefenderApplicationControlSupplementalPolicyAssignment `json:"wdacPolicyAssignments,omitempty"` -} - -// -type WindowsDefenderApplicationControlSupplementalPolicyAssignRequestBuilder struct{ BaseRequestBuilder } - -// Assign action undocumented -func (b *WindowsDefenderApplicationControlSupplementalPolicyRequestBuilder) Assign(reqObj *WindowsDefenderApplicationControlSupplementalPolicyAssignRequestParameter) *WindowsDefenderApplicationControlSupplementalPolicyAssignRequestBuilder { - bb := &WindowsDefenderApplicationControlSupplementalPolicyAssignRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder} - bb.BaseRequestBuilder.baseURL += "/assign" - bb.BaseRequestBuilder.requestObject = reqObj - return bb -} - -// -type WindowsDefenderApplicationControlSupplementalPolicyAssignRequest struct{ BaseRequest } - -// -func (b *WindowsDefenderApplicationControlSupplementalPolicyAssignRequestBuilder) Request() *WindowsDefenderApplicationControlSupplementalPolicyAssignRequest { - return &WindowsDefenderApplicationControlSupplementalPolicyAssignRequest{ - BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client, requestObject: b.requestObject}, - } -} - -// -func (r *WindowsDefenderApplicationControlSupplementalPolicyAssignRequest) Post(ctx context.Context) error { - return r.JSONRequest(ctx, "POST", "", r.requestObject, nil) -} |