summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationJobRequest.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationJobRequest.go')
-rw-r--r--vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationJobRequest.go45
1 files changed, 0 insertions, 45 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationJobRequest.go b/vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationJobRequest.go
deleted file mode 100644
index e805af59..00000000
--- a/vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationJobRequest.go
+++ /dev/null
@@ -1,45 +0,0 @@
-// Code generated by msgraph-generate.go DO NOT EDIT.
-
-package msgraph
-
-import "context"
-
-// SynchronizationJobRequestBuilder is request builder for SynchronizationJob
-type SynchronizationJobRequestBuilder struct{ BaseRequestBuilder }
-
-// Request returns SynchronizationJobRequest
-func (b *SynchronizationJobRequestBuilder) Request() *SynchronizationJobRequest {
- return &SynchronizationJobRequest{
- BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client},
- }
-}
-
-// SynchronizationJobRequest is request for SynchronizationJob
-type SynchronizationJobRequest struct{ BaseRequest }
-
-// Get performs GET request for SynchronizationJob
-func (r *SynchronizationJobRequest) Get(ctx context.Context) (resObj *SynchronizationJob, 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 SynchronizationJob
-func (r *SynchronizationJobRequest) Update(ctx context.Context, reqObj *SynchronizationJob) error {
- return r.JSONRequest(ctx, "PATCH", "", reqObj, nil)
-}
-
-// Delete performs DELETE request for SynchronizationJob
-func (r *SynchronizationJobRequest) Delete(ctx context.Context) error {
- return r.JSONRequest(ctx, "DELETE", "", nil, nil)
-}
-
-// Schema is navigation property
-func (b *SynchronizationJobRequestBuilder) Schema() *SynchronizationSchemaRequestBuilder {
- bb := &SynchronizationSchemaRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
- bb.baseURL += "/schema"
- return bb
-}