// Code generated by msgraph-generate.go DO NOT EDIT. package msgraph import "context" // RbacApplicationRequestBuilder is request builder for RbacApplication type RbacApplicationRequestBuilder struct{ BaseRequestBuilder } // Request returns RbacApplicationRequest func (b *RbacApplicationRequestBuilder) Request() *RbacApplicationRequest { return &RbacApplicationRequest{ BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client}, } } // RbacApplicationRequest is request for RbacApplication type RbacApplicationRequest struct{ BaseRequest } // Get performs GET request for RbacApplication func (r *RbacApplicationRequest) Get(ctx context.Context) (resObj *RbacApplication, 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 RbacApplication func (r *RbacApplicationRequest) Update(ctx context.Context, reqObj *RbacApplication) error { return r.JSONRequest(ctx, "PATCH", "", reqObj, nil) } // Delete performs DELETE request for RbacApplication func (r *RbacApplicationRequest) Delete(ctx context.Context) error { return r.JSONRequest(ctx, "DELETE", "", nil, nil) }