diff options
author | Wim <wim@42.be> | 2020-09-04 23:29:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-04 23:29:13 +0200 |
commit | 2f59abdda7a1072036ea1fdb4c859cccbb56efa6 (patch) | |
tree | e35393f23d12783ae92f0469085efc7dec953f82 /vendor/github.com | |
parent | 17747a5c8893fd47ba8eb61dd10477170640caf6 (diff) | |
download | matterbridge-msglm-2f59abdda7a1072036ea1fdb4c859cccbb56efa6.tar.gz matterbridge-msglm-2f59abdda7a1072036ea1fdb4c859cccbb56efa6.tar.bz2 matterbridge-msglm-2f59abdda7a1072036ea1fdb4c859cccbb56efa6.zip |
Update vendor (#1228)
Diffstat (limited to 'vendor/github.com')
1282 files changed, 3711 insertions, 2389 deletions
diff --git a/vendor/github.com/gomarkdown/markdown/README.md b/vendor/github.com/gomarkdown/markdown/README.md index 31ebb600..5488280c 100644 --- a/vendor/github.com/gomarkdown/markdown/README.md +++ b/vendor/github.com/gomarkdown/markdown/README.md @@ -113,7 +113,7 @@ opts := html.RendererOptions{ } renderer := html.NewRenderer(opts) md := "test\n```\nthis code block will be dropped from output\n```\ntext" -html := markdown.ToHTML([]byte(s), nil, renderer) +html := markdown.ToHTML([]byte(md), nil, renderer) ```` ## Sanitize untrusted content diff --git a/vendor/github.com/gomarkdown/markdown/go.sum b/vendor/github.com/gomarkdown/markdown/go.sum new file mode 100644 index 00000000..1406b01f --- /dev/null +++ b/vendor/github.com/gomarkdown/markdown/go.sum @@ -0,0 +1 @@ +golang.org/dl v0.0.0-20190829154251-82a15e2f2ead/go.mod h1:IUMfjQLJQd4UTqG1Z90tenwKoCX93Gn3MAQJMOSBsDQ= diff --git a/vendor/github.com/gomarkdown/markdown/parser/block.go b/vendor/github.com/gomarkdown/markdown/parser/block.go index 3b0c391a..a0b80991 100644 --- a/vendor/github.com/gomarkdown/markdown/parser/block.go +++ b/vendor/github.com/gomarkdown/markdown/parser/block.go @@ -26,8 +26,10 @@ var ( blockTags = map[string]struct{}{ "blockquote": {}, "del": {}, + "dd": {}, "div": {}, "dl": {}, + "dt": {}, "fieldset": {}, "form": {}, "h1": {}, @@ -36,23 +38,28 @@ var ( "h4": {}, "h5": {}, "h6": {}, - "iframe": {}, - "ins": {}, - "math": {}, - "noscript": {}, - "ol": {}, - "pre": {}, - "p": {}, - "script": {}, - "style": {}, - "table": {}, - "ul": {}, + // TODO: technically block but breaks Inline HTML (Simple).text + //"hr": {}, + "iframe": {}, + "ins": {}, + "li": {}, + "math": {}, + "noscript": {}, + "ol": {}, + "pre": {}, + "p": {}, + "script": {}, + "style": {}, + "table": {}, + "ul": {}, // HTML5 "address": {}, "article": {}, "aside": {}, "canvas": {}, + "details": {}, + "dialog": {}, "figcaption": {}, "figure": {}, "footer": {}, @@ -230,8 +237,10 @@ func (p *Parser) block(data []byte) { // or // ______ if p.isHRule(data) { - p.addBlock(&ast.HorizontalRule{}) i := skipUntilChar(data, 0, '\n') + hr := ast.HorizontalRule{} + hr.Literal = bytes.Trim(data[:i], " \n") + p.addBlock(&hr) data = data[i:] continue } diff --git a/vendor/github.com/google/gops/agent/agent.go b/vendor/github.com/google/gops/agent/agent.go index bb2bbf09..59a03cf5 100644 --- a/vendor/github.com/google/gops/agent/agent.go +++ b/vendor/github.com/google/gops/agent/agent.go @@ -222,7 +222,10 @@ func handle(conn io.ReadWriter, msg []byte) error { fmt.Fprintf(conn, "last-gc: %v\n", lastGC) fmt.Fprintf(conn, "gc-pause-total: %v\n", time.Duration(s.PauseTotalNs)) fmt.Fprintf(conn, "gc-pause: %v\n", s.PauseNs[(s.NumGC+255)%256]) + fmt.Fprintf(conn, "gc-pause-end: %v\n", s.PauseEnd[(s.NumGC+255)%256]) fmt.Fprintf(conn, "num-gc: %v\n", s.NumGC) + fmt.Fprintf(conn, "num-forced-gc: %v\n", s.NumForcedGC) + fmt.Fprintf(conn, "gc-cpu-fraction: %v\n", s.GCCPUFraction) fmt.Fprintf(conn, "enable-gc: %v\n", s.EnableGC) fmt.Fprintf(conn, "debug-gc: %v\n", s.DebugGC) case signal.Version: diff --git a/vendor/github.com/gorilla/schema/.travis.yml b/vendor/github.com/gorilla/schema/.travis.yml deleted file mode 100644 index 5f51dce4..00000000 --- a/vendor/github.com/gorilla/schema/.travis.yml +++ /dev/null @@ -1,18 +0,0 @@ -language: go -sudo: false - -matrix: - include: - - go: 1.5 - - go: 1.6 - - go: 1.7 - - go: 1.8 - - go: tip - allow_failures: - - go: tip - -script: - - go get -t -v ./... - - diff -u <(echo -n) <(gofmt -d .) - - go vet $(go list ./... | grep -v /vendor/) - - go test -v -race ./... diff --git a/vendor/github.com/gorilla/schema/decoder.go b/vendor/github.com/gorilla/schema/decoder.go index 5afbd921..025e438b 100644 --- a/vendor/github.com/gorilla/schema/decoder.go +++ b/vendor/github.com/gorilla/schema/decoder.go @@ -152,9 +152,15 @@ type fieldWithPrefix struct { func isEmptyFields(fields []fieldWithPrefix, src map[string][]string) bool { for _, f := range fields { for _, path := range f.paths(f.prefix) { - if !isEmpty(f.typ, src[path]) { + v, ok := src[path] + if ok && !isEmpty(f.typ, v) { return false } + for key := range src { + if !isEmpty(f.typ, src[key]) && strings.HasPrefix(key, path) { + return false + } + } } } return true @@ -182,6 +188,17 @@ func (d *Decoder) decode(v reflect.Value, path string, parts []pathPart, values } v = v.Elem() } + + // alloc embedded structs + if v.Type().Kind() == reflect.Struct { + for i := 0; i < v.NumField(); i++ { + field := v.Field(i) + if field.Type().Kind() == reflect.Ptr && field.IsNil() && v.Type().Field(i).Anonymous == true { + field.Set(reflect.New(field.Type().Elem())) + } + } + } + v = v.FieldByName(name) } // Don't even bother for unexported fields. diff --git a/vendor/github.com/gorilla/schema/encoder.go b/vendor/github.com/gorilla/schema/encoder.go index bf1d511e..f0ed6312 100644 --- a/vendor/github.com/gorilla/schema/encoder.go +++ b/vendor/github.com/gorilla/schema/encoder.go @@ -57,6 +57,13 @@ func isZero(v reflect.Value) bool { } return z case reflect.Struct: + type zero interface { + IsZero() bool + } + if v.Type().Implements(reflect.TypeOf((*zero)(nil)).Elem()) { + iz := v.MethodByName("IsZero").Call([]reflect.Value{})[0] + return iz.Interface().(bool) + } z := true for i := 0; i < v.NumField(); i++ { z = z && isZero(v.Field(i)) diff --git a/vendor/github.com/labstack/echo/v4/.travis.yml b/vendor/github.com/labstack/echo/v4/.travis.yml index a1fc8768..ef826e95 100644 --- a/vendor/github.com/labstack/echo/v4/.travis.yml +++ b/vendor/github.com/labstack/echo/v4/.travis.yml @@ -1,7 +1,7 @@ language: go go: - - 1.12.x - - 1.13.x + - 1.14.x + - 1.15.x - tip env: - GO111MODULE=on diff --git a/vendor/github.com/labstack/echo/v4/README.md b/vendor/github.com/labstack/echo/v4/README.md index c57d478f..d9d96139 100644 --- a/vendor/github.com/labstack/echo/v4/README.md +++ b/vendor/github.com/labstack/echo/v4/README.md @@ -17,7 +17,7 @@ Therefore a Go version capable of understanding /vN suffixed imports is required - 1.9.7+ - 1.10.3+ -- 1.11+ +- 1.14+ Any of these versions will allow you to import Echo as `github.com/labstack/echo/v4` which is the recommended way of using Echo going forward. @@ -52,7 +52,7 @@ Lower is better! ### Installation -```go +```sh // go get github.com/labstack/echo/{version} go get github.com/labstack/echo/v4 ``` diff --git a/vendor/github.com/labstack/echo/v4/echo.go b/vendor/github.com/labstack/echo/v4/echo.go index 511eb43f..18c11016 100644 --- a/vendor/github.com/labstack/echo/v4/echo.go +++ b/vendor/github.com/labstack/echo/v4/echo.go @@ -48,6 +48,7 @@ import ( "net" "net/http" "net/url" + "os" "path" "path/filepath" "reflect" @@ -230,7 +231,7 @@ const ( const ( // Version of Echo - Version = "4.1.16" + Version = "4.1.17" website = "https://echo.labstack.com" // http://patorjk.com/software/taag/#p=display&f=Small%20Slant&t=Echo banner = ` @@ -479,7 +480,20 @@ func (common) static(prefix, root string, get func(string, HandlerFunc, ...Middl if err != nil { return err } + name := filepath.Join(root, path.Clean("/"+p)) // "/"+ for security + fi, err := os.Stat(name) + if err != nil { + // The access path does not exist + return NotFoundHandler(c) + } + + // If the request is for a directory and does not end with "/" + p = c.Request().URL.Path // path must not be empty. + if fi.IsDir() && p[len(p)-1] != '/' { + // Redirect to ends with "/" + return c.Redirect(http.StatusMovedPermanently, p+"/") + } return c.File(name) } if prefix == "/" { @@ -504,11 +518,7 @@ func (e *Echo) add(host, method, path string, handler HandlerFunc, middleware .. name := handlerName(handler) router := e.findRouter(host) router.Add(method, path, func(c Context) error { - h := handler - // Chain middleware - for i := len(middleware) - 1; i >= 0; i-- { - h = middleware[i](h) - } + h := applyMiddleware(handler, middleware...) return h(c) }) r := &Route{ @@ -606,12 +616,12 @@ func (e *Echo) ServeHTTP(w http.ResponseWriter, r *http.Request) { h := NotFoundHandler if e.premiddleware == nil { - e.findRouter(r.Host).Find(r.Method, getPath(r), c) + e.findRouter(r.Host).Find(r.Method, GetPath(r), c) h = c.Handler() h = applyMiddleware(h, e.middleware...) } else { h = func(c Context) error { - e.findRouter(r.Host).Find(r.Method, getPath(r), c) + e.findRouter(r.Host).Find(r.Method, GetPath(r), c) h := c.Handler() h = applyMiddleware(h, e.middleware...) return h(c) @@ -795,6 +805,11 @@ func (he *HTTPError) SetInternal(err error) *HTTPError { return he } +// Unwrap satisfies the Go 1.13 error wrapper interface. +func (he *HTTPError) Unwrap() error { + return he.Internal +} + // WrapHandler wraps `http.Handler` into `echo.HandlerFunc`. func WrapHandler(h http.Handler) HandlerFunc { return func(c Context) error { @@ -817,7 +832,8 @@ func WrapMiddleware(m func(http.Handler) http.Handler) MiddlewareFunc { } } -func getPath(r *http.Request) string { +// GetPath returns RawPath, if it's empty returns Path from URL +func GetPath(r *http.Request) string { path := r.URL.RawPath if path == "" { path = r.URL.Path diff --git a/vendor/github.com/labstack/echo/v4/go.mod b/vendor/github.com/labstack/echo/v4/go.mod index b3ac0800..74c6a9ab 100644 --- a/vendor/github.com/labstack/echo/v4/go.mod +++ b/vendor/github.com/labstack/echo/v4/go.mod @@ -1,14 +1,15 @@ module github.com/labstack/echo/v4 -go 1.14 +go 1.15 require ( github.com/dgrijalva/jwt-go v3.2.0+incompatible github.com/labstack/gommon v0.3.0 - github.com/mattn/go-colorable v0.1.6 // indirect + github.com/mattn/go-colorable v0.1.7 // indirect github.com/stretchr/testify v1.4.0 - github.com/valyala/fasttemplate v1.1.0 - golang.org/x/crypto v0.0.0-20200221231518-2aa609cf4a9d - golang.org/x/net v0.0.0-20200226121028-0de0cce0169b - golang.org/x/text v0.3.2 // indirect + github.com/valyala/fasttemplate v1.2.1 + golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a + golang.org/x/net v0.0.0-20200822124328-c89045814202 + golang.org/x/sys v0.0.0-20200826173525-f9321e4c35a6 // indirect + golang.org/x/text v0.3.3 // indirect ) diff --git a/vendor/github.com/labstack/echo/v4/go.sum b/vendor/github.com/labstack/echo/v4/go.sum index 8e7e54ce..58c80c83 100644 --- a/vendor/github.com/labstack/echo/v4/go.sum +++ b/vendor/github.com/labstack/echo/v4/go.sum @@ -1,14 +1,13 @@ github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/dgrijalva/jwt-go v1.0.2 h1:KPldsxuKGsS2FPWsNeg9ZO18aCrGKujPoWXn2yo+KQM= github.com/dgrijalva/jwt-go v3.2.0+incompatible h1:7qlOGliEKZXTDg6OTjfoBKDXWrumCAMpl/TFQ4/5kLM= github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ= github.com/labstack/gommon v0.3.0 h1:JEeO0bvc78PKdyHxloTKiF8BD5iGrH8T6MSeGvSgob0= github.com/labstack/gommon v0.3.0/go.mod h1:MULnywXg0yavhxWKc+lOruYdAhDwPK9wf0OL7NoOu+k= github.com/mattn/go-colorable v0.1.2 h1:/bC9yWikZXAL9uJdulbSfyVNIR3n3trXl+v8+1sx8mU= github.com/mattn/go-colorable v0.1.2/go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVcfRqFIhoBtE= -github.com/mattn/go-colorable v0.1.6 h1:6Su7aK7lXmJ/U79bYtBjLNaha4Fs1Rg9plHpcH+vvnE= -github.com/mattn/go-colorable v0.1.6/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= +github.com/mattn/go-colorable v0.1.7 h1:bQGKb3vps/j0E9GfJQ03JyhRuxsvdAanXlT9BTw3mdw= +github.com/mattn/go-colorable v0.1.7/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= github.com/mattn/go-isatty v0.0.8/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s= github.com/mattn/go-isatty v0.0.9 h1:d5US/mDsogSGW37IV293h//ZFaeajb69h+EHFsv2xGg= github.com/mattn/go-isatty v0.0.9/go.mod h1:YNRxwqDuOph6SZLI9vUUz6OYw3QyUt7WiY2yME+cCiQ= @@ -23,14 +22,15 @@ github.com/valyala/bytebufferpool v1.0.0 h1:GqA5TC/0021Y/b9FG4Oi9Mr3q7XYx6Kllzaw github.com/valyala/bytebufferpool v1.0.0/go.mod h1:6bBcMArwyJ5K/AmCkWv1jt77kVWyCJ6HpOuEn7z0Csc= github.com/valyala/fasttemplate v1.0.1 h1:tY9CJiPnMXf1ERmG2EyK7gNUd+c6RKGD0IfU8WdUSz8= github.com/valyala/fasttemplate v1.0.1/go.mod h1:UQGH1tvbgY+Nz5t2n7tXsz52dQxojPUpymEIMZ47gx8= -github.com/valyala/fasttemplate v1.1.0 h1:RZqt0yGBsps8NGvLSGW804QQqCUYYLsaOjTVHy1Ocw4= -github.com/valyala/fasttemplate v1.1.0/go.mod h1:UQGH1tvbgY+Nz5t2n7tXsz52dQxojPUpymEIMZ47gx8= +github.com/valyala/fasttemplate v1.2.1 h1:TVEnxayobAdVkhQfrfes2IzOB6o+z4roRkPF52WA1u4= +github.com/valyala/fasttemplate v1.2.1/go.mod h1:KHLXt3tVN2HBp8eijSv/kGJopbvo7S+qRAEEKiv+SiQ= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= -golang.org/x/crypto v0.0.0-20200221231518-2aa609cf4a9d h1:1ZiEyfaQIg3Qh0EoqpwAakHVhecoE5wlSg5GjnafJGw= -golang.org/x/crypto v0.0.0-20200221231518-2aa609cf4a9d/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a h1:vclmkQCjlDX5OydZ9wv8rBCcS0QyQY66Mpf/7BZbInM= +golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20200226121028-0de0cce0169b h1:0mm1VjtFUOIlE1SbDlwjYaDxZVDP2S5ou6y0gSgXHu8= -golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200822124328-c89045814202 h1:VvcQYSHwXgi7W+TpUR6A9g6Up98WAHf3f/ulnJ62IyA= +golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -39,11 +39,15 @@ golang.org/x/sys v0.0.0-20190813064441-fde4db37ae7a/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae h1:/WDfKMnPU+m5M4xB+6x4kaepxRw6jWvR5iDRdvjHgy8= golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200826173525-f9321e4c35a6 h1:DvY3Zkh7KabQE/kfzMvYvKirSiguP9Q/veMtkYyf0o8= +golang.org/x/sys v0.0.0-20200826173525-f9321e4c35a6/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/text v0.3.0 h1:g61tztE5qeGQ89tm6NTjjM9VPIm088od1l6aSorWRWg= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= -golang.org/x/text v0.3.2 h1:tW2bmiBqwgJj/UpqtC8EpXEZVYOwU0yG4iWbprSVAcs= -golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= +golang.org/x/text v0.3.3 h1:cokOdA+Jmi5PJGXLlLllQSgYigAEfHXJAERHVMaCc2k= +golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/yaml.v2 v2.2.2 h1:ZCJp+EgiOT7lHqUV2J862kp8Qj64Jo6az82+3Td9dZw= gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= diff --git a/vendor/github.com/labstack/echo/v4/group.go b/vendor/github.com/labstack/echo/v4/group.go index 5d958253..426bef9e 100644 --- a/vendor/github.com/labstack/echo/v4/group.go +++ b/vendor/github.com/labstack/echo/v4/group.go @@ -109,7 +109,7 @@ func (g *Group) Static(prefix, root string) { // File implements `Echo#File()` for sub-routes within the Group. func (g *Group) File(path, file string) { - g.file(g.prefix+path, file, g.GET) + g.file(path, file, g.GET) } // Add implements `Echo#Add()` for sub-routes within the Group. diff --git a/vendor/github.com/labstack/echo/v4/middleware/compress.go b/vendor/github.com/labstack/echo/v4/middleware/compress.go index 89da16ef..dd97d983 100644 --- a/vendor/github.com/labstack/echo/v4/middleware/compress.go +++ b/vendor/github.com/labstack/echo/v4/middleware/compress.go @@ -119,3 +119,10 @@ func (w *gzipResponseWriter) Flush() { func (w *gzipResponseWriter) Hijack() (net.Conn, *bufio.ReadWriter, error) { return w.ResponseWriter.(http.Hijacker).Hijack() } + +func (w *gzipResponseWriter) Push(target string, opts *http.PushOptions) error { + if p, ok := w.ResponseWriter.(http.Pusher); ok { + return p.Push(target, opts) + } + return http.ErrNotSupported +} diff --git a/vendor/github.com/labstack/echo/v4/middleware/proxy.go b/vendor/github.com/labstack/echo/v4/middleware/proxy.go index 1da370db..a9b91f6c 100644 --- a/vendor/github.com/labstack/echo/v4/middleware/proxy.go +++ b/vendor/github.com/labstack/echo/v4/middleware/proxy.go @@ -45,6 +45,9 @@ type ( // Examples: If custom TLS certificates are required. Transport http.RoundTripper + // ModifyResponse defines function to modify response from ProxyTarget. + ModifyResponse func(*http.Response) error + rewriteRegex map[*regexp.Regexp]string } @@ -224,7 +227,7 @@ func ProxyWithConfig(config ProxyConfig) echo.MiddlewareFunc { // Rewrite for k, v := range config.rewriteRegex { - replacer := captureTokens(k, req.URL.Path) + replacer := captureTokens(k, echo.GetPath(req)) if replacer != nil { req.URL.Path = replacer.Replace(v) } diff --git a/vendor/github.com/labstack/echo/v4/middleware/proxy_1_11.go b/vendor/github.com/labstack/echo/v4/middleware/proxy_1_11.go index 12b7568b..a4392781 100644 --- a/vendor/github.com/labstack/echo/v4/middleware/proxy_1_11.go +++ b/vendor/github.com/labstack/echo/v4/middleware/proxy_1_11.go @@ -20,5 +20,6 @@ func proxyHTTP(tgt *ProxyTarget, c echo.Context, config ProxyConfig) http.Handle c.Set("_error", echo.NewHTTPError(http.StatusBadGateway, fmt.Sprintf("remote %s unreachable, could not forward: %v", desc, err))) } proxy.Transport = config.Transport + proxy.ModifyResponse = config.ModifyResponse return proxy } diff --git a/vendor/github.com/labstack/echo/v4/middleware/recover.go b/vendor/github.com/labstack/echo/v4/middleware/recover.go index e87aaf32..0dbe740d 100644 --- a/vendor/github.com/labstack/echo/v4/middleware/recover.go +++ b/vendor/github.com/labstack/echo/v4/middleware/recover.go @@ -5,6 +5,7 @@ import ( "runtime" "github.com/labstack/echo/v4" + "github.com/labstack/gommon/log" ) type ( @@ -25,6 +26,10 @@ type ( // DisablePrintStack disables printing stack trace. // Optional. Default value as false. DisablePrintStack bool `yaml:"disable_print_stack"` + + // LogLevel is log level to printing stack trace. + // Optional. Default value 0 (Print). + LogLevel log.Lvl } ) @@ -35,6 +40,7 @@ var ( StackSize: 4 << 10, // 4 KB DisableStackAll: false, DisablePrintStack: false, + LogLevel: 0, } ) @@ -70,7 +76,21 @@ func RecoverWithConfig(config RecoverConfig) echo.MiddlewareFunc { stack := make([]byte, config.StackSize) length := runtime.Stack(stack, !config.DisableStackAll) if !config.DisablePrintStack { - c.Logger().Printf("[PANIC RECOVER] %v %s\n", err, stack[:length]) + msg := fmt.Sprintf("[PANIC RECOVER] %v %s\n", err, stack[:length]) + switch config.LogLevel { + case log.DEBUG: + c.Logger().Debug(msg) + case log.INFO: + c.Logger().Info(msg) + case log.WARN: + c.Logger().Warn(msg) + case log.ERROR: + c.Logger().Error(msg) + case log.OFF: + // None. + default: + c.Logger().Print(msg) + } } c.Error(err) } diff --git a/vendor/github.com/labstack/echo/v4/router.go b/vendor/github.com/labstack/echo/v4/router.go index 15a3398f..ed728d6a 100644 --- a/vendor/github.com/labstack/echo/v4/router.go +++ b/vendor/github.com/labstack/echo/v4/router.go @@ -355,6 +355,10 @@ func (r *Router) Find(method, path string, c Context) { // Attempt to go back up the tree on no matching prefix or no remaining search if l != pl || search == "" { + // Handle special case of trailing slash route with existing any route (see #1526) + if path[len(path)-1] == '/' && cn.findChildByKind(akind) != nil { + goto Any + } if nn == nil { // Issue #1348 return // Not found } diff --git a/vendor/github.com/matterbridge/discordgo/.travis.yml b/vendor/github.com/matterbridge/discordgo/.travis.yml index b88f11ee..6077b25a 100644 --- a/vendor/github.com/matterbridge/discordgo/.travis.yml +++ b/vendor/github.com/matterbridge/discordgo/.travis.yml @@ -1,9 +1,11 @@ language: go go: - - 1.10.x - 1.11.x - 1.12.x - 1.13.x + - 1.14.x +env: + - GO111MODULE=on install: - go get github.com/bwmarrin/discordgo - go get -v . diff --git a/vendor/github.com/matterbridge/discordgo/README.md b/vendor/github.com/matterbridge/discordgo/README.md index 4410d1e1..289e1622 100644 --- a/vendor/github.com/matterbridge/discordgo/README.md +++ b/vendor/github.com/matterbridge/discordgo/README.md @@ -26,41 +26,17 @@ Gophers](https://discord.gg/0f1SbxBZjYq9jLBk) chat server.** ## Getting Started -### master vs develop Branch -* The master branch represents the latest released version of DiscordGo. This -branch will always have a stable and tested version of the library. Each release -is tagged and you can easily download a specific release and view release notes -on the github [releases](https://github.com/bwmarrin/discordgo/releases) page. - -* The develop branch is where all development happens and almost always has -new features over the master branch. However breaking changes are frequently -added to develop and even sometimes bugs are introduced. Bugs get fixed and -the breaking changes get documented before pushing to master. - -*So, what should you use?* - -If you can accept the constant changing nature of *develop*, it is the -recommended branch to use. Otherwise, if you want to tail behind development -slightly and have a more stable package with documented releases, use *master*. - ### Installing This assumes you already have a working Go environment, if not please see [this page](https://golang.org/doc/install) first. -`go get` *will always pull the latest released version from the master branch.* +`go get` *will always pull the latest tagged release from the master branch.* ```sh go get github.com/bwmarrin/discordgo ``` -If you want to use the develop branch, follow these steps next. - -```sh -cd $GOPATH/src/github.com/bwmarrin/discordgo -git checkout develop -``` - ### Usage Import the package into your project. @@ -81,7 +57,7 @@ See Documentation and Examples below for more detailed information. ## Documentation -**NOTICE** : This library and the Discord API are unfinished. +**NOTICE**: This library and the Discord API are unfinished. Because of that there may be major changes to library in the future. The DiscordGo code is fairly well documented at this point and is currently @@ -112,12 +88,11 @@ Contributions are very welcomed, however please follow the below guidelines. - First open an issue describing the bug or enhancement so it can be discussed. -- Fork the develop branch and make your changes. - Try to match current naming conventions as closely as possible. - This package is intended to be a low level direct mapping of the Discord API, so please avoid adding enhancements outside of that scope without first discussing it. -- Create a Pull Request with your changes against the develop branch. +- Create a Pull Request with your changes against the master branch. ## List of Discord APIs diff --git a/vendor/github.com/matterbridge/discordgo/discord.go b/vendor/github.com/matterbridge/discordgo/discord.go index c8395080..0d2aafbb 100644 --- a/vendor/github.com/matterbridge/discordgo/discord.go +++ b/vendor/github.com/matterbridge/discordgo/discord.go @@ -22,7 +22,7 @@ import ( ) // VERSION of DiscordGo, follows Semantic Versioning. (http://semver.org/) -const VERSION = "0.21.1" +const VERSION = "0.22.0" // ErrMFA will be risen by New when the user has 2FA. var ErrMFA = errors.New("account has 2FA enabled") diff --git a/vendor/github.com/matterbridge/discordgo/message.go b/vendor/github.com/matterbridge/discordgo/message.go index 00b8112b..f4b20fee 100644 --- a/vendor/github.com/matterbridge/discordgo/message.go +++ b/vendor/github.com/matterbridge/discordgo/message.go @@ -16,6 +16,7 @@ import ( ) // MessageType is the type of Message +// https://discord.com/developers/docs/resources/channel#message-object-message-types type MessageType int // Block contains the valid known MessageType values @@ -33,6 +34,8 @@ const ( MessageTypeUserPremiumGuildSubscriptionTierTwo MessageTypeUserPremiumGuildSubscriptionTierThree MessageTypeChannelFollowAdd + MessageTypeGuildDiscoveryDisqualified + MessageTypeGuildDiscoveryRequalified ) // A Message stores all data related to a specific Discord message. @@ -117,9 +120,22 @@ type Message struct { // The flags of the message, which describe extra features of a message. // This is a combination of bit masks; the presence of a certain permission can // be checked by performing a bitwise AND between this int and the flag. - Flags int `json:"flags"` + Flags MessageFlags `json:"flags"` } +// MessageFlags is the flags of "message" (see MessageFlags* consts) +// https://discord.com/developers/docs/resources/channel#message-object-message-flags +type MessageFlags int + +// Valid MessageFlags values +const ( + MessageFlagsCrossPosted MessageFlags = 1 << iota + MessageFlagsIsCrossPosted + MessageFlagsSupressEmbeds + MessageFlagsSourceMessageDeleted + MessageFlagsUrgent +) + // File stores info about files you e.g. send in messages. type File struct { Name string @@ -245,10 +261,9 @@ type MessageEmbedThumbnail struct { // MessageEmbedVideo is a part of a MessageEmbed struct. type MessageEmbedVideo struct { - URL string `json:"url,omitempty"` - ProxyURL string `json:"proxy_url,omitempty"` - Width int `json:"width,omitempty"` - Height int `json:"height,omitempty"` + URL string `json:"url,omitempty"` + Width int `json:"width,omitempty"` + Height int `json:"height,omitempty"` } // MessageEmbedProvider is a part of a MessageEmbed struct. @@ -275,7 +290,7 @@ type MessageEmbedField struct { // An MessageEmbed stores data for message embeds. type MessageEmbed struct { URL string `json:"url,omitempty"` - Type string `json:"type,omitempty"` + Type EmbedType `json:"type,omitempty"` Title string `json:"title,omitempty"` Description string `json:"description,omitempty"` Timestamp string `json:"timestamp,omitempty"` @@ -289,6 +304,20 @@ type MessageEmbed struct { Fields []*MessageEmbedField `json:"fields,omitempty"` } +// EmbedType is the type of embed +// https://discord.com/developers/docs/resources/channel#embed-object-embed-types +type EmbedType string + +// Block of valid EmbedTypes +const ( + EmbedTypeRich EmbedType = "rich" + EmbedTypeImage EmbedType = "image" + EmbedTypeVideo EmbedType = "video" + EmbedTypeGifv EmbedType = "gifv" + EmbedTypeArticle EmbedType = "article" + EmbedTypeLink EmbedType = "link" +) + // MessageReactions holds a reactions object for a message. type MessageReactions struct { Count int `json:"count"` @@ -307,7 +336,7 @@ type MessageActivityType int // Constants for the different types of Message Activity const ( - MessageActivityTypeJoin = iota + 1 + MessageActivityTypeJoin MessageActivityType = iota + 1 MessageActivityTypeSpectate MessageActivityTypeListen MessageActivityTypeJoinRequest @@ -319,7 +348,7 @@ type MessageFlag int // Constants for the different bit offsets of Message Flags const ( // This message has been published to subscribed channels (via Channel Following) - MessageFlagCrossposted = 1 << iota + MessageFlagCrossposted MessageFlag = 1 << iota // This message originated from a message in another channel (via Channel Following) MessageFlagIsCrosspost // Do not include any embeds when serializing this message diff --git a/vendor/github.com/matterbridge/discordgo/oauth2.go b/vendor/github.com/matterbridge/discordgo/oauth2.go index 4a52120b..289eca94 100644 --- a/vendor/github.com/matterbridge/discordgo/oauth2.go +++ b/vendor/github.com/matterbridge/discordgo/oauth2.go @@ -13,6 +13,33 @@ package discordgo // Code specific to Discord OAuth2 Applications // ------------------------------------------------------------------------------------------------ +// The MembershipState represents whether the user is in the team or has been invited into it +type MembershipState int + +// Constants for the different stages of the MembershipState +const ( + MembershipStateInvited MembershipState = iota + 1 + MembershipStateAccepted +) + +// A TeamMember struct stores values for a single Team Member, extending the normal User data - note that the user field is partial +type TeamMember struct { + User *User `json:"user"` + TeamID string `json:"team_id"` + MembershipState MembershipState `json:"membership_state"` + Permissions []string `json:"permissions"` +} + +// A Team struct stores the members of a Discord Developer Team as well as some metadata about it +type Team struct { + ID string `json:"id"` + Name string `json:"name"` + Description string `json:"description"` + Icon string `json:"icon"` + OwnerID string `json:"owner_user_id"` + Members []*TeamMember `json:"members"` +} + // An Application struct stores values for a Discord OAuth2 Application type Application struct { ID string `json:"id,omitempty"` @@ -27,6 +54,7 @@ type Application struct { Flags int `json:"flags,omitempty"` Owner *User `json:"owner"` Bot *User `json:"bot"` + Team *Team `json:"team"` } // Application returns an Application structure of a specific Application diff --git a/vendor/github.com/matterbridge/discordgo/restapi.go b/vendor/github.com/matterbridge/discordgo/restapi.go index b2bbed31..6944e9f6 100644 --- a/vendor/github.com/matterbridge/discordgo/restapi.go +++ b/vendor/github.com/matterbridge/discordgo/restapi.go @@ -844,13 +844,13 @@ func (s *Session) GuildMemberEdit(guildID, userID string, roles []string) (err e // GuildMemberMove moves a guild member from one voice channel to another/none // guildID : The ID of a Guild. // userID : The ID of a User. -// channelID : The ID of a channel to move user to, or null? +// channelID : The ID of a channel to move user to or nil to remove from voice channel // NOTE : I am not entirely set on the name of this function and it may change // prior to the final 1.0.0 release of Discordgo -func (s *Session) GuildMemberMove(guildID, userID, channelID string) (err error) { +func (s *Session) GuildMemberMove(guildID string, userID string, channelID *string) (err error) { data := struct { - ChannelID string `json:"channel_id"` + ChannelID *string `json:"channel_id"` }{channelID} _, err = s.RequestWithBucketID("PATCH", EndpointGuildMember(guildID, userID), data, EndpointGuildMember(guildID, "")) @@ -1309,6 +1309,19 @@ func (s *Session) GuildAuditLog(guildID, userID, beforeID string, actionType, li return } +// GuildEmojis returns all emoji +// guildID : The ID of a Guild. +func (s *Session) GuildEmojis(guildID string) (emoji []*Emoji, err error) { + + body, err := s.RequestWithBucketID("GET", EndpointGuildEmojis(guildID), nil, EndpointGuildEmojis(guildID)) + if err != nil { + return + } + + err = unmarshal(body, &emoji) + return +} + // GuildEmojiCreate creates a new emoji // guildID : The ID of a Guild. // name : The Name of the Emoji. diff --git a/vendor/github.com/matterbridge/discordgo/structs.go b/vendor/github.com/matterbridge/discordgo/structs.go index 620489cc..d7425e0b 100644 --- a/vendor/github.com/matterbridge/discordgo/structs.go +++ b/vendor/github.com/matterbridge/discordgo/structs.go @@ -143,13 +143,24 @@ type Integration struct { Enabled bool `json:"enabled"` Syncing bool `json:"syncing"` RoleID string `json:"role_id"` - ExpireBehavior int `json:"expire_behavior"` + EnableEmoticons bool `json:"enable_emoticons"` + ExpireBehavior ExpireBehavior `json:"expire_behavior"` ExpireGracePeriod int `json:"expire_grace_period"` User *User `json:"user"` Account IntegrationAccount `json:"account"` SyncedAt Timestamp `json:"synced_at"` } +//ExpireBehavior of Integration +// https://discord.com/developers/docs/resources/guild#integration-object-integration-expire-behaviors +type ExpireBehavior int + +// Block of valid ExpireBehaviors +const ( + ExpireBehaviorRemoveRole ExpireBehavior = iota + ExpireBehaviorKick +) + // IntegrationAccount is integration account information // sent by the UserConnections endpoint type IntegrationAccount struct { @@ -180,23 +191,34 @@ type ICEServer struct { // A Invite stores all data related to a specific Discord Guild or Channel invite. type Invite struct { - Guild *Guild `json:"guild"` - Channel *Channel `json:"channel"` - Inviter *User `json:"inviter"` - Code string `json:"code"` - CreatedAt Timestamp `json:"created_at"` - MaxAge int `json:"max_age"` - Uses int `json:"uses"` - MaxUses int `json:"max_uses"` - Revoked bool `json:"revoked"` - Temporary bool `json:"temporary"` - Unique bool `json:"unique"` + Guild *Guild `json:"guild"` + Channel *Channel `json:"channel"` + Inviter *User `json:"inviter"` + Code string `json:"code"` + CreatedAt Timestamp `json:"created_at"` + MaxAge int `json:"max_age"` + Uses int `json:"uses"` + MaxUses int `json:"max_uses"` + Revoked bool `json:"revoked"` + Temporary bool `json:"temporary"` + Unique bool `json:"unique"` + TargetUser *User `json:"target_user"` + TargetUserType TargetUserType `json:"target_user_type"` // will only be filled when using InviteWithCounts ApproximatePresenceCount int `json:"approximate_presence_count"` ApproximateMemberCount int `json:"approximate_member_count"` } +// TargetUserType is the type of the target user +// https://discord.com/developers/docs/resources/invite#invite-object-target-user-types +type TargetUserType int + +// Block contains known TargetUserType values +const ( + TargetUserTypeStream TargetUserType = iota +) + // ChannelType is the type of a Channel type ChannelType int @@ -268,6 +290,12 @@ type Channel struct { // Amount of seconds a user has to wait before sending another message (0-21600) // bots, as well as users with the permission manage_messages or manage_channel, are unaffected RateLimitPerUser int `json:"rate_limit_per_user"` + + // ID of the DM creator Zeroed if guild channel + OwnerID string `json:"owner_id"` + + // ApplicationID of the DM creator Zeroed if guild channel or not a bot user + ApplicationID string `json:"application_id"` } // Mention returns a string which mentions the channel @@ -301,8 +329,9 @@ type Emoji struct { ID string `json:"id"` Name string `json:"name"` Roles []string `json:"roles"` - Managed bool `json:"managed"` + User *User `json:"user"` RequireColons bool `json:"require_colons"` + Managed bool `json:"managed"` Animated bool `json:"animated"` Available bool `json:"available"` } @@ -398,11 +427,17 @@ type Guild struct { // The user ID of the owner of the guild. OwnerID string `json:"owner_id"` + // If we are the owner of the guild + Owner bool `json:"owner"` + // The time at which the current user joined the guild. // This field is only present in GUILD_CREATE events and websocket // update events, and thus is only present in state-cached guilds. JoinedAt Timestamp `json:"joined_at"` + // The hash of the guild's discovery splash. + DiscoverySplash string `json:"discovery_splash"` + // The hash of the guild's splash. Splash string `json:"splash"` @@ -426,8 +461,7 @@ type Guild struct { Large bool `json:"large"` // The default message notification setting for the guild. - // 0 == all messages, 1 == mentions only. - DefaultMessageNotifications int `json:"default_message_notifications"` + DefaultMessageNotifications MessageNotifications `json:"default_message_notifications"` // A list of roles in the guild. Roles []*Role `json:"roles"` @@ -445,6 +479,12 @@ type Guild struct { // update events, and thus is only present in state-cached guilds. Presences []*Presence `json:"presences"` + // The maximum number of presences for the guild (the default value, currently 25000, is in effect when null is returned) + MaxPresences int `json:"max_presences"` + + // The maximum number of members for the guild + MaxMembers int `json:"max_members"` + // A list of channels in the guild. // This field is only present in GUILD_CREATE events and websocket // update events, and thus is only present in state-cached guilds. @@ -469,6 +509,9 @@ type Guild struct { // Required MFA level for the guild MfaLevel MfaLevel `json:"mfa_level"` + // The application id of the guild if bot created. + ApplicationID string `json:"application_id"` + // Whether or not the Server Widget is enabled WidgetEnabled bool `json:"widget_enabled"` @@ -478,6 +521,12 @@ type Guild struct { // The Channel ID to which system messages are sent (eg join and leave messages) SystemChannelID string `json:"system_channel_id"` + // The System channel flags + SystemChannelFlags SystemChannelFlag `json:"system_channel_flags"` + + // The ID of the rules channel ID, used for rules. + RulesChannelID string `json:"rules_channel_id"` + // the vanity url code for the guild VanityURLCode string `json:"vanity_url_code"` @@ -492,8 +541,46 @@ type Guild struct { // The total number of users currently boosting this server PremiumSubscriptionCount int `json:"premium_subscription_count"` + + // The preferred locale of a guild with the "PUBLIC" feature; used in server discovery and notices from Discord; defaults to "en-US" + PreferredLocale string `json:"preferred_locale"` + + // The id of the channel where admins and moderators of guilds with the "PUBLIC" feature receive notices from Discord + PublicUpdatesChannelID string `json:"public_updates_channel_id"` + + // The maximum amount of users in a video channel + MaxVideoChannelUsers int `json:"max_video_channel_users"` + + // Approximate number of members in this guild, returned from the GET /guild/<id> endpoint when with_counts is true + ApproximateMemberCount int `json:"approximate_member_count"` + + // Approximate number of non-offline members in this guild, returned from the GET /guild/<id> endpoint when with_counts is true + ApproximatePresenceCount int `json:"approximate_presence_count"` + + // Permissions of our user + Permissions int `json:"permissions"` } +// MessageNotifications is the notification level for a guild +// https://discord.com/developers/docs/resources/guild#guild-object-default-message-notification-level +type MessageNotifications int + +// Block containing known MessageNotifications values +const ( + MessageNotificationsAllMessages MessageNotifications = iota + MessageNotificationsOnlyMentions +) + +// SystemChannelFlag is the type of flags in the system channel (see SystemChannelFlag* consts) +// https://discord.com/developers/docs/resources/guild#guild-object-system-channel-flags +type SystemChannelFlag int + +// Block containing known SystemChannelFlag values +const ( + SystemChannelFlagsSuppressJoin SystemChannelFlag = 1 << iota + SystemChannelFlagsSuppressPremium +) + // IconURL returns a URL to the guild's icon. func (g *Guild) IconURL() string { if g.Icon == "" { @@ -775,79 +862,157 @@ type GuildEmbed struct { } // A GuildAuditLog stores data for a guild audit log. +// https://discord.com/developers/docs/resources/audit-log#audit-log-object-audit-log-structure type GuildAuditLog struct { - Webhooks []struct { - ChannelID string `json:"channel_id"` - GuildID string `json:"guild_id"` - ID string `json:"id"` - Avatar string `json:"avatar"` - Name string `json:"name"` - } `json:"webhooks,omitempty"` - Users []struct { - Username string `json:"username"` - Discriminator string `json:"discriminator"` - Bot bool `json:"bot"` - ID string `json:"id"` - Avatar string `json:"avatar"` - } `json:"users,omitempty"` - AuditLogEntries []struct { - TargetID string `json:"target_id"` - Changes []struct { - NewValue interface{} `json:"new_value"` - OldValue interface{} `json:"old_value"` - Key string `json:"key"` - } `json:"changes,omitempty"` - UserID string `json:"user_id"` - ID string `json:"id"` - ActionType int `json:"action_type"` - Options struct { - DeleteMembersDay string `json:"delete_member_days"` - MembersRemoved string `json:"members_removed"` - ChannelID string `json:"channel_id"` - Count string `json:"count"` - ID string `json:"id"` - Type string `json:"type"` - RoleName string `json:"role_name"` - } `json:"options,omitempty"` - Reason string `json:"reason"` - } `json:"audit_log_entries"` + Webhooks []*Webhook `json:"webhooks,omitempty"` + Users []*User `json:"users,omitempty"` + AuditLogEntries []*AuditLogEntry `json:"audit_log_entries"` + Integrations []*Integration `json:"integrations"` } +// AuditLogEntry for a GuildAuditLog +// https://discord.com/developers/docs/resources/audit-log#audit-log-entry-object-audit-log-entry-structure +type AuditLogEntry struct { + TargetID string `json:"target_id"` + Changes []*AuditLogChange `json:"changes"` + UserID string `json:"user_id"` + ID string `json:"id"` + ActionType *AuditLogAction `json:"action_type"` + Options *AuditLogOptions `json:"options"` + Reason string `json:"reason"` +} + +// AuditLogChange for an AuditLogEntry +type AuditLogChange struct { + NewValue interface{} `json:"new_value"` + OldValue interface{} `json:"old_value"` + Key *AuditLogChangeKey `json:"key"` +} + +// AuditLogChangeKey value for AuditLogChange +// https://discord.com/developers/docs/resources/audit-log#audit-log-change-object-audit-log-change-key +type AuditLogChangeKey string + +// Block of valid AuditLogChangeKey +const ( + AuditLogChangeKeyName AuditLogChangeKey = "name" + AuditLogChangeKeyIconHash AuditLogChangeKey = "icon_hash" + AuditLogChangeKeySplashHash AuditLogChangeKey = "splash_hash" + AuditLogChangeKeyOwnerID AuditLogChangeKey = "owner_id" + AuditLogChangeKeyRegion AuditLogChangeKey = "region" + AuditLogChangeKeyAfkChannelID AuditLogChangeKey = "afk_channel_id" + AuditLogChangeKeyAfkTimeout AuditLogChangeKey = "afk_timeout" + AuditLogChangeKeyMfaLevel AuditLogChangeKey = "mfa_level" + AuditLogChangeKeyVerificationLevel AuditLogChangeKey = "verification_level" + AuditLogChangeKeyExplicitContentFilter AuditLogChangeKey = "explicit_content_filter" + AuditLogChangeKeyDefaultMessageNotification AuditLogChangeKey = "default_message_notifications" + AuditLogChangeKeyVanityURLCode AuditLogChangeKey = "vanity_url_code" + AuditLogChangeKeyRoleAdd AuditLogChangeKey = "$add" + AuditLogChangeKeyRoleRemove AuditLogChangeKey = "$remove" + AuditLogChangeKeyPruneDeleteDays AuditLogChangeKey = "prune_delete_days" + AuditLogChangeKeyWidgetEnabled AuditLogChangeKey = "widget_enabled" + AuditLogChangeKeyWidgetChannelID AuditLogChangeKey = "widget_channel_id" + AuditLogChangeKeySystemChannelID AuditLogChangeKey = "system_channel_id" + AuditLogChangeKeyPosition AuditLogChangeKey = "position" + AuditLogChangeKeyTopic AuditLogChangeKey = "topic" + AuditLogChangeKeyBitrate AuditLogChangeKey = "bitrate" + AuditLogChangeKeyPermissionOverwrite AuditLogChangeKey = "permission_overwrites" + AuditLogChangeKeyNSFW AuditLogChangeKey = "nsfw" + AuditLogChangeKeyApplicationID AuditLogChangeKey = "application_id" + AuditLogChangeKeyRateLimitPerUser AuditLogChangeKey = "rate_limit_per_user" + AuditLogChangeKeyPermissions AuditLogChangeKey = "permissions" + AuditLogChangeKeyColor AuditLogChangeKey = "color" + AuditLogChangeKeyHoist AuditLogChangeKey = "hoist" + AuditLogChangeKeyMentionable AuditLogChangeKey = "mentionable" + AuditLogChangeKeyAllow AuditLogChangeKey = "allow" + AuditLogChangeKeyDeny AuditLogChangeKey = "deny" + AuditLogChangeKeyCode AuditLogChangeKey = "code" + AuditLogChangeKeyChannelID AuditLogChangeKey = "channel_id" + AuditLogChangeKeyInviterID AuditLogChangeKey = "inviter_id" + AuditLogChangeKeyMaxUses AuditLogChangeKey = "max_uses" + AuditLogChangeKeyUses AuditLogChangeKey = "uses" + AuditLogChangeKeyMaxAge AuditLogChangeKey = "max_age" + AuditLogChangeKeyTempoary AuditLogChangeKey = "temporary" + AuditLogChangeKeyDeaf AuditLogChangeKey = "deaf" + AuditLogChangeKeyMute AuditLogChangeKey = "mute" + AuditLogChangeKeyNick AuditLogChangeKey = "nick" + AuditLogChangeKeyAvatarHash AuditLogChangeKey = "avatar_hash" + AuditLogChangeKeyID AuditLogChangeKey = "id" + AuditLogChangeKeyType AuditLogChangeKey = "type" + AuditLogChangeKeyEnableEmoticons AuditLogChangeKey = "enable_emoticons" + AuditLogChangeKeyExpireBehavior AuditLogChangeKey = "expire_behavior" + AuditLogChangeKeyExpireGracePeriod AuditLogChangeKey = "expire_grace_period" +) + +// AuditLogOptions optional data for the AuditLog +// https://discord.com/developers/docs/resources/audit-log#audit-log-entry-object-optional-audit-entry-info +type AuditLogOptions struct { + DeleteMemberDays string `json:"delete_member_days"` + MembersRemoved string `json:"members_removed"` + ChannelID string `json:"channel_id"` + MessageID string `json:"message_id"` + Count string `json:"count"` + ID string `json:"id"` + Type *AuditLogOptionsType `json:"type"` + RoleName string `json:"role_name"` +} + +// AuditLogOptionsType of the AuditLogOption +// https://discord.com/developers/docs/resources/audit-log#audit-log-entry-object-optional-audit-entry-info +type AuditLogOptionsType string + +// Valid Types for AuditLogOptionsType +const ( + AuditLogOptionsTypeMember AuditLogOptionsType = "member" + AuditLogOptionsTypeRole AuditLogOptionsType = "role" +) + +// AuditLogAction is the Action of the AuditLog (see AuditLogAction* consts) +// https://discord.com/developers/docs/resources/audit-log#audit-log-entry-object-audit-log-events +type AuditLogAction int + // Block contains Discord Audit Log Action Types const ( - AuditLogActionGuildUpdate = 1 - - AuditLogActionChannelCreate = 10 - AuditLogActionChannelUpdate = 11 - AuditLogActionChannelDelete = 12 - AuditLogActionChannelOverwriteCreate = 13 - AuditLogActionChannelOverwriteUpdate = 14 - AuditLogActionChannelOverwriteDelete = 15 - - AuditLogActionMemberKick = 20 - AuditLogActionMemberPrune = 21 - AuditLogActionMemberBanAdd = 22 - AuditLogActionMemberBanRemove = 23 - AuditLogActionMemberUpdate = 24 - AuditLogActionMemberRoleUpdate = 25 - - AuditLogActionRoleCreate = 30 - AuditLogActionRoleUpdate = 31 - AuditLogActionRoleDelete = 32 - - AuditLogActionInviteCreate = 40 - AuditLogActionInviteUpdate = 41 - AuditLogActionInviteDelete = 42 - - AuditLogActionWebhookCreate = 50 - AuditLogActionWebhookUpdate = 51 - AuditLogActionWebhookDelete = 52 - - AuditLogActionEmojiCreate = 60 - AuditLogActionEmojiUpdate = 61 - AuditLogActionEmojiDelete = 62 - - AuditLogActionMessageDelete = 72 + AuditLogActionGuildUpdate AuditLogAction = 1 + + AuditLogActionChannelCreate AuditLogAction = 10 + AuditLogActionChannelUpdate AuditLogAction = 11 + AuditLogActionChannelDelete AuditLogAction = 12 + AuditLogActionChannelOverwriteCreate AuditLogAction = 13 + AuditLogActionChannelOverwriteUpdate AuditLogAction = 14 + AuditLogActionChannelOverwriteDelete AuditLogAction = 15 + + AuditLogActionMemberKick AuditLogAction = 20 + AuditLogActionMemberPrune AuditLogAction = 21 + AuditLogActionMemberBanAdd AuditLogAction = 22 + AuditLogActionMemberBanRemove AuditLogAction = 23 + AuditLogActionMemberUpdate AuditLogAction = 24 + AuditLogActionMemberRoleUpdate AuditLogAction = 25 + + AuditLogActionRoleCreate AuditLogAction = 30 + AuditLogActionRoleUpdate AuditLogAction = 31 + AuditLogActionRoleDelete AuditLogAction = 32 + + AuditLogActionInviteCreate AuditLogAction = 40 + AuditLogActionInviteUpdate AuditLogAction = 41 + AuditLogActionInviteDelete AuditLogAction = 42 + + AuditLogActionWebhookCreate AuditLogAction = 50 + AuditLogActionWebhookUpdate AuditLogAction = 51 + AuditLogActionWebhookDelete AuditLogAction = 52 + + AuditLogActionEmojiCreate AuditLogAction = 60 + AuditLogActionEmojiUpdate AuditLogAction = 61 + AuditLogActionEmojiDelete AuditLogAction = 62 + + AuditLogActionMessageDelete AuditLogAction = 72 + AuditLogActionMessageBulkDelete AuditLogAction = 73 + AuditLogActionMessagePin AuditLogAction = 74 + AuditLogActionMessageUnpin AuditLogAction = 75 + + AuditLogActionIntegrationCreate AuditLogAction = 80 + AuditLogActionIntegrationUpdate AuditLogAction = 81 + AuditLogActionIntegrationDelete AuditLogAction = 82 ) // A UserGuildSettingsChannelOverride stores data for a channel override for a users guild settings. @@ -884,23 +1049,35 @@ type APIErrorMessage struct { // Webhook stores the data for a webhook. type Webhook struct { - ID string `json:"id"` - GuildID string `json:"guild_id"` - ChannelID string `json:"channel_id"` - User *User `json:"user"` - Name string `json:"name"` - Avatar string `json:"avatar"` - Token string `json:"token"` + ID string `json:"id"` + Type WebhookType `json:"type"` + GuildID string `json:"guild_id"` + ChannelID string `json:"channel_id"` + User *User `json:"user"` + Name string `json:"name"` + Avatar string `json:"avatar"` + Token string `json:"token"` } +// WebhookType is the type of Webhook (see WebhookType* consts) in the Webhook struct +// https://discord.com/developers/docs/resources/webhook#webhook-object-webhook-types +type WebhookType int + +// Valid WebhookType values +const ( + WebhookTypeIncoming WebhookType = iota + WebhookTypeChannelFollower +) + // WebhookParams is a struct for webhook params, used in the WebhookExecute command. type WebhookParams struct { - Content string `json:"content,omitempty"` - Username string `json:"username,omitempty"` - AvatarURL string `json:"avatar_url,omitempty"` - TTS bool `json:"tts,omitempty"` - File *File `json:"-"` - Embeds []*MessageEmbed `json:"embeds,omitempty"` + Content string `json:"content,omitempty"` + Username string `json:"username,omitempty"` + AvatarURL string `json:"avatar_url,omitempty"` + TTS bool `json:"tts,omitempty"` + File *File `json:"-"` + Embeds []*MessageEmbed `json:"embeds,omitempty"` + AllowedMentions *MessageAllowedMentions `json:"allowed_mentions,omitempty"` } // MessageReaction stores the data for a message reaction. @@ -940,7 +1117,6 @@ type Activity struct { type ActivityType int // Valid ActivityType values -// https://discord.com/developers/docs/topics/gateway#activity-object-activity-types const ( ActivityTypeGame GameType = iota ActivityTypeStreaming diff --git a/vendor/github.com/mattn/go-colorable/colorable_windows.go b/vendor/github.com/mattn/go-colorable/colorable_windows.go index b9e93634..04c4229c 100644 --- a/vendor/github.com/mattn/go-colorable/colorable_windows.go +++ b/vendor/github.com/mattn/go-colorable/colorable_windows.go @@ -10,6 +10,7 @@ import ( "os" "strconv" "strings" + "sync" "syscall" "unsafe" @@ -27,6 +28,7 @@ const ( backgroundRed = 0x40 backgroundIntensity = 0x80 backgroundMask = (backgroundRed | backgroundBlue | backgroundGreen | backgroundIntensity) + commonLvbUnderscore = 0x8000 cENABLE_VIRTUAL_TERMINAL_PROCESSING = 0x4 ) @@ -93,6 +95,7 @@ type Writer struct { oldattr word oldpos coord rest bytes.Buffer + mutex sync.Mutex } // NewColorable returns new instance of Writer which handles escape sequence from File. @@ -432,6 +435,8 @@ func atoiWithDefault(s string, def int) (int, error) { // Write writes data on console func (w *Writer) Write(data []byte) (n int, err error) { + w.mutex.Lock() + defer w.mutex.Unlock() var csbi consoleScreenBufferInfo procGetConsoleScreenBufferInfo.Call(uintptr(w.handle), uintptr(unsafe.Pointer(&csbi))) @@ -683,14 +688,19 @@ loop: switch { case n == 0 || n == 100: attr = w.oldattr - case 1 <= n && n <= 5: + case n == 4: + attr |= commonLvbUnderscore + case (1 <= n && n <= 3) || n == 5: attr |= foregroundIntensity - case n == 7: - attr = ((attr & foregroundMask) << 4) | ((attr & backgroundMask) >> 4) - case n == 22 || n == 25: - attr |= foregroundIntensity - case n == 27: - attr = ((attr & foregroundMask) << 4) | ((attr & backgroundMask) >> 4) + case n == 7 || n == 27: + attr = + (attr &^ (foregroundMask | backgroundMask)) | + ((attr & foregroundMask) << 4) | + ((attr & backgroundMask) >> 4) + case n == 22: + attr &^= foregroundIntensity + case n == 24: + attr &^= commonLvbUnderscore case 30 <= n && n <= 37: attr &= backgroundMask if (n-30)&1 != 0 { diff --git a/vendor/github.com/slack-go/slack/attachments.go b/vendor/github.com/slack-go/slack/attachments.go index b5b79f9f..5f388e9f 100644 --- a/vendor/github.com/slack-go/slack/attachments.go +++ b/vendor/github.com/slack-go/slack/attachments.go @@ -75,7 +75,7 @@ type Attachment struct { Title string `json:"title,omitempty"` TitleLink string `json:"title_link,omitempty"` Pretext string `json:"pretext,omitempty"` - Text string `json:"text,omitempty"` + Text string `json:"text"` // Required ImageURL string `json:"image_url,omitempty"` ThumbURL string `json:"thumb_url,omitempty"` diff --git a/vendor/github.com/slack-go/slack/block.go b/vendor/github.com/slack-go/slack/block.go index 4b4b1559..dd4b8715 100644 --- a/vendor/github.com/slack-go/slack/block.go +++ b/vendor/github.com/slack-go/slack/block.go @@ -16,6 +16,7 @@ const ( MBTContext MessageBlockType = "context" MBTFile MessageBlockType = "file" MBTInput MessageBlockType = "input" + MBTHeader MessageBlockType = "header" ) // Block defines an interface all block types should implement diff --git a/vendor/github.com/slack-go/slack/block_conv.go b/vendor/github.com/slack-go/slack/block_conv.go index 3fda5431..656a9ab1 100644 --- a/vendor/github.com/slack-go/slack/block_conv.go +++ b/vendor/github.com/slack-go/slack/block_conv.go @@ -111,6 +111,12 @@ func (b *InputBlock) UnmarshalJSON(data []byte) error { e = &SelectBlockElement{} case "multi_static_select", "multi_external_select", "multi_users_select", "multi_conversations_select", "multi_channels_select": e = &MultiSelectBlockElement{} + case "checkboxes": + e = &CheckboxGroupsBlockElement{} + case "overflow": + e = &OverflowBlockElement{} + case "radio_buttons": + e = &RadioButtonsBlockElement{} default: return errors.New("unsupported block element type") } @@ -175,6 +181,8 @@ func (b *BlockElements) UnmarshalJSON(data []byte) error { blockElement = &PlainTextInputBlockElement{} case "checkboxes": blockElement = &CheckboxGroupsBlockElement{} + case "radio_buttons": + blockElement = &RadioButtonsBlockElement{} case "static_select", "external_select", "users_select", "conversations_select", "channels_select": blockElement = &SelectBlockElement{} default: diff --git a/vendor/github.com/slack-go/slack/block_header.go b/vendor/github.com/slack-go/slack/block_header.go new file mode 100644 index 00000000..6dff4b88 --- /dev/null +++ b/vendor/github.com/slack-go/slack/block_header.go @@ -0,0 +1,38 @@ +package slack + +// HeaderBlock defines a new block of type header +// +// More Information: https://api.slack.com/reference/messaging/blocks#header +type HeaderBlock struct { + Type MessageBlockType `json:"type"` + Text *TextBlockObject `json:"text,omitempty"` + BlockID string `json:"block_id,omitempty"` +} + +// BlockType returns the type of the block +func (s HeaderBlock) BlockType() MessageBlockType { + return s.Type +} + +// HeaderBlockOption allows configuration of options for a new header block +type HeaderBlockOption func(*HeaderBlock) + +func HeaderBlockOptionBlockID(blockID string) HeaderBlockOption { + return func(block *HeaderBlock) { + block.BlockID = blockID + } +} + +// NewHeaderBlock returns a new instance of a header block to be rendered +func NewHeaderBlock(textObj *TextBlockObject, options ...HeaderBlockOption) *HeaderBlock { + block := HeaderBlock{ + Type: MBTHeader, + Text: textObj, + } + + for _, option := range options { + option(&block) + } + + return &block +} diff --git a/vendor/github.com/slack-go/slack/errors.go b/vendor/github.com/slack-go/slack/errors.go index a1dfec25..8be22a65 100644 --- a/vendor/github.com/slack-go/slack/errors.go +++ b/vendor/github.com/slack-go/slack/errors.go @@ -9,6 +9,7 @@ const ( ErrRTMGoodbye = errorsx.String("goodbye detected") ErrRTMDeadman = errorsx.String("deadman switch triggered") ErrParametersMissing = errorsx.String("received empty parameters") + ErrBlockIDNotUnique = errorsx.String("Block ID needs to be unique") ErrInvalidConfiguration = errorsx.String("invalid configuration") ErrMissingHeaders = errorsx.String("missing headers") ErrExpiredTimestamp = errorsx.String("timestamp is too old") diff --git a/vendor/github.com/slack-go/slack/oauth.go b/vendor/github.com/slack-go/slack/oauth.go index 4dc23b11..707ccc6b 100644 --- a/vendor/github.com/slack-go/slack/oauth.go +++ b/vendor/github.com/slack-go/slack/oauth.go @@ -33,14 +33,15 @@ type OAuthResponse struct { // OAuthV2Response ... type OAuthV2Response struct { - AccessToken string `json:"access_token"` - TokenType string `json:"token_type"` - Scope string `json:"scope"` - BotUserID string `json:"bot_user_id"` - AppID string `json:"app_id"` - Team OAuthV2ResponseTeam `json:"team"` - Enterprise OAuthV2ResponseEnterprise `json:"enterprise"` - AuthedUser OAuthV2ResponseAuthedUser `json:"authed_user"` + AccessToken string `json:"access_token"` + TokenType string `json:"token_type"` + Scope string `json:"scope"` + BotUserID string `json:"bot_user_id"` + AppID string `json:"app_id"` + Team OAuthV2ResponseTeam `json:"team"` + IncomingWebhook OAuthResponseIncomingWebhook `json:"incoming_webhook"` + Enterprise OAuthV2ResponseEnterprise `json:"enterprise"` + AuthedUser OAuthV2ResponseAuthedUser `json:"authed_user"` SlackResponse } diff --git a/vendor/github.com/slack-go/slack/views.go b/vendor/github.com/slack-go/slack/views.go index c34feece..ee197ad8 100644 --- a/vendor/github.com/slack-go/slack/views.go +++ b/vendor/github.com/slack-go/slack/views.go @@ -150,6 +150,23 @@ func (api *Client) OpenView(triggerID string, view ModalViewRequest) (*ViewRespo return api.OpenViewContext(context.Background(), triggerID, view) } +// ValidateUniqueBlockID will verify if each input block has a unique block ID if set +func ValidateUniqueBlockID(view ModalViewRequest) bool { + + uniqueBlockID := map[string]bool{} + + for _, b := range view.Blocks.BlockSet { + if inputBlock, ok := b.(*InputBlock); ok { + if _, ok := uniqueBlockID[inputBlock.BlockID]; ok { + return false + } + uniqueBlockID[inputBlock.BlockID] = true + } + } + + return true +} + // OpenViewContext opens a view for a user with a custom context. func (api *Client) OpenViewContext( ctx context.Context, @@ -159,6 +176,11 @@ func (api *Client) OpenViewContext( if triggerID == "" { return nil, ErrParametersMissing } + + if !ValidateUniqueBlockID(view) { + return nil, ErrBlockIDNotUnique + } + req := openViewRequest{ TriggerID: triggerID, View: view, diff --git a/vendor/github.com/spf13/viper/util.go b/vendor/github.com/spf13/viper/util.go index b7889696..cee6b242 100644 --- a/vendor/github.com/spf13/viper/util.go +++ b/vendor/github.com/spf13/viper/util.go @@ -91,13 +91,22 @@ func insensitiviseMap(m map[string]interface{}) { func absPathify(inPath string) string { jww.INFO.Println("Trying to resolve absolute path to", inPath) - if strings.HasPrefix(inPath, "$HOME") { + if inPath == "$HOME" || strings.HasPrefix(inPath, "$HOME"+string(os.PathSeparator)) { inPath = userHomeDir() + inPath[5:] } if strings.HasPrefix(inPath, "$") { end := strings.Index(inPath, string(os.PathSeparator)) - inPath = os.Getenv(inPath[1:end]) + inPath[end:] + + var value, suffix string + if end == -1 { + value = os.Getenv(inPath[1:]) + } else { + value = os.Getenv(inPath[1:end]) + suffix = inPath[end:] + } + + inPath = value + suffix } if filepath.IsAbs(inPath) { diff --git a/vendor/github.com/spf13/viper/viper.go b/vendor/github.com/spf13/viper/viper.go index f61f4ed7..405dc20f 100644 --- a/vendor/github.com/spf13/viper/viper.go +++ b/vendor/github.com/spf13/viper/viper.go @@ -896,13 +896,7 @@ func UnmarshalKey(key string, rawVal interface{}, opts ...DecoderConfigOption) e return v.UnmarshalKey(key, rawVal, opts...) } func (v *Viper) UnmarshalKey(key string, rawVal interface{}, opts ...DecoderConfigOption) error { - err := decode(v.Get(key), defaultDecoderConfig(rawVal, opts...)) - - if err != nil { - return err - } - - return nil + return decode(v.Get(key), defaultDecoderConfig(rawVal, opts...)) } // Unmarshal unmarshals the config into a Struct. Make sure that the tags @@ -911,13 +905,7 @@ func Unmarshal(rawVal interface{}, opts ...DecoderConfigOption) error { return v.Unmarshal(rawVal, opts...) } func (v *Viper) Unmarshal(rawVal interface{}, opts ...DecoderConfigOption) error { - err := decode(v.AllSettings(), defaultDecoderConfig(rawVal, opts...)) - - if err != nil { - return err - } - - return nil + return decode(v.AllSettings(), defaultDecoderConfig(rawVal, opts...)) } // defaultDecoderConfig returns default mapsstructure.DecoderConfig with suppot @@ -956,13 +944,7 @@ func (v *Viper) UnmarshalExact(rawVal interface{}, opts ...DecoderConfigOption) config := defaultDecoderConfig(rawVal, opts...) config.ErrorUnused = true - err := decode(v.AllSettings(), config) - - if err != nil { - return err - } - - return nil + return decode(v.AllSettings(), config) } // BindPFlags binds a full flag set to the configuration, using each flag's long diff --git a/vendor/github.com/valyala/fasttemplate/go.mod b/vendor/github.com/valyala/fasttemplate/go.mod index 6015c4b5..37a50e26 100644 --- a/vendor/github.com/valyala/fasttemplate/go.mod +++ b/vendor/github.com/valyala/fasttemplate/go.mod @@ -1,3 +1,5 @@ module github.com/valyala/fasttemplate +go 1.12 + require github.com/valyala/bytebufferpool v1.0.0 diff --git a/vendor/github.com/valyala/fasttemplate/template.go b/vendor/github.com/valyala/fasttemplate/template.go index 91209201..18620013 100644 --- a/vendor/github.com/valyala/fasttemplate/template.go +++ b/vendor/github.com/valyala/fasttemplate/template.go @@ -9,8 +9,9 @@ package fasttemplate import ( "bytes" "fmt" - "github.com/valyala/bytebufferpool" "io" + + "github.com/valyala/bytebufferpool" ) // ExecuteFunc calls f on each template tag (placeholder) occurrence. @@ -49,6 +50,9 @@ func ExecuteFunc(template, startTag, endTag string, w io.Writer, f TagFunc) (int ni, err = f(w, unsafeBytes2String(s[:n])) nn += int64(ni) + if err != nil { + return nn, err + } s = s[n+len(b):] } ni, err = w.Write(s) @@ -73,6 +77,22 @@ func Execute(template, startTag, endTag string, w io.Writer, m map[string]interf return ExecuteFunc(template, startTag, endTag, w, func(w io.Writer, tag string) (int, error) { return stdTagFunc(w, tag, m) }) } +// ExecuteStd works the same way as Execute, but keeps the unknown placeholders. +// This can be used as a drop-in replacement for strings.Replacer +// +// Substitution map m may contain values with the following types: +// * []byte - the fastest value type +// * string - convenient value type +// * TagFunc - flexible value type +// +// Returns the number of bytes written to w. +// +// This function is optimized for constantly changing templates. +// Use Template.ExecuteStd for frozen templates. +func ExecuteStd(template, startTag, endTag string, w io.Writer, m map[string]interface{}) (int64, error) { + return ExecuteFunc(template, startTag, endTag, w, func(w io.Writer, tag string) (int, error) { return keepUnknownTagFunc(w, startTag, endTag, tag, m) }) +} + // ExecuteFuncString calls f on each template tag (placeholder) occurrence // and substitutes it with the data written to TagFunc's w. // @@ -81,19 +101,32 @@ func Execute(template, startTag, endTag string, w io.Writer, m map[string]interf // This function is optimized for constantly changing templates. // Use Template.ExecuteFuncString for frozen templates. func ExecuteFuncString(template, startTag, endTag string, f TagFunc) string { + s, err := ExecuteFuncStringWithErr(template, startTag, endTag, f) + if err != nil { + panic(fmt.Sprintf("unexpected error: %s", err)) + } + return s +} + +// ExecuteFuncStringWithErr is nearly the same as ExecuteFuncString +// but when f returns an error, ExecuteFuncStringWithErr won't panic like ExecuteFuncString +// it just returns an empty string and the error f returned +func ExecuteFuncStringWithErr(template, startTag, endTag string, f TagFunc) (string, error) { tagsCount := bytes.Count(unsafeString2Bytes(template), unsafeString2Bytes(startTag)) if tagsCount == 0 { - return template + return template, nil } bb := byteBufferPool.Get() if _, err := ExecuteFunc(template, startTag, endTag, bb, f); err != nil { - panic(fmt.Sprintf("unexpected error: %s", err)) + bb.Reset() + byteBufferPool.Put(bb) + return "", err } s := string(bb.B) bb.Reset() byteBufferPool.Put(bb) - return s + return s, nil } var byteBufferPool bytebufferpool.Pool @@ -112,6 +145,20 @@ func ExecuteString(template, startTag, endTag string, m map[string]interface{}) return ExecuteFuncString(template, startTag, endTag, func(w io.Writer, tag string) (int, error) { return stdTagFunc(w, tag, m) }) } +// ExecuteStringStd works the same way as ExecuteString, but keeps the unknown placeholders. +// This can be used as a drop-in replacement for strings.Replacer +// +// Substitution map m may contain values with the following types: +// * []byte - the fastest value type +// * string - convenient value type +// * TagFunc - flexible value type +// +// This function is optimized for constantly changing templates. +// Use Template.ExecuteStringStd for frozen templates. +func ExecuteStringStd(template, startTag, endTag string, m map[string]interface{}) string { + return ExecuteFuncString(template, startTag, endTag, func(w io.Writer, tag string) (int, error) { return keepUnknownTagFunc(w, startTag, endTag, tag, m) }) +} + // Template implements simple template engine, which can be used for fast // tags' (aka placeholders) substitution. type Template struct { @@ -267,6 +314,19 @@ func (t *Template) Execute(w io.Writer, m map[string]interface{}) (int64, error) return t.ExecuteFunc(w, func(w io.Writer, tag string) (int, error) { return stdTagFunc(w, tag, m) }) } +// ExecuteStd works the same way as Execute, but keeps the unknown placeholders. +// This can be used as a drop-in replacement for strings.Replacer +// +// Substitution map m may contain values with the following types: +// * []byte - the fastest value type +// * string - convenient value type +// * TagFunc - flexible value type +// +// Returns the number of bytes written to w. +func (t *Template) ExecuteStd(w io.Writer, m map[string]interface{}) (int64, error) { + return t.ExecuteFunc(w, func(w io.Writer, tag string) (int, error) { return keepUnknownTagFunc(w, t.startTag, t.endTag, tag, m) }) +} + // ExecuteFuncString calls f on each template tag (placeholder) occurrence // and substitutes it with the data written to TagFunc's w. // @@ -275,14 +335,31 @@ func (t *Template) Execute(w io.Writer, m map[string]interface{}) (int64, error) // This function is optimized for frozen templates. // Use ExecuteFuncString for constantly changing templates. func (t *Template) ExecuteFuncString(f TagFunc) string { + s, err := t.ExecuteFuncStringWithErr(f) + if err != nil { + panic(fmt.Sprintf("unexpected error: %s", err)) + } + return s +} + +// ExecuteFuncStringWithErr calls f on each template tag (placeholder) occurrence +// and substitutes it with the data written to TagFunc's w. +// +// Returns the resulting string. +// +// This function is optimized for frozen templates. +// Use ExecuteFuncString for constantly changing templates. +func (t *Template) ExecuteFuncStringWithErr(f TagFunc) (string, error) { bb := t.byteBufferPool.Get() if _, err := t.ExecuteFunc(bb, f); err != nil { - panic(fmt.Sprintf("unexpected error: %s", err)) + bb.Reset() + t.byteBufferPool.Put(bb) + return "", err } s := string(bb.Bytes()) bb.Reset() t.byteBufferPool.Put(bb) - return s + return s, nil } // ExecuteString substitutes template tags (placeholders) with the corresponding @@ -299,6 +376,20 @@ func (t *Template) ExecuteString(m map[string]interface{}) string { return t.ExecuteFuncString(func(w io.Writer, tag string) (int, error) { return stdTagFunc(w, tag, m) }) } +// ExecuteStringStd works the same way as ExecuteString, but keeps the unknown placeholders. +// This can be used as a drop-in replacement for strings.Replacer +// +// Substitution map m may contain values with the following types: +// * []byte - the fastest value type +// * string - convenient value type +// * TagFunc - flexible value type +// +// This function is optimized for frozen templates. +// Use ExecuteStringStd for constantly changing templates. +func (t *Template) ExecuteStringStd(m map[string]interface{}) string { + return t.ExecuteFuncString(func(w io.Writer, tag string) (int, error) { return keepUnknownTagFunc(w, t.startTag, t.endTag, tag, m) }) +} + func stdTagFunc(w io.Writer, tag string, m map[string]interface{}) (int, error) { v := m[tag] if v == nil { @@ -315,3 +406,32 @@ func stdTagFunc(w io.Writer, tag string, m map[string]interface{}) (int, error) panic(fmt.Sprintf("tag=%q contains unexpected value type=%#v. Expected []byte, string or TagFunc", tag, v)) } } + +func keepUnknownTagFunc(w io.Writer, startTag, endTag, tag string, m map[string]interface{}) (int, error) { + v, ok := m[tag] + if !ok { + if _, err := w.Write(unsafeString2Bytes(startTag)); err != nil { + return 0, err + } + if _, err := w.Write(unsafeString2Bytes(tag)); err != nil { + return 0, err + } + if _, err := w.Write(unsafeString2Bytes(endTag)); err != nil { + return 0, err + } + return len(startTag) + len(tag) + len(endTag), nil + } + if v == nil { + return 0, nil + } + switch value := v.(type) { + case []byte: + return w.Write(value) + case string: + return w.Write([]byte(value)) + case TagFunc: + return value(w, tag) + default: + panic(fmt.Sprintf("tag=%q contains unexpected value type=%#v. Expected []byte, string or TagFunc", tag, v)) + } +} diff --git a/vendor/github.com/valyala/fasttemplate/unsafe.go b/vendor/github.com/valyala/fasttemplate/unsafe.go index 0498248f..1020ca38 100644 --- a/vendor/github.com/valyala/fasttemplate/unsafe.go +++ b/vendor/github.com/valyala/fasttemplate/unsafe.go @@ -11,12 +11,11 @@ func unsafeBytes2String(b []byte) string { return *(*string)(unsafe.Pointer(&b)) } -func unsafeString2Bytes(s string) []byte { +func unsafeString2Bytes(s string) (b []byte) { sh := (*reflect.StringHeader)(unsafe.Pointer(&s)) - bh := reflect.SliceHeader{ - Data: sh.Data, - Len: sh.Len, - Cap: sh.Len, - } - return *(*[]byte)(unsafe.Pointer(&bh)) + bh := (*reflect.SliceHeader)(unsafe.Pointer(&b)) + bh.Data = sh.Data + bh.Cap = sh.Len + bh.Len = sh.Len + return b } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionAad.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionAad.go index 0700507f..81e19320 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionAad.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionAad.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionAccess.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionAccess.go index c0d8712d..89165512 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionAccess.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionAccess.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -73,9 +73,9 @@ func (r *AccessPackageAccessPackageAssignmentPoliciesCollectionRequest) Paging(c } var values []AccessPackageAssignmentPolicy for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -88,6 +88,7 @@ func (r *AccessPackageAccessPackageAssignmentPoliciesCollectionRequest) Paging(c value []AccessPackageAssignmentPolicy ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -182,9 +183,9 @@ func (r *AccessPackageAccessPackageResourceRoleScopesCollectionRequest) Paging(c } var values []AccessPackageResourceRoleScope for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -197,6 +198,7 @@ func (r *AccessPackageAccessPackageResourceRoleScopesCollectionRequest) Paging(c value []AccessPackageResourceRoleScope ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -298,9 +300,9 @@ func (r *AccessPackageAssignmentAccessPackageAssignmentRequestsCollectionRequest } var values []AccessPackageAssignmentRequestObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -313,6 +315,7 @@ func (r *AccessPackageAssignmentAccessPackageAssignmentRequestsCollectionRequest value []AccessPackageAssignmentRequestObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -400,9 +403,9 @@ func (r *AccessPackageAssignmentAccessPackageAssignmentResourceRolesCollectionRe } var values []AccessPackageAssignmentResourceRole for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -415,6 +418,7 @@ func (r *AccessPackageAssignmentAccessPackageAssignmentResourceRolesCollectionRe value []AccessPackageAssignmentResourceRole ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -544,9 +548,9 @@ func (r *AccessPackageAssignmentResourceRoleAccessPackageAssignmentsCollectionRe } var values []AccessPackageAssignment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -559,6 +563,7 @@ func (r *AccessPackageAssignmentResourceRoleAccessPackageAssignmentsCollectionRe value []AccessPackageAssignment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -667,9 +672,9 @@ func (r *AccessPackageCatalogAccessPackageResourceRolesCollectionRequest) Paging } var values []AccessPackageResourceRole for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -682,6 +687,7 @@ func (r *AccessPackageCatalogAccessPackageResourceRolesCollectionRequest) Paging value []AccessPackageResourceRole ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -769,9 +775,9 @@ func (r *AccessPackageCatalogAccessPackageResourceScopesCollectionRequest) Pagin } var values []AccessPackageResourceScope for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -784,6 +790,7 @@ func (r *AccessPackageCatalogAccessPackageResourceScopesCollectionRequest) Pagin value []AccessPackageResourceScope ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -871,9 +878,9 @@ func (r *AccessPackageCatalogAccessPackageResourcesCollectionRequest) Paging(ctx } var values []AccessPackageResource for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -886,6 +893,7 @@ func (r *AccessPackageCatalogAccessPackageResourcesCollectionRequest) Paging(ctx value []AccessPackageResource ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -973,9 +981,9 @@ func (r *AccessPackageCatalogAccessPackagesCollectionRequest) Paging(ctx context } var values []AccessPackage for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -988,6 +996,7 @@ func (r *AccessPackageCatalogAccessPackagesCollectionRequest) Paging(ctx context value []AccessPackage ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1075,9 +1084,9 @@ func (r *AccessPackageResourceAccessPackageResourceRolesCollectionRequest) Pagin } var values []AccessPackageResourceRole for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1090,6 +1099,7 @@ func (r *AccessPackageResourceAccessPackageResourceRolesCollectionRequest) Pagin value []AccessPackageResourceRole ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1177,9 +1187,9 @@ func (r *AccessPackageResourceAccessPackageResourceScopesCollectionRequest) Pagi } var values []AccessPackageResourceScope for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1192,6 +1202,7 @@ func (r *AccessPackageResourceAccessPackageResourceScopesCollectionRequest) Pagi value []AccessPackageResourceScope ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1321,9 +1332,9 @@ func (r *AccessReviewDecisionsCollectionRequest) Paging(ctx context.Context, met } var values []AccessReviewDecision for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1336,6 +1347,7 @@ func (r *AccessReviewDecisionsCollectionRequest) Paging(ctx context.Context, met value []AccessReviewDecision ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1423,9 +1435,9 @@ func (r *AccessReviewInstancesCollectionRequest) Paging(ctx context.Context, met } var values []AccessReview for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1438,6 +1450,7 @@ func (r *AccessReviewInstancesCollectionRequest) Paging(ctx context.Context, met value []AccessReview ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1525,9 +1538,9 @@ func (r *AccessReviewMyDecisionsCollectionRequest) Paging(ctx context.Context, m } var values []AccessReviewDecision for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1540,6 +1553,7 @@ func (r *AccessReviewMyDecisionsCollectionRequest) Paging(ctx context.Context, m value []AccessReviewDecision ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1627,9 +1641,9 @@ func (r *AccessReviewReviewersCollectionRequest) Paging(ctx context.Context, met } var values []AccessReviewReviewer for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1642,6 +1656,7 @@ func (r *AccessReviewReviewersCollectionRequest) Paging(ctx context.Context, met value []AccessReviewReviewer ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionActive.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionActive.go index 94059bd0..149b75f5 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionActive.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionActive.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionActivity.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionActivity.go index d113a6ba..dc2d565a 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionActivity.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionActivity.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionAdministrative.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionAdministrative.go index 2991473f..acb9802e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionAdministrative.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionAdministrative.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -53,9 +53,9 @@ func (r *AdministrativeUnitExtensionsCollectionRequest) Paging(ctx context.Conte } var values []Extension for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -68,6 +68,7 @@ func (r *AdministrativeUnitExtensionsCollectionRequest) Paging(ctx context.Conte value []Extension ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -155,9 +156,9 @@ func (r *AdministrativeUnitMembersCollectionRequest) Paging(ctx context.Context, } var values []DirectoryObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -170,6 +171,7 @@ func (r *AdministrativeUnitMembersCollectionRequest) Paging(ctx context.Context, value []DirectoryObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -257,9 +259,9 @@ func (r *AdministrativeUnitScopedRoleMembersCollectionRequest) Paging(ctx contex } var values []ScopedRoleMembership for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -272,6 +274,7 @@ func (r *AdministrativeUnitScopedRoleMembersCollectionRequest) Paging(ctx contex value []ScopedRoleMembership ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionAdvanced.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionAdvanced.go index d1c92d24..89f1f2e0 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionAdvanced.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionAdvanced.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -53,9 +53,9 @@ func (r *AdvancedThreatProtectionOnboardingStateSummaryAdvancedThreatProtectionO } var values []AdvancedThreatProtectionOnboardingDeviceSettingState for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -68,6 +68,7 @@ func (r *AdvancedThreatProtectionOnboardingStateSummaryAdvancedThreatProtectionO value []AdvancedThreatProtectionOnboardingDeviceSettingState ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionAgreement.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionAgreement.go index b69ce8b6..77afb8ce 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionAgreement.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionAgreement.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -53,9 +53,9 @@ func (r *AgreementFilesCollectionRequest) Paging(ctx context.Context, method, pa } var values []AgreementFile for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -68,6 +68,7 @@ func (r *AgreementFilesCollectionRequest) Paging(ctx context.Context, method, pa value []AgreementFile ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionAlert.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionAlert.go index 8c2da9d8..2b3de16f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionAlert.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionAlert.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionAndroid.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionAndroid.go index 37e5a6dc..fc1a4671 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionAndroid.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionAndroid.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -167,9 +167,9 @@ func (r *AndroidDeviceOwnerScepCertificateProfileManagedDeviceCertificateStatesC } var values []ManagedDeviceCertificateState for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -182,6 +182,7 @@ func (r *AndroidDeviceOwnerScepCertificateProfileManagedDeviceCertificateStatesC value []ManagedDeviceCertificateState ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -332,9 +333,9 @@ func (r *AndroidForWorkImportedPFXCertificateProfileManagedDeviceCertificateStat } var values []ManagedDeviceCertificateState for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -347,6 +348,7 @@ func (r *AndroidForWorkImportedPFXCertificateProfileManagedDeviceCertificateStat value []ManagedDeviceCertificateState ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -434,9 +436,9 @@ func (r *AndroidForWorkPkcsCertificateProfileManagedDeviceCertificateStatesColle } var values []ManagedDeviceCertificateState for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -449,6 +451,7 @@ func (r *AndroidForWorkPkcsCertificateProfileManagedDeviceCertificateStatesColle value []ManagedDeviceCertificateState ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -536,9 +539,9 @@ func (r *AndroidForWorkScepCertificateProfileManagedDeviceCertificateStatesColle } var values []ManagedDeviceCertificateState for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -551,6 +554,7 @@ func (r *AndroidForWorkScepCertificateProfileManagedDeviceCertificateStatesColle value []ManagedDeviceCertificateState ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -645,9 +649,9 @@ func (r *AndroidImportedPFXCertificateProfileManagedDeviceCertificateStatesColle } var values []ManagedDeviceCertificateState for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -660,6 +664,7 @@ func (r *AndroidImportedPFXCertificateProfileManagedDeviceCertificateStatesColle value []ManagedDeviceCertificateState ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -747,9 +752,9 @@ func (r *AndroidManagedAppProtectionAppsCollectionRequest) Paging(ctx context.Co } var values []ManagedMobileApp for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -762,6 +767,7 @@ func (r *AndroidManagedAppProtectionAppsCollectionRequest) Paging(ctx context.Co value []ManagedMobileApp ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -856,9 +862,9 @@ func (r *AndroidPkcsCertificateProfileManagedDeviceCertificateStatesCollectionRe } var values []ManagedDeviceCertificateState for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -871,6 +877,7 @@ func (r *AndroidPkcsCertificateProfileManagedDeviceCertificateStatesCollectionRe value []ManagedDeviceCertificateState ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -958,9 +965,9 @@ func (r *AndroidScepCertificateProfileManagedDeviceCertificateStatesCollectionRe } var values []ManagedDeviceCertificateState for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -973,6 +980,7 @@ func (r *AndroidScepCertificateProfileManagedDeviceCertificateStatesCollectionRe value []ManagedDeviceCertificateState ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1095,9 +1103,9 @@ func (r *AndroidWorkProfilePkcsCertificateProfileManagedDeviceCertificateStatesC } var values []ManagedDeviceCertificateState for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1110,6 +1118,7 @@ func (r *AndroidWorkProfilePkcsCertificateProfileManagedDeviceCertificateStatesC value []ManagedDeviceCertificateState ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1197,9 +1206,9 @@ func (r *AndroidWorkProfileScepCertificateProfileManagedDeviceCertificateStatesC } var values []ManagedDeviceCertificateState for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1212,6 +1221,7 @@ func (r *AndroidWorkProfileScepCertificateProfileManagedDeviceCertificateStatesC value []ManagedDeviceCertificateState ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionApp.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionApp.go index d81c9405..f5d803f3 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionApp.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionApp.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -57,9 +57,9 @@ func (r *AppCatalogsTeamsAppsCollectionRequest) Paging(ctx context.Context, meth } var values []TeamsApp for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -72,6 +72,7 @@ func (r *AppCatalogsTeamsAppsCollectionRequest) Paging(ctx context.Context, meth value []TeamsApp ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -159,9 +160,9 @@ func (r *AppVulnerabilityTaskManagedDevicesCollectionRequest) Paging(ctx context } var values []AppVulnerabilityManagedDevice for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -174,6 +175,7 @@ func (r *AppVulnerabilityTaskManagedDevicesCollectionRequest) Paging(ctx context value []AppVulnerabilityManagedDevice ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -261,9 +263,9 @@ func (r *AppVulnerabilityTaskMobileAppsCollectionRequest) Paging(ctx context.Con } var values []AppVulnerabilityMobileApp for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -276,6 +278,7 @@ func (r *AppVulnerabilityTaskMobileAppsCollectionRequest) Paging(ctx context.Con value []AppVulnerabilityMobileApp ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionApple.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionApple.go index 23bb5356..c90721f7 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionApple.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionApple.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -59,9 +59,9 @@ func (r *AppleUserInitiatedEnrollmentProfileAssignmentsCollectionRequest) Paging } var values []AppleEnrollmentProfileAssignment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -74,6 +74,7 @@ func (r *AppleUserInitiatedEnrollmentProfileAssignmentsCollectionRequest) Paging value []AppleEnrollmentProfileAssignment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionApplication.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionApplication.go index f3ad11aa..940925d0 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionApplication.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionApplication.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -96,9 +96,9 @@ func (r *ApplicationExtensionPropertiesCollectionRequest) Paging(ctx context.Con } var values []ExtensionProperty for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -111,6 +111,7 @@ func (r *ApplicationExtensionPropertiesCollectionRequest) Paging(ctx context.Con value []ExtensionProperty ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -198,9 +199,9 @@ func (r *ApplicationOwnersCollectionRequest) Paging(ctx context.Context, method, } var values []DirectoryObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -213,6 +214,7 @@ func (r *ApplicationOwnersCollectionRequest) Paging(ctx context.Context, method, value []DirectoryObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -300,9 +302,9 @@ func (r *ApplicationPoliciesCollectionRequest) Paging(ctx context.Context, metho } var values []DirectoryObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -315,6 +317,7 @@ func (r *ApplicationPoliciesCollectionRequest) Paging(ctx context.Context, metho value []DirectoryObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionApproval.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionApproval.go index adb87ce2..213d8cad 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionApproval.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionApproval.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -53,9 +53,9 @@ func (r *ApprovalWorkflowProviderBusinessFlowsCollectionRequest) Paging(ctx cont } var values []BusinessFlow for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -68,6 +68,7 @@ func (r *ApprovalWorkflowProviderBusinessFlowsCollectionRequest) Paging(ctx cont value []BusinessFlow ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -155,9 +156,9 @@ func (r *ApprovalWorkflowProviderBusinessFlowsWithRequestsAwaitingMyDecisionColl } var values []BusinessFlow for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -170,6 +171,7 @@ func (r *ApprovalWorkflowProviderBusinessFlowsWithRequestsAwaitingMyDecisionColl value []BusinessFlow ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -257,9 +259,9 @@ func (r *ApprovalWorkflowProviderPolicyTemplatesCollectionRequest) Paging(ctx co } var values []GovernancePolicyTemplate for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -272,6 +274,7 @@ func (r *ApprovalWorkflowProviderPolicyTemplatesCollectionRequest) Paging(ctx co value []GovernancePolicyTemplate ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -359,9 +362,9 @@ func (r *ApprovalWorkflowProviderRequestsCollectionRequest) Paging(ctx context.C } var values []RequestObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -374,6 +377,7 @@ func (r *ApprovalWorkflowProviderRequestsCollectionRequest) Paging(ctx context.C value []RequestObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -461,9 +465,9 @@ func (r *ApprovalWorkflowProviderRequestsAwaitingMyDecisionCollectionRequest) Pa } var values []RequestObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -476,6 +480,7 @@ func (r *ApprovalWorkflowProviderRequestsAwaitingMyDecisionCollectionRequest) Pa value []RequestObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionAttachment.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionAttachment.go index c8ff09f3..42ab36b0 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionAttachment.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionAttachment.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionAudit.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionAudit.go index ffc0fbe7..d44605ed 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionAudit.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionAudit.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -53,9 +53,9 @@ func (r *AuditLogRootDirectoryAuditsCollectionRequest) Paging(ctx context.Contex } var values []DirectoryAudit for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -68,6 +68,7 @@ func (r *AuditLogRootDirectoryAuditsCollectionRequest) Paging(ctx context.Contex value []DirectoryAudit ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -155,9 +156,9 @@ func (r *AuditLogRootDirectoryProvisioningCollectionRequest) Paging(ctx context. } var values []ProvisioningObjectSummary for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -170,6 +171,7 @@ func (r *AuditLogRootDirectoryProvisioningCollectionRequest) Paging(ctx context. value []ProvisioningObjectSummary ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -257,9 +259,9 @@ func (r *AuditLogRootProvisioningCollectionRequest) Paging(ctx context.Context, } var values []ProvisioningObjectSummary for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -272,6 +274,7 @@ func (r *AuditLogRootProvisioningCollectionRequest) Paging(ctx context.Context, value []ProvisioningObjectSummary ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -359,9 +362,9 @@ func (r *AuditLogRootRestrictedSignInsCollectionRequest) Paging(ctx context.Cont } var values []RestrictedSignIn for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -374,6 +377,7 @@ func (r *AuditLogRootRestrictedSignInsCollectionRequest) Paging(ctx context.Cont value []RestrictedSignIn ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -461,9 +465,9 @@ func (r *AuditLogRootSignInsCollectionRequest) Paging(ctx context.Context, metho } var values []SignIn for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -476,6 +480,7 @@ func (r *AuditLogRootSignInsCollectionRequest) Paging(ctx context.Context, metho value []SignIn ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionBase.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionBase.go index 62cea840..14637219 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionBase.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionBase.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go index be31ec98..6e724179 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -67,9 +67,9 @@ func (r *BookingBusinessAppointmentsCollectionRequest) Paging(ctx context.Contex } var values []BookingAppointment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -82,6 +82,7 @@ func (r *BookingBusinessAppointmentsCollectionRequest) Paging(ctx context.Contex value []BookingAppointment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -169,9 +170,9 @@ func (r *BookingBusinessCalendarViewCollectionRequest) Paging(ctx context.Contex } var values []BookingAppointment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -184,6 +185,7 @@ func (r *BookingBusinessCalendarViewCollectionRequest) Paging(ctx context.Contex value []BookingAppointment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -271,9 +273,9 @@ func (r *BookingBusinessCustomersCollectionRequest) Paging(ctx context.Context, } var values []BookingCustomer for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -286,6 +288,7 @@ func (r *BookingBusinessCustomersCollectionRequest) Paging(ctx context.Context, value []BookingCustomer ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -373,9 +376,9 @@ func (r *BookingBusinessServicesCollectionRequest) Paging(ctx context.Context, m } var values []BookingService for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -388,6 +391,7 @@ func (r *BookingBusinessServicesCollectionRequest) Paging(ctx context.Context, m value []BookingService ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -475,9 +479,9 @@ func (r *BookingBusinessStaffMembersCollectionRequest) Paging(ctx context.Contex } var values []BookingStaffMember for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -490,6 +494,7 @@ func (r *BookingBusinessStaffMembersCollectionRequest) Paging(ctx context.Contex value []BookingStaffMember ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionBusiness.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionBusiness.go index a2fe7bb3..f2355f16 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionBusiness.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionBusiness.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionCalendar.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionCalendar.go index 231c6b74..e3f345af 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionCalendar.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionCalendar.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -69,9 +69,9 @@ func (r *CalendarCalendarPermissionsCollectionRequest) Paging(ctx context.Contex } var values []CalendarPermission for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -84,6 +84,7 @@ func (r *CalendarCalendarPermissionsCollectionRequest) Paging(ctx context.Contex value []CalendarPermission ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -171,9 +172,9 @@ func (r *CalendarCalendarViewCollectionRequest) Paging(ctx context.Context, meth } var values []Event for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -186,6 +187,7 @@ func (r *CalendarCalendarViewCollectionRequest) Paging(ctx context.Context, meth value []Event ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -273,9 +275,9 @@ func (r *CalendarEventsCollectionRequest) Paging(ctx context.Context, method, pa } var values []Event for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -288,6 +290,7 @@ func (r *CalendarEventsCollectionRequest) Paging(ctx context.Context, method, pa value []Event ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -375,9 +378,9 @@ func (r *CalendarMultiValueExtendedPropertiesCollectionRequest) Paging(ctx conte } var values []MultiValueLegacyExtendedProperty for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -390,6 +393,7 @@ func (r *CalendarMultiValueExtendedPropertiesCollectionRequest) Paging(ctx conte value []MultiValueLegacyExtendedProperty ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -477,9 +481,9 @@ func (r *CalendarSingleValueExtendedPropertiesCollectionRequest) Paging(ctx cont } var values []SingleValueLegacyExtendedProperty for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -492,6 +496,7 @@ func (r *CalendarSingleValueExtendedPropertiesCollectionRequest) Paging(ctx cont value []SingleValueLegacyExtendedProperty ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -579,9 +584,9 @@ func (r *CalendarGroupCalendarsCollectionRequest) Paging(ctx context.Context, me } var values []Calendar for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -594,6 +599,7 @@ func (r *CalendarGroupCalendarsCollectionRequest) Paging(ctx context.Context, me value []Calendar ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionCall.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionCall.go index cb921f23..63779b62 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionCall.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionCall.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -189,9 +189,9 @@ func (r *CallAudioRoutingGroupsCollectionRequest) Paging(ctx context.Context, me } var values []AudioRoutingGroup for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -204,6 +204,7 @@ func (r *CallAudioRoutingGroupsCollectionRequest) Paging(ctx context.Context, me value []AudioRoutingGroup ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -291,9 +292,9 @@ func (r *CallOperationsCollectionRequest) Paging(ctx context.Context, method, pa } var values []CommsOperation for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -306,6 +307,7 @@ func (r *CallOperationsCollectionRequest) Paging(ctx context.Context, method, pa value []CommsOperation ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -393,9 +395,9 @@ func (r *CallParticipantsCollectionRequest) Paging(ctx context.Context, method, } var values []Participant for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -408,6 +410,7 @@ func (r *CallParticipantsCollectionRequest) Paging(ctx context.Context, method, value []Participant ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionChannel.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionChannel.go index e6e939b9..cabd27b4 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionChannel.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionChannel.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -60,9 +60,9 @@ func (r *ChannelMembersCollectionRequest) Paging(ctx context.Context, method, pa } var values []ConversationMember for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -75,6 +75,7 @@ func (r *ChannelMembersCollectionRequest) Paging(ctx context.Context, method, pa value []ConversationMember ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -162,9 +163,9 @@ func (r *ChannelMessagesCollectionRequest) Paging(ctx context.Context, method, p } var values []ChatMessage for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -177,6 +178,7 @@ func (r *ChannelMessagesCollectionRequest) Paging(ctx context.Context, method, p value []ChatMessage ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -264,9 +266,9 @@ func (r *ChannelTabsCollectionRequest) Paging(ctx context.Context, method, path } var values []TeamsTab for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -279,6 +281,7 @@ func (r *ChannelTabsCollectionRequest) Paging(ctx context.Context, method, path value []TeamsTab ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionChat.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionChat.go index 95bef3c7..5a7de853 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionChat.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionChat.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -53,9 +53,9 @@ func (r *ChatInstalledAppsCollectionRequest) Paging(ctx context.Context, method, } var values []TeamsAppInstallation for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -68,6 +68,7 @@ func (r *ChatInstalledAppsCollectionRequest) Paging(ctx context.Context, method, value []TeamsAppInstallation ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -155,9 +156,9 @@ func (r *ChatMembersCollectionRequest) Paging(ctx context.Context, method, path } var values []ConversationMember for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -170,6 +171,7 @@ func (r *ChatMembersCollectionRequest) Paging(ctx context.Context, method, path value []ConversationMember ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -257,9 +259,9 @@ func (r *ChatMessagesCollectionRequest) Paging(ctx context.Context, method, path } var values []ChatMessage for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -272,6 +274,7 @@ func (r *ChatMessagesCollectionRequest) Paging(ctx context.Context, method, path value []ChatMessage ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -359,9 +362,9 @@ func (r *ChatMessageHostedContentsCollectionRequest) Paging(ctx context.Context, } var values []ChatMessageHostedContent for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -374,6 +377,7 @@ func (r *ChatMessageHostedContentsCollectionRequest) Paging(ctx context.Context, value []ChatMessageHostedContent ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -461,9 +465,9 @@ func (r *ChatMessageRepliesCollectionRequest) Paging(ctx context.Context, method } var values []ChatMessage for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -476,6 +480,7 @@ func (r *ChatMessageRepliesCollectionRequest) Paging(ctx context.Context, method value []ChatMessage ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionCloud.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionCloud.go index d9222d36..4890f67a 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionCloud.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionCloud.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -59,9 +59,9 @@ func (r *CloudCommunicationsCallsCollectionRequest) Paging(ctx context.Context, } var values []Call for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -74,6 +74,7 @@ func (r *CloudCommunicationsCallsCollectionRequest) Paging(ctx context.Context, value []Call ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -161,9 +162,9 @@ func (r *CloudCommunicationsOnlineMeetingsCollectionRequest) Paging(ctx context. } var values []OnlineMeeting for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -176,6 +177,7 @@ func (r *CloudCommunicationsOnlineMeetingsCollectionRequest) Paging(ctx context. value []OnlineMeeting ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionCommand.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionCommand.go index 5c504670..282b11d8 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionCommand.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionCommand.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionComms.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionComms.go index c32c7210..0b74aa90 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionComms.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionComms.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -53,9 +53,9 @@ func (r *CommsApplicationCallsCollectionRequest) Paging(ctx context.Context, met } var values []Call for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -68,6 +68,7 @@ func (r *CommsApplicationCallsCollectionRequest) Paging(ctx context.Context, met value []Call ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -155,9 +156,9 @@ func (r *CommsApplicationOnlineMeetingsCollectionRequest) Paging(ctx context.Con } var values []OnlineMeeting for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -170,6 +171,7 @@ func (r *CommsApplicationOnlineMeetingsCollectionRequest) Paging(ctx context.Con value []OnlineMeeting ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionCompany.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionCompany.go index 20c06f5d..3279a6c2 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionCompany.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionCompany.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -53,9 +53,9 @@ func (r *CompanyAccountsCollectionRequest) Paging(ctx context.Context, method, p } var values []Account for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -68,6 +68,7 @@ func (r *CompanyAccountsCollectionRequest) Paging(ctx context.Context, method, p value []Account ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -155,9 +156,9 @@ func (r *CompanyAgedAccountsPayableCollectionRequest) Paging(ctx context.Context } var values []AgedAccountsPayable for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -170,6 +171,7 @@ func (r *CompanyAgedAccountsPayableCollectionRequest) Paging(ctx context.Context value []AgedAccountsPayable ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -257,9 +259,9 @@ func (r *CompanyAgedAccountsReceivableCollectionRequest) Paging(ctx context.Cont } var values []AgedAccountsReceivable for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -272,6 +274,7 @@ func (r *CompanyAgedAccountsReceivableCollectionRequest) Paging(ctx context.Cont value []AgedAccountsReceivable ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -359,9 +362,9 @@ func (r *CompanyCompanyInformationCollectionRequest) Paging(ctx context.Context, } var values []CompanyInformation for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -374,6 +377,7 @@ func (r *CompanyCompanyInformationCollectionRequest) Paging(ctx context.Context, value []CompanyInformation ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -461,9 +465,9 @@ func (r *CompanyCountriesRegionsCollectionRequest) Paging(ctx context.Context, m } var values []CountryRegion for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -476,6 +480,7 @@ func (r *CompanyCountriesRegionsCollectionRequest) Paging(ctx context.Context, m value []CountryRegion ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -563,9 +568,9 @@ func (r *CompanyCurrenciesCollectionRequest) Paging(ctx context.Context, method, } var values []Currency for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -578,6 +583,7 @@ func (r *CompanyCurrenciesCollectionRequest) Paging(ctx context.Context, method, value []Currency ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -665,9 +671,9 @@ func (r *CompanyCustomerPaymentJournalsCollectionRequest) Paging(ctx context.Con } var values []CustomerPaymentJournal for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -680,6 +686,7 @@ func (r *CompanyCustomerPaymentJournalsCollectionRequest) Paging(ctx context.Con value []CustomerPaymentJournal ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -767,9 +774,9 @@ func (r *CompanyCustomerPaymentsCollectionRequest) Paging(ctx context.Context, m } var values []CustomerPayment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -782,6 +789,7 @@ func (r *CompanyCustomerPaymentsCollectionRequest) Paging(ctx context.Context, m value []CustomerPayment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -869,9 +877,9 @@ func (r *CompanyCustomersCollectionRequest) Paging(ctx context.Context, method, } var values []Customer for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -884,6 +892,7 @@ func (r *CompanyCustomersCollectionRequest) Paging(ctx context.Context, method, value []Customer ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -971,9 +980,9 @@ func (r *CompanyDimensionValuesCollectionRequest) Paging(ctx context.Context, me } var values []DimensionValue for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -986,6 +995,7 @@ func (r *CompanyDimensionValuesCollectionRequest) Paging(ctx context.Context, me value []DimensionValue ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1073,9 +1083,9 @@ func (r *CompanyDimensionsCollectionRequest) Paging(ctx context.Context, method, } var values []Dimension for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1088,6 +1098,7 @@ func (r *CompanyDimensionsCollectionRequest) Paging(ctx context.Context, method, value []Dimension ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1175,9 +1186,9 @@ func (r *CompanyEmployeesCollectionRequest) Paging(ctx context.Context, method, } var values []Employee for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1190,6 +1201,7 @@ func (r *CompanyEmployeesCollectionRequest) Paging(ctx context.Context, method, value []Employee ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1277,9 +1289,9 @@ func (r *CompanyGeneralLedgerEntriesCollectionRequest) Paging(ctx context.Contex } var values []GeneralLedgerEntry for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1292,6 +1304,7 @@ func (r *CompanyGeneralLedgerEntriesCollectionRequest) Paging(ctx context.Contex value []GeneralLedgerEntry ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1379,9 +1392,9 @@ func (r *CompanyItemCategoriesCollectionRequest) Paging(ctx context.Context, met } var values []ItemCategory for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1394,6 +1407,7 @@ func (r *CompanyItemCategoriesCollectionRequest) Paging(ctx context.Context, met value []ItemCategory ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1481,9 +1495,9 @@ func (r *CompanyItemsCollectionRequest) Paging(ctx context.Context, method, path } var values []Item for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1496,6 +1510,7 @@ func (r *CompanyItemsCollectionRequest) Paging(ctx context.Context, method, path value []Item ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1583,9 +1598,9 @@ func (r *CompanyJournalLinesCollectionRequest) Paging(ctx context.Context, metho } var values []JournalLine for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1598,6 +1613,7 @@ func (r *CompanyJournalLinesCollectionRequest) Paging(ctx context.Context, metho value []JournalLine ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1685,9 +1701,9 @@ func (r *CompanyJournalsCollectionRequest) Paging(ctx context.Context, method, p } var values []Journal for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1700,6 +1716,7 @@ func (r *CompanyJournalsCollectionRequest) Paging(ctx context.Context, method, p value []Journal ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1787,9 +1804,9 @@ func (r *CompanyPaymentMethodsCollectionRequest) Paging(ctx context.Context, met } var values []PaymentMethod for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1802,6 +1819,7 @@ func (r *CompanyPaymentMethodsCollectionRequest) Paging(ctx context.Context, met value []PaymentMethod ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1889,9 +1907,9 @@ func (r *CompanyPaymentTermsCollectionRequest) Paging(ctx context.Context, metho } var values []PaymentTerm for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1904,6 +1922,7 @@ func (r *CompanyPaymentTermsCollectionRequest) Paging(ctx context.Context, metho value []PaymentTerm ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1991,9 +2010,9 @@ func (r *CompanyPictureCollectionRequest) Paging(ctx context.Context, method, pa } var values []Picture for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2006,6 +2025,7 @@ func (r *CompanyPictureCollectionRequest) Paging(ctx context.Context, method, pa value []Picture ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2093,9 +2113,9 @@ func (r *CompanyPurchaseInvoiceLinesCollectionRequest) Paging(ctx context.Contex } var values []PurchaseInvoiceLine for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2108,6 +2128,7 @@ func (r *CompanyPurchaseInvoiceLinesCollectionRequest) Paging(ctx context.Contex value []PurchaseInvoiceLine ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2195,9 +2216,9 @@ func (r *CompanyPurchaseInvoicesCollectionRequest) Paging(ctx context.Context, m } var values []PurchaseInvoice for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2210,6 +2231,7 @@ func (r *CompanyPurchaseInvoicesCollectionRequest) Paging(ctx context.Context, m value []PurchaseInvoice ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2297,9 +2319,9 @@ func (r *CompanySalesCreditMemoLinesCollectionRequest) Paging(ctx context.Contex } var values []SalesCreditMemoLine for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2312,6 +2334,7 @@ func (r *CompanySalesCreditMemoLinesCollectionRequest) Paging(ctx context.Contex value []SalesCreditMemoLine ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2399,9 +2422,9 @@ func (r *CompanySalesCreditMemosCollectionRequest) Paging(ctx context.Context, m } var values []SalesCreditMemo for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2414,6 +2437,7 @@ func (r *CompanySalesCreditMemosCollectionRequest) Paging(ctx context.Context, m value []SalesCreditMemo ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2501,9 +2525,9 @@ func (r *CompanySalesInvoiceLinesCollectionRequest) Paging(ctx context.Context, } var values []SalesInvoiceLine for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2516,6 +2540,7 @@ func (r *CompanySalesInvoiceLinesCollectionRequest) Paging(ctx context.Context, value []SalesInvoiceLine ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2603,9 +2628,9 @@ func (r *CompanySalesInvoicesCollectionRequest) Paging(ctx context.Context, meth } var values []SalesInvoice for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2618,6 +2643,7 @@ func (r *CompanySalesInvoicesCollectionRequest) Paging(ctx context.Context, meth value []SalesInvoice ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2705,9 +2731,9 @@ func (r *CompanySalesOrderLinesCollectionRequest) Paging(ctx context.Context, me } var values []SalesOrderLine for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2720,6 +2746,7 @@ func (r *CompanySalesOrderLinesCollectionRequest) Paging(ctx context.Context, me value []SalesOrderLine ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2807,9 +2834,9 @@ func (r *CompanySalesOrdersCollectionRequest) Paging(ctx context.Context, method } var values []SalesOrder for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2822,6 +2849,7 @@ func (r *CompanySalesOrdersCollectionRequest) Paging(ctx context.Context, method value []SalesOrder ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2909,9 +2937,9 @@ func (r *CompanySalesQuoteLinesCollectionRequest) Paging(ctx context.Context, me } var values []SalesQuoteLine for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2924,6 +2952,7 @@ func (r *CompanySalesQuoteLinesCollectionRequest) Paging(ctx context.Context, me value []SalesQuoteLine ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -3011,9 +3040,9 @@ func (r *CompanySalesQuotesCollectionRequest) Paging(ctx context.Context, method } var values []SalesQuote for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -3026,6 +3055,7 @@ func (r *CompanySalesQuotesCollectionRequest) Paging(ctx context.Context, method value []SalesQuote ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -3113,9 +3143,9 @@ func (r *CompanyShipmentMethodsCollectionRequest) Paging(ctx context.Context, me } var values []ShipmentMethod for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -3128,6 +3158,7 @@ func (r *CompanyShipmentMethodsCollectionRequest) Paging(ctx context.Context, me value []ShipmentMethod ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -3215,9 +3246,9 @@ func (r *CompanyTaxAreasCollectionRequest) Paging(ctx context.Context, method, p } var values []TaxArea for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -3230,6 +3261,7 @@ func (r *CompanyTaxAreasCollectionRequest) Paging(ctx context.Context, method, p value []TaxArea ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -3317,9 +3349,9 @@ func (r *CompanyTaxGroupsCollectionRequest) Paging(ctx context.Context, method, } var values []TaxGroup for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -3332,6 +3364,7 @@ func (r *CompanyTaxGroupsCollectionRequest) Paging(ctx context.Context, method, value []TaxGroup ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -3419,9 +3452,9 @@ func (r *CompanyUnitsOfMeasureCollectionRequest) Paging(ctx context.Context, met } var values []UnitOfMeasure for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -3434,6 +3467,7 @@ func (r *CompanyUnitsOfMeasureCollectionRequest) Paging(ctx context.Context, met value []UnitOfMeasure ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -3521,9 +3555,9 @@ func (r *CompanyVendorsCollectionRequest) Paging(ctx context.Context, method, pa } var values []Vendor for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -3536,6 +3570,7 @@ func (r *CompanyVendorsCollectionRequest) Paging(ctx context.Context, method, pa value []Vendor ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionConditional.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionConditional.go index 93abd908..61a46017 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionConditional.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionConditional.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -53,9 +53,9 @@ func (r *ConditionalAccessRootNamedLocationsCollectionRequest) Paging(ctx contex } var values []NamedLocation for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -68,6 +68,7 @@ func (r *ConditionalAccessRootNamedLocationsCollectionRequest) Paging(ctx contex value []NamedLocation ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -155,9 +156,9 @@ func (r *ConditionalAccessRootPoliciesCollectionRequest) Paging(ctx context.Cont } var values []ConditionalAccessPolicy for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -170,6 +171,7 @@ func (r *ConditionalAccessRootPoliciesCollectionRequest) Paging(ctx context.Cont value []ConditionalAccessPolicy ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionContact.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionContact.go index b27a67f8..4b5e1fd6 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionContact.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionContact.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -53,9 +53,9 @@ func (r *ContactExtensionsCollectionRequest) Paging(ctx context.Context, method, } var values []Extension for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -68,6 +68,7 @@ func (r *ContactExtensionsCollectionRequest) Paging(ctx context.Context, method, value []Extension ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -155,9 +156,9 @@ func (r *ContactMultiValueExtendedPropertiesCollectionRequest) Paging(ctx contex } var values []MultiValueLegacyExtendedProperty for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -170,6 +171,7 @@ func (r *ContactMultiValueExtendedPropertiesCollectionRequest) Paging(ctx contex value []MultiValueLegacyExtendedProperty ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -264,9 +266,9 @@ func (r *ContactSingleValueExtendedPropertiesCollectionRequest) Paging(ctx conte } var values []SingleValueLegacyExtendedProperty for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -279,6 +281,7 @@ func (r *ContactSingleValueExtendedPropertiesCollectionRequest) Paging(ctx conte value []SingleValueLegacyExtendedProperty ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -366,9 +369,9 @@ func (r *ContactFolderChildFoldersCollectionRequest) Paging(ctx context.Context, } var values []ContactFolder for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -381,6 +384,7 @@ func (r *ContactFolderChildFoldersCollectionRequest) Paging(ctx context.Context, value []ContactFolder ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -468,9 +472,9 @@ func (r *ContactFolderContactsCollectionRequest) Paging(ctx context.Context, met } var values []Contact for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -483,6 +487,7 @@ func (r *ContactFolderContactsCollectionRequest) Paging(ctx context.Context, met value []Contact ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -570,9 +575,9 @@ func (r *ContactFolderMultiValueExtendedPropertiesCollectionRequest) Paging(ctx } var values []MultiValueLegacyExtendedProperty for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -585,6 +590,7 @@ func (r *ContactFolderMultiValueExtendedPropertiesCollectionRequest) Paging(ctx value []MultiValueLegacyExtendedProperty ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -672,9 +678,9 @@ func (r *ContactFolderSingleValueExtendedPropertiesCollectionRequest) Paging(ctx } var values []SingleValueLegacyExtendedProperty for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -687,6 +693,7 @@ func (r *ContactFolderSingleValueExtendedPropertiesCollectionRequest) Paging(ctx value []SingleValueLegacyExtendedProperty ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionContent.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionContent.go index 9594ef8b..f948ea4e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionContent.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionContent.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -53,9 +53,9 @@ func (r *ContentTypeColumnLinksCollectionRequest) Paging(ctx context.Context, me } var values []ColumnLink for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -68,6 +68,7 @@ func (r *ContentTypeColumnLinksCollectionRequest) Paging(ctx context.Context, me value []ColumnLink ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionConversation.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionConversation.go index 165761ef..46b411f1 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionConversation.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionConversation.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -59,9 +59,9 @@ func (r *ConversationThreadsCollectionRequest) Paging(ctx context.Context, metho } var values []ConversationThread for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -74,6 +74,7 @@ func (r *ConversationThreadsCollectionRequest) Paging(ctx context.Context, metho value []ConversationThread ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -161,9 +162,9 @@ func (r *ConversationThreadPostsCollectionRequest) Paging(ctx context.Context, m } var values []Post for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -176,6 +177,7 @@ func (r *ConversationThreadPostsCollectionRequest) Paging(ctx context.Context, m value []Post ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionCustomer.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionCustomer.go index 8c323217..00b37c39 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionCustomer.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionCustomer.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -74,9 +74,9 @@ func (r *CustomerPictureCollectionRequest) Paging(ctx context.Context, method, p } var values []Picture for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -89,6 +89,7 @@ func (r *CustomerPictureCollectionRequest) Paging(ctx context.Context, method, p value []Picture ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -197,9 +198,9 @@ func (r *CustomerPaymentJournalCustomerPaymentsCollectionRequest) Paging(ctx con } var values []CustomerPayment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -212,6 +213,7 @@ func (r *CustomerPaymentJournalCustomerPaymentsCollectionRequest) Paging(ctx con value []CustomerPayment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionData.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionData.go index 567e2548..cb000e9b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionData.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionData.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -67,9 +67,9 @@ func (r *DataClassificationServiceClassifyFileCollectionRequest) Paging(ctx cont } var values []FileClassificationRequestObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -82,6 +82,7 @@ func (r *DataClassificationServiceClassifyFileCollectionRequest) Paging(ctx cont value []FileClassificationRequestObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -169,9 +170,9 @@ func (r *DataClassificationServiceClassifyFileJobsCollectionRequest) Paging(ctx } var values []JobResponseBase for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -184,6 +185,7 @@ func (r *DataClassificationServiceClassifyFileJobsCollectionRequest) Paging(ctx value []JobResponseBase ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -271,9 +273,9 @@ func (r *DataClassificationServiceClassifyTextCollectionRequest) Paging(ctx cont } var values []TextClassificationRequestObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -286,6 +288,7 @@ func (r *DataClassificationServiceClassifyTextCollectionRequest) Paging(ctx cont value []TextClassificationRequestObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -373,9 +376,9 @@ func (r *DataClassificationServiceClassifyTextJobsCollectionRequest) Paging(ctx } var values []JobResponseBase for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -388,6 +391,7 @@ func (r *DataClassificationServiceClassifyTextJobsCollectionRequest) Paging(ctx value []JobResponseBase ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -475,9 +479,9 @@ func (r *DataClassificationServiceEvaluateDlpPoliciesJobsCollectionRequest) Pagi } var values []JobResponseBase for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -490,6 +494,7 @@ func (r *DataClassificationServiceEvaluateDlpPoliciesJobsCollectionRequest) Pagi value []JobResponseBase ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -577,9 +582,9 @@ func (r *DataClassificationServiceEvaluateLabelJobsCollectionRequest) Paging(ctx } var values []JobResponseBase for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -592,6 +597,7 @@ func (r *DataClassificationServiceEvaluateLabelJobsCollectionRequest) Paging(ctx value []JobResponseBase ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -679,9 +685,9 @@ func (r *DataClassificationServiceExactMatchDataStoresCollectionRequest) Paging( } var values []ExactMatchDataStore for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -694,6 +700,7 @@ func (r *DataClassificationServiceExactMatchDataStoresCollectionRequest) Paging( value []ExactMatchDataStore ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -781,9 +788,9 @@ func (r *DataClassificationServiceExactMatchUploadAgentsCollectionRequest) Pagin } var values []ExactMatchUploadAgent for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -796,6 +803,7 @@ func (r *DataClassificationServiceExactMatchUploadAgentsCollectionRequest) Pagin value []ExactMatchUploadAgent ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -883,9 +891,9 @@ func (r *DataClassificationServiceJobsCollectionRequest) Paging(ctx context.Cont } var values []JobResponseBase for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -898,6 +906,7 @@ func (r *DataClassificationServiceJobsCollectionRequest) Paging(ctx context.Cont value []JobResponseBase ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -985,9 +994,9 @@ func (r *DataClassificationServiceLabelsAndPoliciesEvaluationJobsCollectionReque } var values []JobResponseBase for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1000,6 +1009,7 @@ func (r *DataClassificationServiceLabelsAndPoliciesEvaluationJobsCollectionReque value []JobResponseBase ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1087,9 +1097,9 @@ func (r *DataClassificationServiceSensitiveTypesCollectionRequest) Paging(ctx co } var values []SensitiveType for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1102,6 +1112,7 @@ func (r *DataClassificationServiceSensitiveTypesCollectionRequest) Paging(ctx co value []SensitiveType ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1189,9 +1200,9 @@ func (r *DataClassificationServiceSensitivityLabelsCollectionRequest) Paging(ctx } var values []SensitivityLabel for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1204,6 +1215,7 @@ func (r *DataClassificationServiceSensitivityLabelsCollectionRequest) Paging(ctx value []SensitivityLabel ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionDefault.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionDefault.go index 3ce9f092..9c782d90 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionDefault.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionDefault.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -53,9 +53,9 @@ func (r *DefaultManagedAppProtectionAppsCollectionRequest) Paging(ctx context.Co } var values []ManagedMobileApp for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -68,6 +68,7 @@ func (r *DefaultManagedAppProtectionAppsCollectionRequest) Paging(ctx context.Co value []ManagedMobileApp ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionDep.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionDep.go index eb3613df..1798f3b9 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionDep.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionDep.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -87,9 +87,9 @@ func (r *DepOnboardingSettingEnrollmentProfilesCollectionRequest) Paging(ctx con } var values []EnrollmentProfile for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -102,6 +102,7 @@ func (r *DepOnboardingSettingEnrollmentProfilesCollectionRequest) Paging(ctx con value []EnrollmentProfile ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -189,9 +190,9 @@ func (r *DepOnboardingSettingImportedAppleDeviceIdentitiesCollectionRequest) Pag } var values []ImportedAppleDeviceIdentity for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -204,6 +205,7 @@ func (r *DepOnboardingSettingImportedAppleDeviceIdentitiesCollectionRequest) Pag value []ImportedAppleDeviceIdentity ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionDetected.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionDetected.go index c5761737..0b7e69ec 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionDetected.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionDetected.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -53,9 +53,9 @@ func (r *DetectedAppManagedDevicesCollectionRequest) Paging(ctx context.Context, } var values []ManagedDevice for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -68,6 +68,7 @@ func (r *DetectedAppManagedDevicesCollectionRequest) Paging(ctx context.Context, value []ManagedDevice ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionDevice.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionDevice.go index 83454394..b7bdef6d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionDevice.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionDevice.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -317,9 +317,9 @@ func (r *DeviceCommandsCollectionRequest) Paging(ctx context.Context, method, pa } var values []Command for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -332,6 +332,7 @@ func (r *DeviceCommandsCollectionRequest) Paging(ctx context.Context, method, pa value []Command ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -419,9 +420,9 @@ func (r *DeviceExtensionsCollectionRequest) Paging(ctx context.Context, method, } var values []Extension for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -434,6 +435,7 @@ func (r *DeviceExtensionsCollectionRequest) Paging(ctx context.Context, method, value []Extension ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -521,9 +523,9 @@ func (r *DeviceMemberOfCollectionRequest) Paging(ctx context.Context, method, pa } var values []DirectoryObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -536,6 +538,7 @@ func (r *DeviceMemberOfCollectionRequest) Paging(ctx context.Context, method, pa value []DirectoryObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -623,9 +626,9 @@ func (r *DeviceRegisteredOwnersCollectionRequest) Paging(ctx context.Context, me } var values []DirectoryObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -638,6 +641,7 @@ func (r *DeviceRegisteredOwnersCollectionRequest) Paging(ctx context.Context, me value []DirectoryObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -725,9 +729,9 @@ func (r *DeviceRegisteredUsersCollectionRequest) Paging(ctx context.Context, met } var values []DirectoryObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -740,6 +744,7 @@ func (r *DeviceRegisteredUsersCollectionRequest) Paging(ctx context.Context, met value []DirectoryObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -827,9 +832,9 @@ func (r *DeviceTransitiveMemberOfCollectionRequest) Paging(ctx context.Context, } var values []DirectoryObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -842,6 +847,7 @@ func (r *DeviceTransitiveMemberOfCollectionRequest) Paging(ctx context.Context, value []DirectoryObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -929,9 +935,9 @@ func (r *DeviceAndAppManagementRoleAssignmentRoleScopeTagsCollectionRequest) Pag } var values []RoleScopeTag for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -944,6 +950,7 @@ func (r *DeviceAndAppManagementRoleAssignmentRoleScopeTagsCollectionRequest) Pag value []RoleScopeTag ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1031,9 +1038,9 @@ func (r *DeviceAppManagementAndroidManagedAppProtectionsCollectionRequest) Pagin } var values []AndroidManagedAppProtection for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1046,6 +1053,7 @@ func (r *DeviceAppManagementAndroidManagedAppProtectionsCollectionRequest) Pagin value []AndroidManagedAppProtection ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1133,9 +1141,9 @@ func (r *DeviceAppManagementDefaultManagedAppProtectionsCollectionRequest) Pagin } var values []DefaultManagedAppProtection for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1148,6 +1156,7 @@ func (r *DeviceAppManagementDefaultManagedAppProtectionsCollectionRequest) Pagin value []DefaultManagedAppProtection ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1235,9 +1244,9 @@ func (r *DeviceAppManagementDeviceAppManagementTasksCollectionRequest) Paging(ct } var values []DeviceAppManagementTask for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1250,6 +1259,7 @@ func (r *DeviceAppManagementDeviceAppManagementTasksCollectionRequest) Paging(ct value []DeviceAppManagementTask ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1337,9 +1347,9 @@ func (r *DeviceAppManagementEnterpriseCodeSigningCertificatesCollectionRequest) } var values []EnterpriseCodeSigningCertificate for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1352,6 +1362,7 @@ func (r *DeviceAppManagementEnterpriseCodeSigningCertificatesCollectionRequest) value []EnterpriseCodeSigningCertificate ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1439,9 +1450,9 @@ func (r *DeviceAppManagementIOSLobAppProvisioningConfigurationsCollectionRequest } var values []IOSLobAppProvisioningConfiguration for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1454,6 +1465,7 @@ func (r *DeviceAppManagementIOSLobAppProvisioningConfigurationsCollectionRequest value []IOSLobAppProvisioningConfiguration ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1541,9 +1553,9 @@ func (r *DeviceAppManagementIOSManagedAppProtectionsCollectionRequest) Paging(ct } var values []IOSManagedAppProtection for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1556,6 +1568,7 @@ func (r *DeviceAppManagementIOSManagedAppProtectionsCollectionRequest) Paging(ct value []IOSManagedAppProtection ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1643,9 +1656,9 @@ func (r *DeviceAppManagementManagedAppPoliciesCollectionRequest) Paging(ctx cont } var values []ManagedAppPolicy for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1658,6 +1671,7 @@ func (r *DeviceAppManagementManagedAppPoliciesCollectionRequest) Paging(ctx cont value []ManagedAppPolicy ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1745,9 +1759,9 @@ func (r *DeviceAppManagementManagedAppRegistrationsCollectionRequest) Paging(ctx } var values []ManagedAppRegistration for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1760,6 +1774,7 @@ func (r *DeviceAppManagementManagedAppRegistrationsCollectionRequest) Paging(ctx value []ManagedAppRegistration ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1847,9 +1862,9 @@ func (r *DeviceAppManagementManagedAppStatusesCollectionRequest) Paging(ctx cont } var values []ManagedAppStatus for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1862,6 +1877,7 @@ func (r *DeviceAppManagementManagedAppStatusesCollectionRequest) Paging(ctx cont value []ManagedAppStatus ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1949,9 +1965,9 @@ func (r *DeviceAppManagementManagedEBookCategoriesCollectionRequest) Paging(ctx } var values []ManagedEBookCategory for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1964,6 +1980,7 @@ func (r *DeviceAppManagementManagedEBookCategoriesCollectionRequest) Paging(ctx value []ManagedEBookCategory ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2051,9 +2068,9 @@ func (r *DeviceAppManagementManagedEBooksCollectionRequest) Paging(ctx context.C } var values []ManagedEBook for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2066,6 +2083,7 @@ func (r *DeviceAppManagementManagedEBooksCollectionRequest) Paging(ctx context.C value []ManagedEBook ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2153,9 +2171,9 @@ func (r *DeviceAppManagementMDMWindowsInformationProtectionPoliciesCollectionReq } var values []MDMWindowsInformationProtectionPolicy for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2168,6 +2186,7 @@ func (r *DeviceAppManagementMDMWindowsInformationProtectionPoliciesCollectionReq value []MDMWindowsInformationProtectionPolicy ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2255,9 +2274,9 @@ func (r *DeviceAppManagementMobileAppCategoriesCollectionRequest) Paging(ctx con } var values []MobileAppCategory for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2270,6 +2289,7 @@ func (r *DeviceAppManagementMobileAppCategoriesCollectionRequest) Paging(ctx con value []MobileAppCategory ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2357,9 +2377,9 @@ func (r *DeviceAppManagementMobileAppConfigurationsCollectionRequest) Paging(ctx } var values []ManagedDeviceMobileAppConfiguration for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2372,6 +2392,7 @@ func (r *DeviceAppManagementMobileAppConfigurationsCollectionRequest) Paging(ctx value []ManagedDeviceMobileAppConfiguration ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2459,9 +2480,9 @@ func (r *DeviceAppManagementMobileAppsCollectionRequest) Paging(ctx context.Cont } var values []MobileApp for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2474,6 +2495,7 @@ func (r *DeviceAppManagementMobileAppsCollectionRequest) Paging(ctx context.Cont value []MobileApp ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2561,9 +2583,9 @@ func (r *DeviceAppManagementPolicySetsCollectionRequest) Paging(ctx context.Cont } var values []PolicySet for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2576,6 +2598,7 @@ func (r *DeviceAppManagementPolicySetsCollectionRequest) Paging(ctx context.Cont value []PolicySet ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2663,9 +2686,9 @@ func (r *DeviceAppManagementSideLoadingKeysCollectionRequest) Paging(ctx context } var values []SideLoadingKey for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2678,6 +2701,7 @@ func (r *DeviceAppManagementSideLoadingKeysCollectionRequest) Paging(ctx context value []SideLoadingKey ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2772,9 +2796,9 @@ func (r *DeviceAppManagementTargetedManagedAppConfigurationsCollectionRequest) P } var values []TargetedManagedAppConfiguration for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2787,6 +2811,7 @@ func (r *DeviceAppManagementTargetedManagedAppConfigurationsCollectionRequest) P value []TargetedManagedAppConfiguration ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2874,9 +2899,9 @@ func (r *DeviceAppManagementVPPTokensCollectionRequest) Paging(ctx context.Conte } var values []VPPToken for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2889,6 +2914,7 @@ func (r *DeviceAppManagementVPPTokensCollectionRequest) Paging(ctx context.Conte value []VPPToken ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2976,9 +3002,9 @@ func (r *DeviceAppManagementWdacSupplementalPoliciesCollectionRequest) Paging(ct } var values []WindowsDefenderApplicationControlSupplementalPolicy for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2991,6 +3017,7 @@ func (r *DeviceAppManagementWdacSupplementalPoliciesCollectionRequest) Paging(ct value []WindowsDefenderApplicationControlSupplementalPolicy ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -3078,9 +3105,9 @@ func (r *DeviceAppManagementWindowsInformationProtectionDeviceRegistrationsColle } var values []WindowsInformationProtectionDeviceRegistration for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -3093,6 +3120,7 @@ func (r *DeviceAppManagementWindowsInformationProtectionDeviceRegistrationsColle value []WindowsInformationProtectionDeviceRegistration ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -3180,9 +3208,9 @@ func (r *DeviceAppManagementWindowsInformationProtectionPoliciesCollectionReques } var values []WindowsInformationProtectionPolicy for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -3195,6 +3223,7 @@ func (r *DeviceAppManagementWindowsInformationProtectionPoliciesCollectionReques value []WindowsInformationProtectionPolicy ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -3282,9 +3311,9 @@ func (r *DeviceAppManagementWindowsInformationProtectionWipeActionsCollectionReq } var values []WindowsInformationProtectionWipeAction for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -3297,6 +3326,7 @@ func (r *DeviceAppManagementWindowsInformationProtectionWipeActionsCollectionReq value []WindowsInformationProtectionWipeAction ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -3391,9 +3421,9 @@ func (r *DeviceCompliancePolicyAssignmentsCollectionRequest) Paging(ctx context. } var values []DeviceCompliancePolicyAssignment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -3406,6 +3436,7 @@ func (r *DeviceCompliancePolicyAssignmentsCollectionRequest) Paging(ctx context. value []DeviceCompliancePolicyAssignment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -3493,9 +3524,9 @@ func (r *DeviceCompliancePolicyDeviceSettingStateSummariesCollectionRequest) Pag } var values []SettingStateDeviceSummary for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -3508,6 +3539,7 @@ func (r *DeviceCompliancePolicyDeviceSettingStateSummariesCollectionRequest) Pag value []SettingStateDeviceSummary ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -3602,9 +3634,9 @@ func (r *DeviceCompliancePolicyDeviceStatusesCollectionRequest) Paging(ctx conte } var values []DeviceComplianceDeviceStatus for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -3617,6 +3649,7 @@ func (r *DeviceCompliancePolicyDeviceStatusesCollectionRequest) Paging(ctx conte value []DeviceComplianceDeviceStatus ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -3704,9 +3737,9 @@ func (r *DeviceCompliancePolicyScheduledActionsForRuleCollectionRequest) Paging( } var values []DeviceComplianceScheduledActionForRule for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -3719,6 +3752,7 @@ func (r *DeviceCompliancePolicyScheduledActionsForRuleCollectionRequest) Paging( value []DeviceComplianceScheduledActionForRule ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -3813,9 +3847,9 @@ func (r *DeviceCompliancePolicyUserStatusesCollectionRequest) Paging(ctx context } var values []DeviceComplianceUserStatus for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -3828,6 +3862,7 @@ func (r *DeviceCompliancePolicyUserStatusesCollectionRequest) Paging(ctx context value []DeviceComplianceUserStatus ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -3922,9 +3957,9 @@ func (r *DeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingStatesC } var values []DeviceComplianceSettingState for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -3937,6 +3972,7 @@ func (r *DeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingStatesC value []DeviceComplianceSettingState ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -4024,9 +4060,9 @@ func (r *DeviceComplianceScheduledActionForRuleScheduledActionConfigurationsColl } var values []DeviceComplianceActionItem for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -4039,6 +4075,7 @@ func (r *DeviceComplianceScheduledActionForRuleScheduledActionConfigurationsColl value []DeviceComplianceActionItem ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -4126,9 +4163,9 @@ func (r *DeviceConfigurationAssignmentsCollectionRequest) Paging(ctx context.Con } var values []DeviceConfigurationAssignment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -4141,6 +4178,7 @@ func (r *DeviceConfigurationAssignmentsCollectionRequest) Paging(ctx context.Con value []DeviceConfigurationAssignment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -4228,9 +4266,9 @@ func (r *DeviceConfigurationDeviceSettingStateSummariesCollectionRequest) Paging } var values []SettingStateDeviceSummary for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -4243,6 +4281,7 @@ func (r *DeviceConfigurationDeviceSettingStateSummariesCollectionRequest) Paging value []SettingStateDeviceSummary ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -4337,9 +4376,9 @@ func (r *DeviceConfigurationDeviceStatusesCollectionRequest) Paging(ctx context. } var values []DeviceConfigurationDeviceStatus for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -4352,6 +4391,7 @@ func (r *DeviceConfigurationDeviceStatusesCollectionRequest) Paging(ctx context. value []DeviceConfigurationDeviceStatus ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -4439,9 +4479,9 @@ func (r *DeviceConfigurationGroupAssignmentsCollectionRequest) Paging(ctx contex } var values []DeviceConfigurationGroupAssignment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -4454,6 +4494,7 @@ func (r *DeviceConfigurationGroupAssignmentsCollectionRequest) Paging(ctx contex value []DeviceConfigurationGroupAssignment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -4548,9 +4589,9 @@ func (r *DeviceConfigurationUserStatusesCollectionRequest) Paging(ctx context.Co } var values []DeviceConfigurationUserStatus for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -4563,6 +4604,7 @@ func (r *DeviceConfigurationUserStatusesCollectionRequest) Paging(ctx context.Co value []DeviceConfigurationUserStatus ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -4657,9 +4699,9 @@ func (r *DeviceEnrollmentConfigurationAssignmentsCollectionRequest) Paging(ctx c } var values []EnrollmentConfigurationAssignment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -4672,6 +4714,7 @@ func (r *DeviceEnrollmentConfigurationAssignmentsCollectionRequest) Paging(ctx c value []EnrollmentConfigurationAssignment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -4759,9 +4802,9 @@ func (r *DeviceHealthScriptAssignmentsCollectionRequest) Paging(ctx context.Cont } var values []DeviceHealthScriptAssignment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -4774,6 +4817,7 @@ func (r *DeviceHealthScriptAssignmentsCollectionRequest) Paging(ctx context.Cont value []DeviceHealthScriptAssignment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -4861,9 +4905,9 @@ func (r *DeviceHealthScriptDeviceRunStatesCollectionRequest) Paging(ctx context. } var values []DeviceHealthScriptDeviceState for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -4876,6 +4920,7 @@ func (r *DeviceHealthScriptDeviceRunStatesCollectionRequest) Paging(ctx context. value []DeviceHealthScriptDeviceState ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -4984,9 +5029,9 @@ func (r *DeviceManagementAndroidDeviceOwnerEnrollmentProfilesCollectionRequest) } var values []AndroidDeviceOwnerEnrollmentProfile for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -4999,6 +5044,7 @@ func (r *DeviceManagementAndroidDeviceOwnerEnrollmentProfilesCollectionRequest) value []AndroidDeviceOwnerEnrollmentProfile ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -5086,9 +5132,9 @@ func (r *DeviceManagementAndroidForWorkAppConfigurationSchemasCollectionRequest) } var values []AndroidForWorkAppConfigurationSchema for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -5101,6 +5147,7 @@ func (r *DeviceManagementAndroidForWorkAppConfigurationSchemasCollectionRequest) value []AndroidForWorkAppConfigurationSchema ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -5188,9 +5235,9 @@ func (r *DeviceManagementAndroidForWorkEnrollmentProfilesCollectionRequest) Pagi } var values []AndroidForWorkEnrollmentProfile for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -5203,6 +5250,7 @@ func (r *DeviceManagementAndroidForWorkEnrollmentProfilesCollectionRequest) Pagi value []AndroidForWorkEnrollmentProfile ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -5304,9 +5352,9 @@ func (r *DeviceManagementAndroidManagedStoreAppConfigurationSchemasCollectionReq } var values []AndroidManagedStoreAppConfigurationSchema for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -5319,6 +5367,7 @@ func (r *DeviceManagementAndroidManagedStoreAppConfigurationSchemasCollectionReq value []AndroidManagedStoreAppConfigurationSchema ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -5413,9 +5462,9 @@ func (r *DeviceManagementAppleUserInitiatedEnrollmentProfilesCollectionRequest) } var values []AppleUserInitiatedEnrollmentProfile for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -5428,6 +5477,7 @@ func (r *DeviceManagementAppleUserInitiatedEnrollmentProfilesCollectionRequest) value []AppleUserInitiatedEnrollmentProfile ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -5515,9 +5565,9 @@ func (r *DeviceManagementAuditEventsCollectionRequest) Paging(ctx context.Contex } var values []AuditEvent for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -5530,6 +5580,7 @@ func (r *DeviceManagementAuditEventsCollectionRequest) Paging(ctx context.Contex value []AuditEvent ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -5617,9 +5668,9 @@ func (r *DeviceManagementAutopilotEventsCollectionRequest) Paging(ctx context.Co } var values []DeviceManagementAutopilotEvent for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -5632,6 +5683,7 @@ func (r *DeviceManagementAutopilotEventsCollectionRequest) Paging(ctx context.Co value []DeviceManagementAutopilotEvent ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -5719,9 +5771,9 @@ func (r *DeviceManagementCartToClassAssociationsCollectionRequest) Paging(ctx co } var values []CartToClassAssociation for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -5734,6 +5786,7 @@ func (r *DeviceManagementCartToClassAssociationsCollectionRequest) Paging(ctx co value []CartToClassAssociation ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -5821,9 +5874,9 @@ func (r *DeviceManagementCategoriesCollectionRequest) Paging(ctx context.Context } var values []DeviceManagementSettingCategory for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -5836,6 +5889,7 @@ func (r *DeviceManagementCategoriesCollectionRequest) Paging(ctx context.Context value []DeviceManagementSettingCategory ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -5923,9 +5977,9 @@ func (r *DeviceManagementComplianceManagementPartnersCollectionRequest) Paging(c } var values []ComplianceManagementPartner for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -5938,6 +5992,7 @@ func (r *DeviceManagementComplianceManagementPartnersCollectionRequest) Paging(c value []ComplianceManagementPartner ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -6032,9 +6087,9 @@ func (r *DeviceManagementDataSharingConsentsCollectionRequest) Paging(ctx contex } var values []DataSharingConsent for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -6047,6 +6102,7 @@ func (r *DeviceManagementDataSharingConsentsCollectionRequest) Paging(ctx contex value []DataSharingConsent ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -6134,9 +6190,9 @@ func (r *DeviceManagementDepOnboardingSettingsCollectionRequest) Paging(ctx cont } var values []DepOnboardingSetting for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -6149,6 +6205,7 @@ func (r *DeviceManagementDepOnboardingSettingsCollectionRequest) Paging(ctx cont value []DepOnboardingSetting ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -6236,9 +6293,9 @@ func (r *DeviceManagementDerivedCredentialsCollectionRequest) Paging(ctx context } var values []DeviceManagementDerivedCredentialSettings for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -6251,6 +6308,7 @@ func (r *DeviceManagementDerivedCredentialsCollectionRequest) Paging(ctx context value []DeviceManagementDerivedCredentialSettings ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -6338,9 +6396,9 @@ func (r *DeviceManagementDetectedAppsCollectionRequest) Paging(ctx context.Conte } var values []DetectedApp for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -6353,6 +6411,7 @@ func (r *DeviceManagementDetectedAppsCollectionRequest) Paging(ctx context.Conte value []DetectedApp ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -6440,9 +6499,9 @@ func (r *DeviceManagementDeviceCategoriesCollectionRequest) Paging(ctx context.C } var values []DeviceCategory for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -6455,6 +6514,7 @@ func (r *DeviceManagementDeviceCategoriesCollectionRequest) Paging(ctx context.C value []DeviceCategory ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -6542,9 +6602,9 @@ func (r *DeviceManagementDeviceCompliancePoliciesCollectionRequest) Paging(ctx c } var values []DeviceCompliancePolicy for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -6557,6 +6617,7 @@ func (r *DeviceManagementDeviceCompliancePoliciesCollectionRequest) Paging(ctx c value []DeviceCompliancePolicy ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -6651,9 +6712,9 @@ func (r *DeviceManagementDeviceCompliancePolicySettingStateSummariesCollectionRe } var values []DeviceCompliancePolicySettingStateSummary for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -6666,6 +6727,7 @@ func (r *DeviceManagementDeviceCompliancePolicySettingStateSummariesCollectionRe value []DeviceCompliancePolicySettingStateSummary ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -6753,9 +6815,9 @@ func (r *DeviceManagementDeviceConfigurationConflictSummaryCollectionRequest) Pa } var values []DeviceConfigurationConflictSummary for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -6768,6 +6830,7 @@ func (r *DeviceManagementDeviceConfigurationConflictSummaryCollectionRequest) Pa value []DeviceConfigurationConflictSummary ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -6862,9 +6925,9 @@ func (r *DeviceManagementDeviceConfigurationRestrictedAppsViolationsCollectionRe } var values []RestrictedAppsViolation for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -6877,6 +6940,7 @@ func (r *DeviceManagementDeviceConfigurationRestrictedAppsViolationsCollectionRe value []RestrictedAppsViolation ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -6971,9 +7035,9 @@ func (r *DeviceManagementDeviceConfigurationsCollectionRequest) Paging(ctx conte } var values []DeviceConfiguration for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -6986,6 +7050,7 @@ func (r *DeviceManagementDeviceConfigurationsCollectionRequest) Paging(ctx conte value []DeviceConfiguration ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -7073,9 +7138,9 @@ func (r *DeviceManagementDeviceConfigurationsAllManagedDeviceCertificateStatesCo } var values []ManagedAllDeviceCertificateState for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -7088,6 +7153,7 @@ func (r *DeviceManagementDeviceConfigurationsAllManagedDeviceCertificateStatesCo value []ManagedAllDeviceCertificateState ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -7175,9 +7241,9 @@ func (r *DeviceManagementDeviceEnrollmentConfigurationsCollectionRequest) Paging } var values []DeviceEnrollmentConfiguration for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -7190,6 +7256,7 @@ func (r *DeviceManagementDeviceEnrollmentConfigurationsCollectionRequest) Paging value []DeviceEnrollmentConfiguration ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -7277,9 +7344,9 @@ func (r *DeviceManagementDeviceHealthScriptsCollectionRequest) Paging(ctx contex } var values []DeviceHealthScript for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -7292,6 +7359,7 @@ func (r *DeviceManagementDeviceHealthScriptsCollectionRequest) Paging(ctx contex value []DeviceHealthScript ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -7379,9 +7447,9 @@ func (r *DeviceManagementDeviceManagementPartnersCollectionRequest) Paging(ctx c } var values []DeviceManagementPartner for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -7394,6 +7462,7 @@ func (r *DeviceManagementDeviceManagementPartnersCollectionRequest) Paging(ctx c value []DeviceManagementPartner ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -7481,9 +7550,9 @@ func (r *DeviceManagementDeviceManagementScriptsCollectionRequest) Paging(ctx co } var values []DeviceManagementScript for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -7496,6 +7565,7 @@ func (r *DeviceManagementDeviceManagementScriptsCollectionRequest) Paging(ctx co value []DeviceManagementScript ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -7583,9 +7653,9 @@ func (r *DeviceManagementDomainJoinConnectorsCollectionRequest) Paging(ctx conte } var values []DeviceManagementDomainJoinConnector for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -7598,6 +7668,7 @@ func (r *DeviceManagementDomainJoinConnectorsCollectionRequest) Paging(ctx conte value []DeviceManagementDomainJoinConnector ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -7685,9 +7756,9 @@ func (r *DeviceManagementEmbeddedSIMActivationCodePoolsCollectionRequest) Paging } var values []EmbeddedSIMActivationCodePool for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -7700,6 +7771,7 @@ func (r *DeviceManagementEmbeddedSIMActivationCodePoolsCollectionRequest) Paging value []EmbeddedSIMActivationCodePool ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -7787,9 +7859,9 @@ func (r *DeviceManagementExchangeConnectorsCollectionRequest) Paging(ctx context } var values []DeviceManagementExchangeConnector for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -7802,6 +7874,7 @@ func (r *DeviceManagementExchangeConnectorsCollectionRequest) Paging(ctx context value []DeviceManagementExchangeConnector ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -7889,9 +7962,9 @@ func (r *DeviceManagementExchangeOnPremisesPoliciesCollectionRequest) Paging(ctx } var values []DeviceManagementExchangeOnPremisesPolicy for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -7904,6 +7977,7 @@ func (r *DeviceManagementExchangeOnPremisesPoliciesCollectionRequest) Paging(ctx value []DeviceManagementExchangeOnPremisesPolicy ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -7998,9 +8072,9 @@ func (r *DeviceManagementGroupPolicyConfigurationsCollectionRequest) Paging(ctx } var values []GroupPolicyConfiguration for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -8013,6 +8087,7 @@ func (r *DeviceManagementGroupPolicyConfigurationsCollectionRequest) Paging(ctx value []GroupPolicyConfiguration ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -8100,9 +8175,9 @@ func (r *DeviceManagementGroupPolicyDefinitionFilesCollectionRequest) Paging(ctx } var values []GroupPolicyDefinitionFile for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -8115,6 +8190,7 @@ func (r *DeviceManagementGroupPolicyDefinitionFilesCollectionRequest) Paging(ctx value []GroupPolicyDefinitionFile ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -8202,9 +8278,9 @@ func (r *DeviceManagementGroupPolicyDefinitionsCollectionRequest) Paging(ctx con } var values []GroupPolicyDefinition for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -8217,6 +8293,7 @@ func (r *DeviceManagementGroupPolicyDefinitionsCollectionRequest) Paging(ctx con value []GroupPolicyDefinition ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -8304,9 +8381,9 @@ func (r *DeviceManagementGroupPolicyMigrationReportsCollectionRequest) Paging(ct } var values []GroupPolicyMigrationReport for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -8319,6 +8396,7 @@ func (r *DeviceManagementGroupPolicyMigrationReportsCollectionRequest) Paging(ct value []GroupPolicyMigrationReport ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -8406,9 +8484,9 @@ func (r *DeviceManagementImportedDeviceIdentitiesCollectionRequest) Paging(ctx c } var values []ImportedDeviceIdentity for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -8421,6 +8499,7 @@ func (r *DeviceManagementImportedDeviceIdentitiesCollectionRequest) Paging(ctx c value []ImportedDeviceIdentity ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -8508,9 +8587,9 @@ func (r *DeviceManagementImportedWindowsAutopilotDeviceIdentitiesCollectionReque } var values []ImportedWindowsAutopilotDeviceIdentity for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -8523,6 +8602,7 @@ func (r *DeviceManagementImportedWindowsAutopilotDeviceIdentitiesCollectionReque value []ImportedWindowsAutopilotDeviceIdentity ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -8610,9 +8690,9 @@ func (r *DeviceManagementIntentsCollectionRequest) Paging(ctx context.Context, m } var values []DeviceManagementIntent for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -8625,6 +8705,7 @@ func (r *DeviceManagementIntentsCollectionRequest) Paging(ctx context.Context, m value []DeviceManagementIntent ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -8712,9 +8793,9 @@ func (r *DeviceManagementIntuneBrandingProfilesCollectionRequest) Paging(ctx con } var values []IntuneBrandingProfile for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -8727,6 +8808,7 @@ func (r *DeviceManagementIntuneBrandingProfilesCollectionRequest) Paging(ctx con value []IntuneBrandingProfile ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -8814,9 +8896,9 @@ func (r *DeviceManagementIOSUpdateStatusesCollectionRequest) Paging(ctx context. } var values []IOSUpdateDeviceStatus for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -8829,6 +8911,7 @@ func (r *DeviceManagementIOSUpdateStatusesCollectionRequest) Paging(ctx context. value []IOSUpdateDeviceStatus ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -8916,9 +8999,9 @@ func (r *DeviceManagementManagedDeviceEncryptionStatesCollectionRequest) Paging( } var values []ManagedDeviceEncryptionState for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -8931,6 +9014,7 @@ func (r *DeviceManagementManagedDeviceEncryptionStatesCollectionRequest) Paging( value []ManagedDeviceEncryptionState ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -9025,9 +9109,9 @@ func (r *DeviceManagementManagedDevicesCollectionRequest) Paging(ctx context.Con } var values []ManagedDevice for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -9040,6 +9124,7 @@ func (r *DeviceManagementManagedDevicesCollectionRequest) Paging(ctx context.Con value []ManagedDevice ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -9127,9 +9212,9 @@ func (r *DeviceManagementManagementConditionStatementsCollectionRequest) Paging( } var values []ManagementConditionStatement for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -9142,6 +9227,7 @@ func (r *DeviceManagementManagementConditionStatementsCollectionRequest) Paging( value []ManagementConditionStatement ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -9229,9 +9315,9 @@ func (r *DeviceManagementManagementConditionsCollectionRequest) Paging(ctx conte } var values []ManagementCondition for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -9244,6 +9330,7 @@ func (r *DeviceManagementManagementConditionsCollectionRequest) Paging(ctx conte value []ManagementCondition ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -9331,9 +9418,9 @@ func (r *DeviceManagementMobileAppTroubleshootingEventsCollectionRequest) Paging } var values []MobileAppTroubleshootingEvent for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -9346,6 +9433,7 @@ func (r *DeviceManagementMobileAppTroubleshootingEventsCollectionRequest) Paging value []MobileAppTroubleshootingEvent ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -9433,9 +9521,9 @@ func (r *DeviceManagementMobileThreatDefenseConnectorsCollectionRequest) Paging( } var values []MobileThreatDefenseConnector for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -9448,6 +9536,7 @@ func (r *DeviceManagementMobileThreatDefenseConnectorsCollectionRequest) Paging( value []MobileThreatDefenseConnector ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -9535,9 +9624,9 @@ func (r *DeviceManagementNDESConnectorsCollectionRequest) Paging(ctx context.Con } var values []NDESConnector for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -9550,6 +9639,7 @@ func (r *DeviceManagementNDESConnectorsCollectionRequest) Paging(ctx context.Con value []NDESConnector ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -9637,9 +9727,9 @@ func (r *DeviceManagementNotificationMessageTemplatesCollectionRequest) Paging(c } var values []NotificationMessageTemplate for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -9652,6 +9742,7 @@ func (r *DeviceManagementNotificationMessageTemplatesCollectionRequest) Paging(c value []NotificationMessageTemplate ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -9739,9 +9830,9 @@ func (r *DeviceManagementRemoteActionAuditsCollectionRequest) Paging(ctx context } var values []RemoteActionAudit for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -9754,6 +9845,7 @@ func (r *DeviceManagementRemoteActionAuditsCollectionRequest) Paging(ctx context value []RemoteActionAudit ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -9841,9 +9933,9 @@ func (r *DeviceManagementRemoteAssistancePartnersCollectionRequest) Paging(ctx c } var values []RemoteAssistancePartner for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -9856,6 +9948,7 @@ func (r *DeviceManagementRemoteAssistancePartnersCollectionRequest) Paging(ctx c value []RemoteAssistancePartner ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -9950,9 +10043,9 @@ func (r *DeviceManagementResourceOperationsCollectionRequest) Paging(ctx context } var values []ResourceOperation for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -9965,6 +10058,7 @@ func (r *DeviceManagementResourceOperationsCollectionRequest) Paging(ctx context value []ResourceOperation ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -10052,9 +10146,9 @@ func (r *DeviceManagementRoleAssignmentsCollectionRequest) Paging(ctx context.Co } var values []DeviceAndAppManagementRoleAssignment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -10067,6 +10161,7 @@ func (r *DeviceManagementRoleAssignmentsCollectionRequest) Paging(ctx context.Co value []DeviceAndAppManagementRoleAssignment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -10154,9 +10249,9 @@ func (r *DeviceManagementRoleDefinitionsCollectionRequest) Paging(ctx context.Co } var values []RoleDefinition for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -10169,6 +10264,7 @@ func (r *DeviceManagementRoleDefinitionsCollectionRequest) Paging(ctx context.Co value []RoleDefinition ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -10256,9 +10352,9 @@ func (r *DeviceManagementRoleScopeTagsCollectionRequest) Paging(ctx context.Cont } var values []RoleScopeTag for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -10271,6 +10367,7 @@ func (r *DeviceManagementRoleScopeTagsCollectionRequest) Paging(ctx context.Cont value []RoleScopeTag ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -10358,9 +10455,9 @@ func (r *DeviceManagementSettingDefinitionsCollectionRequest) Paging(ctx context } var values []DeviceManagementSettingDefinition for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -10373,6 +10470,7 @@ func (r *DeviceManagementSettingDefinitionsCollectionRequest) Paging(ctx context value []DeviceManagementSettingDefinition ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -10467,9 +10565,9 @@ func (r *DeviceManagementTelecomExpenseManagementPartnersCollectionRequest) Pagi } var values []TelecomExpenseManagementPartner for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -10482,6 +10580,7 @@ func (r *DeviceManagementTelecomExpenseManagementPartnersCollectionRequest) Pagi value []TelecomExpenseManagementPartner ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -10569,9 +10668,9 @@ func (r *DeviceManagementTemplatesCollectionRequest) Paging(ctx context.Context, } var values []DeviceManagementTemplate for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -10584,6 +10683,7 @@ func (r *DeviceManagementTemplatesCollectionRequest) Paging(ctx context.Context, value []DeviceManagementTemplate ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -10671,9 +10771,9 @@ func (r *DeviceManagementTermsAndConditionsCollectionRequest) Paging(ctx context } var values []TermsAndConditions for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -10686,6 +10786,7 @@ func (r *DeviceManagementTermsAndConditionsCollectionRequest) Paging(ctx context value []TermsAndConditions ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -10773,9 +10874,9 @@ func (r *DeviceManagementTroubleshootingEventsCollectionRequest) Paging(ctx cont } var values []DeviceManagementTroubleshootingEvent for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -10788,6 +10889,7 @@ func (r *DeviceManagementTroubleshootingEventsCollectionRequest) Paging(ctx cont value []DeviceManagementTroubleshootingEvent ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -10875,9 +10977,9 @@ func (r *DeviceManagementUserExperienceAnalyticsBaselinesCollectionRequest) Pagi } var values []UserExperienceAnalyticsBaseline for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -10890,6 +10992,7 @@ func (r *DeviceManagementUserExperienceAnalyticsBaselinesCollectionRequest) Pagi value []UserExperienceAnalyticsBaseline ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -10977,9 +11080,9 @@ func (r *DeviceManagementUserExperienceAnalyticsCategoriesCollectionRequest) Pag } var values []UserExperienceAnalyticsCategory for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -10992,6 +11095,7 @@ func (r *DeviceManagementUserExperienceAnalyticsCategoriesCollectionRequest) Pag value []UserExperienceAnalyticsCategory ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -11079,9 +11183,9 @@ func (r *DeviceManagementUserExperienceAnalyticsDevicePerformanceCollectionReque } var values []UserExperienceAnalyticsDevicePerformance for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -11094,6 +11198,7 @@ func (r *DeviceManagementUserExperienceAnalyticsDevicePerformanceCollectionReque value []UserExperienceAnalyticsDevicePerformance ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -11181,9 +11286,9 @@ func (r *DeviceManagementUserExperienceAnalyticsDeviceStartupHistoryCollectionRe } var values []UserExperienceAnalyticsDeviceStartupHistory for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -11196,6 +11301,7 @@ func (r *DeviceManagementUserExperienceAnalyticsDeviceStartupHistoryCollectionRe value []UserExperienceAnalyticsDeviceStartupHistory ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -11297,9 +11403,9 @@ func (r *DeviceManagementUserPfxCertificatesCollectionRequest) Paging(ctx contex } var values []UserPFXCertificate for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -11312,6 +11418,7 @@ func (r *DeviceManagementUserPfxCertificatesCollectionRequest) Paging(ctx contex value []UserPFXCertificate ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -11399,9 +11506,9 @@ func (r *DeviceManagementWindowsAutopilotDeploymentProfilesCollectionRequest) Pa } var values []WindowsAutopilotDeploymentProfile for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -11414,6 +11521,7 @@ func (r *DeviceManagementWindowsAutopilotDeploymentProfilesCollectionRequest) Pa value []WindowsAutopilotDeploymentProfile ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -11501,9 +11609,9 @@ func (r *DeviceManagementWindowsAutopilotDeviceIdentitiesCollectionRequest) Pagi } var values []WindowsAutopilotDeviceIdentity for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -11516,6 +11624,7 @@ func (r *DeviceManagementWindowsAutopilotDeviceIdentitiesCollectionRequest) Pagi value []WindowsAutopilotDeviceIdentity ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -11610,9 +11719,9 @@ func (r *DeviceManagementWindowsFeatureUpdateProfilesCollectionRequest) Paging(c } var values []WindowsFeatureUpdateProfile for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -11625,6 +11734,7 @@ func (r *DeviceManagementWindowsFeatureUpdateProfilesCollectionRequest) Paging(c value []WindowsFeatureUpdateProfile ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -11712,9 +11822,9 @@ func (r *DeviceManagementWindowsInformationProtectionAppLearningSummariesCollect } var values []WindowsInformationProtectionAppLearningSummary for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -11727,6 +11837,7 @@ func (r *DeviceManagementWindowsInformationProtectionAppLearningSummariesCollect value []WindowsInformationProtectionAppLearningSummary ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -11814,9 +11925,9 @@ func (r *DeviceManagementWindowsInformationProtectionNetworkLearningSummariesCol } var values []WindowsInformationProtectionNetworkLearningSummary for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -11829,6 +11940,7 @@ func (r *DeviceManagementWindowsInformationProtectionNetworkLearningSummariesCol value []WindowsInformationProtectionNetworkLearningSummary ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -11916,9 +12028,9 @@ func (r *DeviceManagementWindowsMalwareInformationCollectionRequest) Paging(ctx } var values []WindowsMalwareInformation for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -11931,6 +12043,7 @@ func (r *DeviceManagementWindowsMalwareInformationCollectionRequest) Paging(ctx value []WindowsMalwareInformation ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -12018,9 +12131,9 @@ func (r *DeviceManagementAbstractComplexSettingInstanceValueCollectionRequest) P } var values []DeviceManagementSettingInstance for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -12033,6 +12146,7 @@ func (r *DeviceManagementAbstractComplexSettingInstanceValueCollectionRequest) P value []DeviceManagementSettingInstance ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -12120,9 +12234,9 @@ func (r *DeviceManagementCollectionSettingInstanceValueCollectionRequest) Paging } var values []DeviceManagementSettingInstance for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -12135,6 +12249,7 @@ func (r *DeviceManagementCollectionSettingInstanceValueCollectionRequest) Paging value []DeviceManagementSettingInstance ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -12222,9 +12337,9 @@ func (r *DeviceManagementComplexSettingInstanceValueCollectionRequest) Paging(ct } var values []DeviceManagementSettingInstance for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -12237,6 +12352,7 @@ func (r *DeviceManagementComplexSettingInstanceValueCollectionRequest) Paging(ct value []DeviceManagementSettingInstance ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -12331,9 +12447,9 @@ func (r *DeviceManagementIntentAssignmentsCollectionRequest) Paging(ctx context. } var values []DeviceManagementIntentAssignment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -12346,6 +12462,7 @@ func (r *DeviceManagementIntentAssignmentsCollectionRequest) Paging(ctx context. value []DeviceManagementIntentAssignment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -12433,9 +12550,9 @@ func (r *DeviceManagementIntentCategoriesCollectionRequest) Paging(ctx context.C } var values []DeviceManagementIntentSettingCategory for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -12448,6 +12565,7 @@ func (r *DeviceManagementIntentCategoriesCollectionRequest) Paging(ctx context.C value []DeviceManagementIntentSettingCategory ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -12535,9 +12653,9 @@ func (r *DeviceManagementIntentDeviceSettingStateSummariesCollectionRequest) Pag } var values []DeviceManagementIntentDeviceSettingStateSummary for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -12550,6 +12668,7 @@ func (r *DeviceManagementIntentDeviceSettingStateSummariesCollectionRequest) Pag value []DeviceManagementIntentDeviceSettingStateSummary ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -12644,9 +12763,9 @@ func (r *DeviceManagementIntentDeviceStatesCollectionRequest) Paging(ctx context } var values []DeviceManagementIntentDeviceState for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -12659,6 +12778,7 @@ func (r *DeviceManagementIntentDeviceStatesCollectionRequest) Paging(ctx context value []DeviceManagementIntentDeviceState ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -12746,9 +12866,9 @@ func (r *DeviceManagementIntentSettingsCollectionRequest) Paging(ctx context.Con } var values []DeviceManagementSettingInstance for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -12761,6 +12881,7 @@ func (r *DeviceManagementIntentSettingsCollectionRequest) Paging(ctx context.Con value []DeviceManagementSettingInstance ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -12855,9 +12976,9 @@ func (r *DeviceManagementIntentUserStatesCollectionRequest) Paging(ctx context.C } var values []DeviceManagementIntentUserState for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -12870,6 +12991,7 @@ func (r *DeviceManagementIntentUserStatesCollectionRequest) Paging(ctx context.C value []DeviceManagementIntentUserState ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -12957,9 +13079,9 @@ func (r *DeviceManagementIntentSettingCategorySettingsCollectionRequest) Paging( } var values []DeviceManagementSettingInstance for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -12972,6 +13094,7 @@ func (r *DeviceManagementIntentSettingCategorySettingsCollectionRequest) Paging( value []DeviceManagementSettingInstance ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -13059,9 +13182,9 @@ func (r *DeviceManagementReportsCachedReportConfigurationsCollectionRequest) Pag } var values []DeviceManagementCachedReportConfiguration for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -13074,6 +13197,7 @@ func (r *DeviceManagementReportsCachedReportConfigurationsCollectionRequest) Pag value []DeviceManagementCachedReportConfiguration ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -13161,9 +13285,9 @@ func (r *DeviceManagementReportsExportJobsCollectionRequest) Paging(ctx context. } var values []DeviceManagementExportJob for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -13176,6 +13300,7 @@ func (r *DeviceManagementReportsExportJobsCollectionRequest) Paging(ctx context. value []DeviceManagementExportJob ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -13263,9 +13388,9 @@ func (r *DeviceManagementReportsReportSchedulesCollectionRequest) Paging(ctx con } var values []DeviceManagementReportSchedule for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -13278,6 +13403,7 @@ func (r *DeviceManagementReportsReportSchedulesCollectionRequest) Paging(ctx con value []DeviceManagementReportSchedule ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -13365,9 +13491,9 @@ func (r *DeviceManagementScriptAssignmentsCollectionRequest) Paging(ctx context. } var values []DeviceManagementScriptAssignment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -13380,6 +13506,7 @@ func (r *DeviceManagementScriptAssignmentsCollectionRequest) Paging(ctx context. value []DeviceManagementScriptAssignment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -13467,9 +13594,9 @@ func (r *DeviceManagementScriptDeviceRunStatesCollectionRequest) Paging(ctx cont } var values []DeviceManagementScriptDeviceState for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -13482,6 +13609,7 @@ func (r *DeviceManagementScriptDeviceRunStatesCollectionRequest) Paging(ctx cont value []DeviceManagementScriptDeviceState ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -13569,9 +13697,9 @@ func (r *DeviceManagementScriptGroupAssignmentsCollectionRequest) Paging(ctx con } var values []DeviceManagementScriptGroupAssignment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -13584,6 +13712,7 @@ func (r *DeviceManagementScriptGroupAssignmentsCollectionRequest) Paging(ctx con value []DeviceManagementScriptGroupAssignment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -13678,9 +13807,9 @@ func (r *DeviceManagementScriptUserRunStatesCollectionRequest) Paging(ctx contex } var values []DeviceManagementScriptUserState for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -13693,6 +13822,7 @@ func (r *DeviceManagementScriptUserRunStatesCollectionRequest) Paging(ctx contex value []DeviceManagementScriptUserState ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -13787,9 +13917,9 @@ func (r *DeviceManagementScriptUserStateDeviceRunStatesCollectionRequest) Paging } var values []DeviceManagementScriptDeviceState for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -13802,6 +13932,7 @@ func (r *DeviceManagementScriptUserStateDeviceRunStatesCollectionRequest) Paging value []DeviceManagementScriptDeviceState ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -13889,9 +14020,9 @@ func (r *DeviceManagementSettingCategorySettingDefinitionsCollectionRequest) Pag } var values []DeviceManagementSettingDefinition for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -13904,6 +14035,7 @@ func (r *DeviceManagementSettingCategorySettingDefinitionsCollectionRequest) Pag value []DeviceManagementSettingDefinition ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -13991,9 +14123,9 @@ func (r *DeviceManagementTemplateCategoriesCollectionRequest) Paging(ctx context } var values []DeviceManagementTemplateSettingCategory for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -14006,6 +14138,7 @@ func (r *DeviceManagementTemplateCategoriesCollectionRequest) Paging(ctx context value []DeviceManagementTemplateSettingCategory ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -14093,9 +14226,9 @@ func (r *DeviceManagementTemplateMigratableToCollectionRequest) Paging(ctx conte } var values []DeviceManagementTemplate for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -14108,6 +14241,7 @@ func (r *DeviceManagementTemplateMigratableToCollectionRequest) Paging(ctx conte value []DeviceManagementTemplate ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -14195,9 +14329,9 @@ func (r *DeviceManagementTemplateSettingsCollectionRequest) Paging(ctx context.C } var values []DeviceManagementSettingInstance for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -14210,6 +14344,7 @@ func (r *DeviceManagementTemplateSettingsCollectionRequest) Paging(ctx context.C value []DeviceManagementSettingInstance ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -14297,9 +14432,9 @@ func (r *DeviceManagementTemplateSettingCategoryRecommendedSettingsCollectionReq } var values []DeviceManagementSettingInstance for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -14312,6 +14447,7 @@ func (r *DeviceManagementTemplateSettingCategoryRecommendedSettingsCollectionReq value []DeviceManagementSettingInstance ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionDimension.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionDimension.go index 0ecc3167..b260d570 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionDimension.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionDimension.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -53,9 +53,9 @@ func (r *DimensionDimensionValuesCollectionRequest) Paging(ctx context.Context, } var values []DimensionValue for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -68,6 +68,7 @@ func (r *DimensionDimensionValuesCollectionRequest) Paging(ctx context.Context, value []DimensionValue ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionDirectory.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionDirectory.go index 0fc8b2bf..6e4ca4bf 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionDirectory.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionDirectory.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -113,9 +113,9 @@ func (r *DirectoryDeletedItemsCollectionRequest) Paging(ctx context.Context, met } var values []DirectoryObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -128,6 +128,7 @@ func (r *DirectoryDeletedItemsCollectionRequest) Paging(ctx context.Context, met value []DirectoryObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -215,9 +216,9 @@ func (r *DirectoryFeatureRolloutPoliciesCollectionRequest) Paging(ctx context.Co } var values []FeatureRolloutPolicy for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -230,6 +231,7 @@ func (r *DirectoryFeatureRolloutPoliciesCollectionRequest) Paging(ctx context.Co value []FeatureRolloutPolicy ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -317,9 +319,9 @@ func (r *DirectoryRoleMembersCollectionRequest) Paging(ctx context.Context, meth } var values []DirectoryObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -332,6 +334,7 @@ func (r *DirectoryRoleMembersCollectionRequest) Paging(ctx context.Context, meth value []DirectoryObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -419,9 +422,9 @@ func (r *DirectoryRoleScopedMembersCollectionRequest) Paging(ctx context.Context } var values []ScopedRoleMembership for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -434,6 +437,7 @@ func (r *DirectoryRoleScopedMembersCollectionRequest) Paging(ctx context.Context value []ScopedRoleMembership ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionDocument.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionDocument.go index fb954b16..6e06da37 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionDocument.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionDocument.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -53,9 +53,9 @@ func (r *DocumentCommentsCollectionRequest) Paging(ctx context.Context, method, } var values []DocumentComment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -68,6 +68,7 @@ func (r *DocumentCommentsCollectionRequest) Paging(ctx context.Context, method, value []DocumentComment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -155,9 +156,9 @@ func (r *DocumentCommentRepliesCollectionRequest) Paging(ctx context.Context, me } var values []DocumentCommentReply for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -170,6 +171,7 @@ func (r *DocumentCommentRepliesCollectionRequest) Paging(ctx context.Context, me value []DocumentCommentReply ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionDomain.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionDomain.go index 375a20fe..b317f7aa 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionDomain.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionDomain.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -63,9 +63,9 @@ func (r *DomainDomainNameReferencesCollectionRequest) Paging(ctx context.Context } var values []DirectoryObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -78,6 +78,7 @@ func (r *DomainDomainNameReferencesCollectionRequest) Paging(ctx context.Context value []DirectoryObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -165,9 +166,9 @@ func (r *DomainServiceConfigurationRecordsCollectionRequest) Paging(ctx context. } var values []DomainDNSRecord for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -180,6 +181,7 @@ func (r *DomainServiceConfigurationRecordsCollectionRequest) Paging(ctx context. value []DomainDNSRecord ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -267,9 +269,9 @@ func (r *DomainVerificationDNSRecordsCollectionRequest) Paging(ctx context.Conte } var values []DomainDNSRecord for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -282,6 +284,7 @@ func (r *DomainVerificationDNSRecordsCollectionRequest) Paging(ctx context.Conte value []DomainDNSRecord ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionDrive.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionDrive.go index 6d1d455f..1442937c 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionDrive.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionDrive.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -158,9 +158,9 @@ func (r *DriveActivitiesCollectionRequest) Paging(ctx context.Context, method, p } var values []ItemActivityOLD for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -173,6 +173,7 @@ func (r *DriveActivitiesCollectionRequest) Paging(ctx context.Context, method, p value []ItemActivityOLD ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -260,9 +261,9 @@ func (r *DriveBundlesCollectionRequest) Paging(ctx context.Context, method, path } var values []DriveItem for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -275,6 +276,7 @@ func (r *DriveBundlesCollectionRequest) Paging(ctx context.Context, method, path value []DriveItem ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -362,9 +364,9 @@ func (r *DriveFollowingCollectionRequest) Paging(ctx context.Context, method, pa } var values []DriveItem for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -377,6 +379,7 @@ func (r *DriveFollowingCollectionRequest) Paging(ctx context.Context, method, pa value []DriveItem ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -464,9 +467,9 @@ func (r *DriveItemsCollectionRequest) Paging(ctx context.Context, method, path s } var values []DriveItem for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -479,6 +482,7 @@ func (r *DriveItemsCollectionRequest) Paging(ctx context.Context, method, path s value []DriveItem ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -580,9 +584,9 @@ func (r *DriveSpecialCollectionRequest) Paging(ctx context.Context, method, path } var values []DriveItem for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -595,6 +599,7 @@ func (r *DriveSpecialCollectionRequest) Paging(ctx context.Context, method, path value []DriveItem ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -682,9 +687,9 @@ func (r *DriveItemActivitiesCollectionRequest) Paging(ctx context.Context, metho } var values []ItemActivityOLD for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -697,6 +702,7 @@ func (r *DriveItemActivitiesCollectionRequest) Paging(ctx context.Context, metho value []ItemActivityOLD ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -791,9 +797,9 @@ func (r *DriveItemChildrenCollectionRequest) Paging(ctx context.Context, method, } var values []DriveItem for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -806,6 +812,7 @@ func (r *DriveItemChildrenCollectionRequest) Paging(ctx context.Context, method, value []DriveItem ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -907,9 +914,9 @@ func (r *DriveItemPermissionsCollectionRequest) Paging(ctx context.Context, meth } var values []Permission for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -922,6 +929,7 @@ func (r *DriveItemPermissionsCollectionRequest) Paging(ctx context.Context, meth value []Permission ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1009,9 +1017,9 @@ func (r *DriveItemSubscriptionsCollectionRequest) Paging(ctx context.Context, me } var values []Subscription for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1024,6 +1032,7 @@ func (r *DriveItemSubscriptionsCollectionRequest) Paging(ctx context.Context, me value []Subscription ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1111,9 +1120,9 @@ func (r *DriveItemThumbnailsCollectionRequest) Paging(ctx context.Context, metho } var values []ThumbnailSet for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1126,6 +1135,7 @@ func (r *DriveItemThumbnailsCollectionRequest) Paging(ctx context.Context, metho value []ThumbnailSet ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1213,9 +1223,9 @@ func (r *DriveItemVersionsCollectionRequest) Paging(ctx context.Context, method, } var values []DriveItemVersion for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1228,6 +1238,7 @@ func (r *DriveItemVersionsCollectionRequest) Paging(ctx context.Context, method, value []DriveItemVersion ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionEducation.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionEducation.go index 15530974..35957ccb 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionEducation.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionEducation.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -85,9 +85,9 @@ func (r *EducationAssignmentCategoriesCollectionRequest) Paging(ctx context.Cont } var values []EducationCategory for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -100,6 +100,7 @@ func (r *EducationAssignmentCategoriesCollectionRequest) Paging(ctx context.Cont value []EducationCategory ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -187,9 +188,9 @@ func (r *EducationAssignmentResourcesCollectionRequest) Paging(ctx context.Conte } var values []EducationAssignmentResource for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -202,6 +203,7 @@ func (r *EducationAssignmentResourcesCollectionRequest) Paging(ctx context.Conte value []EducationAssignmentResource ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -296,9 +298,9 @@ func (r *EducationAssignmentSubmissionsCollectionRequest) Paging(ctx context.Con } var values []EducationSubmission for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -311,6 +313,7 @@ func (r *EducationAssignmentSubmissionsCollectionRequest) Paging(ctx context.Con value []EducationSubmission ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -398,9 +401,9 @@ func (r *EducationClassAssignmentCategoriesCollectionRequest) Paging(ctx context } var values []EducationCategory for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -413,6 +416,7 @@ func (r *EducationClassAssignmentCategoriesCollectionRequest) Paging(ctx context value []EducationCategory ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -500,9 +504,9 @@ func (r *EducationClassAssignmentsCollectionRequest) Paging(ctx context.Context, } var values []EducationAssignment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -515,6 +519,7 @@ func (r *EducationClassAssignmentsCollectionRequest) Paging(ctx context.Context, value []EducationAssignment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -609,9 +614,9 @@ func (r *EducationClassMembersCollectionRequest) Paging(ctx context.Context, met } var values []EducationUser for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -624,6 +629,7 @@ func (r *EducationClassMembersCollectionRequest) Paging(ctx context.Context, met value []EducationUser ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -711,9 +717,9 @@ func (r *EducationClassSchoolsCollectionRequest) Paging(ctx context.Context, met } var values []EducationSchool for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -726,6 +732,7 @@ func (r *EducationClassSchoolsCollectionRequest) Paging(ctx context.Context, met value []EducationSchool ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -813,9 +820,9 @@ func (r *EducationClassTeachersCollectionRequest) Paging(ctx context.Context, me } var values []EducationUser for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -828,6 +835,7 @@ func (r *EducationClassTeachersCollectionRequest) Paging(ctx context.Context, me value []EducationUser ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -915,9 +923,9 @@ func (r *EducationRootClassesCollectionRequest) Paging(ctx context.Context, meth } var values []EducationClass for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -930,6 +938,7 @@ func (r *EducationRootClassesCollectionRequest) Paging(ctx context.Context, meth value []EducationClass ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1024,9 +1033,9 @@ func (r *EducationRootSchoolsCollectionRequest) Paging(ctx context.Context, meth } var values []EducationSchool for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1039,6 +1048,7 @@ func (r *EducationRootSchoolsCollectionRequest) Paging(ctx context.Context, meth value []EducationSchool ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1126,9 +1136,9 @@ func (r *EducationRootSynchronizationProfilesCollectionRequest) Paging(ctx conte } var values []EducationSynchronizationProfile for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1141,6 +1151,7 @@ func (r *EducationRootSynchronizationProfilesCollectionRequest) Paging(ctx conte value []EducationSynchronizationProfile ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1228,9 +1239,9 @@ func (r *EducationRootUsersCollectionRequest) Paging(ctx context.Context, method } var values []EducationUser for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1243,6 +1254,7 @@ func (r *EducationRootUsersCollectionRequest) Paging(ctx context.Context, method value []EducationUser ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1337,9 +1349,9 @@ func (r *EducationSchoolClassesCollectionRequest) Paging(ctx context.Context, me } var values []EducationClass for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1352,6 +1364,7 @@ func (r *EducationSchoolClassesCollectionRequest) Paging(ctx context.Context, me value []EducationClass ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1439,9 +1452,9 @@ func (r *EducationSchoolUsersCollectionRequest) Paging(ctx context.Context, meth } var values []EducationUser for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1454,6 +1467,7 @@ func (r *EducationSchoolUsersCollectionRequest) Paging(ctx context.Context, meth value []EducationUser ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1541,9 +1555,9 @@ func (r *EducationSubmissionOutcomesCollectionRequest) Paging(ctx context.Contex } var values []EducationOutcome for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1556,6 +1570,7 @@ func (r *EducationSubmissionOutcomesCollectionRequest) Paging(ctx context.Contex value []EducationOutcome ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1643,9 +1658,9 @@ func (r *EducationSubmissionResourcesCollectionRequest) Paging(ctx context.Conte } var values []EducationSubmissionResource for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1658,6 +1673,7 @@ func (r *EducationSubmissionResourcesCollectionRequest) Paging(ctx context.Conte value []EducationSubmissionResource ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1745,9 +1761,9 @@ func (r *EducationSubmissionSubmittedResourcesCollectionRequest) Paging(ctx cont } var values []EducationSubmissionResource for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1760,6 +1776,7 @@ func (r *EducationSubmissionSubmittedResourcesCollectionRequest) Paging(ctx cont value []EducationSubmissionResource ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1847,9 +1864,9 @@ func (r *EducationSynchronizationProfileErrorsCollectionRequest) Paging(ctx cont } var values []EducationSynchronizationError for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1862,6 +1879,7 @@ func (r *EducationSynchronizationProfileErrorsCollectionRequest) Paging(ctx cont value []EducationSynchronizationError ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1956,9 +1974,9 @@ func (r *EducationUserAssignmentsCollectionRequest) Paging(ctx context.Context, } var values []EducationAssignment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1971,6 +1989,7 @@ func (r *EducationUserAssignmentsCollectionRequest) Paging(ctx context.Context, value []EducationAssignment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2058,9 +2077,9 @@ func (r *EducationUserClassesCollectionRequest) Paging(ctx context.Context, meth } var values []EducationClass for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2073,6 +2092,7 @@ func (r *EducationUserClassesCollectionRequest) Paging(ctx context.Context, meth value []EducationClass ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2160,9 +2180,9 @@ func (r *EducationUserRubricsCollectionRequest) Paging(ctx context.Context, meth } var values []EducationRubric for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2175,6 +2195,7 @@ func (r *EducationUserRubricsCollectionRequest) Paging(ctx context.Context, meth value []EducationRubric ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2262,9 +2283,9 @@ func (r *EducationUserSchoolsCollectionRequest) Paging(ctx context.Context, meth } var values []EducationSchool for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2277,6 +2298,7 @@ func (r *EducationUserSchoolsCollectionRequest) Paging(ctx context.Context, meth value []EducationSchool ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2364,9 +2386,9 @@ func (r *EducationUserTaughtClassesCollectionRequest) Paging(ctx context.Context } var values []EducationClass for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2379,6 +2401,7 @@ func (r *EducationUserTaughtClassesCollectionRequest) Paging(ctx context.Context value []EducationClass ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionEmbedded.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionEmbedded.go index 3011a6b7..421045d6 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionEmbedded.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionEmbedded.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -59,9 +59,9 @@ func (r *EmbeddedSIMActivationCodePoolAssignmentsCollectionRequest) Paging(ctx c } var values []EmbeddedSIMActivationCodePoolAssignment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -74,6 +74,7 @@ func (r *EmbeddedSIMActivationCodePoolAssignmentsCollectionRequest) Paging(ctx c value []EmbeddedSIMActivationCodePoolAssignment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -161,9 +162,9 @@ func (r *EmbeddedSIMActivationCodePoolDeviceStatesCollectionRequest) Paging(ctx } var values []EmbeddedSIMDeviceState for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -176,6 +177,7 @@ func (r *EmbeddedSIMActivationCodePoolDeviceStatesCollectionRequest) Paging(ctx value []EmbeddedSIMDeviceState ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionEmployee.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionEmployee.go index 2b6f217c..6baa9338 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionEmployee.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionEmployee.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -53,9 +53,9 @@ func (r *EmployeePictureCollectionRequest) Paging(ctx context.Context, method, p } var values []Picture for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -68,6 +68,7 @@ func (r *EmployeePictureCollectionRequest) Paging(ctx context.Context, method, p value []Picture ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionEnrollment.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionEnrollment.go index 81339400..e3932f53 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionEnrollment.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionEnrollment.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionEntitlement.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionEntitlement.go index 494c7f2a..86b163bc 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionEntitlement.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionEntitlement.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -53,9 +53,9 @@ func (r *EntitlementManagementAccessPackageAssignmentPoliciesCollectionRequest) } var values []AccessPackageAssignmentPolicy for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -68,6 +68,7 @@ func (r *EntitlementManagementAccessPackageAssignmentPoliciesCollectionRequest) value []AccessPackageAssignmentPolicy ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -155,9 +156,9 @@ func (r *EntitlementManagementAccessPackageAssignmentRequestsCollectionRequest) } var values []AccessPackageAssignmentRequestObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -170,6 +171,7 @@ func (r *EntitlementManagementAccessPackageAssignmentRequestsCollectionRequest) value []AccessPackageAssignmentRequestObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -257,9 +259,9 @@ func (r *EntitlementManagementAccessPackageAssignmentResourceRolesCollectionRequ } var values []AccessPackageAssignmentResourceRole for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -272,6 +274,7 @@ func (r *EntitlementManagementAccessPackageAssignmentResourceRolesCollectionRequ value []AccessPackageAssignmentResourceRole ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -359,9 +362,9 @@ func (r *EntitlementManagementAccessPackageAssignmentsCollectionRequest) Paging( } var values []AccessPackageAssignment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -374,6 +377,7 @@ func (r *EntitlementManagementAccessPackageAssignmentsCollectionRequest) Paging( value []AccessPackageAssignment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -461,9 +465,9 @@ func (r *EntitlementManagementAccessPackageCatalogsCollectionRequest) Paging(ctx } var values []AccessPackageCatalog for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -476,6 +480,7 @@ func (r *EntitlementManagementAccessPackageCatalogsCollectionRequest) Paging(ctx value []AccessPackageCatalog ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -563,9 +568,9 @@ func (r *EntitlementManagementAccessPackageResourceRequestsCollectionRequest) Pa } var values []AccessPackageResourceRequestObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -578,6 +583,7 @@ func (r *EntitlementManagementAccessPackageResourceRequestsCollectionRequest) Pa value []AccessPackageResourceRequestObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -665,9 +671,9 @@ func (r *EntitlementManagementAccessPackageResourceRoleScopesCollectionRequest) } var values []AccessPackageResourceRoleScope for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -680,6 +686,7 @@ func (r *EntitlementManagementAccessPackageResourceRoleScopesCollectionRequest) value []AccessPackageResourceRoleScope ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -767,9 +774,9 @@ func (r *EntitlementManagementAccessPackageResourcesCollectionRequest) Paging(ct } var values []AccessPackageResource for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -782,6 +789,7 @@ func (r *EntitlementManagementAccessPackageResourcesCollectionRequest) Paging(ct value []AccessPackageResource ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -869,9 +877,9 @@ func (r *EntitlementManagementAccessPackagesCollectionRequest) Paging(ctx contex } var values []AccessPackage for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -884,6 +892,7 @@ func (r *EntitlementManagementAccessPackagesCollectionRequest) Paging(ctx contex value []AccessPackage ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionEvent.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionEvent.go index 406ce716..ed9b0984 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionEvent.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionEvent.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -133,9 +133,9 @@ func (r *EventAttachmentsCollectionRequest) Paging(ctx context.Context, method, } var values []Attachment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -148,6 +148,7 @@ func (r *EventAttachmentsCollectionRequest) Paging(ctx context.Context, method, value []Attachment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -242,9 +243,9 @@ func (r *EventExtensionsCollectionRequest) Paging(ctx context.Context, method, p } var values []Extension for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -257,6 +258,7 @@ func (r *EventExtensionsCollectionRequest) Paging(ctx context.Context, method, p value []Extension ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -344,9 +346,9 @@ func (r *EventInstancesCollectionRequest) Paging(ctx context.Context, method, pa } var values []Event for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -359,6 +361,7 @@ func (r *EventInstancesCollectionRequest) Paging(ctx context.Context, method, pa value []Event ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -446,9 +449,9 @@ func (r *EventMultiValueExtendedPropertiesCollectionRequest) Paging(ctx context. } var values []MultiValueLegacyExtendedProperty for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -461,6 +464,7 @@ func (r *EventMultiValueExtendedPropertiesCollectionRequest) Paging(ctx context. value []MultiValueLegacyExtendedProperty ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -548,9 +552,9 @@ func (r *EventSingleValueExtendedPropertiesCollectionRequest) Paging(ctx context } var values []SingleValueLegacyExtendedProperty for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -563,6 +567,7 @@ func (r *EventSingleValueExtendedPropertiesCollectionRequest) Paging(ctx context value []SingleValueLegacyExtendedProperty ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionExact.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionExact.go index 8601fe38..51eff754 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionExact.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionExact.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -75,9 +75,9 @@ func (r *ExactMatchDataStoreSessionsCollectionRequest) Paging(ctx context.Contex } var values []ExactMatchSession for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -90,6 +90,7 @@ func (r *ExactMatchDataStoreSessionsCollectionRequest) Paging(ctx context.Contex value []ExactMatchSession ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -177,9 +178,9 @@ func (r *ExactMatchLookupJobMatchingRowsCollectionRequest) Paging(ctx context.Co } var values []LookupResultRow for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -192,6 +193,7 @@ func (r *ExactMatchLookupJobMatchingRowsCollectionRequest) Paging(ctx context.Co value []LookupResultRow ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionExternal.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionExternal.go index c13ec871..18ea1910 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionExternal.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionExternal.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -53,9 +53,9 @@ func (r *ExternalConnectionsCollectionRequest) Paging(ctx context.Context, metho } var values []ExternalConnection for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -68,6 +68,7 @@ func (r *ExternalConnectionsCollectionRequest) Paging(ctx context.Context, metho value []ExternalConnection ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -155,9 +156,9 @@ func (r *ExternalConnectionItemsCollectionRequest) Paging(ctx context.Context, m } var values []ExternalItem for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -170,6 +171,7 @@ func (r *ExternalConnectionItemsCollectionRequest) Paging(ctx context.Context, m value []ExternalItem ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -257,9 +259,9 @@ func (r *ExternalConnectionOperationsCollectionRequest) Paging(ctx context.Conte } var values []ConnectionOperation for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -272,6 +274,7 @@ func (r *ExternalConnectionOperationsCollectionRequest) Paging(ctx context.Conte value []ConnectionOperation ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionFeature.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionFeature.go index 08c45e3b..e2d2c74a 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionFeature.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionFeature.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -53,9 +53,9 @@ func (r *FeatureRolloutPolicyAppliesToCollectionRequest) Paging(ctx context.Cont } var values []DirectoryObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -68,6 +68,7 @@ func (r *FeatureRolloutPolicyAppliesToCollectionRequest) Paging(ctx context.Cont value []DirectoryObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionFinancials.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionFinancials.go index 3dbd5f7c..7cd9036a 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionFinancials.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionFinancials.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -53,9 +53,9 @@ func (r *FinancialsCompaniesCollectionRequest) Paging(ctx context.Context, metho } var values []Company for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -68,6 +68,7 @@ func (r *FinancialsCompaniesCollectionRequest) Paging(ctx context.Context, metho value []Company ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionGeneral.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionGeneral.go index c385383d..49ce987f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionGeneral.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionGeneral.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionGovernance.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionGovernance.go index e9e57a72..10ee70bc 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionGovernance.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionGovernance.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -82,9 +82,9 @@ func (r *GovernanceResourceRoleAssignmentRequestsCollectionRequest) Paging(ctx c } var values []GovernanceRoleAssignmentRequestObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -97,6 +97,7 @@ func (r *GovernanceResourceRoleAssignmentRequestsCollectionRequest) Paging(ctx c value []GovernanceRoleAssignmentRequestObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -184,9 +185,9 @@ func (r *GovernanceResourceRoleAssignmentsCollectionRequest) Paging(ctx context. } var values []GovernanceRoleAssignment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -199,6 +200,7 @@ func (r *GovernanceResourceRoleAssignmentsCollectionRequest) Paging(ctx context. value []GovernanceRoleAssignment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -286,9 +288,9 @@ func (r *GovernanceResourceRoleDefinitionsCollectionRequest) Paging(ctx context. } var values []GovernanceRoleDefinition for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -301,6 +303,7 @@ func (r *GovernanceResourceRoleDefinitionsCollectionRequest) Paging(ctx context. value []GovernanceRoleDefinition ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -388,9 +391,9 @@ func (r *GovernanceResourceRoleSettingsCollectionRequest) Paging(ctx context.Con } var values []GovernanceRoleSetting for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -403,6 +406,7 @@ func (r *GovernanceResourceRoleSettingsCollectionRequest) Paging(ctx context.Con value []GovernanceRoleSetting ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionGroup.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionGroup.go index 67bc79d1..b5df542d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionGroup.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionGroup.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -153,9 +153,9 @@ func (r *GroupAcceptedSendersCollectionRequest) Paging(ctx context.Context, meth } var values []DirectoryObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -168,6 +168,7 @@ func (r *GroupAcceptedSendersCollectionRequest) Paging(ctx context.Context, meth value []DirectoryObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -255,9 +256,9 @@ func (r *GroupAppRoleAssignmentsCollectionRequest) Paging(ctx context.Context, m } var values []AppRoleAssignment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -270,6 +271,7 @@ func (r *GroupAppRoleAssignmentsCollectionRequest) Paging(ctx context.Context, m value []AppRoleAssignment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -364,9 +366,9 @@ func (r *GroupCalendarViewCollectionRequest) Paging(ctx context.Context, method, } var values []Event for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -379,6 +381,7 @@ func (r *GroupCalendarViewCollectionRequest) Paging(ctx context.Context, method, value []Event ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -466,9 +469,9 @@ func (r *GroupConversationsCollectionRequest) Paging(ctx context.Context, method } var values []Conversation for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -481,6 +484,7 @@ func (r *GroupConversationsCollectionRequest) Paging(ctx context.Context, method value []Conversation ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -582,9 +586,9 @@ func (r *GroupDrivesCollectionRequest) Paging(ctx context.Context, method, path } var values []Drive for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -597,6 +601,7 @@ func (r *GroupDrivesCollectionRequest) Paging(ctx context.Context, method, path value []Drive ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -684,9 +689,9 @@ func (r *GroupEndpointsCollectionRequest) Paging(ctx context.Context, method, pa } var values []Endpoint for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -699,6 +704,7 @@ func (r *GroupEndpointsCollectionRequest) Paging(ctx context.Context, method, pa value []Endpoint ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -786,9 +792,9 @@ func (r *GroupEventsCollectionRequest) Paging(ctx context.Context, method, path } var values []Event for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -801,6 +807,7 @@ func (r *GroupEventsCollectionRequest) Paging(ctx context.Context, method, path value []Event ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -888,9 +895,9 @@ func (r *GroupExtensionsCollectionRequest) Paging(ctx context.Context, method, p } var values []Extension for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -903,6 +910,7 @@ func (r *GroupExtensionsCollectionRequest) Paging(ctx context.Context, method, p value []Extension ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -990,9 +998,9 @@ func (r *GroupGroupLifecyclePoliciesCollectionRequest) Paging(ctx context.Contex } var values []GroupLifecyclePolicy for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1005,6 +1013,7 @@ func (r *GroupGroupLifecyclePoliciesCollectionRequest) Paging(ctx context.Contex value []GroupLifecyclePolicy ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1092,9 +1101,9 @@ func (r *GroupMemberOfCollectionRequest) Paging(ctx context.Context, method, pat } var values []DirectoryObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1107,6 +1116,7 @@ func (r *GroupMemberOfCollectionRequest) Paging(ctx context.Context, method, pat value []DirectoryObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1194,9 +1204,9 @@ func (r *GroupMembersCollectionRequest) Paging(ctx context.Context, method, path } var values []DirectoryObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1209,6 +1219,7 @@ func (r *GroupMembersCollectionRequest) Paging(ctx context.Context, method, path value []DirectoryObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1296,9 +1307,9 @@ func (r *GroupMembersWithLicenseErrorsCollectionRequest) Paging(ctx context.Cont } var values []DirectoryObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1311,6 +1322,7 @@ func (r *GroupMembersWithLicenseErrorsCollectionRequest) Paging(ctx context.Cont value []DirectoryObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1405,9 +1417,9 @@ func (r *GroupOwnersCollectionRequest) Paging(ctx context.Context, method, path } var values []DirectoryObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1420,6 +1432,7 @@ func (r *GroupOwnersCollectionRequest) Paging(ctx context.Context, method, path value []DirectoryObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1507,9 +1520,9 @@ func (r *GroupPermissionGrantsCollectionRequest) Paging(ctx context.Context, met } var values []ResourceSpecificPermissionGrant for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1522,6 +1535,7 @@ func (r *GroupPermissionGrantsCollectionRequest) Paging(ctx context.Context, met value []ResourceSpecificPermissionGrant ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1616,9 +1630,9 @@ func (r *GroupPhotosCollectionRequest) Paging(ctx context.Context, method, path } var values []ProfilePhoto for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1631,6 +1645,7 @@ func (r *GroupPhotosCollectionRequest) Paging(ctx context.Context, method, path value []ProfilePhoto ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1725,9 +1740,9 @@ func (r *GroupRejectedSendersCollectionRequest) Paging(ctx context.Context, meth } var values []DirectoryObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1740,6 +1755,7 @@ func (r *GroupRejectedSendersCollectionRequest) Paging(ctx context.Context, meth value []DirectoryObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1827,9 +1843,9 @@ func (r *GroupSettingsCollectionRequest) Paging(ctx context.Context, method, pat } var values []DirectorySetting for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1842,6 +1858,7 @@ func (r *GroupSettingsCollectionRequest) Paging(ctx context.Context, method, pat value []DirectorySetting ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1929,9 +1946,9 @@ func (r *GroupSitesCollectionRequest) Paging(ctx context.Context, method, path s } var values []Site for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1944,6 +1961,7 @@ func (r *GroupSitesCollectionRequest) Paging(ctx context.Context, method, path s value []Site ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2038,9 +2056,9 @@ func (r *GroupThreadsCollectionRequest) Paging(ctx context.Context, method, path } var values []ConversationThread for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2053,6 +2071,7 @@ func (r *GroupThreadsCollectionRequest) Paging(ctx context.Context, method, path value []ConversationThread ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2140,9 +2159,9 @@ func (r *GroupTransitiveMemberOfCollectionRequest) Paging(ctx context.Context, m } var values []DirectoryObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2155,6 +2174,7 @@ func (r *GroupTransitiveMemberOfCollectionRequest) Paging(ctx context.Context, m value []DirectoryObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2242,9 +2262,9 @@ func (r *GroupTransitiveMembersCollectionRequest) Paging(ctx context.Context, me } var values []DirectoryObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2257,6 +2277,7 @@ func (r *GroupTransitiveMembersCollectionRequest) Paging(ctx context.Context, me value []DirectoryObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2344,9 +2365,9 @@ func (r *GroupPolicyConfigurationAssignmentsCollectionRequest) Paging(ctx contex } var values []GroupPolicyConfigurationAssignment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2359,6 +2380,7 @@ func (r *GroupPolicyConfigurationAssignmentsCollectionRequest) Paging(ctx contex value []GroupPolicyConfigurationAssignment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2446,9 +2468,9 @@ func (r *GroupPolicyConfigurationDefinitionValuesCollectionRequest) Paging(ctx c } var values []GroupPolicyDefinitionValue for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2461,6 +2483,7 @@ func (r *GroupPolicyConfigurationDefinitionValuesCollectionRequest) Paging(ctx c value []GroupPolicyDefinitionValue ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2555,9 +2578,9 @@ func (r *GroupPolicyDefinitionPresentationsCollectionRequest) Paging(ctx context } var values []GroupPolicyPresentation for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2570,6 +2593,7 @@ func (r *GroupPolicyDefinitionPresentationsCollectionRequest) Paging(ctx context value []GroupPolicyPresentation ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2657,9 +2681,9 @@ func (r *GroupPolicyDefinitionFileDefinitionsCollectionRequest) Paging(ctx conte } var values []GroupPolicyDefinition for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2672,6 +2696,7 @@ func (r *GroupPolicyDefinitionFileDefinitionsCollectionRequest) Paging(ctx conte value []GroupPolicyDefinition ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2766,9 +2791,9 @@ func (r *GroupPolicyDefinitionValuePresentationValuesCollectionRequest) Paging(c } var values []GroupPolicyPresentationValue for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2781,6 +2806,7 @@ func (r *GroupPolicyDefinitionValuePresentationValuesCollectionRequest) Paging(c value []GroupPolicyPresentationValue ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2868,9 +2894,9 @@ func (r *GroupPolicyMigrationReportGroupPolicySettingMappingsCollectionRequest) } var values []GroupPolicySettingMapping for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2883,6 +2909,7 @@ func (r *GroupPolicyMigrationReportGroupPolicySettingMappingsCollectionRequest) value []GroupPolicySettingMapping ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionIOS.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionIOS.go index 6d2df487..5926b1de 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionIOS.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionIOS.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -158,9 +158,9 @@ func (r *IOSEnterpriseWiFiConfigurationRootCertificatesForServerValidationCollec } var values []IOSTrustedRootCertificate for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -173,6 +173,7 @@ func (r *IOSEnterpriseWiFiConfigurationRootCertificatesForServerValidationCollec value []IOSTrustedRootCertificate ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -260,9 +261,9 @@ func (r *IOSImportedPFXCertificateProfileManagedDeviceCertificateStatesCollectio } var values []ManagedDeviceCertificateState for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -275,6 +276,7 @@ func (r *IOSImportedPFXCertificateProfileManagedDeviceCertificateStatesCollectio value []ManagedDeviceCertificateState ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -362,9 +364,9 @@ func (r *IOSLobAppProvisioningConfigurationAssignmentsCollectionRequest) Paging( } var values []IOSLobAppProvisioningConfigurationAssignment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -377,6 +379,7 @@ func (r *IOSLobAppProvisioningConfigurationAssignmentsCollectionRequest) Paging( value []IOSLobAppProvisioningConfigurationAssignment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -464,9 +467,9 @@ func (r *IOSLobAppProvisioningConfigurationDeviceStatusesCollectionRequest) Pagi } var values []ManagedDeviceMobileAppConfigurationDeviceStatus for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -479,6 +482,7 @@ func (r *IOSLobAppProvisioningConfigurationDeviceStatusesCollectionRequest) Pagi value []ManagedDeviceMobileAppConfigurationDeviceStatus ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -566,9 +570,9 @@ func (r *IOSLobAppProvisioningConfigurationGroupAssignmentsCollectionRequest) Pa } var values []MobileAppProvisioningConfigGroupAssignment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -581,6 +585,7 @@ func (r *IOSLobAppProvisioningConfigurationGroupAssignmentsCollectionRequest) Pa value []MobileAppProvisioningConfigGroupAssignment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -668,9 +673,9 @@ func (r *IOSLobAppProvisioningConfigurationUserStatusesCollectionRequest) Paging } var values []ManagedDeviceMobileAppConfigurationUserStatus for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -683,6 +688,7 @@ func (r *IOSLobAppProvisioningConfigurationUserStatusesCollectionRequest) Paging value []ManagedDeviceMobileAppConfigurationUserStatus ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -770,9 +776,9 @@ func (r *IOSManagedAppProtectionAppsCollectionRequest) Paging(ctx context.Contex } var values []ManagedMobileApp for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -785,6 +791,7 @@ func (r *IOSManagedAppProtectionAppsCollectionRequest) Paging(ctx context.Contex value []ManagedMobileApp ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -879,9 +886,9 @@ func (r *IOSPkcsCertificateProfileManagedDeviceCertificateStatesCollectionReques } var values []ManagedDeviceCertificateState for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -894,6 +901,7 @@ func (r *IOSPkcsCertificateProfileManagedDeviceCertificateStatesCollectionReques value []ManagedDeviceCertificateState ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -981,9 +989,9 @@ func (r *IOSScepCertificateProfileManagedDeviceCertificateStatesCollectionReques } var values []ManagedDeviceCertificateState for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -996,6 +1004,7 @@ func (r *IOSScepCertificateProfileManagedDeviceCertificateStatesCollectionReques value []ManagedDeviceCertificateState ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1104,9 +1113,9 @@ func (r *IOSVPPAppAssignedLicensesCollectionRequest) Paging(ctx context.Context, } var values []IOSVPPAppAssignedLicense for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1119,6 +1128,7 @@ func (r *IOSVPPAppAssignedLicensesCollectionRequest) Paging(ctx context.Context, value []IOSVPPAppAssignedLicense ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionIdentity.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionIdentity.go index 1ee8a177..5aced30c 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionIdentity.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionIdentity.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -53,9 +53,9 @@ func (r *IdentityContainerUserFlowsCollectionRequest) Paging(ctx context.Context } var values []IdentityUserFlow for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -68,6 +68,7 @@ func (r *IdentityContainerUserFlowsCollectionRequest) Paging(ctx context.Context value []IdentityUserFlow ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionImported.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionImported.go index b67b8310..b4a2562d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionImported.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionImported.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -81,9 +81,9 @@ func (r *ImportedWindowsAutopilotDeviceIdentityUploadDeviceIdentitiesCollectionR } var values []ImportedWindowsAutopilotDeviceIdentity for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -96,6 +96,7 @@ func (r *ImportedWindowsAutopilotDeviceIdentityUploadDeviceIdentitiesCollectionR value []ImportedWindowsAutopilotDeviceIdentity ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionInference.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionInference.go index 78cf946d..cc96fd43 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionInference.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionInference.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -53,9 +53,9 @@ func (r *InferenceClassificationOverridesCollectionRequest) Paging(ctx context.C } var values []InferenceClassificationOverride for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -68,6 +68,7 @@ func (r *InferenceClassificationOverridesCollectionRequest) Paging(ctx context.C value []InferenceClassificationOverride ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionInformation.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionInformation.go index 2a632083..dc74dc1f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionInformation.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionInformation.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -93,9 +93,9 @@ func (r *InformationProtectionDataLossPreventionPoliciesCollectionRequest) Pagin } var values []DataLossPreventionPolicy for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -108,6 +108,7 @@ func (r *InformationProtectionDataLossPreventionPoliciesCollectionRequest) Pagin value []DataLossPreventionPolicy ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -202,9 +203,9 @@ func (r *InformationProtectionSensitivityLabelsCollectionRequest) Paging(ctx con } var values []SensitivityLabel for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -217,6 +218,7 @@ func (r *InformationProtectionSensitivityLabelsCollectionRequest) Paging(ctx con value []SensitivityLabel ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -311,9 +313,9 @@ func (r *InformationProtectionThreatAssessmentRequestsCollectionRequest) Paging( } var values []ThreatAssessmentRequestObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -326,6 +328,7 @@ func (r *InformationProtectionThreatAssessmentRequestsCollectionRequest) Paging( value []ThreatAssessmentRequestObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -413,9 +416,9 @@ func (r *InformationProtectionPolicyLabelsCollectionRequest) Paging(ctx context. } var values []InformationProtectionLabel for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -428,6 +431,7 @@ func (r *InformationProtectionPolicyLabelsCollectionRequest) Paging(ctx context. value []InformationProtectionLabel ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionIntune.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionIntune.go index 916a0acd..c243fe96 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionIntune.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionIntune.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -59,9 +59,9 @@ func (r *IntuneBrandingProfileAssignmentsCollectionRequest) Paging(ctx context.C } var values []IntuneBrandingProfileAssignment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -74,6 +74,7 @@ func (r *IntuneBrandingProfileAssignmentsCollectionRequest) Paging(ctx context.C value []IntuneBrandingProfileAssignment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionInvitation.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionInvitation.go index bbca8161..a8a0fa2d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionInvitation.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionInvitation.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionItem.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionItem.go index f2ee21f1..660b6a2e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionItem.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionItem.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -60,9 +60,9 @@ func (r *ItemPictureCollectionRequest) Paging(ctx context.Context, method, path } var values []Picture for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -75,6 +75,7 @@ func (r *ItemPictureCollectionRequest) Paging(ctx context.Context, method, path value []Picture ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -183,9 +184,9 @@ func (r *ItemActivityStatActivitiesCollectionRequest) Paging(ctx context.Context } var values []ItemActivity for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -198,6 +199,7 @@ func (r *ItemActivityStatActivitiesCollectionRequest) Paging(ctx context.Context value []ItemActivity ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -292,9 +294,9 @@ func (r *ItemAnalyticsItemActivityStatsCollectionRequest) Paging(ctx context.Con } var values []ItemActivityStat for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -307,6 +309,7 @@ func (r *ItemAnalyticsItemActivityStatsCollectionRequest) Paging(ctx context.Con value []ItemActivityStat ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionJournal.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionJournal.go index eab6aa32..cc3b0743 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionJournal.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionJournal.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -64,9 +64,9 @@ func (r *JournalJournalLinesCollectionRequest) Paging(ctx context.Context, metho } var values []JournalLine for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -79,6 +79,7 @@ func (r *JournalJournalLinesCollectionRequest) Paging(ctx context.Context, metho value []JournalLine ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionList.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionList.go index 09cd5532..4befb3e5 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionList.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionList.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -57,9 +57,9 @@ func (r *ListActivitiesCollectionRequest) Paging(ctx context.Context, method, pa } var values []ItemActivityOLD for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -72,6 +72,7 @@ func (r *ListActivitiesCollectionRequest) Paging(ctx context.Context, method, pa value []ItemActivityOLD ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -159,9 +160,9 @@ func (r *ListColumnsCollectionRequest) Paging(ctx context.Context, method, path } var values []ColumnDefinition for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -174,6 +175,7 @@ func (r *ListColumnsCollectionRequest) Paging(ctx context.Context, method, path value []ColumnDefinition ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -261,9 +263,9 @@ func (r *ListContentTypesCollectionRequest) Paging(ctx context.Context, method, } var values []ContentType for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -276,6 +278,7 @@ func (r *ListContentTypesCollectionRequest) Paging(ctx context.Context, method, value []ContentType ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -370,9 +373,9 @@ func (r *ListItemsCollectionRequest) Paging(ctx context.Context, method, path st } var values []ListItem for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -385,6 +388,7 @@ func (r *ListItemsCollectionRequest) Paging(ctx context.Context, method, path st value []ListItem ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -472,9 +476,9 @@ func (r *ListSubscriptionsCollectionRequest) Paging(ctx context.Context, method, } var values []Subscription for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -487,6 +491,7 @@ func (r *ListSubscriptionsCollectionRequest) Paging(ctx context.Context, method, value []Subscription ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -574,9 +579,9 @@ func (r *ListItemActivitiesCollectionRequest) Paging(ctx context.Context, method } var values []ItemActivityOLD for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -589,6 +594,7 @@ func (r *ListItemActivitiesCollectionRequest) Paging(ctx context.Context, method value []ItemActivityOLD ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -697,9 +703,9 @@ func (r *ListItemVersionsCollectionRequest) Paging(ctx context.Context, method, } var values []ListItemVersion for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -712,6 +718,7 @@ func (r *ListItemVersionsCollectionRequest) Paging(ctx context.Context, method, value []ListItemVersion ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionMDM.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionMDM.go index 2e8b5a4b..2b63116f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionMDM.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionMDM.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionMac.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionMac.go index e59dca9c..46f43dc4 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionMac.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionMac.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -80,9 +80,9 @@ func (r *MacOSImportedPFXCertificateProfileManagedDeviceCertificateStatesCollect } var values []ManagedDeviceCertificateState for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -95,6 +95,7 @@ func (r *MacOSImportedPFXCertificateProfileManagedDeviceCertificateStatesCollect value []ManagedDeviceCertificateState ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -182,9 +183,9 @@ func (r *MacOSPkcsCertificateProfileManagedDeviceCertificateStatesCollectionRequ } var values []ManagedDeviceCertificateState for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -197,6 +198,7 @@ func (r *MacOSPkcsCertificateProfileManagedDeviceCertificateStatesCollectionRequ value []ManagedDeviceCertificateState ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -284,9 +286,9 @@ func (r *MacOSScepCertificateProfileManagedDeviceCertificateStatesCollectionRequ } var values []ManagedDeviceCertificateState for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -299,6 +301,7 @@ func (r *MacOSScepCertificateProfileManagedDeviceCertificateStatesCollectionRequ value []ManagedDeviceCertificateState ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -414,9 +417,9 @@ func (r *MacOsVPPAppAssignedLicensesCollectionRequest) Paging(ctx context.Contex } var values []MacOsVPPAppAssignedLicense for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -429,6 +432,7 @@ func (r *MacOsVPPAppAssignedLicensesCollectionRequest) Paging(ctx context.Contex value []MacOsVPPAppAssignedLicense ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionMail.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionMail.go index de4a460b..8b03c05d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionMail.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionMail.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -65,9 +65,9 @@ func (r *MailFolderChildFoldersCollectionRequest) Paging(ctx context.Context, me } var values []MailFolder for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -80,6 +80,7 @@ func (r *MailFolderChildFoldersCollectionRequest) Paging(ctx context.Context, me value []MailFolder ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -167,9 +168,9 @@ func (r *MailFolderMessageRulesCollectionRequest) Paging(ctx context.Context, me } var values []MessageRule for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -182,6 +183,7 @@ func (r *MailFolderMessageRulesCollectionRequest) Paging(ctx context.Context, me value []MessageRule ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -269,9 +271,9 @@ func (r *MailFolderMessagesCollectionRequest) Paging(ctx context.Context, method } var values []Message for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -284,6 +286,7 @@ func (r *MailFolderMessagesCollectionRequest) Paging(ctx context.Context, method value []Message ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -371,9 +374,9 @@ func (r *MailFolderMultiValueExtendedPropertiesCollectionRequest) Paging(ctx con } var values []MultiValueLegacyExtendedProperty for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -386,6 +389,7 @@ func (r *MailFolderMultiValueExtendedPropertiesCollectionRequest) Paging(ctx con value []MultiValueLegacyExtendedProperty ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -473,9 +477,9 @@ func (r *MailFolderSingleValueExtendedPropertiesCollectionRequest) Paging(ctx co } var values []SingleValueLegacyExtendedProperty for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -488,6 +492,7 @@ func (r *MailFolderSingleValueExtendedPropertiesCollectionRequest) Paging(ctx co value []SingleValueLegacyExtendedProperty ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -575,9 +580,9 @@ func (r *MailFolderUserConfigurationsCollectionRequest) Paging(ctx context.Conte } var values []UserConfiguration for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -590,6 +595,7 @@ func (r *MailFolderUserConfigurationsCollectionRequest) Paging(ctx context.Conte value []UserConfiguration ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionManaged.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionManaged.go index 4bd06143..562942fc 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionManaged.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionManaged.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -235,9 +235,9 @@ func (r *ManagedAppRegistrationAppliedPoliciesCollectionRequest) Paging(ctx cont } var values []ManagedAppPolicy for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -250,6 +250,7 @@ func (r *ManagedAppRegistrationAppliedPoliciesCollectionRequest) Paging(ctx cont value []ManagedAppPolicy ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -337,9 +338,9 @@ func (r *ManagedAppRegistrationIntendedPoliciesCollectionRequest) Paging(ctx con } var values []ManagedAppPolicy for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -352,6 +353,7 @@ func (r *ManagedAppRegistrationIntendedPoliciesCollectionRequest) Paging(ctx con value []ManagedAppPolicy ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -439,9 +441,9 @@ func (r *ManagedAppRegistrationOperationsCollectionRequest) Paging(ctx context.C } var values []ManagedAppOperation for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -454,6 +456,7 @@ func (r *ManagedAppRegistrationOperationsCollectionRequest) Paging(ctx context.C value []ManagedAppOperation ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -541,9 +544,9 @@ func (r *ManagedDeviceDetectedAppsCollectionRequest) Paging(ctx context.Context, } var values []DetectedApp for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -556,6 +559,7 @@ func (r *ManagedDeviceDetectedAppsCollectionRequest) Paging(ctx context.Context, value []DetectedApp ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -650,9 +654,9 @@ func (r *ManagedDeviceDeviceCompliancePolicyStatesCollectionRequest) Paging(ctx } var values []DeviceCompliancePolicyState for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -665,6 +669,7 @@ func (r *ManagedDeviceDeviceCompliancePolicyStatesCollectionRequest) Paging(ctx value []DeviceCompliancePolicyState ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -752,9 +757,9 @@ func (r *ManagedDeviceDeviceConfigurationStatesCollectionRequest) Paging(ctx con } var values []DeviceConfigurationState for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -767,6 +772,7 @@ func (r *ManagedDeviceDeviceConfigurationStatesCollectionRequest) Paging(ctx con value []DeviceConfigurationState ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -854,9 +860,9 @@ func (r *ManagedDeviceManagedDeviceMobileAppConfigurationStatesCollectionRequest } var values []ManagedDeviceMobileAppConfigurationState for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -869,6 +875,7 @@ func (r *ManagedDeviceManagedDeviceMobileAppConfigurationStatesCollectionRequest value []ManagedDeviceMobileAppConfigurationState ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -956,9 +963,9 @@ func (r *ManagedDeviceSecurityBaselineStatesCollectionRequest) Paging(ctx contex } var values []SecurityBaselineState for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -971,6 +978,7 @@ func (r *ManagedDeviceSecurityBaselineStatesCollectionRequest) Paging(ctx contex value []SecurityBaselineState ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1058,9 +1066,9 @@ func (r *ManagedDeviceUsersCollectionRequest) Paging(ctx context.Context, method } var values []User for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1073,6 +1081,7 @@ func (r *ManagedDeviceUsersCollectionRequest) Paging(ctx context.Context, method value []User ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1167,9 +1176,9 @@ func (r *ManagedDeviceMobileAppConfigurationAssignmentsCollectionRequest) Paging } var values []ManagedDeviceMobileAppConfigurationAssignment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1182,6 +1191,7 @@ func (r *ManagedDeviceMobileAppConfigurationAssignmentsCollectionRequest) Paging value []ManagedDeviceMobileAppConfigurationAssignment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1276,9 +1286,9 @@ func (r *ManagedDeviceMobileAppConfigurationDeviceStatusesCollectionRequest) Pag } var values []ManagedDeviceMobileAppConfigurationDeviceStatus for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1291,6 +1301,7 @@ func (r *ManagedDeviceMobileAppConfigurationDeviceStatusesCollectionRequest) Pag value []ManagedDeviceMobileAppConfigurationDeviceStatus ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1385,9 +1396,9 @@ func (r *ManagedDeviceMobileAppConfigurationUserStatusesCollectionRequest) Pagin } var values []ManagedDeviceMobileAppConfigurationUserStatus for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1400,6 +1411,7 @@ func (r *ManagedDeviceMobileAppConfigurationUserStatusesCollectionRequest) Pagin value []ManagedDeviceMobileAppConfigurationUserStatus ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1487,9 +1499,9 @@ func (r *ManagedEBookAssignmentsCollectionRequest) Paging(ctx context.Context, m } var values []ManagedEBookAssignment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1502,6 +1514,7 @@ func (r *ManagedEBookAssignmentsCollectionRequest) Paging(ctx context.Context, m value []ManagedEBookAssignment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1589,9 +1602,9 @@ func (r *ManagedEBookCategoriesCollectionRequest) Paging(ctx context.Context, me } var values []ManagedEBookCategory for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1604,6 +1617,7 @@ func (r *ManagedEBookCategoriesCollectionRequest) Paging(ctx context.Context, me value []ManagedEBookCategory ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1691,9 +1705,9 @@ func (r *ManagedEBookDeviceStatesCollectionRequest) Paging(ctx context.Context, } var values []DeviceInstallState for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1706,6 +1720,7 @@ func (r *ManagedEBookDeviceStatesCollectionRequest) Paging(ctx context.Context, value []DeviceInstallState ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1800,9 +1815,9 @@ func (r *ManagedEBookUserStateSummaryCollectionRequest) Paging(ctx context.Conte } var values []UserInstallStateSummary for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1815,6 +1830,7 @@ func (r *ManagedEBookUserStateSummaryCollectionRequest) Paging(ctx context.Conte value []UserInstallStateSummary ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1902,9 +1918,9 @@ func (r *ManagedMobileLobAppContentVersionsCollectionRequest) Paging(ctx context } var values []MobileAppContent for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1917,6 +1933,7 @@ func (r *ManagedMobileLobAppContentVersionsCollectionRequest) Paging(ctx context value []MobileAppContent ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionManagement.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionManagement.go index 93b0926c..6d2d94c7 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionManagement.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionManagement.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -53,9 +53,9 @@ func (r *ManagementConditionManagementConditionStatementsCollectionRequest) Pagi } var values []ManagementConditionStatement for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -68,6 +68,7 @@ func (r *ManagementConditionManagementConditionStatementsCollectionRequest) Pagi value []ManagementConditionStatement ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -155,9 +156,9 @@ func (r *ManagementConditionStatementManagementConditionsCollectionRequest) Pagi } var values []ManagementCondition for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -170,6 +171,7 @@ func (r *ManagementConditionStatementManagementConditionsCollectionRequest) Pagi value []ManagementCondition ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionMessage.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionMessage.go index 8222d56f..b296776b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionMessage.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionMessage.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -125,9 +125,9 @@ func (r *MessageAttachmentsCollectionRequest) Paging(ctx context.Context, method } var values []Attachment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -140,6 +140,7 @@ func (r *MessageAttachmentsCollectionRequest) Paging(ctx context.Context, method value []Attachment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -227,9 +228,9 @@ func (r *MessageExtensionsCollectionRequest) Paging(ctx context.Context, method, } var values []Extension for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -242,6 +243,7 @@ func (r *MessageExtensionsCollectionRequest) Paging(ctx context.Context, method, value []Extension ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -329,9 +331,9 @@ func (r *MessageMentionsCollectionRequest) Paging(ctx context.Context, method, p } var values []Mention for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -344,6 +346,7 @@ func (r *MessageMentionsCollectionRequest) Paging(ctx context.Context, method, p value []Mention ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -431,9 +434,9 @@ func (r *MessageMultiValueExtendedPropertiesCollectionRequest) Paging(ctx contex } var values []MultiValueLegacyExtendedProperty for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -446,6 +449,7 @@ func (r *MessageMultiValueExtendedPropertiesCollectionRequest) Paging(ctx contex value []MultiValueLegacyExtendedProperty ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -533,9 +537,9 @@ func (r *MessageSingleValueExtendedPropertiesCollectionRequest) Paging(ctx conte } var values []SingleValueLegacyExtendedProperty for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -548,6 +552,7 @@ func (r *MessageSingleValueExtendedPropertiesCollectionRequest) Paging(ctx conte value []SingleValueLegacyExtendedProperty ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionMicrosoft.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionMicrosoft.go index cff9ddf4..ce3bdb30 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionMicrosoft.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionMicrosoft.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -53,9 +53,9 @@ func (r *MicrosoftStoreForBusinessAppContainedAppsCollectionRequest) Paging(ctx } var values []MobileContainedApp for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -68,6 +68,7 @@ func (r *MicrosoftStoreForBusinessAppContainedAppsCollectionRequest) Paging(ctx value []MobileContainedApp ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionMobile.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionMobile.go index 4d2a3e6f..7928b44b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionMobile.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionMobile.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -81,9 +81,9 @@ func (r *MobileAppAssignmentsCollectionRequest) Paging(ctx context.Context, meth } var values []MobileAppAssignment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -96,6 +96,7 @@ func (r *MobileAppAssignmentsCollectionRequest) Paging(ctx context.Context, meth value []MobileAppAssignment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -183,9 +184,9 @@ func (r *MobileAppCategoriesCollectionRequest) Paging(ctx context.Context, metho } var values []MobileAppCategory for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -198,6 +199,7 @@ func (r *MobileAppCategoriesCollectionRequest) Paging(ctx context.Context, metho value []MobileAppCategory ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -285,9 +287,9 @@ func (r *MobileAppDeviceStatusesCollectionRequest) Paging(ctx context.Context, m } var values []MobileAppInstallStatus for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -300,6 +302,7 @@ func (r *MobileAppDeviceStatusesCollectionRequest) Paging(ctx context.Context, m value []MobileAppInstallStatus ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -394,9 +397,9 @@ func (r *MobileAppRelationshipsCollectionRequest) Paging(ctx context.Context, me } var values []MobileAppRelationship for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -409,6 +412,7 @@ func (r *MobileAppRelationshipsCollectionRequest) Paging(ctx context.Context, me value []MobileAppRelationship ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -496,9 +500,9 @@ func (r *MobileAppUserStatusesCollectionRequest) Paging(ctx context.Context, met } var values []UserAppInstallStatus for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -511,6 +515,7 @@ func (r *MobileAppUserStatusesCollectionRequest) Paging(ctx context.Context, met value []UserAppInstallStatus ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -598,9 +603,9 @@ func (r *MobileAppContentContainedAppsCollectionRequest) Paging(ctx context.Cont } var values []MobileContainedApp for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -613,6 +618,7 @@ func (r *MobileAppContentContainedAppsCollectionRequest) Paging(ctx context.Cont value []MobileContainedApp ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -700,9 +706,9 @@ func (r *MobileAppContentFilesCollectionRequest) Paging(ctx context.Context, met } var values []MobileAppContentFile for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -715,6 +721,7 @@ func (r *MobileAppContentFilesCollectionRequest) Paging(ctx context.Context, met value []MobileAppContentFile ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -809,9 +816,9 @@ func (r *MobileAppTroubleshootingEventAppLogCollectionRequestsCollectionRequest) } var values []AppLogCollectionRequestObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -824,6 +831,7 @@ func (r *MobileAppTroubleshootingEventAppLogCollectionRequestsCollectionRequest) value []AppLogCollectionRequestObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -911,9 +919,9 @@ func (r *MobileLobAppContentVersionsCollectionRequest) Paging(ctx context.Contex } var values []MobileAppContent for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -926,6 +934,7 @@ func (r *MobileLobAppContentVersionsCollectionRequest) Paging(ctx context.Contex value []MobileAppContent ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionNotebook.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionNotebook.go index 174d0d1b..f8ee74ed 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionNotebook.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionNotebook.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -73,9 +73,9 @@ func (r *NotebookSectionGroupsCollectionRequest) Paging(ctx context.Context, met } var values []SectionGroup for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -88,6 +88,7 @@ func (r *NotebookSectionGroupsCollectionRequest) Paging(ctx context.Context, met value []SectionGroup ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -175,9 +176,9 @@ func (r *NotebookSectionsCollectionRequest) Paging(ctx context.Context, method, } var values []OnenoteSection for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -190,6 +191,7 @@ func (r *NotebookSectionsCollectionRequest) Paging(ctx context.Context, method, value []OnenoteSection ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionNotification.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionNotification.go index 2fbea976..9be13a75 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionNotification.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionNotification.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -57,9 +57,9 @@ func (r *NotificationMessageTemplateLocalizedNotificationMessagesCollectionReque } var values []LocalizedNotificationMessage for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -72,6 +72,7 @@ func (r *NotificationMessageTemplateLocalizedNotificationMessagesCollectionReque value []LocalizedNotificationMessage ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionOffice.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionOffice.go index a2fdcd2d..32a0b42e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionOffice.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionOffice.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -67,9 +67,9 @@ func (r *OfficeClientConfigurationAssignmentsCollectionRequest) Paging(ctx conte } var values []OfficeClientConfigurationAssignment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -82,6 +82,7 @@ func (r *OfficeClientConfigurationAssignmentsCollectionRequest) Paging(ctx conte value []OfficeClientConfigurationAssignment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -169,9 +170,9 @@ func (r *OfficeConfigurationClientConfigurationsCollectionRequest) Paging(ctx co } var values []OfficeClientConfiguration for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -184,6 +185,7 @@ func (r *OfficeConfigurationClientConfigurationsCollectionRequest) Paging(ctx co value []OfficeClientConfiguration ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -271,9 +273,9 @@ func (r *OfficeGraphInsightsSharedCollectionRequest) Paging(ctx context.Context, } var values []SharedInsight for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -286,6 +288,7 @@ func (r *OfficeGraphInsightsSharedCollectionRequest) Paging(ctx context.Context, value []SharedInsight ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -373,9 +376,9 @@ func (r *OfficeGraphInsightsTrendingCollectionRequest) Paging(ctx context.Contex } var values []Trending for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -388,6 +391,7 @@ func (r *OfficeGraphInsightsTrendingCollectionRequest) Paging(ctx context.Contex value []Trending ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -475,9 +479,9 @@ func (r *OfficeGraphInsightsUsedCollectionRequest) Paging(ctx context.Context, m } var values []UsedInsight for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -490,6 +494,7 @@ func (r *OfficeGraphInsightsUsedCollectionRequest) Paging(ctx context.Context, m value []UsedInsight ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionOn.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionOn.go index 394fbd41..c5175db9 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionOn.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionOn.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -53,9 +53,9 @@ func (r *OnPremisesAgentAgentGroupsCollectionRequest) Paging(ctx context.Context } var values []OnPremisesAgentGroup for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -68,6 +68,7 @@ func (r *OnPremisesAgentAgentGroupsCollectionRequest) Paging(ctx context.Context value []OnPremisesAgentGroup ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -155,9 +156,9 @@ func (r *OnPremisesAgentGroupAgentsCollectionRequest) Paging(ctx context.Context } var values []OnPremisesAgent for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -170,6 +171,7 @@ func (r *OnPremisesAgentGroupAgentsCollectionRequest) Paging(ctx context.Context value []OnPremisesAgent ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -257,9 +259,9 @@ func (r *OnPremisesAgentGroupPublishedResourcesCollectionRequest) Paging(ctx con } var values []PublishedResource for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -272,6 +274,7 @@ func (r *OnPremisesAgentGroupPublishedResourcesCollectionRequest) Paging(ctx con value []PublishedResource ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -359,9 +362,9 @@ func (r *OnPremisesPublishingProfileAgentGroupsCollectionRequest) Paging(ctx con } var values []OnPremisesAgentGroup for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -374,6 +377,7 @@ func (r *OnPremisesPublishingProfileAgentGroupsCollectionRequest) Paging(ctx con value []OnPremisesAgentGroup ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -461,9 +465,9 @@ func (r *OnPremisesPublishingProfileAgentsCollectionRequest) Paging(ctx context. } var values []OnPremisesAgent for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -476,6 +480,7 @@ func (r *OnPremisesPublishingProfileAgentsCollectionRequest) Paging(ctx context. value []OnPremisesAgent ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -563,9 +568,9 @@ func (r *OnPremisesPublishingProfilePublishedResourcesCollectionRequest) Paging( } var values []PublishedResource for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -578,6 +583,7 @@ func (r *OnPremisesPublishingProfilePublishedResourcesCollectionRequest) Paging( value []PublishedResource ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionOnenote.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionOnenote.go index 979e714b..50f1eac0 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionOnenote.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionOnenote.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -99,9 +99,9 @@ func (r *OnenoteNotebooksCollectionRequest) Paging(ctx context.Context, method, } var values []Notebook for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -114,6 +114,7 @@ func (r *OnenoteNotebooksCollectionRequest) Paging(ctx context.Context, method, value []Notebook ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -201,9 +202,9 @@ func (r *OnenoteOperationsCollectionRequest) Paging(ctx context.Context, method, } var values []OnenoteOperation for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -216,6 +217,7 @@ func (r *OnenoteOperationsCollectionRequest) Paging(ctx context.Context, method, value []OnenoteOperation ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -303,9 +305,9 @@ func (r *OnenotePagesCollectionRequest) Paging(ctx context.Context, method, path } var values []OnenotePage for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -318,6 +320,7 @@ func (r *OnenotePagesCollectionRequest) Paging(ctx context.Context, method, path value []OnenotePage ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -405,9 +408,9 @@ func (r *OnenoteResourcesCollectionRequest) Paging(ctx context.Context, method, } var values []OnenoteResource for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -420,6 +423,7 @@ func (r *OnenoteResourcesCollectionRequest) Paging(ctx context.Context, method, value []OnenoteResource ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -507,9 +511,9 @@ func (r *OnenoteSectionGroupsCollectionRequest) Paging(ctx context.Context, meth } var values []SectionGroup for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -522,6 +526,7 @@ func (r *OnenoteSectionGroupsCollectionRequest) Paging(ctx context.Context, meth value []SectionGroup ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -609,9 +614,9 @@ func (r *OnenoteSectionsCollectionRequest) Paging(ctx context.Context, method, p } var values []OnenoteSection for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -624,6 +629,7 @@ func (r *OnenoteSectionsCollectionRequest) Paging(ctx context.Context, method, p value []OnenoteSection ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -725,9 +731,9 @@ func (r *OnenoteSectionPagesCollectionRequest) Paging(ctx context.Context, metho } var values []OnenotePage for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -740,6 +746,7 @@ func (r *OnenoteSectionPagesCollectionRequest) Paging(ctx context.Context, metho value []OnenotePage ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionOrg.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionOrg.go index e730c543..23535769 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionOrg.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionOrg.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -53,9 +53,9 @@ func (r *OrgContactDirectReportsCollectionRequest) Paging(ctx context.Context, m } var values []DirectoryObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -68,6 +68,7 @@ func (r *OrgContactDirectReportsCollectionRequest) Paging(ctx context.Context, m value []DirectoryObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -162,9 +163,9 @@ func (r *OrgContactMemberOfCollectionRequest) Paging(ctx context.Context, method } var values []DirectoryObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -177,6 +178,7 @@ func (r *OrgContactMemberOfCollectionRequest) Paging(ctx context.Context, method value []DirectoryObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -264,9 +266,9 @@ func (r *OrgContactTransitiveMemberOfCollectionRequest) Paging(ctx context.Conte } var values []DirectoryObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -279,6 +281,7 @@ func (r *OrgContactTransitiveMemberOfCollectionRequest) Paging(ctx context.Conte value []DirectoryObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionOrganization.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionOrganization.go index 4df7f2f3..0ad04406 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionOrganization.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionOrganization.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -57,9 +57,9 @@ func (r *OrganizationBrandingsCollectionRequest) Paging(ctx context.Context, met } var values []OrganizationalBranding for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -72,6 +72,7 @@ func (r *OrganizationBrandingsCollectionRequest) Paging(ctx context.Context, met value []OrganizationalBranding ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -159,9 +160,9 @@ func (r *OrganizationCertificateBasedAuthConfigurationCollectionRequest) Paging( } var values []CertificateBasedAuthConfiguration for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -174,6 +175,7 @@ func (r *OrganizationCertificateBasedAuthConfigurationCollectionRequest) Paging( value []CertificateBasedAuthConfiguration ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -261,9 +263,9 @@ func (r *OrganizationExtensionsCollectionRequest) Paging(ctx context.Context, me } var values []Extension for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -276,6 +278,7 @@ func (r *OrganizationExtensionsCollectionRequest) Paging(ctx context.Context, me value []Extension ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionOutlook.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionOutlook.go index 95b76a66..fc0892a3 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionOutlook.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionOutlook.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -57,9 +57,9 @@ func (r *OutlookTaskAttachmentsCollectionRequest) Paging(ctx context.Context, me } var values []Attachment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -72,6 +72,7 @@ func (r *OutlookTaskAttachmentsCollectionRequest) Paging(ctx context.Context, me value []Attachment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -159,9 +160,9 @@ func (r *OutlookTaskMultiValueExtendedPropertiesCollectionRequest) Paging(ctx co } var values []MultiValueLegacyExtendedProperty for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -174,6 +175,7 @@ func (r *OutlookTaskMultiValueExtendedPropertiesCollectionRequest) Paging(ctx co value []MultiValueLegacyExtendedProperty ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -261,9 +263,9 @@ func (r *OutlookTaskSingleValueExtendedPropertiesCollectionRequest) Paging(ctx c } var values []SingleValueLegacyExtendedProperty for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -276,6 +278,7 @@ func (r *OutlookTaskSingleValueExtendedPropertiesCollectionRequest) Paging(ctx c value []SingleValueLegacyExtendedProperty ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -363,9 +366,9 @@ func (r *OutlookTaskFolderMultiValueExtendedPropertiesCollectionRequest) Paging( } var values []MultiValueLegacyExtendedProperty for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -378,6 +381,7 @@ func (r *OutlookTaskFolderMultiValueExtendedPropertiesCollectionRequest) Paging( value []MultiValueLegacyExtendedProperty ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -465,9 +469,9 @@ func (r *OutlookTaskFolderSingleValueExtendedPropertiesCollectionRequest) Paging } var values []SingleValueLegacyExtendedProperty for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -480,6 +484,7 @@ func (r *OutlookTaskFolderSingleValueExtendedPropertiesCollectionRequest) Paging value []SingleValueLegacyExtendedProperty ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -567,9 +572,9 @@ func (r *OutlookTaskFolderTasksCollectionRequest) Paging(ctx context.Context, me } var values []OutlookTask for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -582,6 +587,7 @@ func (r *OutlookTaskFolderTasksCollectionRequest) Paging(ctx context.Context, me value []OutlookTask ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -669,9 +675,9 @@ func (r *OutlookTaskGroupTaskFoldersCollectionRequest) Paging(ctx context.Contex } var values []OutlookTaskFolder for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -684,6 +690,7 @@ func (r *OutlookTaskGroupTaskFoldersCollectionRequest) Paging(ctx context.Contex value []OutlookTaskFolder ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -771,9 +778,9 @@ func (r *OutlookUserMasterCategoriesCollectionRequest) Paging(ctx context.Contex } var values []OutlookCategory for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -786,6 +793,7 @@ func (r *OutlookUserMasterCategoriesCollectionRequest) Paging(ctx context.Contex value []OutlookCategory ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -873,9 +881,9 @@ func (r *OutlookUserTaskFoldersCollectionRequest) Paging(ctx context.Context, me } var values []OutlookTaskFolder for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -888,6 +896,7 @@ func (r *OutlookUserTaskFoldersCollectionRequest) Paging(ctx context.Context, me value []OutlookTaskFolder ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -975,9 +984,9 @@ func (r *OutlookUserTaskGroupsCollectionRequest) Paging(ctx context.Context, met } var values []OutlookTaskGroup for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -990,6 +999,7 @@ func (r *OutlookUserTaskGroupsCollectionRequest) Paging(ctx context.Context, met value []OutlookTaskGroup ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1077,9 +1087,9 @@ func (r *OutlookUserTasksCollectionRequest) Paging(ctx context.Context, method, } var values []OutlookTask for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1092,6 +1102,7 @@ func (r *OutlookUserTasksCollectionRequest) Paging(ctx context.Context, method, value []OutlookTask ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionParticipant.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionParticipant.go index 5f654253..af1128c8 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionParticipant.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionParticipant.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionPermission.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionPermission.go index 5afe100e..2cc9ed41 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionPermission.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionPermission.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionPlanner.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionPlanner.go index 65002db3..94cb6102 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionPlanner.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionPlanner.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -53,9 +53,9 @@ func (r *PlannerBucketsCollectionRequest) Paging(ctx context.Context, method, pa } var values []PlannerBucket for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -68,6 +68,7 @@ func (r *PlannerBucketsCollectionRequest) Paging(ctx context.Context, method, pa value []PlannerBucket ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -155,9 +156,9 @@ func (r *PlannerPlansCollectionRequest) Paging(ctx context.Context, method, path } var values []PlannerPlan for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -170,6 +171,7 @@ func (r *PlannerPlansCollectionRequest) Paging(ctx context.Context, method, path value []PlannerPlan ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -257,9 +259,9 @@ func (r *PlannerTasksCollectionRequest) Paging(ctx context.Context, method, path } var values []PlannerTask for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -272,6 +274,7 @@ func (r *PlannerTasksCollectionRequest) Paging(ctx context.Context, method, path value []PlannerTask ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -359,9 +362,9 @@ func (r *PlannerBucketTasksCollectionRequest) Paging(ctx context.Context, method } var values []PlannerTask for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -374,6 +377,7 @@ func (r *PlannerBucketTasksCollectionRequest) Paging(ctx context.Context, method value []PlannerTask ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -461,9 +465,9 @@ func (r *PlannerGroupPlansCollectionRequest) Paging(ctx context.Context, method, } var values []PlannerPlan for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -476,6 +480,7 @@ func (r *PlannerGroupPlansCollectionRequest) Paging(ctx context.Context, method, value []PlannerPlan ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -563,9 +568,9 @@ func (r *PlannerPlanBucketsCollectionRequest) Paging(ctx context.Context, method } var values []PlannerBucket for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -578,6 +583,7 @@ func (r *PlannerPlanBucketsCollectionRequest) Paging(ctx context.Context, method value []PlannerBucket ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -672,9 +678,9 @@ func (r *PlannerPlanTasksCollectionRequest) Paging(ctx context.Context, method, } var values []PlannerTask for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -687,6 +693,7 @@ func (r *PlannerPlanTasksCollectionRequest) Paging(ctx context.Context, method, value []PlannerTask ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -802,9 +809,9 @@ func (r *PlannerUserAllCollectionRequest) Paging(ctx context.Context, method, pa } var values []PlannerDelta for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -817,6 +824,7 @@ func (r *PlannerUserAllCollectionRequest) Paging(ctx context.Context, method, pa value []PlannerDelta ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -904,9 +912,9 @@ func (r *PlannerUserFavoritePlansCollectionRequest) Paging(ctx context.Context, } var values []PlannerPlan for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -919,6 +927,7 @@ func (r *PlannerUserFavoritePlansCollectionRequest) Paging(ctx context.Context, value []PlannerPlan ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1006,9 +1015,9 @@ func (r *PlannerUserPlansCollectionRequest) Paging(ctx context.Context, method, } var values []PlannerPlan for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1021,6 +1030,7 @@ func (r *PlannerUserPlansCollectionRequest) Paging(ctx context.Context, method, value []PlannerPlan ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1108,9 +1118,9 @@ func (r *PlannerUserRecentPlansCollectionRequest) Paging(ctx context.Context, me } var values []PlannerPlan for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1123,6 +1133,7 @@ func (r *PlannerUserRecentPlansCollectionRequest) Paging(ctx context.Context, me value []PlannerPlan ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1210,9 +1221,9 @@ func (r *PlannerUserTasksCollectionRequest) Paging(ctx context.Context, method, } var values []PlannerTask for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1225,6 +1236,7 @@ func (r *PlannerUserTasksCollectionRequest) Paging(ctx context.Context, method, value []PlannerTask ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionPolicy.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionPolicy.go index 6e95e806..663a7d40 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionPolicy.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionPolicy.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -71,9 +71,9 @@ func (r *PolicyAppliesToCollectionRequest) Paging(ctx context.Context, method, p } var values []DirectoryObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -86,6 +86,7 @@ func (r *PolicyAppliesToCollectionRequest) Paging(ctx context.Context, method, p value []DirectoryObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -173,9 +174,9 @@ func (r *PolicySetAssignmentsCollectionRequest) Paging(ctx context.Context, meth } var values []PolicySetAssignment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -188,6 +189,7 @@ func (r *PolicySetAssignmentsCollectionRequest) Paging(ctx context.Context, meth value []PolicySetAssignment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -275,9 +277,9 @@ func (r *PolicySetItemsCollectionRequest) Paging(ctx context.Context, method, pa } var values []PolicySetItem for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -290,6 +292,7 @@ func (r *PolicySetItemsCollectionRequest) Paging(ctx context.Context, method, pa value []PolicySetItem ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionPost.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionPost.go index b0b99a48..2322adc4 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionPost.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionPost.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -67,9 +67,9 @@ func (r *PostAttachmentsCollectionRequest) Paging(ctx context.Context, method, p } var values []Attachment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -82,6 +82,7 @@ func (r *PostAttachmentsCollectionRequest) Paging(ctx context.Context, method, p value []Attachment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -169,9 +170,9 @@ func (r *PostExtensionsCollectionRequest) Paging(ctx context.Context, method, pa } var values []Extension for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -184,6 +185,7 @@ func (r *PostExtensionsCollectionRequest) Paging(ctx context.Context, method, pa value []Extension ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -278,9 +280,9 @@ func (r *PostMentionsCollectionRequest) Paging(ctx context.Context, method, path } var values []Mention for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -293,6 +295,7 @@ func (r *PostMentionsCollectionRequest) Paging(ctx context.Context, method, path value []Mention ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -380,9 +383,9 @@ func (r *PostMultiValueExtendedPropertiesCollectionRequest) Paging(ctx context.C } var values []MultiValueLegacyExtendedProperty for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -395,6 +398,7 @@ func (r *PostMultiValueExtendedPropertiesCollectionRequest) Paging(ctx context.C value []MultiValueLegacyExtendedProperty ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -482,9 +486,9 @@ func (r *PostSingleValueExtendedPropertiesCollectionRequest) Paging(ctx context. } var values []SingleValueLegacyExtendedProperty for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -497,6 +501,7 @@ func (r *PostSingleValueExtendedPropertiesCollectionRequest) Paging(ctx context. value []SingleValueLegacyExtendedProperty ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionPrivileged.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionPrivileged.go index d8ba9470..1038a2c3 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionPrivileged.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionPrivileged.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -97,9 +97,9 @@ func (r *PrivilegedAccessResourcesCollectionRequest) Paging(ctx context.Context, } var values []GovernanceResource for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -112,6 +112,7 @@ func (r *PrivilegedAccessResourcesCollectionRequest) Paging(ctx context.Context, value []GovernanceResource ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -199,9 +200,9 @@ func (r *PrivilegedAccessRoleAssignmentRequestsCollectionRequest) Paging(ctx con } var values []GovernanceRoleAssignmentRequestObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -214,6 +215,7 @@ func (r *PrivilegedAccessRoleAssignmentRequestsCollectionRequest) Paging(ctx con value []GovernanceRoleAssignmentRequestObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -301,9 +303,9 @@ func (r *PrivilegedAccessRoleAssignmentsCollectionRequest) Paging(ctx context.Co } var values []GovernanceRoleAssignment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -316,6 +318,7 @@ func (r *PrivilegedAccessRoleAssignmentsCollectionRequest) Paging(ctx context.Co value []GovernanceRoleAssignment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -403,9 +406,9 @@ func (r *PrivilegedAccessRoleDefinitionsCollectionRequest) Paging(ctx context.Co } var values []GovernanceRoleDefinition for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -418,6 +421,7 @@ func (r *PrivilegedAccessRoleDefinitionsCollectionRequest) Paging(ctx context.Co value []GovernanceRoleDefinition ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -505,9 +509,9 @@ func (r *PrivilegedAccessRoleSettingsCollectionRequest) Paging(ctx context.Conte } var values []GovernanceRoleSetting for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -520,6 +524,7 @@ func (r *PrivilegedAccessRoleSettingsCollectionRequest) Paging(ctx context.Conte value []GovernanceRoleSetting ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -621,9 +626,9 @@ func (r *PrivilegedRoleAssignmentsCollectionRequest) Paging(ctx context.Context, } var values []PrivilegedRoleAssignment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -636,6 +641,7 @@ func (r *PrivilegedRoleAssignmentsCollectionRequest) Paging(ctx context.Context, value []PrivilegedRoleAssignment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionProfile.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionProfile.go index d640b0a6..efa62aed 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionProfile.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionProfile.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -53,9 +53,9 @@ func (r *ProfileAccountCollectionRequest) Paging(ctx context.Context, method, pa } var values []UserAccountInformation for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -68,6 +68,7 @@ func (r *ProfileAccountCollectionRequest) Paging(ctx context.Context, method, pa value []UserAccountInformation ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -155,9 +156,9 @@ func (r *ProfileAnniversariesCollectionRequest) Paging(ctx context.Context, meth } var values []PersonAnniversary for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -170,6 +171,7 @@ func (r *ProfileAnniversariesCollectionRequest) Paging(ctx context.Context, meth value []PersonAnniversary ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -257,9 +259,9 @@ func (r *ProfileEducationalActivitiesCollectionRequest) Paging(ctx context.Conte } var values []EducationalActivity for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -272,6 +274,7 @@ func (r *ProfileEducationalActivitiesCollectionRequest) Paging(ctx context.Conte value []EducationalActivity ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -359,9 +362,9 @@ func (r *ProfileEmailsCollectionRequest) Paging(ctx context.Context, method, pat } var values []ItemEmail for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -374,6 +377,7 @@ func (r *ProfileEmailsCollectionRequest) Paging(ctx context.Context, method, pat value []ItemEmail ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -461,9 +465,9 @@ func (r *ProfileInterestsCollectionRequest) Paging(ctx context.Context, method, } var values []PersonInterest for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -476,6 +480,7 @@ func (r *ProfileInterestsCollectionRequest) Paging(ctx context.Context, method, value []PersonInterest ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -563,9 +568,9 @@ func (r *ProfileLanguagesCollectionRequest) Paging(ctx context.Context, method, } var values []LanguageProficiency for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -578,6 +583,7 @@ func (r *ProfileLanguagesCollectionRequest) Paging(ctx context.Context, method, value []LanguageProficiency ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -665,9 +671,9 @@ func (r *ProfileNamesCollectionRequest) Paging(ctx context.Context, method, path } var values []PersonName for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -680,6 +686,7 @@ func (r *ProfileNamesCollectionRequest) Paging(ctx context.Context, method, path value []PersonName ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -767,9 +774,9 @@ func (r *ProfilePhonesCollectionRequest) Paging(ctx context.Context, method, pat } var values []ItemPhone for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -782,6 +789,7 @@ func (r *ProfilePhonesCollectionRequest) Paging(ctx context.Context, method, pat value []ItemPhone ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -869,9 +877,9 @@ func (r *ProfilePositionsCollectionRequest) Paging(ctx context.Context, method, } var values []WorkPosition for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -884,6 +892,7 @@ func (r *ProfilePositionsCollectionRequest) Paging(ctx context.Context, method, value []WorkPosition ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -971,9 +980,9 @@ func (r *ProfileProjectsCollectionRequest) Paging(ctx context.Context, method, p } var values []ProjectParticipation for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -986,6 +995,7 @@ func (r *ProfileProjectsCollectionRequest) Paging(ctx context.Context, method, p value []ProjectParticipation ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1073,9 +1083,9 @@ func (r *ProfileSkillsCollectionRequest) Paging(ctx context.Context, method, pat } var values []SkillProficiency for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1088,6 +1098,7 @@ func (r *ProfileSkillsCollectionRequest) Paging(ctx context.Context, method, pat value []SkillProficiency ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1175,9 +1186,9 @@ func (r *ProfileWebAccountsCollectionRequest) Paging(ctx context.Context, method } var values []WebAccount for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1190,6 +1201,7 @@ func (r *ProfileWebAccountsCollectionRequest) Paging(ctx context.Context, method value []WebAccount ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1277,9 +1289,9 @@ func (r *ProfileWebsitesCollectionRequest) Paging(ctx context.Context, method, p } var values []PersonWebsite for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1292,6 +1304,7 @@ func (r *ProfileWebsitesCollectionRequest) Paging(ctx context.Context, method, p value []PersonWebsite ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionProgram.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionProgram.go index 159823b8..6b661547 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionProgram.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionProgram.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -53,9 +53,9 @@ func (r *ProgramControlsCollectionRequest) Paging(ctx context.Context, method, p } var values []ProgramControl for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -68,6 +68,7 @@ func (r *ProgramControlsCollectionRequest) Paging(ctx context.Context, method, p value []ProgramControl ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionPublished.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionPublished.go index 26c579d7..fb0fde4d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionPublished.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionPublished.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -53,9 +53,9 @@ func (r *PublishedResourceAgentGroupsCollectionRequest) Paging(ctx context.Conte } var values []OnPremisesAgentGroup for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -68,6 +68,7 @@ func (r *PublishedResourceAgentGroupsCollectionRequest) Paging(ctx context.Conte value []OnPremisesAgentGroup ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionPurchase.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionPurchase.go index 67ee6983..59a2e5e3 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionPurchase.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionPurchase.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -64,9 +64,9 @@ func (r *PurchaseInvoicePurchaseInvoiceLinesCollectionRequest) Paging(ctx contex } var values []PurchaseInvoiceLine for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -79,6 +79,7 @@ func (r *PurchaseInvoicePurchaseInvoiceLinesCollectionRequest) Paging(ctx contex value []PurchaseInvoiceLine ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionRbac.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionRbac.go index b7af584f..68cf6ac7 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionRbac.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionRbac.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -53,9 +53,9 @@ func (r *RbacApplicationRoleAssignmentsCollectionRequest) Paging(ctx context.Con } var values []UnifiedRoleAssignment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -68,6 +68,7 @@ func (r *RbacApplicationRoleAssignmentsCollectionRequest) Paging(ctx context.Con value []UnifiedRoleAssignment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -155,9 +156,9 @@ func (r *RbacApplicationRoleDefinitionsCollectionRequest) Paging(ctx context.Con } var values []UnifiedRoleDefinition for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -170,6 +171,7 @@ func (r *RbacApplicationRoleDefinitionsCollectionRequest) Paging(ctx context.Con value []UnifiedRoleDefinition ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionRemote.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionRemote.go index 91f1bc67..d522c90a 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionRemote.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionRemote.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionReport.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionReport.go index c5824acc..60ec4b6f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionReport.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionReport.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -53,9 +53,9 @@ func (r *ReportRootApplicationSignInDetailedSummaryCollectionRequest) Paging(ctx } var values []ApplicationSignInDetailedSummary for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -68,6 +68,7 @@ func (r *ReportRootApplicationSignInDetailedSummaryCollectionRequest) Paging(ctx value []ApplicationSignInDetailedSummary ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -155,9 +156,9 @@ func (r *ReportRootCredentialUserRegistrationDetailsCollectionRequest) Paging(ct } var values []CredentialUserRegistrationDetails for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -170,6 +171,7 @@ func (r *ReportRootCredentialUserRegistrationDetailsCollectionRequest) Paging(ct value []CredentialUserRegistrationDetails ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -257,9 +259,9 @@ func (r *ReportRootUserCredentialUsageDetailsCollectionRequest) Paging(ctx conte } var values []UserCredentialUsageDetails for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -272,6 +274,7 @@ func (r *ReportRootUserCredentialUsageDetailsCollectionRequest) Paging(ctx conte value []UserCredentialUsageDetails ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionRequest.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionRequest.go index 91bb7c9a..b1673220 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionRequest.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionRequest.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -65,9 +65,9 @@ func (r *RequestObjectDecisionsCollectionRequest) Paging(ctx context.Context, me } var values []AccessReviewDecision for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -80,6 +80,7 @@ func (r *RequestObjectDecisionsCollectionRequest) Paging(ctx context.Context, me value []AccessReviewDecision ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -167,9 +168,9 @@ func (r *RequestObjectMyDecisionsCollectionRequest) Paging(ctx context.Context, } var values []AccessReviewDecision for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -182,6 +183,7 @@ func (r *RequestObjectMyDecisionsCollectionRequest) Paging(ctx context.Context, value []AccessReviewDecision ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionRisky.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionRisky.go index 0195e85d..eaa63ad0 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionRisky.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionRisky.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -65,9 +65,9 @@ func (r *RiskyUserHistoryCollectionRequest) Paging(ctx context.Context, method, } var values []RiskyUserHistoryItem for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -80,6 +80,7 @@ func (r *RiskyUserHistoryCollectionRequest) Paging(ctx context.Context, method, value []RiskyUserHistoryItem ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionRole.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionRole.go index 40a2f34f..1bc55596 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionRole.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionRole.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -72,9 +72,9 @@ func (r *RoleDefinitionRoleAssignmentsCollectionRequest) Paging(ctx context.Cont } var values []RoleAssignment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -87,6 +87,7 @@ func (r *RoleDefinitionRoleAssignmentsCollectionRequest) Paging(ctx context.Cont value []RoleAssignment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -181,9 +182,9 @@ func (r *RoleScopeTagAssignmentsCollectionRequest) Paging(ctx context.Context, m } var values []RoleScopeTagAutoAssignment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -196,6 +197,7 @@ func (r *RoleScopeTagAssignmentsCollectionRequest) Paging(ctx context.Context, m value []RoleScopeTagAutoAssignment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionRoom.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionRoom.go index 8ef13115..d14ac51a 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionRoom.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionRoom.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -53,9 +53,9 @@ func (r *RoomListRoomsCollectionRequest) Paging(ctx context.Context, method, pat } var values []Room for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -68,6 +68,7 @@ func (r *RoomListRoomsCollectionRequest) Paging(ctx context.Context, method, pat value []Room ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionSales.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionSales.go index f651d31a..bde0ae4b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionSales.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionSales.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -102,9 +102,9 @@ func (r *SalesCreditMemoSalesCreditMemoLinesCollectionRequest) Paging(ctx contex } var values []SalesCreditMemoLine for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -117,6 +117,7 @@ func (r *SalesCreditMemoSalesCreditMemoLinesCollectionRequest) Paging(ctx contex value []SalesCreditMemoLine ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -239,9 +240,9 @@ func (r *SalesInvoiceSalesInvoiceLinesCollectionRequest) Paging(ctx context.Cont } var values []SalesInvoiceLine for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -254,6 +255,7 @@ func (r *SalesInvoiceSalesInvoiceLinesCollectionRequest) Paging(ctx context.Cont value []SalesInvoiceLine ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -383,9 +385,9 @@ func (r *SalesOrderSalesOrderLinesCollectionRequest) Paging(ctx context.Context, } var values []SalesOrderLine for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -398,6 +400,7 @@ func (r *SalesOrderSalesOrderLinesCollectionRequest) Paging(ctx context.Context, value []SalesOrderLine ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -520,9 +523,9 @@ func (r *SalesQuoteSalesQuoteLinesCollectionRequest) Paging(ctx context.Context, } var values []SalesQuoteLine for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -535,6 +538,7 @@ func (r *SalesQuoteSalesQuoteLinesCollectionRequest) Paging(ctx context.Context, value []SalesQuoteLine ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionSchedule.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionSchedule.go index 618e8f93..24f13393 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionSchedule.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionSchedule.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -76,9 +76,9 @@ func (r *ScheduleOpenShiftChangeRequestsCollectionRequest) Paging(ctx context.Co } var values []OpenShiftChangeRequestObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -91,6 +91,7 @@ func (r *ScheduleOpenShiftChangeRequestsCollectionRequest) Paging(ctx context.Co value []OpenShiftChangeRequestObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -178,9 +179,9 @@ func (r *ScheduleOpenShiftsCollectionRequest) Paging(ctx context.Context, method } var values []OpenShift for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -193,6 +194,7 @@ func (r *ScheduleOpenShiftsCollectionRequest) Paging(ctx context.Context, method value []OpenShift ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -280,9 +282,9 @@ func (r *ScheduleSchedulingGroupsCollectionRequest) Paging(ctx context.Context, } var values []SchedulingGroup for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -295,6 +297,7 @@ func (r *ScheduleSchedulingGroupsCollectionRequest) Paging(ctx context.Context, value []SchedulingGroup ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -382,9 +385,9 @@ func (r *ScheduleShiftsCollectionRequest) Paging(ctx context.Context, method, pa } var values []Shift for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -397,6 +400,7 @@ func (r *ScheduleShiftsCollectionRequest) Paging(ctx context.Context, method, pa value []Shift ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -484,9 +488,9 @@ func (r *ScheduleSwapShiftsChangeRequestsCollectionRequest) Paging(ctx context.C } var values []SwapShiftsChangeRequestObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -499,6 +503,7 @@ func (r *ScheduleSwapShiftsChangeRequestsCollectionRequest) Paging(ctx context.C value []SwapShiftsChangeRequestObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -586,9 +591,9 @@ func (r *ScheduleTimeOffReasonsCollectionRequest) Paging(ctx context.Context, me } var values []TimeOffReason for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -601,6 +606,7 @@ func (r *ScheduleTimeOffReasonsCollectionRequest) Paging(ctx context.Context, me value []TimeOffReason ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -688,9 +694,9 @@ func (r *ScheduleTimeOffRequestsCollectionRequest) Paging(ctx context.Context, m } var values []TimeOffRequestObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -703,6 +709,7 @@ func (r *ScheduleTimeOffRequestsCollectionRequest) Paging(ctx context.Context, m value []TimeOffRequestObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -790,9 +797,9 @@ func (r *ScheduleTimesOffCollectionRequest) Paging(ctx context.Context, method, } var values []TimeOff for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -805,6 +812,7 @@ func (r *ScheduleTimesOffCollectionRequest) Paging(ctx context.Context, method, value []TimeOff ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionSearch.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionSearch.go index 4c14f08b..b93d8bf6 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionSearch.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionSearch.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionSection.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionSection.go index 322eeed4..4d1b542d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionSection.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionSection.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -67,9 +67,9 @@ func (r *SectionGroupSectionGroupsCollectionRequest) Paging(ctx context.Context, } var values []SectionGroup for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -82,6 +82,7 @@ func (r *SectionGroupSectionGroupsCollectionRequest) Paging(ctx context.Context, value []SectionGroup ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -169,9 +170,9 @@ func (r *SectionGroupSectionsCollectionRequest) Paging(ctx context.Context, meth } var values []OnenoteSection for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -184,6 +185,7 @@ func (r *SectionGroupSectionsCollectionRequest) Paging(ctx context.Context, meth value []OnenoteSection ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionSecurity.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionSecurity.go index 9d0cc978..16b1e56f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionSecurity.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionSecurity.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -57,9 +57,9 @@ func (r *SecurityAlertsCollectionRequest) Paging(ctx context.Context, method, pa } var values []Alert for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -72,6 +72,7 @@ func (r *SecurityAlertsCollectionRequest) Paging(ctx context.Context, method, pa value []Alert ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -159,9 +160,9 @@ func (r *SecurityCloudAppSecurityProfilesCollectionRequest) Paging(ctx context.C } var values []CloudAppSecurityProfile for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -174,6 +175,7 @@ func (r *SecurityCloudAppSecurityProfilesCollectionRequest) Paging(ctx context.C value []CloudAppSecurityProfile ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -261,9 +263,9 @@ func (r *SecurityDomainSecurityProfilesCollectionRequest) Paging(ctx context.Con } var values []DomainSecurityProfile for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -276,6 +278,7 @@ func (r *SecurityDomainSecurityProfilesCollectionRequest) Paging(ctx context.Con value []DomainSecurityProfile ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -363,9 +366,9 @@ func (r *SecurityFileSecurityProfilesCollectionRequest) Paging(ctx context.Conte } var values []FileSecurityProfile for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -378,6 +381,7 @@ func (r *SecurityFileSecurityProfilesCollectionRequest) Paging(ctx context.Conte value []FileSecurityProfile ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -465,9 +469,9 @@ func (r *SecurityHostSecurityProfilesCollectionRequest) Paging(ctx context.Conte } var values []HostSecurityProfile for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -480,6 +484,7 @@ func (r *SecurityHostSecurityProfilesCollectionRequest) Paging(ctx context.Conte value []HostSecurityProfile ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -567,9 +572,9 @@ func (r *SecurityIPSecurityProfilesCollectionRequest) Paging(ctx context.Context } var values []IPSecurityProfile for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -582,6 +587,7 @@ func (r *SecurityIPSecurityProfilesCollectionRequest) Paging(ctx context.Context value []IPSecurityProfile ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -669,9 +675,9 @@ func (r *SecurityProviderTenantSettingsCollectionRequest) Paging(ctx context.Con } var values []ProviderTenantSetting for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -684,6 +690,7 @@ func (r *SecurityProviderTenantSettingsCollectionRequest) Paging(ctx context.Con value []ProviderTenantSetting ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -771,9 +778,9 @@ func (r *SecuritySecureScoreControlProfilesCollectionRequest) Paging(ctx context } var values []SecureScoreControlProfile for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -786,6 +793,7 @@ func (r *SecuritySecureScoreControlProfilesCollectionRequest) Paging(ctx context value []SecureScoreControlProfile ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -873,9 +881,9 @@ func (r *SecuritySecureScoresCollectionRequest) Paging(ctx context.Context, meth } var values []SecureScore for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -888,6 +896,7 @@ func (r *SecuritySecureScoresCollectionRequest) Paging(ctx context.Context, meth value []SecureScore ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -975,9 +984,9 @@ func (r *SecuritySecurityActionsCollectionRequest) Paging(ctx context.Context, m } var values []SecurityAction for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -990,6 +999,7 @@ func (r *SecuritySecurityActionsCollectionRequest) Paging(ctx context.Context, m value []SecurityAction ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1077,9 +1087,9 @@ func (r *SecurityTiIndicatorsCollectionRequest) Paging(ctx context.Context, meth } var values []TiIndicator for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1092,6 +1102,7 @@ func (r *SecurityTiIndicatorsCollectionRequest) Paging(ctx context.Context, meth value []TiIndicator ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1179,9 +1190,9 @@ func (r *SecurityUserSecurityProfilesCollectionRequest) Paging(ctx context.Conte } var values []UserSecurityProfile for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1194,6 +1205,7 @@ func (r *SecurityUserSecurityProfilesCollectionRequest) Paging(ctx context.Conte value []UserSecurityProfile ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1281,9 +1293,9 @@ func (r *SecurityBaselineStateSettingStatesCollectionRequest) Paging(ctx context } var values []SecurityBaselineSettingState for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1296,6 +1308,7 @@ func (r *SecurityBaselineStateSettingStatesCollectionRequest) Paging(ctx context value []SecurityBaselineSettingState ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1383,9 +1396,9 @@ func (r *SecurityBaselineTemplateCategoryDeviceStateSummariesCollectionRequest) } var values []SecurityBaselineCategoryStateSummary for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1398,6 +1411,7 @@ func (r *SecurityBaselineTemplateCategoryDeviceStateSummariesCollectionRequest) value []SecurityBaselineCategoryStateSummary ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1492,9 +1506,9 @@ func (r *SecurityBaselineTemplateDeviceStatesCollectionRequest) Paging(ctx conte } var values []SecurityBaselineDeviceState for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1507,6 +1521,7 @@ func (r *SecurityBaselineTemplateDeviceStatesCollectionRequest) Paging(ctx conte value []SecurityBaselineDeviceState ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionSensitivity.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionSensitivity.go index b1fe3746..1f1a77a5 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionSensitivity.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionSensitivity.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -61,9 +61,9 @@ func (r *SensitivityLabelSublabelsCollectionRequest) Paging(ctx context.Context, } var values []SensitivityLabel for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -76,6 +76,7 @@ func (r *SensitivityLabelSublabelsCollectionRequest) Paging(ctx context.Context, value []SensitivityLabel ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionService.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionService.go index 07d10ab1..e46e6d2f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionService.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionService.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -81,9 +81,9 @@ func (r *ServicePrincipalAppRoleAssignedToCollectionRequest) Paging(ctx context. } var values []AppRoleAssignment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -96,6 +96,7 @@ func (r *ServicePrincipalAppRoleAssignedToCollectionRequest) Paging(ctx context. value []AppRoleAssignment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -183,9 +184,9 @@ func (r *ServicePrincipalAppRoleAssignmentsCollectionRequest) Paging(ctx context } var values []AppRoleAssignment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -198,6 +199,7 @@ func (r *ServicePrincipalAppRoleAssignmentsCollectionRequest) Paging(ctx context value []AppRoleAssignment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -285,9 +287,9 @@ func (r *ServicePrincipalCreatedObjectsCollectionRequest) Paging(ctx context.Con } var values []DirectoryObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -300,6 +302,7 @@ func (r *ServicePrincipalCreatedObjectsCollectionRequest) Paging(ctx context.Con value []DirectoryObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -387,9 +390,9 @@ func (r *ServicePrincipalLicenseDetailsCollectionRequest) Paging(ctx context.Con } var values []LicenseDetails for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -402,6 +405,7 @@ func (r *ServicePrincipalLicenseDetailsCollectionRequest) Paging(ctx context.Con value []LicenseDetails ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -489,9 +493,9 @@ func (r *ServicePrincipalMemberOfCollectionRequest) Paging(ctx context.Context, } var values []DirectoryObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -504,6 +508,7 @@ func (r *ServicePrincipalMemberOfCollectionRequest) Paging(ctx context.Context, value []DirectoryObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -549,35 +554,35 @@ func (r *ServicePrincipalMemberOfCollectionRequest) Add(ctx context.Context, req return } -// Oauth2PermissionGrants returns request builder for OAuth2PermissionGrant collection -func (b *ServicePrincipalRequestBuilder) Oauth2PermissionGrants() *ServicePrincipalOauth2PermissionGrantsCollectionRequestBuilder { - bb := &ServicePrincipalOauth2PermissionGrantsCollectionRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder} +// OAuth2PermissionGrants returns request builder for OAuth2PermissionGrant collection +func (b *ServicePrincipalRequestBuilder) OAuth2PermissionGrants() *ServicePrincipalOAuth2PermissionGrantsCollectionRequestBuilder { + bb := &ServicePrincipalOAuth2PermissionGrantsCollectionRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder} bb.baseURL += "/oauth2PermissionGrants" return bb } -// ServicePrincipalOauth2PermissionGrantsCollectionRequestBuilder is request builder for OAuth2PermissionGrant collection -type ServicePrincipalOauth2PermissionGrantsCollectionRequestBuilder struct{ BaseRequestBuilder } +// ServicePrincipalOAuth2PermissionGrantsCollectionRequestBuilder is request builder for OAuth2PermissionGrant collection +type ServicePrincipalOAuth2PermissionGrantsCollectionRequestBuilder struct{ BaseRequestBuilder } // Request returns request for OAuth2PermissionGrant collection -func (b *ServicePrincipalOauth2PermissionGrantsCollectionRequestBuilder) Request() *ServicePrincipalOauth2PermissionGrantsCollectionRequest { - return &ServicePrincipalOauth2PermissionGrantsCollectionRequest{ +func (b *ServicePrincipalOAuth2PermissionGrantsCollectionRequestBuilder) Request() *ServicePrincipalOAuth2PermissionGrantsCollectionRequest { + return &ServicePrincipalOAuth2PermissionGrantsCollectionRequest{ BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client}, } } // ID returns request builder for OAuth2PermissionGrant item -func (b *ServicePrincipalOauth2PermissionGrantsCollectionRequestBuilder) ID(id string) *OAuth2PermissionGrantRequestBuilder { +func (b *ServicePrincipalOAuth2PermissionGrantsCollectionRequestBuilder) ID(id string) *OAuth2PermissionGrantRequestBuilder { bb := &OAuth2PermissionGrantRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder} bb.baseURL += "/" + id return bb } -// ServicePrincipalOauth2PermissionGrantsCollectionRequest is request for OAuth2PermissionGrant collection -type ServicePrincipalOauth2PermissionGrantsCollectionRequest struct{ BaseRequest } +// ServicePrincipalOAuth2PermissionGrantsCollectionRequest is request for OAuth2PermissionGrant collection +type ServicePrincipalOAuth2PermissionGrantsCollectionRequest struct{ BaseRequest } // Paging perfoms paging operation for OAuth2PermissionGrant collection -func (r *ServicePrincipalOauth2PermissionGrantsCollectionRequest) Paging(ctx context.Context, method, path string, obj interface{}, n int) ([]OAuth2PermissionGrant, error) { +func (r *ServicePrincipalOAuth2PermissionGrantsCollectionRequest) Paging(ctx context.Context, method, path string, obj interface{}, n int) ([]OAuth2PermissionGrant, error) { req, err := r.NewJSONRequest(method, path, obj) if err != nil { return nil, err @@ -591,9 +596,9 @@ func (r *ServicePrincipalOauth2PermissionGrantsCollectionRequest) Paging(ctx con } var values []OAuth2PermissionGrant for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -606,6 +611,7 @@ func (r *ServicePrincipalOauth2PermissionGrantsCollectionRequest) Paging(ctx con value []OAuth2PermissionGrant ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -632,7 +638,7 @@ func (r *ServicePrincipalOauth2PermissionGrantsCollectionRequest) Paging(ctx con } // GetN performs GET request for OAuth2PermissionGrant collection, max N pages -func (r *ServicePrincipalOauth2PermissionGrantsCollectionRequest) GetN(ctx context.Context, n int) ([]OAuth2PermissionGrant, error) { +func (r *ServicePrincipalOAuth2PermissionGrantsCollectionRequest) GetN(ctx context.Context, n int) ([]OAuth2PermissionGrant, error) { var query string if r.query != nil { query = "?" + r.query.Encode() @@ -641,12 +647,12 @@ func (r *ServicePrincipalOauth2PermissionGrantsCollectionRequest) GetN(ctx conte } // Get performs GET request for OAuth2PermissionGrant collection -func (r *ServicePrincipalOauth2PermissionGrantsCollectionRequest) Get(ctx context.Context) ([]OAuth2PermissionGrant, error) { +func (r *ServicePrincipalOAuth2PermissionGrantsCollectionRequest) Get(ctx context.Context) ([]OAuth2PermissionGrant, error) { return r.GetN(ctx, 0) } // Add performs POST request for OAuth2PermissionGrant collection -func (r *ServicePrincipalOauth2PermissionGrantsCollectionRequest) Add(ctx context.Context, reqObj *OAuth2PermissionGrant) (resObj *OAuth2PermissionGrant, err error) { +func (r *ServicePrincipalOAuth2PermissionGrantsCollectionRequest) Add(ctx context.Context, reqObj *OAuth2PermissionGrant) (resObj *OAuth2PermissionGrant, err error) { err = r.JSONRequest(ctx, "POST", "", reqObj, &resObj) return } @@ -693,9 +699,9 @@ func (r *ServicePrincipalOwnedObjectsCollectionRequest) Paging(ctx context.Conte } var values []DirectoryObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -708,6 +714,7 @@ func (r *ServicePrincipalOwnedObjectsCollectionRequest) Paging(ctx context.Conte value []DirectoryObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -795,9 +802,9 @@ func (r *ServicePrincipalOwnersCollectionRequest) Paging(ctx context.Context, me } var values []DirectoryObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -810,6 +817,7 @@ func (r *ServicePrincipalOwnersCollectionRequest) Paging(ctx context.Context, me value []DirectoryObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -897,9 +905,9 @@ func (r *ServicePrincipalPoliciesCollectionRequest) Paging(ctx context.Context, } var values []DirectoryObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -912,6 +920,7 @@ func (r *ServicePrincipalPoliciesCollectionRequest) Paging(ctx context.Context, value []DirectoryObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1006,9 +1015,9 @@ func (r *ServicePrincipalTransitiveMemberOfCollectionRequest) Paging(ctx context } var values []DirectoryObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1021,6 +1030,7 @@ func (r *ServicePrincipalTransitiveMemberOfCollectionRequest) Paging(ctx context value []DirectoryObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionShared.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionShared.go index 9e9069cb..b2d06ea3 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionShared.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionShared.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -60,9 +60,9 @@ func (r *SharedDriveItemItemsCollectionRequest) Paging(ctx context.Context, meth } var values []DriveItem for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -75,6 +75,7 @@ func (r *SharedDriveItemItemsCollectionRequest) Paging(ctx context.Context, meth value []DriveItem ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionSite.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionSite.go index 31140197..1eb84437 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionSite.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionSite.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -76,9 +76,9 @@ func (r *SiteColumnsCollectionRequest) Paging(ctx context.Context, method, path } var values []ColumnDefinition for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -91,6 +91,7 @@ func (r *SiteColumnsCollectionRequest) Paging(ctx context.Context, method, path value []ColumnDefinition ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -178,9 +179,9 @@ func (r *SiteContentTypesCollectionRequest) Paging(ctx context.Context, method, } var values []ContentType for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -193,6 +194,7 @@ func (r *SiteContentTypesCollectionRequest) Paging(ctx context.Context, method, value []ContentType ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -287,9 +289,9 @@ func (r *SiteDrivesCollectionRequest) Paging(ctx context.Context, method, path s } var values []Drive for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -302,6 +304,7 @@ func (r *SiteDrivesCollectionRequest) Paging(ctx context.Context, method, path s value []Drive ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -389,9 +392,9 @@ func (r *SiteItemsCollectionRequest) Paging(ctx context.Context, method, path st } var values []BaseItem for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -404,6 +407,7 @@ func (r *SiteItemsCollectionRequest) Paging(ctx context.Context, method, path st value []BaseItem ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -491,9 +495,9 @@ func (r *SiteListsCollectionRequest) Paging(ctx context.Context, method, path st } var values []List for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -506,6 +510,7 @@ func (r *SiteListsCollectionRequest) Paging(ctx context.Context, method, path st value []List ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -600,9 +605,9 @@ func (r *SitePagesCollectionRequest) Paging(ctx context.Context, method, path st } var values []SitePage for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -615,6 +620,7 @@ func (r *SitePagesCollectionRequest) Paging(ctx context.Context, method, path st value []SitePage ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -702,9 +708,9 @@ func (r *SiteSitesCollectionRequest) Paging(ctx context.Context, method, path st } var values []Site for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -717,6 +723,7 @@ func (r *SiteSitesCollectionRequest) Paging(ctx context.Context, method, path st value []Site ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionSynchronization.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionSynchronization.go index 1e8b1d2c..d7690739 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionSynchronization.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionSynchronization.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -115,9 +115,9 @@ func (r *SynchronizationJobsCollectionRequest) Paging(ctx context.Context, metho } var values []SynchronizationJob for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -130,6 +130,7 @@ func (r *SynchronizationJobsCollectionRequest) Paging(ctx context.Context, metho value []SynchronizationJob ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -217,9 +218,9 @@ func (r *SynchronizationTemplatesCollectionRequest) Paging(ctx context.Context, } var values []SynchronizationTemplate for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -232,6 +233,7 @@ func (r *SynchronizationTemplatesCollectionRequest) Paging(ctx context.Context, value []SynchronizationTemplate ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -326,9 +328,9 @@ func (r *SynchronizationSchemaDirectoriesCollectionRequest) Paging(ctx context.C } var values []DirectoryDefinition for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -341,6 +343,7 @@ func (r *SynchronizationSchemaDirectoriesCollectionRequest) Paging(ctx context.C value []DirectoryDefinition ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionTargeted.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionTargeted.go index e03fa2cd..3456acc3 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionTargeted.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionTargeted.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -77,9 +77,9 @@ func (r *TargetedManagedAppConfigurationAppsCollectionRequest) Paging(ctx contex } var values []ManagedMobileApp for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -92,6 +92,7 @@ func (r *TargetedManagedAppConfigurationAppsCollectionRequest) Paging(ctx contex value []ManagedMobileApp ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -179,9 +180,9 @@ func (r *TargetedManagedAppConfigurationAssignmentsCollectionRequest) Paging(ctx } var values []TargetedManagedAppPolicyAssignment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -194,6 +195,7 @@ func (r *TargetedManagedAppConfigurationAssignmentsCollectionRequest) Paging(ctx value []TargetedManagedAppPolicyAssignment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -288,9 +290,9 @@ func (r *TargetedManagedAppProtectionAssignmentsCollectionRequest) Paging(ctx co } var values []TargetedManagedAppPolicyAssignment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -303,6 +305,7 @@ func (r *TargetedManagedAppProtectionAssignmentsCollectionRequest) Paging(ctx co value []TargetedManagedAppPolicyAssignment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionTeam.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionTeam.go index e443f5d9..172c8144 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionTeam.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionTeam.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -79,9 +79,9 @@ func (r *TeamAppsCollectionRequest) Paging(ctx context.Context, method, path str } var values []TeamsCatalogApp for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -94,6 +94,7 @@ func (r *TeamAppsCollectionRequest) Paging(ctx context.Context, method, path str value []TeamsCatalogApp ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -181,9 +182,9 @@ func (r *TeamChannelsCollectionRequest) Paging(ctx context.Context, method, path } var values []Channel for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -196,6 +197,7 @@ func (r *TeamChannelsCollectionRequest) Paging(ctx context.Context, method, path value []Channel ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -290,9 +292,9 @@ func (r *TeamInstalledAppsCollectionRequest) Paging(ctx context.Context, method, } var values []TeamsAppInstallation for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -305,6 +307,7 @@ func (r *TeamInstalledAppsCollectionRequest) Paging(ctx context.Context, method, value []TeamsAppInstallation ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -392,9 +395,9 @@ func (r *TeamOperationsCollectionRequest) Paging(ctx context.Context, method, pa } var values []TeamsAsyncOperation for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -407,6 +410,7 @@ func (r *TeamOperationsCollectionRequest) Paging(ctx context.Context, method, pa value []TeamsAsyncOperation ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -494,9 +498,9 @@ func (r *TeamOwnersCollectionRequest) Paging(ctx context.Context, method, path s } var values []User for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -509,6 +513,7 @@ func (r *TeamOwnersCollectionRequest) Paging(ctx context.Context, method, path s value []User ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionTeams.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionTeams.go index 21bb9a27..78b5fddd 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionTeams.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionTeams.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -57,9 +57,9 @@ func (r *TeamsAppAppDefinitionsCollectionRequest) Paging(ctx context.Context, me } var values []TeamsAppDefinition for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -72,6 +72,7 @@ func (r *TeamsAppAppDefinitionsCollectionRequest) Paging(ctx context.Context, me value []TeamsAppDefinition ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionTeamwork.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionTeamwork.go index a1b63897..79c812ce 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionTeamwork.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionTeamwork.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -53,9 +53,9 @@ func (r *TeamworkWorkforceIntegrationsCollectionRequest) Paging(ctx context.Cont } var values []WorkforceIntegration for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -68,6 +68,7 @@ func (r *TeamworkWorkforceIntegrationsCollectionRequest) Paging(ctx context.Cont value []WorkforceIntegration ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionTenant.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionTenant.go index 9610c2a4..0b73b9bf 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionTenant.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionTenant.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionTerms.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionTerms.go index 7cbfb5ce..f04987c0 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionTerms.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionTerms.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -53,9 +53,9 @@ func (r *TermsAndConditionsAcceptanceStatusesCollectionRequest) Paging(ctx conte } var values []TermsAndConditionsAcceptanceStatus for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -68,6 +68,7 @@ func (r *TermsAndConditionsAcceptanceStatusesCollectionRequest) Paging(ctx conte value []TermsAndConditionsAcceptanceStatus ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -155,9 +156,9 @@ func (r *TermsAndConditionsAssignmentsCollectionRequest) Paging(ctx context.Cont } var values []TermsAndConditionsAssignment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -170,6 +171,7 @@ func (r *TermsAndConditionsAssignmentsCollectionRequest) Paging(ctx context.Cont value []TermsAndConditionsAssignment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -257,9 +259,9 @@ func (r *TermsAndConditionsGroupAssignmentsCollectionRequest) Paging(ctx context } var values []TermsAndConditionsGroupAssignment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -272,6 +274,7 @@ func (r *TermsAndConditionsGroupAssignmentsCollectionRequest) Paging(ctx context value []TermsAndConditionsGroupAssignment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionThreat.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionThreat.go index a5146dcd..f1cf8c4d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionThreat.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionThreat.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -53,9 +53,9 @@ func (r *ThreatAssessmentRequestObjectResultsCollectionRequest) Paging(ctx conte } var values []ThreatAssessmentResult for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -68,6 +68,7 @@ func (r *ThreatAssessmentRequestObjectResultsCollectionRequest) Paging(ctx conte value []ThreatAssessmentResult ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionTi.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionTi.go index 230969e5..06a16063 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionTi.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionTi.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionTrending.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionTrending.go index 7729691d..4e446e1b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionTrending.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionTrending.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionTrust.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionTrust.go index 16898e36..85737f27 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionTrust.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionTrust.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -91,9 +91,9 @@ func (r *TrustFrameworkKeySetsCollectionRequest) Paging(ctx context.Context, met } var values []TrustFrameworkKeySet for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -106,6 +106,7 @@ func (r *TrustFrameworkKeySetsCollectionRequest) Paging(ctx context.Context, met value []TrustFrameworkKeySet ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -193,9 +194,9 @@ func (r *TrustFrameworkPoliciesCollectionRequest) Paging(ctx context.Context, me } var values []TrustFrameworkPolicy for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -208,6 +209,7 @@ func (r *TrustFrameworkPoliciesCollectionRequest) Paging(ctx context.Context, me value []TrustFrameworkPolicy ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionUnified.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionUnified.go index bfba2454..4afdcfb1 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionUnified.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionUnified.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionUsed.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionUsed.go index e79d2cc1..1203540b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionUsed.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionUsed.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionUser.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionUser.go index ffddabad..2d3b5791 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionUser.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionUser.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -149,9 +149,9 @@ func (r *UserActivitiesCollectionRequest) Paging(ctx context.Context, method, pa } var values []UserActivity for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -164,6 +164,7 @@ func (r *UserActivitiesCollectionRequest) Paging(ctx context.Context, method, pa value []UserActivity ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -251,9 +252,9 @@ func (r *UserAgreementAcceptancesCollectionRequest) Paging(ctx context.Context, } var values []AgreementAcceptance for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -266,6 +267,7 @@ func (r *UserAgreementAcceptancesCollectionRequest) Paging(ctx context.Context, value []AgreementAcceptance ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -360,9 +362,9 @@ func (r *UserAppRoleAssignmentsCollectionRequest) Paging(ctx context.Context, me } var values []AppRoleAssignment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -375,6 +377,7 @@ func (r *UserAppRoleAssignmentsCollectionRequest) Paging(ctx context.Context, me value []AppRoleAssignment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -469,9 +472,9 @@ func (r *UserCalendarGroupsCollectionRequest) Paging(ctx context.Context, method } var values []CalendarGroup for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -484,6 +487,7 @@ func (r *UserCalendarGroupsCollectionRequest) Paging(ctx context.Context, method value []CalendarGroup ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -571,9 +575,9 @@ func (r *UserCalendarViewCollectionRequest) Paging(ctx context.Context, method, } var values []Event for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -586,6 +590,7 @@ func (r *UserCalendarViewCollectionRequest) Paging(ctx context.Context, method, value []Event ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -673,9 +678,9 @@ func (r *UserCalendarsCollectionRequest) Paging(ctx context.Context, method, pat } var values []Calendar for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -688,6 +693,7 @@ func (r *UserCalendarsCollectionRequest) Paging(ctx context.Context, method, pat value []Calendar ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -775,9 +781,9 @@ func (r *UserChatsCollectionRequest) Paging(ctx context.Context, method, path st } var values []Chat for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -790,6 +796,7 @@ func (r *UserChatsCollectionRequest) Paging(ctx context.Context, method, path st value []Chat ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -877,9 +884,9 @@ func (r *UserContactFoldersCollectionRequest) Paging(ctx context.Context, method } var values []ContactFolder for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -892,6 +899,7 @@ func (r *UserContactFoldersCollectionRequest) Paging(ctx context.Context, method value []ContactFolder ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -979,9 +987,9 @@ func (r *UserContactsCollectionRequest) Paging(ctx context.Context, method, path } var values []Contact for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -994,6 +1002,7 @@ func (r *UserContactsCollectionRequest) Paging(ctx context.Context, method, path value []Contact ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1081,9 +1090,9 @@ func (r *UserCreatedObjectsCollectionRequest) Paging(ctx context.Context, method } var values []DirectoryObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1096,6 +1105,7 @@ func (r *UserCreatedObjectsCollectionRequest) Paging(ctx context.Context, method value []DirectoryObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1183,9 +1193,9 @@ func (r *UserDeviceEnrollmentConfigurationsCollectionRequest) Paging(ctx context } var values []DeviceEnrollmentConfiguration for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1198,6 +1208,7 @@ func (r *UserDeviceEnrollmentConfigurationsCollectionRequest) Paging(ctx context value []DeviceEnrollmentConfiguration ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1285,9 +1296,9 @@ func (r *UserDeviceManagementTroubleshootingEventsCollectionRequest) Paging(ctx } var values []DeviceManagementTroubleshootingEvent for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1300,6 +1311,7 @@ func (r *UserDeviceManagementTroubleshootingEventsCollectionRequest) Paging(ctx value []DeviceManagementTroubleshootingEvent ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1387,9 +1399,9 @@ func (r *UserDevicesCollectionRequest) Paging(ctx context.Context, method, path } var values []Device for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1402,6 +1414,7 @@ func (r *UserDevicesCollectionRequest) Paging(ctx context.Context, method, path value []Device ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1489,9 +1502,9 @@ func (r *UserDirectReportsCollectionRequest) Paging(ctx context.Context, method, } var values []DirectoryObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1504,6 +1517,7 @@ func (r *UserDirectReportsCollectionRequest) Paging(ctx context.Context, method, value []DirectoryObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1598,9 +1612,9 @@ func (r *UserDrivesCollectionRequest) Paging(ctx context.Context, method, path s } var values []Drive for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1613,6 +1627,7 @@ func (r *UserDrivesCollectionRequest) Paging(ctx context.Context, method, path s value []Drive ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1700,9 +1715,9 @@ func (r *UserEventsCollectionRequest) Paging(ctx context.Context, method, path s } var values []Event for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1715,6 +1730,7 @@ func (r *UserEventsCollectionRequest) Paging(ctx context.Context, method, path s value []Event ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1802,9 +1818,9 @@ func (r *UserExtensionsCollectionRequest) Paging(ctx context.Context, method, pa } var values []Extension for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1817,6 +1833,7 @@ func (r *UserExtensionsCollectionRequest) Paging(ctx context.Context, method, pa value []Extension ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1904,9 +1921,9 @@ func (r *UserFollowedSitesCollectionRequest) Paging(ctx context.Context, method, } var values []Site for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1919,6 +1936,7 @@ func (r *UserFollowedSitesCollectionRequest) Paging(ctx context.Context, method, value []Site ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2027,9 +2045,9 @@ func (r *UserJoinedGroupsCollectionRequest) Paging(ctx context.Context, method, } var values []Group for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2042,6 +2060,7 @@ func (r *UserJoinedGroupsCollectionRequest) Paging(ctx context.Context, method, value []Group ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2129,9 +2148,9 @@ func (r *UserJoinedTeamsCollectionRequest) Paging(ctx context.Context, method, p } var values []Team for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2144,6 +2163,7 @@ func (r *UserJoinedTeamsCollectionRequest) Paging(ctx context.Context, method, p value []Team ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2231,9 +2251,9 @@ func (r *UserLicenseDetailsCollectionRequest) Paging(ctx context.Context, method } var values []LicenseDetails for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2246,6 +2266,7 @@ func (r *UserLicenseDetailsCollectionRequest) Paging(ctx context.Context, method value []LicenseDetails ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2333,9 +2354,9 @@ func (r *UserMailFoldersCollectionRequest) Paging(ctx context.Context, method, p } var values []MailFolder for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2348,6 +2369,7 @@ func (r *UserMailFoldersCollectionRequest) Paging(ctx context.Context, method, p value []MailFolder ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2435,9 +2457,9 @@ func (r *UserManagedAppRegistrationsCollectionRequest) Paging(ctx context.Contex } var values []ManagedAppRegistration for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2450,6 +2472,7 @@ func (r *UserManagedAppRegistrationsCollectionRequest) Paging(ctx context.Contex value []ManagedAppRegistration ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2537,9 +2560,9 @@ func (r *UserManagedDevicesCollectionRequest) Paging(ctx context.Context, method } var values []ManagedDevice for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2552,6 +2575,7 @@ func (r *UserManagedDevicesCollectionRequest) Paging(ctx context.Context, method value []ManagedDevice ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2646,9 +2670,9 @@ func (r *UserMemberOfCollectionRequest) Paging(ctx context.Context, method, path } var values []DirectoryObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2661,6 +2685,7 @@ func (r *UserMemberOfCollectionRequest) Paging(ctx context.Context, method, path value []DirectoryObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2748,9 +2773,9 @@ func (r *UserMessagesCollectionRequest) Paging(ctx context.Context, method, path } var values []Message for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2763,6 +2788,7 @@ func (r *UserMessagesCollectionRequest) Paging(ctx context.Context, method, path value []Message ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2850,9 +2876,9 @@ func (r *UserMobileAppIntentAndStatesCollectionRequest) Paging(ctx context.Conte } var values []MobileAppIntentAndState for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2865,6 +2891,7 @@ func (r *UserMobileAppIntentAndStatesCollectionRequest) Paging(ctx context.Conte value []MobileAppIntentAndState ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2952,9 +2979,9 @@ func (r *UserMobileAppTroubleshootingEventsCollectionRequest) Paging(ctx context } var values []MobileAppTroubleshootingEvent for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2967,6 +2994,7 @@ func (r *UserMobileAppTroubleshootingEventsCollectionRequest) Paging(ctx context value []MobileAppTroubleshootingEvent ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -3054,9 +3082,9 @@ func (r *UserNotificationsCollectionRequest) Paging(ctx context.Context, method, } var values []Notification for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -3069,6 +3097,7 @@ func (r *UserNotificationsCollectionRequest) Paging(ctx context.Context, method, value []Notification ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -3163,9 +3192,9 @@ func (r *UserOnlineMeetingsCollectionRequest) Paging(ctx context.Context, method } var values []OnlineMeeting for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -3178,6 +3207,7 @@ func (r *UserOnlineMeetingsCollectionRequest) Paging(ctx context.Context, method value []OnlineMeeting ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -3272,9 +3302,9 @@ func (r *UserOwnedDevicesCollectionRequest) Paging(ctx context.Context, method, } var values []DirectoryObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -3287,6 +3317,7 @@ func (r *UserOwnedDevicesCollectionRequest) Paging(ctx context.Context, method, value []DirectoryObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -3374,9 +3405,9 @@ func (r *UserOwnedObjectsCollectionRequest) Paging(ctx context.Context, method, } var values []DirectoryObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -3389,6 +3420,7 @@ func (r *UserOwnedObjectsCollectionRequest) Paging(ctx context.Context, method, value []DirectoryObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -3476,9 +3508,9 @@ func (r *UserPeopleCollectionRequest) Paging(ctx context.Context, method, path s } var values []Person for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -3491,6 +3523,7 @@ func (r *UserPeopleCollectionRequest) Paging(ctx context.Context, method, path s value []Person ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -3585,9 +3618,9 @@ func (r *UserPhotosCollectionRequest) Paging(ctx context.Context, method, path s } var values []ProfilePhoto for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -3600,6 +3633,7 @@ func (r *UserPhotosCollectionRequest) Paging(ctx context.Context, method, path s value []ProfilePhoto ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -3708,9 +3742,9 @@ func (r *UserRegisteredDevicesCollectionRequest) Paging(ctx context.Context, met } var values []DirectoryObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -3723,6 +3757,7 @@ func (r *UserRegisteredDevicesCollectionRequest) Paging(ctx context.Context, met value []DirectoryObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -3810,9 +3845,9 @@ func (r *UserScopedRoleMemberOfCollectionRequest) Paging(ctx context.Context, me } var values []ScopedRoleMembership for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -3825,6 +3860,7 @@ func (r *UserScopedRoleMemberOfCollectionRequest) Paging(ctx context.Context, me value []ScopedRoleMembership ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -3926,9 +3962,9 @@ func (r *UserTransitiveMemberOfCollectionRequest) Paging(ctx context.Context, me } var values []DirectoryObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -3941,6 +3977,7 @@ func (r *UserTransitiveMemberOfCollectionRequest) Paging(ctx context.Context, me value []DirectoryObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -4028,9 +4065,9 @@ func (r *UserWindowsInformationProtectionDeviceRegistrationsCollectionRequest) P } var values []WindowsInformationProtectionDeviceRegistration for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -4043,6 +4080,7 @@ func (r *UserWindowsInformationProtectionDeviceRegistrationsCollectionRequest) P value []WindowsInformationProtectionDeviceRegistration ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -4130,9 +4168,9 @@ func (r *UserActivityHistoryItemsCollectionRequest) Paging(ctx context.Context, } var values []ActivityHistoryItem for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -4145,6 +4183,7 @@ func (r *UserActivityHistoryItemsCollectionRequest) Paging(ctx context.Context, value []ActivityHistoryItem ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -4232,9 +4271,9 @@ func (r *UserAnalyticsActivityStatisticsCollectionRequest) Paging(ctx context.Co } var values []ActivityStatistics for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -4247,6 +4286,7 @@ func (r *UserAnalyticsActivityStatisticsCollectionRequest) Paging(ctx context.Co value []ActivityStatistics ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -4341,9 +4381,9 @@ func (r *UserAppInstallStatusDeviceStatusesCollectionRequest) Paging(ctx context } var values []MobileAppInstallStatus for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -4356,6 +4396,7 @@ func (r *UserAppInstallStatusDeviceStatusesCollectionRequest) Paging(ctx context value []MobileAppInstallStatus ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -4457,9 +4498,9 @@ func (r *UserExperienceAnalyticsCategoryMetricValuesCollectionRequest) Paging(ct } var values []UserExperienceAnalyticsMetric for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -4472,6 +4513,7 @@ func (r *UserExperienceAnalyticsCategoryMetricValuesCollectionRequest) Paging(ct value []UserExperienceAnalyticsMetric ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -4559,9 +4601,9 @@ func (r *UserExperienceAnalyticsRegressionSummaryManufacturerRegressionCollectio } var values []UserExperienceAnalyticsMetric for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -4574,6 +4616,7 @@ func (r *UserExperienceAnalyticsRegressionSummaryManufacturerRegressionCollectio value []UserExperienceAnalyticsMetric ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -4661,9 +4704,9 @@ func (r *UserExperienceAnalyticsRegressionSummaryModelRegressionCollectionReques } var values []UserExperienceAnalyticsMetric for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -4676,6 +4719,7 @@ func (r *UserExperienceAnalyticsRegressionSummaryModelRegressionCollectionReques value []UserExperienceAnalyticsMetric ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -4763,9 +4807,9 @@ func (r *UserExperienceAnalyticsRegressionSummaryOperatingSystemRegressionCollec } var values []UserExperienceAnalyticsMetric for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -4778,6 +4822,7 @@ func (r *UserExperienceAnalyticsRegressionSummaryOperatingSystemRegressionCollec value []UserExperienceAnalyticsMetric ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -4865,9 +4910,9 @@ func (r *UserInstallStateSummaryDeviceStatesCollectionRequest) Paging(ctx contex } var values []DeviceInstallState for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -4880,6 +4925,7 @@ func (r *UserInstallStateSummaryDeviceStatesCollectionRequest) Paging(ctx contex value []DeviceInstallState ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -4967,9 +5013,9 @@ func (r *UserTeamworkInstalledAppsCollectionRequest) Paging(ctx context.Context, } var values []TeamsAppInstallation for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -4982,6 +5028,7 @@ func (r *UserTeamworkInstalledAppsCollectionRequest) Paging(ctx context.Context, value []TeamsAppInstallation ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionVPP.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionVPP.go index e86b2e78..502c6fe0 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionVPP.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionVPP.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionVendor.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionVendor.go index 2f4ca017..b868efb7 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionVendor.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionVendor.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -74,9 +74,9 @@ func (r *VendorPictureCollectionRequest) Paging(ctx context.Context, method, pat } var values []Picture for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -89,6 +89,7 @@ func (r *VendorPictureCollectionRequest) Paging(ctx context.Context, method, pat value []Picture ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionWindows.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionWindows.go index a35e080b..73efdf8c 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionWindows.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionWindows.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -137,9 +137,9 @@ func (r *WindowsAutopilotDeploymentProfileAssignedDevicesCollectionRequest) Pagi } var values []WindowsAutopilotDeviceIdentity for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -152,6 +152,7 @@ func (r *WindowsAutopilotDeploymentProfileAssignedDevicesCollectionRequest) Pagi value []WindowsAutopilotDeviceIdentity ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -239,9 +240,9 @@ func (r *WindowsAutopilotDeploymentProfileAssignmentsCollectionRequest) Paging(c } var values []WindowsAutopilotDeploymentProfileAssignment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -254,6 +255,7 @@ func (r *WindowsAutopilotDeploymentProfileAssignmentsCollectionRequest) Paging(c value []WindowsAutopilotDeploymentProfileAssignment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -355,9 +357,9 @@ func (r *WindowsDefenderApplicationControlSupplementalPolicyAssignmentsCollectio } var values []WindowsDefenderApplicationControlSupplementalPolicyAssignment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -370,6 +372,7 @@ func (r *WindowsDefenderApplicationControlSupplementalPolicyAssignmentsCollectio value []WindowsDefenderApplicationControlSupplementalPolicyAssignment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -464,9 +467,9 @@ func (r *WindowsDefenderApplicationControlSupplementalPolicyDeviceStatusesCollec } var values []WindowsDefenderApplicationControlSupplementalPolicyDeploymentStatus for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -479,6 +482,7 @@ func (r *WindowsDefenderApplicationControlSupplementalPolicyDeviceStatusesCollec value []WindowsDefenderApplicationControlSupplementalPolicyDeploymentStatus ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -573,9 +577,9 @@ func (r *WindowsDomainJoinConfigurationNetworkAccessConfigurationsCollectionRequ } var values []DeviceConfiguration for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -588,6 +592,7 @@ func (r *WindowsDomainJoinConfigurationNetworkAccessConfigurationsCollectionRequ value []DeviceConfiguration ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -675,9 +680,9 @@ func (r *WindowsFeatureUpdateProfileAssignmentsCollectionRequest) Paging(ctx con } var values []WindowsFeatureUpdateProfileAssignment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -690,6 +695,7 @@ func (r *WindowsFeatureUpdateProfileAssignmentsCollectionRequest) Paging(ctx con value []WindowsFeatureUpdateProfileAssignment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -777,9 +783,9 @@ func (r *WindowsFeatureUpdateProfileDeviceUpdateStatesCollectionRequest) Paging( } var values []WindowsUpdateState for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -792,6 +798,7 @@ func (r *WindowsFeatureUpdateProfileDeviceUpdateStatesCollectionRequest) Paging( value []WindowsUpdateState ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -879,9 +886,9 @@ func (r *WindowsInformationProtectionAssignmentsCollectionRequest) Paging(ctx co } var values []TargetedManagedAppPolicyAssignment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -894,6 +901,7 @@ func (r *WindowsInformationProtectionAssignmentsCollectionRequest) Paging(ctx co value []TargetedManagedAppPolicyAssignment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -981,9 +989,9 @@ func (r *WindowsInformationProtectionExemptAppLockerFilesCollectionRequest) Pagi } var values []WindowsInformationProtectionAppLockerFile for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -996,6 +1004,7 @@ func (r *WindowsInformationProtectionExemptAppLockerFilesCollectionRequest) Pagi value []WindowsInformationProtectionAppLockerFile ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1083,9 +1092,9 @@ func (r *WindowsInformationProtectionProtectedAppLockerFilesCollectionRequest) P } var values []WindowsInformationProtectionAppLockerFile for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1098,6 +1107,7 @@ func (r *WindowsInformationProtectionProtectedAppLockerFilesCollectionRequest) P value []WindowsInformationProtectionAppLockerFile ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1185,9 +1195,9 @@ func (r *WindowsMalwareInformationWindowsDevicesProtectionStateCollectionRequest } var values []WindowsProtectionState for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1200,6 +1210,7 @@ func (r *WindowsMalwareInformationWindowsDevicesProtectionStateCollectionRequest value []WindowsProtectionState ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1287,9 +1298,9 @@ func (r *WindowsManagementAppHealthStatesCollectionRequest) Paging(ctx context.C } var values []WindowsManagementAppHealthState for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1302,6 +1313,7 @@ func (r *WindowsManagementAppHealthStatesCollectionRequest) Paging(ctx context.C value []WindowsManagementAppHealthState ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1389,9 +1401,9 @@ func (r *WindowsPhone81ImportedPFXCertificateProfileManagedDeviceCertificateStat } var values []ManagedDeviceCertificateState for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1404,6 +1416,7 @@ func (r *WindowsPhone81ImportedPFXCertificateProfileManagedDeviceCertificateStat value []ManagedDeviceCertificateState ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1491,9 +1504,9 @@ func (r *WindowsPhone81SCEPCertificateProfileManagedDeviceCertificateStatesColle } var values []ManagedDeviceCertificateState for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1506,6 +1519,7 @@ func (r *WindowsPhone81SCEPCertificateProfileManagedDeviceCertificateStatesColle value []ManagedDeviceCertificateState ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1607,9 +1621,9 @@ func (r *WindowsProtectionStateDetectedMalwareStateCollectionRequest) Paging(ctx } var values []WindowsDeviceMalwareState for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1622,6 +1636,7 @@ func (r *WindowsProtectionStateDetectedMalwareStateCollectionRequest) Paging(ctx value []WindowsDeviceMalwareState ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1709,9 +1724,9 @@ func (r *WindowsUniversalAppXCommittedContainedAppsCollectionRequest) Paging(ctx } var values []MobileContainedApp for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1724,6 +1739,7 @@ func (r *WindowsUniversalAppXCommittedContainedAppsCollectionRequest) Paging(ctx value []MobileContainedApp ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1811,9 +1827,9 @@ func (r *WindowsUpdateForBusinessConfigurationDeviceUpdateStatesCollectionReques } var values []WindowsUpdateState for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1826,6 +1842,7 @@ func (r *WindowsUpdateForBusinessConfigurationDeviceUpdateStatesCollectionReques value []WindowsUpdateState ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1920,9 +1937,9 @@ func (r *WindowsWiFiEnterpriseEAPConfigurationRootCertificatesForServerValidatio } var values []Windows81TrustedRootCertificate for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1935,6 +1952,7 @@ func (r *WindowsWiFiEnterpriseEAPConfigurationRootCertificatesForServerValidatio value []Windows81TrustedRootCertificate ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionWindows10.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionWindows10.go index bbe62069..08bb459f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionWindows10.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionWindows10.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -53,9 +53,9 @@ func (r *Windows10GeneralConfigurationPrivacyAccessControlsCollectionRequest) Pa } var values []WindowsPrivacyDataAccessControlItem for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -68,6 +68,7 @@ func (r *Windows10GeneralConfigurationPrivacyAccessControlsCollectionRequest) Pa value []WindowsPrivacyDataAccessControlItem ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -155,9 +156,9 @@ func (r *Windows10ImportedPFXCertificateProfileManagedDeviceCertificateStatesCol } var values []ManagedDeviceCertificateState for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -170,6 +171,7 @@ func (r *Windows10ImportedPFXCertificateProfileManagedDeviceCertificateStatesCol value []ManagedDeviceCertificateState ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -257,9 +259,9 @@ func (r *Windows10PkcsCertificateProfileManagedDeviceCertificateStatesCollection } var values []ManagedDeviceCertificateState for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -272,6 +274,7 @@ func (r *Windows10PkcsCertificateProfileManagedDeviceCertificateStatesCollection value []ManagedDeviceCertificateState ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionWindows81.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionWindows81.go index 77815fab..36acb9ca 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionWindows81.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionWindows81.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -53,9 +53,9 @@ func (r *Windows81SCEPCertificateProfileManagedDeviceCertificateStatesCollection } var values []ManagedDeviceCertificateState for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -68,6 +68,7 @@ func (r *Windows81SCEPCertificateProfileManagedDeviceCertificateStatesCollection value []ManagedDeviceCertificateState ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionWorkbook.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionWorkbook.go index 296dffc8..47f2c4ee 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionWorkbook.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionWorkbook.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -3443,9 +3443,9 @@ func (r *WorkbookCommentsCollectionRequest) Paging(ctx context.Context, method, } var values []WorkbookComment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -3458,6 +3458,7 @@ func (r *WorkbookCommentsCollectionRequest) Paging(ctx context.Context, method, value []WorkbookComment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -3552,9 +3553,9 @@ func (r *WorkbookNamesCollectionRequest) Paging(ctx context.Context, method, pat } var values []WorkbookNamedItem for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -3567,6 +3568,7 @@ func (r *WorkbookNamesCollectionRequest) Paging(ctx context.Context, method, pat value []WorkbookNamedItem ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -3654,9 +3656,9 @@ func (r *WorkbookTablesCollectionRequest) Paging(ctx context.Context, method, pa } var values []WorkbookTable for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -3669,6 +3671,7 @@ func (r *WorkbookTablesCollectionRequest) Paging(ctx context.Context, method, pa value []WorkbookTable ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -3756,9 +3759,9 @@ func (r *WorkbookWorksheetsCollectionRequest) Paging(ctx context.Context, method } var values []WorkbookWorksheet for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -3771,6 +3774,7 @@ func (r *WorkbookWorksheetsCollectionRequest) Paging(ctx context.Context, method value []WorkbookWorksheet ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -3886,9 +3890,9 @@ func (r *WorkbookChartSeriesCollectionRequest) Paging(ctx context.Context, metho } var values []WorkbookChartSeries for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -3901,6 +3905,7 @@ func (r *WorkbookChartSeriesCollectionRequest) Paging(ctx context.Context, metho value []WorkbookChartSeries ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -4170,9 +4175,9 @@ func (r *WorkbookChartSeriesPointsCollectionRequest) Paging(ctx context.Context, } var values []WorkbookChartPoint for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -4185,6 +4190,7 @@ func (r *WorkbookChartSeriesPointsCollectionRequest) Paging(ctx context.Context, value []WorkbookChartPoint ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -4307,9 +4313,9 @@ func (r *WorkbookCommentRepliesCollectionRequest) Paging(ctx context.Context, me } var values []WorkbookCommentReply for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -4322,6 +4328,7 @@ func (r *WorkbookCommentRepliesCollectionRequest) Paging(ctx context.Context, me value []WorkbookCommentReply ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -4444,9 +4451,9 @@ func (r *WorkbookRangeFormatBordersCollectionRequest) Paging(ctx context.Context } var values []WorkbookRangeBorder for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -4459,6 +4466,7 @@ func (r *WorkbookRangeFormatBordersCollectionRequest) Paging(ctx context.Context value []WorkbookRangeBorder ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -4567,9 +4575,9 @@ func (r *WorkbookRangeViewRowsCollectionRequest) Paging(ctx context.Context, met } var values []WorkbookRangeView for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -4582,6 +4590,7 @@ func (r *WorkbookRangeViewRowsCollectionRequest) Paging(ctx context.Context, met value []WorkbookRangeView ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -4669,9 +4678,9 @@ func (r *WorkbookTableColumnsCollectionRequest) Paging(ctx context.Context, meth } var values []WorkbookTableColumn for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -4684,6 +4693,7 @@ func (r *WorkbookTableColumnsCollectionRequest) Paging(ctx context.Context, meth value []WorkbookTableColumn ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -4771,9 +4781,9 @@ func (r *WorkbookTableRowsCollectionRequest) Paging(ctx context.Context, method, } var values []WorkbookTableRow for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -4786,6 +4796,7 @@ func (r *WorkbookTableRowsCollectionRequest) Paging(ctx context.Context, method, value []WorkbookTableRow ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -4894,9 +4905,9 @@ func (r *WorkbookWorksheetChartsCollectionRequest) Paging(ctx context.Context, m } var values []WorkbookChart for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -4909,6 +4920,7 @@ func (r *WorkbookWorksheetChartsCollectionRequest) Paging(ctx context.Context, m value []WorkbookChart ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -4996,9 +5008,9 @@ func (r *WorkbookWorksheetNamesCollectionRequest) Paging(ctx context.Context, me } var values []WorkbookNamedItem for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -5011,6 +5023,7 @@ func (r *WorkbookWorksheetNamesCollectionRequest) Paging(ctx context.Context, me value []WorkbookNamedItem ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -5098,9 +5111,9 @@ func (r *WorkbookWorksheetPivotTablesCollectionRequest) Paging(ctx context.Conte } var values []WorkbookPivotTable for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -5113,6 +5126,7 @@ func (r *WorkbookWorksheetPivotTablesCollectionRequest) Paging(ctx context.Conte value []WorkbookPivotTable ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -5207,9 +5221,9 @@ func (r *WorkbookWorksheetTablesCollectionRequest) Paging(ctx context.Context, m } var values []WorkbookTable for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -5222,6 +5236,7 @@ func (r *WorkbookWorksheetTablesCollectionRequest) Paging(ctx context.Context, m value []WorkbookTable ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumACL.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumACL.go index 37903b1b..55b4d122 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumACL.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumACL.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumAccess.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumAccess.go index d777e794..981ea465 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumAccess.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumAccess.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumAccount.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumAccount.go index 1c198528..d04bee21 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumAccount.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumAccount.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumAction.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumAction.go index 8b40a3e2..cfbf7250 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumAction.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumAction.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumActivity.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumActivity.go index 8cdfa92a..b2c4fe50 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumActivity.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumActivity.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumAdmin.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumAdmin.go index dfdc338d..052b5507 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumAdmin.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumAdmin.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumAdministrator.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumAdministrator.go index 5f367885..6da31992 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumAdministrator.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumAdministrator.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumAdvanced.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumAdvanced.go index 22149cd9..3da95558 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumAdvanced.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumAdvanced.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumAgent.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumAgent.go index b1bc869f..d1b62e7a 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumAgent.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumAgent.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumAgreement.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumAgreement.go index c56b8bd8..8091ee81 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumAgreement.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumAgreement.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumAlert.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumAlert.go index ba83ba61..e684561c 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumAlert.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumAlert.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumAlignment.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumAlignment.go index dcca8371..829f9b37 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumAlignment.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumAlignment.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumAllowed.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumAllowed.go index b34924cf..862359d5 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumAllowed.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumAllowed.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumAnalytics.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumAnalytics.go index b26f7937..2d738c9e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumAnalytics.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumAnalytics.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumAndroid.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumAndroid.go index f8124e40..91c3eb84 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumAndroid.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumAndroid.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumAnniversary.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumAnniversary.go index 8a7c0d14..9899ed78 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumAnniversary.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumAnniversary.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumApp.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumApp.go index a11ffea5..185dd6a7 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumApp.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumApp.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumApple.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumApple.go index ced6525b..f6eb84c0 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumApple.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumApple.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumApplication.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumApplication.go index fcebdbf6..5fec8c83 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumApplication.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumApplication.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumApplied.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumApplied.go index 9f9d3fdc..50be8d6c 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumApplied.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumApplied.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumApproval.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumApproval.go index 6a6d3407..87261b32 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumApproval.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumApproval.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumAssignment.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumAssignment.go index e9b6c577..1589e93a 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumAssignment.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumAssignment.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumAttachment.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumAttachment.go index d5fb8d9a..e8a7b517 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumAttachment.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumAttachment.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumAttendee.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumAttendee.go index 25b5cec1..3db0185a 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumAttendee.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumAttendee.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumAttribute.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumAttribute.go index d54ef26c..3a6ef887 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumAttribute.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumAttribute.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumAuth.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumAuth.go index bae64b60..1db7ee9d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumAuth.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumAuth.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumAuto.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumAuto.go index 8200a8ab..721418ea 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumAuto.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumAuto.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumAutomatic.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumAutomatic.go index d963325c..f457d85f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumAutomatic.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumAutomatic.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumAzure.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumAzure.go index 6e1590c0..c7abb5a7 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumAzure.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumAzure.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumBinary.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumBinary.go index 926da36d..cccc8dfa 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumBinary.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumBinary.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumBit.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumBit.go index a0d84b3d..38ea31d7 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumBit.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumBit.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumBody.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumBody.go index 0580cb13..6b883339 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumBody.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumBody.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumBooking.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumBooking.go index a673e697..89e91f0f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumBooking.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumBooking.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumBrowser.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumBrowser.go index d5525c22..4c7908bb 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumBrowser.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumBrowser.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumCalendar.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumCalendar.go index e93f6ff3..879bc583 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumCalendar.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumCalendar.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumCall.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumCall.go index e3a2f387..11d52d25 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumCall.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumCall.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumCategory.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumCategory.go index b719d312..4ca7bc57 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumCategory.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumCategory.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumCertificate.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumCertificate.go index 5f93b3d9..69a9a627 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumCertificate.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumCertificate.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumChange.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumChange.go index ef7a5ffd..7ecbc9af 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumChange.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumChange.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumChannel.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumChannel.go index f83c064c..1f115f44 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumChannel.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumChannel.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumChassis.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumChassis.go index d4b6c4e8..01145c25 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumChassis.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumChassis.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumChat.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumChat.go index bbbec18b..03629d79 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumChat.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumChat.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumClonable.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumClonable.go index 7c870975..2d872291 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumClonable.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumClonable.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumCloud.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumCloud.go index 3430fe40..2959c44f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumCloud.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumCloud.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumCompany.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumCompany.go index b5f6bb5a..27b991a2 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumCompany.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumCompany.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumCompliance.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumCompliance.go index beb750cf..2b7c3ff6 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumCompliance.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumCompliance.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumComponent.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumComponent.go index 876c770d..c82c9635 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumComponent.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumComponent.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumConditional.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumConditional.go index bf2f1297..b51daa46 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumConditional.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumConditional.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumConfiguration.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumConfiguration.go index 65d48f57..6f733382 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumConfiguration.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumConfiguration.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumConnection.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumConnection.go index 0c448c90..9234b414 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumConnection.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumConnection.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumContact.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumContact.go index 025099eb..1cc2a892 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumContact.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumContact.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumContent.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumContent.go index 246edcc3..0050ae4f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumContent.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumContent.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumConversation.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumConversation.go index 5e7dd1a3..217841e6 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumConversation.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumConversation.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumDMA.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumDMA.go index b9916bf4..4f06d23a 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumDMA.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumDMA.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumData.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumData.go index cd1639ff..a1dc5ba0 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumData.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumData.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumDay.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumDay.go index 1ba48eaf..bd85cd61 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumDay.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumDay.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumDefender.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumDefender.go index 1fc3d291..29d93097 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumDefender.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumDefender.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumDelegate.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumDelegate.go index 80b7302c..58c3b140 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumDelegate.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumDelegate.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumDelivery.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumDelivery.go index e73cf3db..b5853477 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumDelivery.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumDelivery.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumDep.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumDep.go index 2641b1bc..02f9a055 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumDep.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumDep.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumDerived.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumDerived.go index b22d508f..6187326b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumDerived.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumDerived.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumDevice.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumDevice.go index 8f74dcdf..742ae713 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumDevice.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumDevice.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumDiagnostic.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumDiagnostic.go index d24a2852..9f8a805d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumDiagnostic.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumDiagnostic.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumDiamond.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumDiamond.go index 68f841ab..86540772 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumDiamond.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumDiamond.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumDirectory.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumDirectory.go index 5431f8d3..861bf98f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumDirectory.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumDirectory.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumDiscovery.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumDiscovery.go index 3c830830..57573fdd 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumDiscovery.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumDiscovery.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumDisk.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumDisk.go index 8726d003..099bdf85 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumDisk.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumDisk.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumDlp.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumDlp.go index 449004d4..c239cd01 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumDlp.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumDlp.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumDomain.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumDomain.go index 7fa753ed..4aca50f8 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumDomain.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumDomain.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumEap.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumEap.go index a813676c..af005356 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumEap.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumEap.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumEas.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumEas.go index e7d91544..cae5b334 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumEas.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumEas.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumEdge.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumEdge.go index d08288b4..b7b9b430 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumEdge.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumEdge.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumEdition.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumEdition.go index 0f27aeec..2ae40413 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumEdition.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumEdition.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumEducation.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumEducation.go index a784198f..de1160e5 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumEducation.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumEducation.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumEmail.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumEmail.go index 27096f13..07d9f70e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumEmail.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumEmail.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumEmbedded.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumEmbedded.go index d5dca325..de930e53 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumEmbedded.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumEmbedded.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumEnablement.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumEnablement.go index 08a936bb..691f91bb 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumEnablement.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumEnablement.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumEncrypt.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumEncrypt.go index 40a48917..5d5ad504 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumEncrypt.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumEncrypt.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumEncryption.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumEncryption.go index bedb5d85..5efa379e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumEncryption.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumEncryption.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumEndpoint.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumEndpoint.go index 0979544b..ace2e96b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumEndpoint.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumEndpoint.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumEnrollment.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumEnrollment.go index 287527c9..55cd535b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumEnrollment.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumEnrollment.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumEntity.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumEntity.go index 3742e261..0e99d40c 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumEntity.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumEntity.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumEntry.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumEntry.go index 5826ef6b..41aed15d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumEntry.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumEntry.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumError.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumError.go index f59186fa..a1e16fa6 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumError.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumError.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumEvent.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumEvent.go index bc3f0f9c..e1e28c1e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumEvent.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumEvent.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumExchange.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumExchange.go index a34cd922..9ab92287 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumExchange.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumExchange.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumExternal.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumExternal.go index 9c729ebf..841acb62 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumExternal.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumExternal.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumFeature.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumFeature.go index da708169..27063d48 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumFeature.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumFeature.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumFile.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumFile.go index 3f59e063..6fb9687a 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumFile.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumFile.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumFirewall.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumFirewall.go index a7be03e7..3d54acf0 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumFirewall.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumFirewall.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumFolder.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumFolder.go index c3887b33..58ba376b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumFolder.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumFolder.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumFollowup.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumFollowup.go index 84e9350d..aee8fca6 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumFollowup.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumFollowup.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumFree.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumFree.go index 39d73adc..379375a2 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumFree.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumFree.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumGiphy.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumGiphy.go index 3c5b2c7b..b1a20736 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumGiphy.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumGiphy.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumGroup.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumGroup.go index 325e6ced..497c0ad6 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumGroup.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumGroup.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumHash.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumHash.go index 03bd2de8..a086f71c 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumHash.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumHash.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumHealth.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumHealth.go index 9f7413d7..8fa8d4df 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumHealth.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumHealth.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumIOS.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumIOS.go index 65f01fdb..e2feae03 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumIOS.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumIOS.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumITunes.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumITunes.go index 2e54a4cc..f15ec067 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumITunes.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumITunes.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumImportance.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumImportance.go index f6c10ee5..6f5e4b95 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumImportance.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumImportance.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumImported.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumImported.go index d524d490..374519c2 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumImported.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumImported.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumInference.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumInference.go index d3be8718..2fd87246 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumInference.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumInference.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumInitiator.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumInitiator.go index 26550d50..cbc51ee3 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumInitiator.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumInitiator.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumInk.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumInk.go index 16467e85..ee1aabe1 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumInk.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumInk.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumInstall.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumInstall.go index 8f010113..8c9c27f3 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumInstall.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumInstall.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumIntended.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumIntended.go index b1bacb7d..7cfc871d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumIntended.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumIntended.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumInternet.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumInternet.go index 4248eebd..3e03ca28 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumInternet.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumInternet.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumKey.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumKey.go index 47fd68f7..c0724303 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumKey.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumKey.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumLan.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumLan.go index 6a983173..2936d377 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumLan.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumLan.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumLanguage.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumLanguage.go index 92690339..ca47e869 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumLanguage.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumLanguage.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumLocal.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumLocal.go index 31ba6ff1..73e0d72b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumLocal.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumLocal.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumLocation.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumLocation.go index 030baf1d..88a38b21 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumLocation.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumLocation.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumLog.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumLog.go index 54a9f8e2..3d7ac1ed 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumLog.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumLog.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumLogon.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumLogon.go index 209b533c..3937c282 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumLogon.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumLogon.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumLost.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumLost.go index c76b0892..4b641896 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumLost.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumLost.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumMDM.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumMDM.go index 57f402c5..908a1b1d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumMDM.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumMDM.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumMac.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumMac.go index e36b4285..fb5a0a97 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumMac.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumMac.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumMail.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumMail.go index 070871d2..af1e97ee 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumMail.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumMail.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumManaged.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumManaged.go index 47a65f9d..4d84918d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumManaged.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumManaged.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumManagement.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumManagement.go index 4d4420ef..2090c112 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumManagement.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumManagement.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumMedia.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumMedia.go index c644623c..23e24a03 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumMedia.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumMedia.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumMeeting.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumMeeting.go index 11c84546..03bbfc91 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumMeeting.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumMeeting.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumMessage.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumMessage.go index 16f1808a..0e971a8e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumMessage.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumMessage.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumMetered.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumMetered.go index 3febbbea..a40bf51b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumMetered.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumMetered.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumMicrosoft.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumMicrosoft.go index 7ea97e61..ddc9679a 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumMicrosoft.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumMicrosoft.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumMigration.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumMigration.go index de09954b..47a53514 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumMigration.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumMigration.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumMiracast.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumMiracast.go index 7b30ef77..ca2c253e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumMiracast.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumMiracast.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumMobile.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumMobile.go index 60e16798..b9a83736 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumMobile.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumMobile.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumModality.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumModality.go index 2db69227..e0ab1c50 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumModality.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumModality.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumMutability.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumMutability.go index e9f91b25..93b03dc5 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumMutability.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumMutability.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumNDES.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumNDES.go index 5f5daea3..c9a5abff 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumNDES.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumNDES.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumNetwork.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumNetwork.go index 741b9f75..761400e0 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumNetwork.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumNetwork.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumNon.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumNon.go index fb8ce5cb..185ed684 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumNon.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumNon.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumNotification.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumNotification.go index 4e652269..9d5e012d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumNotification.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumNotification.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumObject.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumObject.go index d85f02f8..8d477c43 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumObject.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumObject.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumOffice.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumOffice.go index 9bf7a28d..5a31f263 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumOffice.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumOffice.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumOn.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumOn.go index be5333f7..22d5914b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumOn.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumOn.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumOnenote.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumOnenote.go index e372594b..aa16f060 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumOnenote.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumOnenote.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumOnline.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumOnline.go index 29e67d56..29a6e04f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumOnline.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumOnline.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumOperation.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumOperation.go index 4994b700..86044cdc 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumOperation.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumOperation.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumOverride.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumOverride.go index 0e71e090..f24e6cea 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumOverride.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumOverride.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumOwner.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumOwner.go index 3c66a161..8648ba59 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumOwner.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumOwner.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumPage.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumPage.go index 0c290ce9..349bd355 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumPage.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumPage.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumPermission.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumPermission.go index b3938cfd..23ce689f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumPermission.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumPermission.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumPersistent.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumPersistent.go index 961b78ad..ddc36db6 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumPersistent.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumPersistent.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumPerson.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumPerson.go index b57e6f6f..71fe000d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumPerson.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumPerson.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumPhone.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumPhone.go index 4beafb6c..03f68a74 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumPhone.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumPhone.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumPhysical.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumPhysical.go index 6fd0b596..3b4618f2 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumPhysical.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumPhysical.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumPlace.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumPlace.go index a3425ade..c4505a3a 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumPlace.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumPlace.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumPlanner.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumPlanner.go index 97d78320..f832b29b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumPlanner.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumPlanner.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumPlatform.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumPlatform.go index 797ce7f2..68364e80 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumPlatform.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumPlatform.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumPlay.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumPlay.go index 46b3d13a..6ce61d2d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumPlay.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumPlay.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumPolicy.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumPolicy.go index 66d4f20e..5bf4776b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumPolicy.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumPolicy.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumPower.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumPower.go index 0ebd242a..7564153a 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumPower.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumPower.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumPrerelease.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumPrerelease.go index 9b2ab6aa..0d127323 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumPrerelease.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumPrerelease.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumPriority.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumPriority.go index 7a522a2a..9cc46b68 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumPriority.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumPriority.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumProcess.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumProcess.go index e5a33f0c..6802fcac 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumProcess.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumProcess.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumProperty.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumProperty.go index 1d58087a..94767aeb 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumProperty.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumProperty.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumProvisioning.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumProvisioning.go index b5f41643..ce1e8a54 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumProvisioning.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumProvisioning.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumQuarantine.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumQuarantine.go index c87c32a1..ac02fd2b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumQuarantine.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumQuarantine.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumRating.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumRating.go index b838a199..9fceff4d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumRating.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumRating.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumRecipient.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumRecipient.go index 09b3374f..11e17ca5 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumRecipient.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumRecipient.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumRecord.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumRecord.go index 50aed54f..784181a4 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumRecord.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumRecord.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumRecording.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumRecording.go index 8ce07cc6..4468992f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumRecording.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumRecording.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumRecurrence.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumRecurrence.go index 9529012b..1aa7deb7 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumRecurrence.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumRecurrence.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumReference.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumReference.go index 2021d116..865e9809 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumReference.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumReference.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumRegistration.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumRegistration.go index e1d3f06e..bb47f5e1 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumRegistration.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumRegistration.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumRegistry.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumRegistry.go index 78df13fb..00bc80e9 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumRegistry.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumRegistry.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumReject.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumReject.go index 75219230..177eba16 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumReject.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumReject.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumRemediation.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumRemediation.go index 19faad7f..3d7b7b89 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumRemediation.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumRemediation.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumRemote.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumRemote.go index a5962c53..7196e740 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumRemote.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumRemote.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumRequired.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumRequired.go index 473cd4fa..78ead1b5 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumRequired.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumRequired.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumRequirement.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumRequirement.go index efc13df0..3839bfe4 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumRequirement.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumRequirement.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumResponse.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumResponse.go index bd45acb6..1b83cc18 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumResponse.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumResponse.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumRestricted.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumRestricted.go index 45f044d0..da649563 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumRestricted.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumRestricted.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumRestriction.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumRestriction.go index ac762e26..d5d9fcae 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumRestriction.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumRestriction.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumResultant.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumResultant.go index 157280e9..0b4ee250 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumResultant.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumResultant.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumRisk.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumRisk.go index a2571503..7808ba29 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumRisk.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumRisk.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumRole.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumRole.go index b9155be5..6bf6df1a 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumRole.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumRole.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumRouting.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumRouting.go index 31455baa..d927fe19 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumRouting.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumRouting.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumRule.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumRule.go index c08069d7..95ff9b52 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumRule.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumRule.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumRun.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumRun.go index 1ee9d5e7..184cc7dd 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumRun.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumRun.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumSafe.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumSafe.go index a6fcf3c0..8046867f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumSafe.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumSafe.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumSchedule.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumSchedule.go index ce67f61f..deabc30b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumSchedule.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumSchedule.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumScope.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumScope.go index 679fa9ff..39d35e84 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumScope.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumScope.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumScreen.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumScreen.go index 72c2eca9..5c69246d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumScreen.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumScreen.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumSecure.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumSecure.go index b635938d..4010e959 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumSecure.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumSecure.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumSecurity.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumSecurity.go index 1ecd5966..17886eb0 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumSecurity.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumSecurity.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumSensitivity.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumSensitivity.go index 96caafa5..33536557 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumSensitivity.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumSensitivity.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumService.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumService.go index 39b36a03..f8d1c93d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumService.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumService.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumSetup.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumSetup.go index 1f7f8440..047a1a2b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumSetup.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumSetup.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumShared.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumShared.go index 7f98eb77..93812fc3 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumShared.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumShared.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumSign.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumSign.go index 6c877e88..16a8930e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumSign.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumSign.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumSignin.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumSignin.go index 145bbd98..c29304f3 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumSignin.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumSignin.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumSite.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumSite.go index 46d748d6..5e0bb71a 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumSite.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumSite.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumSkill.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumSkill.go index 09a3babe..3acecf91 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumSkill.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumSkill.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumStaged.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumStaged.go index 455b6836..967f5398 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumStaged.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumStaged.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumState.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumState.go index bc37f1c2..6ba7fa3d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumState.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumState.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumStatus.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumStatus.go index 0d9a284d..c5c3a5d4 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumStatus.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumStatus.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumSubject.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumSubject.go index aa568b40..d5e8a09e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumSubject.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumSubject.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumSynchronization.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumSynchronization.go index 70220d8a..8205e6dc 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumSynchronization.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumSynchronization.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -107,20 +107,20 @@ const ( SynchronizationSecretVTokenKey SynchronizationSecret = "TokenKey" // SynchronizationSecretVTokenExpiration undocumented SynchronizationSecretVTokenExpiration SynchronizationSecret = "TokenExpiration" - // SynchronizationSecretVOauth2AccessToken undocumented - SynchronizationSecretVOauth2AccessToken SynchronizationSecret = "Oauth2AccessToken" - // SynchronizationSecretVOauth2AccessTokenCreationTime undocumented - SynchronizationSecretVOauth2AccessTokenCreationTime SynchronizationSecret = "Oauth2AccessTokenCreationTime" - // SynchronizationSecretVOauth2RefreshToken undocumented - SynchronizationSecretVOauth2RefreshToken SynchronizationSecret = "Oauth2RefreshToken" + // SynchronizationSecretVOAuth2AccessToken undocumented + SynchronizationSecretVOAuth2AccessToken SynchronizationSecret = "Oauth2AccessToken" + // SynchronizationSecretVOAuth2AccessTokenCreationTime undocumented + SynchronizationSecretVOAuth2AccessTokenCreationTime SynchronizationSecret = "Oauth2AccessTokenCreationTime" + // SynchronizationSecretVOAuth2RefreshToken undocumented + SynchronizationSecretVOAuth2RefreshToken SynchronizationSecret = "Oauth2RefreshToken" // SynchronizationSecretVSyncAll undocumented SynchronizationSecretVSyncAll SynchronizationSecret = "SyncAll" // SynchronizationSecretVInstanceName undocumented SynchronizationSecretVInstanceName SynchronizationSecret = "InstanceName" - // SynchronizationSecretVOauth2ClientID undocumented - SynchronizationSecretVOauth2ClientID SynchronizationSecret = "Oauth2ClientId" - // SynchronizationSecretVOauth2ClientSecret undocumented - SynchronizationSecretVOauth2ClientSecret SynchronizationSecret = "Oauth2ClientSecret" + // SynchronizationSecretVOAuth2ClientID undocumented + SynchronizationSecretVOAuth2ClientID SynchronizationSecret = "Oauth2ClientId" + // SynchronizationSecretVOAuth2ClientSecret undocumented + SynchronizationSecretVOAuth2ClientSecret SynchronizationSecret = "Oauth2ClientSecret" // SynchronizationSecretVCompanyID undocumented SynchronizationSecretVCompanyID SynchronizationSecret = "CompanyId" // SynchronizationSecretVUpdateKeyOnSoftDelete undocumented @@ -184,20 +184,20 @@ var ( SynchronizationSecretPTokenKey = &_SynchronizationSecretPTokenKey // SynchronizationSecretPTokenExpiration is a pointer to SynchronizationSecretVTokenExpiration SynchronizationSecretPTokenExpiration = &_SynchronizationSecretPTokenExpiration - // SynchronizationSecretPOauth2AccessToken is a pointer to SynchronizationSecretVOauth2AccessToken - SynchronizationSecretPOauth2AccessToken = &_SynchronizationSecretPOauth2AccessToken - // SynchronizationSecretPOauth2AccessTokenCreationTime is a pointer to SynchronizationSecretVOauth2AccessTokenCreationTime - SynchronizationSecretPOauth2AccessTokenCreationTime = &_SynchronizationSecretPOauth2AccessTokenCreationTime - // SynchronizationSecretPOauth2RefreshToken is a pointer to SynchronizationSecretVOauth2RefreshToken - SynchronizationSecretPOauth2RefreshToken = &_SynchronizationSecretPOauth2RefreshToken + // SynchronizationSecretPOAuth2AccessToken is a pointer to SynchronizationSecretVOAuth2AccessToken + SynchronizationSecretPOAuth2AccessToken = &_SynchronizationSecretPOAuth2AccessToken + // SynchronizationSecretPOAuth2AccessTokenCreationTime is a pointer to SynchronizationSecretVOAuth2AccessTokenCreationTime + SynchronizationSecretPOAuth2AccessTokenCreationTime = &_SynchronizationSecretPOAuth2AccessTokenCreationTime + // SynchronizationSecretPOAuth2RefreshToken is a pointer to SynchronizationSecretVOAuth2RefreshToken + SynchronizationSecretPOAuth2RefreshToken = &_SynchronizationSecretPOAuth2RefreshToken // SynchronizationSecretPSyncAll is a pointer to SynchronizationSecretVSyncAll SynchronizationSecretPSyncAll = &_SynchronizationSecretPSyncAll // SynchronizationSecretPInstanceName is a pointer to SynchronizationSecretVInstanceName SynchronizationSecretPInstanceName = &_SynchronizationSecretPInstanceName - // SynchronizationSecretPOauth2ClientID is a pointer to SynchronizationSecretVOauth2ClientID - SynchronizationSecretPOauth2ClientID = &_SynchronizationSecretPOauth2ClientID - // SynchronizationSecretPOauth2ClientSecret is a pointer to SynchronizationSecretVOauth2ClientSecret - SynchronizationSecretPOauth2ClientSecret = &_SynchronizationSecretPOauth2ClientSecret + // SynchronizationSecretPOAuth2ClientID is a pointer to SynchronizationSecretVOAuth2ClientID + SynchronizationSecretPOAuth2ClientID = &_SynchronizationSecretPOAuth2ClientID + // SynchronizationSecretPOAuth2ClientSecret is a pointer to SynchronizationSecretVOAuth2ClientSecret + SynchronizationSecretPOAuth2ClientSecret = &_SynchronizationSecretPOAuth2ClientSecret // SynchronizationSecretPCompanyID is a pointer to SynchronizationSecretVCompanyID SynchronizationSecretPCompanyID = &_SynchronizationSecretPCompanyID // SynchronizationSecretPUpdateKeyOnSoftDelete is a pointer to SynchronizationSecretVUpdateKeyOnSoftDelete @@ -245,13 +245,13 @@ var ( _SynchronizationSecretPConsumerSecret = SynchronizationSecretVConsumerSecret _SynchronizationSecretPTokenKey = SynchronizationSecretVTokenKey _SynchronizationSecretPTokenExpiration = SynchronizationSecretVTokenExpiration - _SynchronizationSecretPOauth2AccessToken = SynchronizationSecretVOauth2AccessToken - _SynchronizationSecretPOauth2AccessTokenCreationTime = SynchronizationSecretVOauth2AccessTokenCreationTime - _SynchronizationSecretPOauth2RefreshToken = SynchronizationSecretVOauth2RefreshToken + _SynchronizationSecretPOAuth2AccessToken = SynchronizationSecretVOAuth2AccessToken + _SynchronizationSecretPOAuth2AccessTokenCreationTime = SynchronizationSecretVOAuth2AccessTokenCreationTime + _SynchronizationSecretPOAuth2RefreshToken = SynchronizationSecretVOAuth2RefreshToken _SynchronizationSecretPSyncAll = SynchronizationSecretVSyncAll _SynchronizationSecretPInstanceName = SynchronizationSecretVInstanceName - _SynchronizationSecretPOauth2ClientID = SynchronizationSecretVOauth2ClientID - _SynchronizationSecretPOauth2ClientSecret = SynchronizationSecretVOauth2ClientSecret + _SynchronizationSecretPOAuth2ClientID = SynchronizationSecretVOAuth2ClientID + _SynchronizationSecretPOAuth2ClientSecret = SynchronizationSecretVOAuth2ClientSecret _SynchronizationSecretPCompanyID = SynchronizationSecretVCompanyID _SynchronizationSecretPUpdateKeyOnSoftDelete = SynchronizationSecretVUpdateKeyOnSoftDelete _SynchronizationSecretPSynchronizationSchedule = SynchronizationSecretVSynchronizationSchedule diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumTask.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumTask.go index de2bf07c..fe666ec3 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumTask.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumTask.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumTeam.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumTeam.go index 27bdff00..6c93cd61 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumTeam.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumTeam.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumTeams.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumTeams.go index 1b2985ea..88fc4c87 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumTeams.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumTeams.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumThreat.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumThreat.go index 28870e61..f25fac51 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumThreat.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumThreat.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumTi.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumTi.go index 58e39a2f..24bd8233 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumTi.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumTi.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumTime.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumTime.go index 3a7f5f5c..c2e3e882 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumTime.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumTime.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumTlp.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumTlp.go index 1db29f16..753ddd43 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumTlp.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumTlp.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumToken.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumToken.go index b94830fe..72f64dac 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumToken.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumToken.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumTone.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumTone.go index 869ac69a..2830e956 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumTone.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumTone.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumUnary.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumUnary.go index 6eb13f7e..03c17874 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumUnary.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumUnary.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumUpdate.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumUpdate.go index 398bb878..2918309c 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumUpdate.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumUpdate.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumUsage.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumUsage.go index 54166ad6..d3476377 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumUsage.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumUsage.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumUser.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumUser.go index 0cfb656c..8eb43d0c 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumUser.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumUser.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumUsername.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumUsername.go index 54c59d07..d52077d4 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumUsername.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumUsername.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumVPN.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumVPN.go index 4cb53f75..3f40fc1e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumVPN.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumVPN.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumVPP.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumVPP.go index 65843d8c..a605b069 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumVPP.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumVPP.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumVisibility.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumVisibility.go index b2ecd832..7d9b5d7c 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumVisibility.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumVisibility.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumWatermark.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumWatermark.go index 6f5b4b6d..f07464a4 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumWatermark.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumWatermark.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumWeb.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumWeb.go index e91598dd..7ccc7cf4 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumWeb.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumWeb.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumWebsite.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumWebsite.go index 60fb4f49..e9440373 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumWebsite.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumWebsite.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumWeek.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumWeek.go index 961c68ea..59b739ee 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumWeek.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumWeek.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumWeekly.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumWeekly.go index 201cccd0..39736711 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumWeekly.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumWeekly.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumWelcome.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumWelcome.go index e99fc7e8..3100e4e3 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumWelcome.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumWelcome.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumWiFi.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumWiFi.go index d2fd9957..a4cf925f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumWiFi.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumWiFi.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumWin32.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumWin32.go index 4ebdb5f2..287f3728 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumWin32.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumWin32.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumWindows.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumWindows.go index d95f48c5..a09beade 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumWindows.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumWindows.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumWindows10.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumWindows10.go index 82c6825c..a1baaab4 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumWindows10.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumWindows10.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumWired.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumWired.go index 847fc045..50fd9d50 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumWired.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumWired.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumWorkforce.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumWorkforce.go index 90378adf..6d2629ab 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/EnumWorkforce.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumWorkforce.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/GraphService.go b/vendor/github.com/yaegashi/msgraph.go/beta/GraphService.go index 89fdddba..17886250 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/GraphService.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/GraphService.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -53,9 +53,9 @@ func (r *GraphServiceAccessPackageAssignmentPoliciesCollectionRequest) Paging(ct } var values []AccessPackageAssignmentPolicy for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -68,6 +68,7 @@ func (r *GraphServiceAccessPackageAssignmentPoliciesCollectionRequest) Paging(ct value []AccessPackageAssignmentPolicy ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -155,9 +156,9 @@ func (r *GraphServiceAccessPackageAssignmentRequestsCollectionRequest) Paging(ct } var values []AccessPackageAssignmentRequestObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -170,6 +171,7 @@ func (r *GraphServiceAccessPackageAssignmentRequestsCollectionRequest) Paging(ct value []AccessPackageAssignmentRequestObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -257,9 +259,9 @@ func (r *GraphServiceAccessPackageAssignmentResourceRolesCollectionRequest) Pagi } var values []AccessPackageAssignmentResourceRole for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -272,6 +274,7 @@ func (r *GraphServiceAccessPackageAssignmentResourceRolesCollectionRequest) Pagi value []AccessPackageAssignmentResourceRole ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -359,9 +362,9 @@ func (r *GraphServiceAccessPackageAssignmentsCollectionRequest) Paging(ctx conte } var values []AccessPackageAssignment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -374,6 +377,7 @@ func (r *GraphServiceAccessPackageAssignmentsCollectionRequest) Paging(ctx conte value []AccessPackageAssignment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -461,9 +465,9 @@ func (r *GraphServiceAccessPackageCatalogsCollectionRequest) Paging(ctx context. } var values []AccessPackageCatalog for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -476,6 +480,7 @@ func (r *GraphServiceAccessPackageCatalogsCollectionRequest) Paging(ctx context. value []AccessPackageCatalog ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -563,9 +568,9 @@ func (r *GraphServiceAccessPackageResourceRequestsCollectionRequest) Paging(ctx } var values []AccessPackageResourceRequestObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -578,6 +583,7 @@ func (r *GraphServiceAccessPackageResourceRequestsCollectionRequest) Paging(ctx value []AccessPackageResourceRequestObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -665,9 +671,9 @@ func (r *GraphServiceAccessPackageResourceRoleScopesCollectionRequest) Paging(ct } var values []AccessPackageResourceRoleScope for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -680,6 +686,7 @@ func (r *GraphServiceAccessPackageResourceRoleScopesCollectionRequest) Paging(ct value []AccessPackageResourceRoleScope ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -767,9 +774,9 @@ func (r *GraphServiceAccessPackageResourcesCollectionRequest) Paging(ctx context } var values []AccessPackageResource for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -782,6 +789,7 @@ func (r *GraphServiceAccessPackageResourcesCollectionRequest) Paging(ctx context value []AccessPackageResource ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -869,9 +877,9 @@ func (r *GraphServiceAccessPackagesCollectionRequest) Paging(ctx context.Context } var values []AccessPackage for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -884,6 +892,7 @@ func (r *GraphServiceAccessPackagesCollectionRequest) Paging(ctx context.Context value []AccessPackage ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -971,9 +980,9 @@ func (r *GraphServiceAccessReviewDecisionsCollectionRequest) Paging(ctx context. } var values []AccessReviewDecision for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -986,6 +995,7 @@ func (r *GraphServiceAccessReviewDecisionsCollectionRequest) Paging(ctx context. value []AccessReviewDecision ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1073,9 +1083,9 @@ func (r *GraphServiceAccessReviewsCollectionRequest) Paging(ctx context.Context, } var values []AccessReview for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1088,6 +1098,7 @@ func (r *GraphServiceAccessReviewsCollectionRequest) Paging(ctx context.Context, value []AccessReview ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1175,9 +1186,9 @@ func (r *GraphServiceActivitystatisticsCollectionRequest) Paging(ctx context.Con } var values []ActivityStatistics for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1190,6 +1201,7 @@ func (r *GraphServiceActivitystatisticsCollectionRequest) Paging(ctx context.Con value []ActivityStatistics ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1277,9 +1289,9 @@ func (r *GraphServiceAdministrativeUnitsCollectionRequest) Paging(ctx context.Co } var values []AdministrativeUnit for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1292,6 +1304,7 @@ func (r *GraphServiceAdministrativeUnitsCollectionRequest) Paging(ctx context.Co value []AdministrativeUnit ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1379,9 +1392,9 @@ func (r *GraphServiceAgreementAcceptancesCollectionRequest) Paging(ctx context.C } var values []AgreementAcceptance for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1394,6 +1407,7 @@ func (r *GraphServiceAgreementAcceptancesCollectionRequest) Paging(ctx context.C value []AgreementAcceptance ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1481,9 +1495,9 @@ func (r *GraphServiceAgreementsCollectionRequest) Paging(ctx context.Context, me } var values []Agreement for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1496,6 +1510,7 @@ func (r *GraphServiceAgreementsCollectionRequest) Paging(ctx context.Context, me value []Agreement ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1583,9 +1598,9 @@ func (r *GraphServiceAllowedDataLocationsCollectionRequest) Paging(ctx context.C } var values []AllowedDataLocation for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1598,6 +1613,7 @@ func (r *GraphServiceAllowedDataLocationsCollectionRequest) Paging(ctx context.C value []AllowedDataLocation ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1685,9 +1701,9 @@ func (r *GraphServiceAnonymousIPRiskEventsCollectionRequest) Paging(ctx context. } var values []AnonymousIPRiskEvent for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1700,6 +1716,7 @@ func (r *GraphServiceAnonymousIPRiskEventsCollectionRequest) Paging(ctx context. value []AnonymousIPRiskEvent ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1787,9 +1804,9 @@ func (r *GraphServiceAppRoleAssignmentsCollectionRequest) Paging(ctx context.Con } var values []AppRoleAssignment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1802,6 +1819,7 @@ func (r *GraphServiceAppRoleAssignmentsCollectionRequest) Paging(ctx context.Con value []AppRoleAssignment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1889,9 +1907,9 @@ func (r *GraphServiceApplicationTemplatesCollectionRequest) Paging(ctx context.C } var values []ApplicationTemplate for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1904,6 +1922,7 @@ func (r *GraphServiceApplicationTemplatesCollectionRequest) Paging(ctx context.C value []ApplicationTemplate ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1991,9 +2010,9 @@ func (r *GraphServiceApplicationsCollectionRequest) Paging(ctx context.Context, } var values []Application for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2006,6 +2025,7 @@ func (r *GraphServiceApplicationsCollectionRequest) Paging(ctx context.Context, value []Application ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2093,9 +2113,9 @@ func (r *GraphServiceApprovalWorkflowProvidersCollectionRequest) Paging(ctx cont } var values []ApprovalWorkflowProvider for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2108,6 +2128,7 @@ func (r *GraphServiceApprovalWorkflowProvidersCollectionRequest) Paging(ctx cont value []ApprovalWorkflowProvider ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2195,9 +2216,9 @@ func (r *GraphServiceBookingBusinessesCollectionRequest) Paging(ctx context.Cont } var values []BookingBusiness for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2210,6 +2231,7 @@ func (r *GraphServiceBookingBusinessesCollectionRequest) Paging(ctx context.Cont value []BookingBusiness ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2297,9 +2319,9 @@ func (r *GraphServiceBookingCurrenciesCollectionRequest) Paging(ctx context.Cont } var values []BookingCurrency for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2312,6 +2334,7 @@ func (r *GraphServiceBookingCurrenciesCollectionRequest) Paging(ctx context.Cont value []BookingCurrency ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2399,9 +2422,9 @@ func (r *GraphServiceBusinessFlowTemplatesCollectionRequest) Paging(ctx context. } var values []BusinessFlowTemplate for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2414,6 +2437,7 @@ func (r *GraphServiceBusinessFlowTemplatesCollectionRequest) Paging(ctx context. value []BusinessFlowTemplate ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2501,9 +2525,9 @@ func (r *GraphServiceCertificateBasedAuthConfigurationCollectionRequest) Paging( } var values []CertificateBasedAuthConfiguration for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2516,6 +2540,7 @@ func (r *GraphServiceCertificateBasedAuthConfigurationCollectionRequest) Paging( value []CertificateBasedAuthConfiguration ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2603,9 +2628,9 @@ func (r *GraphServiceChatsCollectionRequest) Paging(ctx context.Context, method, } var values []Chat for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2618,6 +2643,7 @@ func (r *GraphServiceChatsCollectionRequest) Paging(ctx context.Context, method, value []Chat ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2705,9 +2731,9 @@ func (r *GraphServiceCommandsCollectionRequest) Paging(ctx context.Context, meth } var values []Command for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2720,6 +2746,7 @@ func (r *GraphServiceCommandsCollectionRequest) Paging(ctx context.Context, meth value []Command ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2807,9 +2834,9 @@ func (r *GraphServiceConnectionsCollectionRequest) Paging(ctx context.Context, m } var values []ExternalConnection for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2822,6 +2849,7 @@ func (r *GraphServiceConnectionsCollectionRequest) Paging(ctx context.Context, m value []ExternalConnection ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2909,9 +2937,9 @@ func (r *GraphServiceContactsCollectionRequest) Paging(ctx context.Context, meth } var values []OrgContact for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2924,6 +2952,7 @@ func (r *GraphServiceContactsCollectionRequest) Paging(ctx context.Context, meth value []OrgContact ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -3011,9 +3040,9 @@ func (r *GraphServiceContractsCollectionRequest) Paging(ctx context.Context, met } var values []Contract for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -3026,6 +3055,7 @@ func (r *GraphServiceContractsCollectionRequest) Paging(ctx context.Context, met value []Contract ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -3113,9 +3143,9 @@ func (r *GraphServiceDataPolicyOperationsCollectionRequest) Paging(ctx context.C } var values []DataPolicyOperation for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -3128,6 +3158,7 @@ func (r *GraphServiceDataPolicyOperationsCollectionRequest) Paging(ctx context.C value []DataPolicyOperation ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -3215,9 +3246,9 @@ func (r *GraphServiceDevicesCollectionRequest) Paging(ctx context.Context, metho } var values []Device for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -3230,6 +3261,7 @@ func (r *GraphServiceDevicesCollectionRequest) Paging(ctx context.Context, metho value []Device ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -3317,9 +3349,9 @@ func (r *GraphServiceDirectoriesCollectionRequest) Paging(ctx context.Context, m } var values []DirectoryDefinition for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -3332,6 +3364,7 @@ func (r *GraphServiceDirectoriesCollectionRequest) Paging(ctx context.Context, m value []DirectoryDefinition ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -3419,9 +3452,9 @@ func (r *GraphServiceDirectoryObjectsCollectionRequest) Paging(ctx context.Conte } var values []DirectoryObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -3434,6 +3467,7 @@ func (r *GraphServiceDirectoryObjectsCollectionRequest) Paging(ctx context.Conte value []DirectoryObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -3521,9 +3555,9 @@ func (r *GraphServiceDirectoryRoleTemplatesCollectionRequest) Paging(ctx context } var values []DirectoryRoleTemplate for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -3536,6 +3570,7 @@ func (r *GraphServiceDirectoryRoleTemplatesCollectionRequest) Paging(ctx context value []DirectoryRoleTemplate ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -3623,9 +3658,9 @@ func (r *GraphServiceDirectoryRolesCollectionRequest) Paging(ctx context.Context } var values []DirectoryRole for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -3638,6 +3673,7 @@ func (r *GraphServiceDirectoryRolesCollectionRequest) Paging(ctx context.Context value []DirectoryRole ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -3725,9 +3761,9 @@ func (r *GraphServiceDirectorySettingTemplatesCollectionRequest) Paging(ctx cont } var values []DirectorySettingTemplate for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -3740,6 +3776,7 @@ func (r *GraphServiceDirectorySettingTemplatesCollectionRequest) Paging(ctx cont value []DirectorySettingTemplate ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -3827,9 +3864,9 @@ func (r *GraphServiceDomainDNSRecordsCollectionRequest) Paging(ctx context.Conte } var values []DomainDNSRecord for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -3842,6 +3879,7 @@ func (r *GraphServiceDomainDNSRecordsCollectionRequest) Paging(ctx context.Conte value []DomainDNSRecord ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -3929,9 +3967,9 @@ func (r *GraphServiceDomainsCollectionRequest) Paging(ctx context.Context, metho } var values []Domain for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -3944,6 +3982,7 @@ func (r *GraphServiceDomainsCollectionRequest) Paging(ctx context.Context, metho value []Domain ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -4031,9 +4070,9 @@ func (r *GraphServiceDrivesCollectionRequest) Paging(ctx context.Context, method } var values []Drive for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -4046,6 +4085,7 @@ func (r *GraphServiceDrivesCollectionRequest) Paging(ctx context.Context, method value []Drive ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -4133,9 +4173,9 @@ func (r *GraphServiceFilterOperatorsCollectionRequest) Paging(ctx context.Contex } var values []FilterOperatorSchema for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -4148,6 +4188,7 @@ func (r *GraphServiceFilterOperatorsCollectionRequest) Paging(ctx context.Contex value []FilterOperatorSchema ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -4235,9 +4276,9 @@ func (r *GraphServiceFunctionsCollectionRequest) Paging(ctx context.Context, met } var values []AttributeMappingFunctionSchema for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -4250,6 +4291,7 @@ func (r *GraphServiceFunctionsCollectionRequest) Paging(ctx context.Context, met value []AttributeMappingFunctionSchema ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -4337,9 +4379,9 @@ func (r *GraphServiceGovernanceResourcesCollectionRequest) Paging(ctx context.Co } var values []GovernanceResource for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -4352,6 +4394,7 @@ func (r *GraphServiceGovernanceResourcesCollectionRequest) Paging(ctx context.Co value []GovernanceResource ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -4439,9 +4482,9 @@ func (r *GraphServiceGovernanceRoleAssignmentRequestsCollectionRequest) Paging(c } var values []GovernanceRoleAssignmentRequestObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -4454,6 +4497,7 @@ func (r *GraphServiceGovernanceRoleAssignmentRequestsCollectionRequest) Paging(c value []GovernanceRoleAssignmentRequestObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -4541,9 +4585,9 @@ func (r *GraphServiceGovernanceRoleAssignmentsCollectionRequest) Paging(ctx cont } var values []GovernanceRoleAssignment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -4556,6 +4600,7 @@ func (r *GraphServiceGovernanceRoleAssignmentsCollectionRequest) Paging(ctx cont value []GovernanceRoleAssignment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -4643,9 +4688,9 @@ func (r *GraphServiceGovernanceRoleDefinitionsCollectionRequest) Paging(ctx cont } var values []GovernanceRoleDefinition for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -4658,6 +4703,7 @@ func (r *GraphServiceGovernanceRoleDefinitionsCollectionRequest) Paging(ctx cont value []GovernanceRoleDefinition ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -4745,9 +4791,9 @@ func (r *GraphServiceGovernanceRoleSettingsCollectionRequest) Paging(ctx context } var values []GovernanceRoleSetting for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -4760,6 +4806,7 @@ func (r *GraphServiceGovernanceRoleSettingsCollectionRequest) Paging(ctx context value []GovernanceRoleSetting ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -4847,9 +4894,9 @@ func (r *GraphServiceGovernanceSubjectsCollectionRequest) Paging(ctx context.Con } var values []GovernanceSubject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -4862,6 +4909,7 @@ func (r *GraphServiceGovernanceSubjectsCollectionRequest) Paging(ctx context.Con value []GovernanceSubject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -4949,9 +4997,9 @@ func (r *GraphServiceGroupLifecyclePoliciesCollectionRequest) Paging(ctx context } var values []GroupLifecyclePolicy for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -4964,6 +5012,7 @@ func (r *GraphServiceGroupLifecyclePoliciesCollectionRequest) Paging(ctx context value []GroupLifecyclePolicy ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -5051,9 +5100,9 @@ func (r *GraphServiceGroupsCollectionRequest) Paging(ctx context.Context, method } var values []Group for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -5066,6 +5115,7 @@ func (r *GraphServiceGroupsCollectionRequest) Paging(ctx context.Context, method value []Group ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -5153,9 +5203,9 @@ func (r *GraphServiceIdentityProvidersCollectionRequest) Paging(ctx context.Cont } var values []IdentityProvider for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -5168,6 +5218,7 @@ func (r *GraphServiceIdentityProvidersCollectionRequest) Paging(ctx context.Cont value []IdentityProvider ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -5255,9 +5306,9 @@ func (r *GraphServiceIdentityRiskEventsCollectionRequest) Paging(ctx context.Con } var values []IdentityRiskEvent for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -5270,6 +5321,7 @@ func (r *GraphServiceIdentityRiskEventsCollectionRequest) Paging(ctx context.Con value []IdentityRiskEvent ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -5357,9 +5409,9 @@ func (r *GraphServiceImpossibleTravelRiskEventsCollectionRequest) Paging(ctx con } var values []ImpossibleTravelRiskEvent for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -5372,6 +5424,7 @@ func (r *GraphServiceImpossibleTravelRiskEventsCollectionRequest) Paging(ctx con value []ImpossibleTravelRiskEvent ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -5459,9 +5512,9 @@ func (r *GraphServiceInvitationsCollectionRequest) Paging(ctx context.Context, m } var values []Invitation for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -5474,6 +5527,7 @@ func (r *GraphServiceInvitationsCollectionRequest) Paging(ctx context.Context, m value []Invitation ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -5561,9 +5615,9 @@ func (r *GraphServiceLeakedCredentialsRiskEventsCollectionRequest) Paging(ctx co } var values []LeakedCredentialsRiskEvent for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -5576,6 +5630,7 @@ func (r *GraphServiceLeakedCredentialsRiskEventsCollectionRequest) Paging(ctx co value []LeakedCredentialsRiskEvent ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -5663,9 +5718,9 @@ func (r *GraphServiceMalwareRiskEventsCollectionRequest) Paging(ctx context.Cont } var values []MalwareRiskEvent for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -5678,6 +5733,7 @@ func (r *GraphServiceMalwareRiskEventsCollectionRequest) Paging(ctx context.Cont value []MalwareRiskEvent ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -5723,35 +5779,35 @@ func (r *GraphServiceMalwareRiskEventsCollectionRequest) Add(ctx context.Context return } -// Oauth2PermissionGrants returns request builder for OAuth2PermissionGrant collection -func (b *GraphServiceRequestBuilder) Oauth2PermissionGrants() *GraphServiceOauth2PermissionGrantsCollectionRequestBuilder { - bb := &GraphServiceOauth2PermissionGrantsCollectionRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder} +// OAuth2PermissionGrants returns request builder for OAuth2PermissionGrant collection +func (b *GraphServiceRequestBuilder) OAuth2PermissionGrants() *GraphServiceOAuth2PermissionGrantsCollectionRequestBuilder { + bb := &GraphServiceOAuth2PermissionGrantsCollectionRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder} bb.baseURL += "/oauth2PermissionGrants" return bb } -// GraphServiceOauth2PermissionGrantsCollectionRequestBuilder is request builder for OAuth2PermissionGrant collection -type GraphServiceOauth2PermissionGrantsCollectionRequestBuilder struct{ BaseRequestBuilder } +// GraphServiceOAuth2PermissionGrantsCollectionRequestBuilder is request builder for OAuth2PermissionGrant collection +type GraphServiceOAuth2PermissionGrantsCollectionRequestBuilder struct{ BaseRequestBuilder } // Request returns request for OAuth2PermissionGrant collection -func (b *GraphServiceOauth2PermissionGrantsCollectionRequestBuilder) Request() *GraphServiceOauth2PermissionGrantsCollectionRequest { - return &GraphServiceOauth2PermissionGrantsCollectionRequest{ +func (b *GraphServiceOAuth2PermissionGrantsCollectionRequestBuilder) Request() *GraphServiceOAuth2PermissionGrantsCollectionRequest { + return &GraphServiceOAuth2PermissionGrantsCollectionRequest{ BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client}, } } // ID returns request builder for OAuth2PermissionGrant item -func (b *GraphServiceOauth2PermissionGrantsCollectionRequestBuilder) ID(id string) *OAuth2PermissionGrantRequestBuilder { +func (b *GraphServiceOAuth2PermissionGrantsCollectionRequestBuilder) ID(id string) *OAuth2PermissionGrantRequestBuilder { bb := &OAuth2PermissionGrantRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder} bb.baseURL += "/" + id return bb } -// GraphServiceOauth2PermissionGrantsCollectionRequest is request for OAuth2PermissionGrant collection -type GraphServiceOauth2PermissionGrantsCollectionRequest struct{ BaseRequest } +// GraphServiceOAuth2PermissionGrantsCollectionRequest is request for OAuth2PermissionGrant collection +type GraphServiceOAuth2PermissionGrantsCollectionRequest struct{ BaseRequest } // Paging perfoms paging operation for OAuth2PermissionGrant collection -func (r *GraphServiceOauth2PermissionGrantsCollectionRequest) Paging(ctx context.Context, method, path string, obj interface{}, n int) ([]OAuth2PermissionGrant, error) { +func (r *GraphServiceOAuth2PermissionGrantsCollectionRequest) Paging(ctx context.Context, method, path string, obj interface{}, n int) ([]OAuth2PermissionGrant, error) { req, err := r.NewJSONRequest(method, path, obj) if err != nil { return nil, err @@ -5765,9 +5821,9 @@ func (r *GraphServiceOauth2PermissionGrantsCollectionRequest) Paging(ctx context } var values []OAuth2PermissionGrant for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -5780,6 +5836,7 @@ func (r *GraphServiceOauth2PermissionGrantsCollectionRequest) Paging(ctx context value []OAuth2PermissionGrant ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -5806,7 +5863,7 @@ func (r *GraphServiceOauth2PermissionGrantsCollectionRequest) Paging(ctx context } // GetN performs GET request for OAuth2PermissionGrant collection, max N pages -func (r *GraphServiceOauth2PermissionGrantsCollectionRequest) GetN(ctx context.Context, n int) ([]OAuth2PermissionGrant, error) { +func (r *GraphServiceOAuth2PermissionGrantsCollectionRequest) GetN(ctx context.Context, n int) ([]OAuth2PermissionGrant, error) { var query string if r.query != nil { query = "?" + r.query.Encode() @@ -5815,12 +5872,12 @@ func (r *GraphServiceOauth2PermissionGrantsCollectionRequest) GetN(ctx context.C } // Get performs GET request for OAuth2PermissionGrant collection -func (r *GraphServiceOauth2PermissionGrantsCollectionRequest) Get(ctx context.Context) ([]OAuth2PermissionGrant, error) { +func (r *GraphServiceOAuth2PermissionGrantsCollectionRequest) Get(ctx context.Context) ([]OAuth2PermissionGrant, error) { return r.GetN(ctx, 0) } // Add performs POST request for OAuth2PermissionGrant collection -func (r *GraphServiceOauth2PermissionGrantsCollectionRequest) Add(ctx context.Context, reqObj *OAuth2PermissionGrant) (resObj *OAuth2PermissionGrant, err error) { +func (r *GraphServiceOAuth2PermissionGrantsCollectionRequest) Add(ctx context.Context, reqObj *OAuth2PermissionGrant) (resObj *OAuth2PermissionGrant, err error) { err = r.JSONRequest(ctx, "POST", "", reqObj, &resObj) return } @@ -5867,9 +5924,9 @@ func (r *GraphServiceOnPremisesPublishingProfilesCollectionRequest) Paging(ctx c } var values []OnPremisesPublishingProfile for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -5882,6 +5939,7 @@ func (r *GraphServiceOnPremisesPublishingProfilesCollectionRequest) Paging(ctx c value []OnPremisesPublishingProfile ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -5969,9 +6027,9 @@ func (r *GraphServiceOrganizationCollectionRequest) Paging(ctx context.Context, } var values []Organization for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -5984,6 +6042,7 @@ func (r *GraphServiceOrganizationCollectionRequest) Paging(ctx context.Context, value []Organization ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -6071,9 +6130,9 @@ func (r *GraphServicePayloadResponseCollectionRequest) Paging(ctx context.Contex } var values []PayloadResponse for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -6086,6 +6145,7 @@ func (r *GraphServicePayloadResponseCollectionRequest) Paging(ctx context.Contex value []PayloadResponse ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -6173,9 +6233,9 @@ func (r *GraphServicePermissionGrantsCollectionRequest) Paging(ctx context.Conte } var values []ResourceSpecificPermissionGrant for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -6188,6 +6248,7 @@ func (r *GraphServicePermissionGrantsCollectionRequest) Paging(ctx context.Conte value []ResourceSpecificPermissionGrant ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -6275,9 +6336,9 @@ func (r *GraphServicePlacesCollectionRequest) Paging(ctx context.Context, method } var values []Place for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -6290,6 +6351,7 @@ func (r *GraphServicePlacesCollectionRequest) Paging(ctx context.Context, method value []Place ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -6377,9 +6439,9 @@ func (r *GraphServicePoliciesCollectionRequest) Paging(ctx context.Context, meth } var values []Policy for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -6392,6 +6454,7 @@ func (r *GraphServicePoliciesCollectionRequest) Paging(ctx context.Context, meth value []Policy ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -6479,9 +6542,9 @@ func (r *GraphServicePrivilegedAccessCollectionRequest) Paging(ctx context.Conte } var values []PrivilegedAccess for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -6494,6 +6557,7 @@ func (r *GraphServicePrivilegedAccessCollectionRequest) Paging(ctx context.Conte value []PrivilegedAccess ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -6581,9 +6645,9 @@ func (r *GraphServicePrivilegedApprovalCollectionRequest) Paging(ctx context.Con } var values []PrivilegedApproval for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -6596,6 +6660,7 @@ func (r *GraphServicePrivilegedApprovalCollectionRequest) Paging(ctx context.Con value []PrivilegedApproval ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -6683,9 +6748,9 @@ func (r *GraphServicePrivilegedOperationEventsCollectionRequest) Paging(ctx cont } var values []PrivilegedOperationEvent for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -6698,6 +6763,7 @@ func (r *GraphServicePrivilegedOperationEventsCollectionRequest) Paging(ctx cont value []PrivilegedOperationEvent ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -6785,9 +6851,9 @@ func (r *GraphServicePrivilegedRoleAssignmentRequestsCollectionRequest) Paging(c } var values []PrivilegedRoleAssignmentRequestObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -6800,6 +6866,7 @@ func (r *GraphServicePrivilegedRoleAssignmentRequestsCollectionRequest) Paging(c value []PrivilegedRoleAssignmentRequestObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -6887,9 +6954,9 @@ func (r *GraphServicePrivilegedRoleAssignmentsCollectionRequest) Paging(ctx cont } var values []PrivilegedRoleAssignment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -6902,6 +6969,7 @@ func (r *GraphServicePrivilegedRoleAssignmentsCollectionRequest) Paging(ctx cont value []PrivilegedRoleAssignment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -6989,9 +7057,9 @@ func (r *GraphServicePrivilegedRolesCollectionRequest) Paging(ctx context.Contex } var values []PrivilegedRole for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -7004,6 +7072,7 @@ func (r *GraphServicePrivilegedRolesCollectionRequest) Paging(ctx context.Contex value []PrivilegedRole ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -7091,9 +7160,9 @@ func (r *GraphServicePrivilegedSignupStatusCollectionRequest) Paging(ctx context } var values []PrivilegedSignupStatus for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -7106,6 +7175,7 @@ func (r *GraphServicePrivilegedSignupStatusCollectionRequest) Paging(ctx context value []PrivilegedSignupStatus ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -7193,9 +7263,9 @@ func (r *GraphServiceProgramControlTypesCollectionRequest) Paging(ctx context.Co } var values []ProgramControlType for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -7208,6 +7278,7 @@ func (r *GraphServiceProgramControlTypesCollectionRequest) Paging(ctx context.Co value []ProgramControlType ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -7295,9 +7366,9 @@ func (r *GraphServiceProgramControlsCollectionRequest) Paging(ctx context.Contex } var values []ProgramControl for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -7310,6 +7381,7 @@ func (r *GraphServiceProgramControlsCollectionRequest) Paging(ctx context.Contex value []ProgramControl ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -7397,9 +7469,9 @@ func (r *GraphServiceProgramsCollectionRequest) Paging(ctx context.Context, meth } var values []Program for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -7412,6 +7484,7 @@ func (r *GraphServiceProgramsCollectionRequest) Paging(ctx context.Context, meth value []Program ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -7499,9 +7572,9 @@ func (r *GraphServiceRiskDetectionsCollectionRequest) Paging(ctx context.Context } var values []RiskDetection for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -7514,6 +7587,7 @@ func (r *GraphServiceRiskDetectionsCollectionRequest) Paging(ctx context.Context value []RiskDetection ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -7601,9 +7675,9 @@ func (r *GraphServiceRiskyUsersCollectionRequest) Paging(ctx context.Context, me } var values []RiskyUser for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -7616,6 +7690,7 @@ func (r *GraphServiceRiskyUsersCollectionRequest) Paging(ctx context.Context, me value []RiskyUser ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -7703,9 +7778,9 @@ func (r *GraphServiceSchemaExtensionsCollectionRequest) Paging(ctx context.Conte } var values []SchemaExtension for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -7718,6 +7793,7 @@ func (r *GraphServiceSchemaExtensionsCollectionRequest) Paging(ctx context.Conte value []SchemaExtension ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -7805,9 +7881,9 @@ func (r *GraphServiceScopedRoleMembershipsCollectionRequest) Paging(ctx context. } var values []ScopedRoleMembership for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -7820,6 +7896,7 @@ func (r *GraphServiceScopedRoleMembershipsCollectionRequest) Paging(ctx context. value []ScopedRoleMembership ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -7907,9 +7984,9 @@ func (r *GraphServiceServicePrincipalsCollectionRequest) Paging(ctx context.Cont } var values []ServicePrincipal for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -7922,6 +7999,7 @@ func (r *GraphServiceServicePrincipalsCollectionRequest) Paging(ctx context.Cont value []ServicePrincipal ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -8009,9 +8087,9 @@ func (r *GraphServiceSettingsCollectionRequest) Paging(ctx context.Context, meth } var values []DirectorySetting for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -8024,6 +8102,7 @@ func (r *GraphServiceSettingsCollectionRequest) Paging(ctx context.Context, meth value []DirectorySetting ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -8111,9 +8190,9 @@ func (r *GraphServiceSharesCollectionRequest) Paging(ctx context.Context, method } var values []SharedDriveItem for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -8126,6 +8205,7 @@ func (r *GraphServiceSharesCollectionRequest) Paging(ctx context.Context, method value []SharedDriveItem ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -8213,9 +8293,9 @@ func (r *GraphServiceSitesCollectionRequest) Paging(ctx context.Context, method, } var values []Site for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -8228,6 +8308,7 @@ func (r *GraphServiceSitesCollectionRequest) Paging(ctx context.Context, method, value []Site ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -8315,9 +8396,9 @@ func (r *GraphServiceSubscribedSKUsCollectionRequest) Paging(ctx context.Context } var values []SubscribedSKU for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -8330,6 +8411,7 @@ func (r *GraphServiceSubscribedSKUsCollectionRequest) Paging(ctx context.Context value []SubscribedSKU ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -8417,9 +8499,9 @@ func (r *GraphServiceSubscriptionsCollectionRequest) Paging(ctx context.Context, } var values []Subscription for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -8432,6 +8514,7 @@ func (r *GraphServiceSubscriptionsCollectionRequest) Paging(ctx context.Context, value []Subscription ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -8519,9 +8602,9 @@ func (r *GraphServiceSuspiciousIPRiskEventsCollectionRequest) Paging(ctx context } var values []SuspiciousIPRiskEvent for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -8534,6 +8617,7 @@ func (r *GraphServiceSuspiciousIPRiskEventsCollectionRequest) Paging(ctx context value []SuspiciousIPRiskEvent ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -8621,9 +8705,9 @@ func (r *GraphServiceTeamsCollectionRequest) Paging(ctx context.Context, method, } var values []Team for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -8636,6 +8720,7 @@ func (r *GraphServiceTeamsCollectionRequest) Paging(ctx context.Context, method, value []Team ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -8723,9 +8808,9 @@ func (r *GraphServiceTeamsTemplatesCollectionRequest) Paging(ctx context.Context } var values []TeamsTemplate for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -8738,6 +8823,7 @@ func (r *GraphServiceTeamsTemplatesCollectionRequest) Paging(ctx context.Context value []TeamsTemplate ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -8825,9 +8911,9 @@ func (r *GraphServiceUnfamiliarLocationRiskEventsCollectionRequest) Paging(ctx c } var values []UnfamiliarLocationRiskEvent for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -8840,6 +8926,7 @@ func (r *GraphServiceUnfamiliarLocationRiskEventsCollectionRequest) Paging(ctx c value []UnfamiliarLocationRiskEvent ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -8927,9 +9014,9 @@ func (r *GraphServiceUsersCollectionRequest) Paging(ctx context.Context, method, } var values []User for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -8942,6 +9029,7 @@ func (r *GraphServiceUsersCollectionRequest) Paging(ctx context.Context, method, value []User ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -9029,9 +9117,9 @@ func (r *GraphServiceWorkbooksCollectionRequest) Paging(ctx context.Context, met } var values []DriveItem for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -9044,6 +9132,7 @@ func (r *GraphServiceWorkbooksCollectionRequest) Paging(ctx context.Context, met value []DriveItem ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelACL.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelACL.go index 5b8d85d4..ed3e1f2f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelACL.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelACL.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAPI.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAPI.go index 6102195e..438865ae 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAPI.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAPI.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -14,8 +14,8 @@ type APIApplication struct { PreAuthorizedApplications []PreAuthorizedApplication `json:"preAuthorizedApplications,omitempty"` // RequestedAccessTokenVersion undocumented RequestedAccessTokenVersion *int `json:"requestedAccessTokenVersion,omitempty"` - // Oauth2PermissionScopes undocumented - Oauth2PermissionScopes []PermissionScope `json:"oauth2PermissionScopes,omitempty"` + // OAuth2PermissionScopes undocumented + OAuth2PermissionScopes []PermissionScope `json:"oauth2PermissionScopes,omitempty"` } // APIServicePrincipal undocumented diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAad.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAad.go index 0ea6c88e..27667cd2 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAad.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAad.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAccess.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAccess.go index e6b45726..e85b4cb5 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAccess.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAccess.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAccount.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAccount.go index a4fdac03..50808945 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAccount.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAccount.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelActive.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelActive.go index d0358053..1f043f31 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelActive.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelActive.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelActivity.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelActivity.go index 230f4514..8fed3b11 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelActivity.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelActivity.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAdd.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAdd.go index 5143cd0d..7449bb5e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAdd.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAdd.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAdmin.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAdmin.go index 10e968fa..b6c29658 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAdmin.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAdmin.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAdministrative.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAdministrative.go index 8e9d3ec2..18f084d5 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAdministrative.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAdministrative.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAdvanced.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAdvanced.go index 23e14596..e5e4a969 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAdvanced.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAdvanced.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAged.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAged.go index 29575d77..da974ce4 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAged.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAged.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAgreement.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAgreement.go index 19b094ab..53345501 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAgreement.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAgreement.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAir.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAir.go index f8f9b2eb..78b9020d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAir.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAir.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAlbum.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAlbum.go index fb0f47b3..c3a6953a 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAlbum.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAlbum.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAlert.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAlert.go index c7ceb9d2..2d997018 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAlert.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAlert.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAll.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAll.go index 0252a663..32391f9c 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAll.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAll.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAllowed.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAllowed.go index aa654424..23f60c0d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAllowed.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAllowed.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAlternative.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAlternative.go index 19ce9531..a8a4f438 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAlternative.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAlternative.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAndroid.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAndroid.go index 65a5086b..ceb188c2 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAndroid.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAndroid.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAnonymous.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAnonymous.go index f79ef65d..7c59e393 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAnonymous.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAnonymous.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelApp.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelApp.go index affb4575..de76b846 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelApp.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelApp.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelApple.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelApple.go index cfec8a7c..9e27720c 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelApple.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelApple.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelApplication.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelApplication.go index 5e90bcbc..75ad9255 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelApplication.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelApplication.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelApplied.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelApplied.go index 130f3072..26a9267f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelApplied.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelApplied.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelApply.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelApply.go index 8db1902a..e9ac917d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelApply.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelApply.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelApproval.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelApproval.go index 190198d2..a56848af 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelApproval.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelApproval.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAssigned.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAssigned.go index 1fc02328..7691a547 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAssigned.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAssigned.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAttachment.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAttachment.go index b1d19356..6cc62b0f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAttachment.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAttachment.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAttendee.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAttendee.go index 2d09290a..4ae91064 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAttendee.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAttendee.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAttribute.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAttribute.go index 6bc9aa27..432d9417 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAttribute.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAttribute.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAudio.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAudio.go index d77d9e85..6b7358e5 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAudio.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAudio.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAudit.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAudit.go index e65ab1d6..1447a4f5 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAudit.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAudit.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAuthentication.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAuthentication.go index 1f0041de..a3103dac 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAuthentication.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAuthentication.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAuto.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAuto.go index 7cd007fe..01f8693f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAuto.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAuto.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAutomatic.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAutomatic.go index 89cf4ea1..33eb6086 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAutomatic.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAutomatic.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAverage.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAverage.go index d3a11f1f..bdfa686d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAverage.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAverage.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAzure.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAzure.go index 7bdcfaf5..e508f0a2 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelAzure.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelAzure.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelBase.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelBase.go index 81464b5d..74dc2194 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelBase.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelBase.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelBinary.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelBinary.go index 114efb61..95841c92 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelBinary.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelBinary.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelBit.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelBit.go index 1388d0a7..8020800d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelBit.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelBit.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelBlock.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelBlock.go index 63265cfa..7603f10a 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelBlock.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelBlock.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelBooking.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelBooking.go index 20c6d777..b9e759c2 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelBooking.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelBooking.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelBoolean.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelBoolean.go index 0491e7b5..6e4011f3 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelBoolean.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelBoolean.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelBulk.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelBulk.go index 6fd6c05a..a657afdf 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelBulk.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelBulk.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelBundle.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelBundle.go index beb2281e..9bfe2f41 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelBundle.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelBundle.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelBusiness.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelBusiness.go index 7e0dddf0..618d4692 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelBusiness.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelBusiness.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelCalculated.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelCalculated.go index 2447df41..c71bef3d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelCalculated.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelCalculated.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelCalendar.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelCalendar.go index 672036fe..4fdfc1e5 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelCalendar.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelCalendar.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelCall.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelCall.go index 0430d408..fdc28efc 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelCall.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelCall.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelCancel.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelCancel.go index a61dc475..51e7e605 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelCancel.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelCancel.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelCart.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelCart.go index a719a6a3..3e411286 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelCart.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelCart.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelCertificate.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelCertificate.go index 29697ce2..b41ac968 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelCertificate.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelCertificate.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelCertification.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelCertification.go index 35d8e177..c7cd5a6d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelCertification.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelCertification.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelChange.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelChange.go index 15532f2b..ecbddc59 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelChange.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelChange.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelChannel.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelChannel.go index 033e5907..a3a372cd 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelChannel.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelChannel.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelChat.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelChat.go index 77da3278..f0b4c5cd 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelChat.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelChat.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelChoice.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelChoice.go index 58bbc919..63615038 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelChoice.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelChoice.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelCircular.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelCircular.go index 85fa9195..070328dc 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelCircular.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelCircular.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelClassifcation.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelClassifcation.go index cb76c084..e4fc1c14 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelClassifcation.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelClassifcation.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelClassification.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelClassification.go index e437a5b4..46f7598c 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelClassification.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelClassification.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelCloud.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelCloud.go index ab33298b..4ca28f30 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelCloud.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelCloud.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelColumn.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelColumn.go index 34c73677..58dea182 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelColumn.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelColumn.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelCommand.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelCommand.go index a4d6e887..72878c04 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelCommand.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelCommand.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelComment.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelComment.go index 2b7daaef..0443e7b4 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelComment.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelComment.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelComms.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelComms.go index 74334b77..cf62b878 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelComms.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelComms.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelCompany.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelCompany.go index 7d792dd8..3e599b45 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelCompany.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelCompany.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelComplex.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelComplex.go index 032ff849..1cc6bc9d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelComplex.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelComplex.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelCompliance.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelCompliance.go index ca88c6f6..831e7859 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelCompliance.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelCompliance.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelConditional.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelConditional.go index 13a53737..365307f2 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelConditional.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelConditional.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelConfiguration.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelConfiguration.go index 39d59b05..33ea6274 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelConfiguration.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelConfiguration.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelConnection.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelConnection.go index a8d5e3b1..c6316e32 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelConnection.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelConnection.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelContact.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelContact.go index 72bdbcf9..e6c101ec 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelContact.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelContact.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelContent.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelContent.go index 50b13c25..36a9f3e3 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelContent.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelContent.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelContract.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelContract.go index 3e9ab95c..7b647bd7 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelContract.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelContract.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelControl.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelControl.go index 5153f2eb..4d78f5c0 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelControl.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelControl.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelConversation.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelConversation.go index 866aba53..270363e8 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelConversation.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelConversation.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelConvert.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelConvert.go index ff076bbb..98e60f54 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelConvert.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelConvert.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelCopy.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelCopy.go index 368e21f9..c1dad27b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelCopy.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelCopy.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelCountry.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelCountry.go index bffb694b..33204928 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelCountry.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelCountry.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelCreate.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelCreate.go index 8d598713..6832a4c9 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelCreate.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelCreate.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelCredential.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelCredential.go index 7bb1fc0a..33a6e15c 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelCredential.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelCredential.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelCurrency.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelCurrency.go index 3157e8e3..0d807a2e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelCurrency.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelCurrency.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelCurrent.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelCurrent.go index 03afed08..41ea74c1 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelCurrent.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelCurrent.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelCustom.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelCustom.go index 33d0fa72..ea285b22 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelCustom.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelCustom.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelCustomer.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelCustomer.go index b9e435fe..91f0863f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelCustomer.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelCustomer.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelDaily.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelDaily.go index 22d5c90b..829084d0 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelDaily.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelDaily.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelData.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelData.go index bd1f5ca4..86ba1bbb 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelData.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelData.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelDate.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelDate.go index 5845f4fe..c616bb4e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelDate.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelDate.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelDaylight.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelDaylight.go index 48cc72c9..8712b304 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelDaylight.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelDaylight.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelDefault.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelDefault.go index 686ddfe1..c3b12c28 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelDefault.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelDefault.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelDefender.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelDefender.go index 92a09305..4347cf7f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelDefender.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelDefender.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelDelegated.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelDelegated.go index 6409dc8e..70c4d60e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelDelegated.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelDelegated.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelDelete.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelDelete.go index d93fd856..5a9efce6 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelDelete.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelDelete.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelDeleted.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelDeleted.go index 6e58e673..fb86bc4e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelDeleted.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelDeleted.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelDelivery.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelDelivery.go index aabdf0c3..e164b754 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelDelivery.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelDelivery.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelDep.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelDep.go index 1e884831..871b4088 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelDep.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelDep.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelDetails.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelDetails.go index b8dea67f..a57c4924 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelDetails.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelDetails.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelDetected.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelDetected.go index c0e77e5d..bf967bb5 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelDetected.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelDetected.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelDevice.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelDevice.go index 7c892460..777ec040 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelDevice.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelDevice.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelDiagnostic.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelDiagnostic.go index a557c396..a9c22968 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelDiagnostic.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelDiagnostic.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelDimension.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelDimension.go index ce8156ee..fa25d0c5 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelDimension.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelDimension.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelDirectory.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelDirectory.go index a60db606..edbd9535 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelDirectory.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelDirectory.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelDiscovered.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelDiscovered.go index 04068845..80537d42 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelDiscovered.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelDiscovered.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelDlp.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelDlp.go index 3c068e36..659af314 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelDlp.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelDlp.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelDocument.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelDocument.go index 9b886b88..99d3ead6 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelDocument.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelDocument.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelDomain.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelDomain.go index a88b7ad2..be041b29 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelDomain.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelDomain.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelDowngrade.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelDowngrade.go index a93ff832..319a4391 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelDowngrade.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelDowngrade.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelDrive.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelDrive.go index 835477cc..220c9560 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelDrive.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelDrive.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelE.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelE.go index b3f66595..44eddfb7 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelE.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelE.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelEas.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelEas.go index 5631823f..d84b9c32 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelEas.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelEas.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelEdge.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelEdge.go index 46eb2e98..d8c1fafe 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelEdge.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelEdge.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelEdit.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelEdit.go index e9a7203e..eab075f1 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelEdit.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelEdit.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelEdition.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelEdition.go index 11c89adb..4613d4ec 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelEdition.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelEdition.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelEducation.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelEducation.go index 6a89ecd7..9584ce13 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelEducation.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelEducation.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelEducational.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelEducational.go index 3d06bd9f..0ed00701 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelEducational.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelEducational.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelEmail.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelEmail.go index e577b945..a8ab1604 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelEmail.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelEmail.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelEmbedded.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelEmbedded.go index 8eff9613..5b744a98 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelEmbedded.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelEmbedded.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelEmployee.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelEmployee.go index fe3d7924..1b3f0db0 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelEmployee.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelEmployee.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelEncrypt.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelEncrypt.go index 95f50751..8d55c908 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelEncrypt.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelEncrypt.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelEncryption.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelEncryption.go index 64c7282a..febd23ca 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelEncryption.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelEncryption.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelEndpoint.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelEndpoint.go index 91b91c20..8a69f318 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelEndpoint.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelEndpoint.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelEnrollment.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelEnrollment.go index af7008bd..95cb5336 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelEnrollment.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelEnrollment.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelEnterprise.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelEnterprise.go index e4c7f6a6..259806c6 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelEnterprise.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelEnterprise.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelEntitlement.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelEntitlement.go index 066ca91d..a5ab80c5 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelEntitlement.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelEntitlement.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelEntity.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelEntity.go index 97d76f19..4fca3efc 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelEntity.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelEntity.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelError.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelError.go index bcf9968e..482f2048 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelError.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelError.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelEvaluate.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelEvaluate.go index 70cfbac6..7cffca08 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelEvaluate.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelEvaluate.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelEvent.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelEvent.go index 2077f580..57c4bb87 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelEvent.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelEvent.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelExact.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelExact.go index fc353ceb..dc2d8840 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelExact.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelExact.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelExcluded.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelExcluded.go index 2d4158b4..9d123e87 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelExcluded.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelExcluded.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelExclusion.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelExclusion.go index 4df756fa..de73fda5 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelExclusion.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelExclusion.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelExpression.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelExpression.go index c5582be5..c01870e2 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelExpression.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelExpression.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelExtended.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelExtended.go index 390f5497..2af8b83c 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelExtended.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelExtended.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelExtension.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelExtension.go index ce26c608..7c23fe79 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelExtension.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelExtension.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelExternal.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelExternal.go index a0957a76..bbeb3d4d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelExternal.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelExternal.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelFeature.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelFeature.go index 1caa4526..cae05da0 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelFeature.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelFeature.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelField.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelField.go index 23d4cfd1..e321136f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelField.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelField.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelFile.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelFile.go index 6bba529a..eefdd146 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelFile.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelFile.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelFilter.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelFilter.go index 98333c3a..dd7cb290 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelFilter.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelFilter.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelFinancials.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelFinancials.go index fcae9cab..f156fe1b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelFinancials.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelFinancials.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelFlex.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelFlex.go index d5cd338b..998f522b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelFlex.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelFlex.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelFocus.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelFocus.go index 3d9ebf27..fc199334 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelFocus.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelFocus.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelFolder.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelFolder.go index 87dfbd94..c9f6498f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelFolder.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelFolder.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelFollowup.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelFollowup.go index 933e0fc7..e4a71946 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelFollowup.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelFollowup.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelFree.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelFree.go index d8a2e464..19ebfb5c 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelFree.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelFree.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelGeneral.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelGeneral.go index 33938019..9fb3fe5e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelGeneral.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelGeneral.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelGeneric.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelGeneric.go index 8ecf7672..c9140053 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelGeneric.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelGeneric.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelGeo.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelGeo.go index a5ff16b7..86ddabca 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelGeo.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelGeo.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelGeolocation.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelGeolocation.go index c1da5fec..ad998309 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelGeolocation.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelGeolocation.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelGovernance.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelGovernance.go index 5e3adeb5..6e2f8b7c 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelGovernance.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelGovernance.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelGroup.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelGroup.go index 67de3a9d..628633c2 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelGroup.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelGroup.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelHardware.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelHardware.go index 96db6e6a..0362d5dd 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelHardware.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelHardware.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelHas.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelHas.go index 0c3c2d5d..ce4eef7a 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelHas.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelHas.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelHashes.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelHashes.go index dfc90cc9..6afbce0c 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelHashes.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelHashes.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelHost.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelHost.go index 74c5e610..186663b9 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelHost.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelHost.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelHourly.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelHourly.go index 2326c168..45c9fb5d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelHourly.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelHourly.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelHybrid.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelHybrid.go index 3ee7280c..debe28af 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelHybrid.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelHybrid.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelIOS.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelIOS.go index 6f2f59c9..f2158af4 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelIOS.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelIOS.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelIP.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelIP.go index 5e60d382..f4ddb8f8 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelIP.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelIP.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelIPv4.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelIPv4.go index a2a15215..7f099086 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelIPv4.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelIPv4.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelIPv6.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelIPv6.go index 6a9131cb..f3d481ac 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelIPv6.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelIPv6.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelIdentity.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelIdentity.go index d989199e..f6090b85 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelIdentity.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelIdentity.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelImage.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelImage.go index 7653b2c8..f9227899 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelImage.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelImage.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelImplicit.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelImplicit.go index 414c08e7..c320b104 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelImplicit.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelImplicit.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelImported.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelImported.go index d4ff89f9..a4b7ac32 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelImported.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelImported.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelImpossible.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelImpossible.go index c49e05fc..98281a53 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelImpossible.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelImpossible.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelIncoming.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelIncoming.go index e927da6f..f6e5568e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelIncoming.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelIncoming.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelIncomplete.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelIncomplete.go index 1e2ee640..30d56e28 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelIncomplete.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelIncomplete.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelInference.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelInference.go index bf0dfa83..8aa815e2 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelInference.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelInference.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelInformation.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelInformation.go index 20d28337..59127052 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelInformation.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelInformation.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelInformational.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelInformational.go index 53503183..0df5f4af 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelInformational.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelInformational.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelInitiator.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelInitiator.go index c2798980..8123eb59 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelInitiator.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelInitiator.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelInner.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelInner.go index 4286e8a2..a592ea3f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelInner.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelInner.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelInsight.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelInsight.go index 73b5c200..f806760d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelInsight.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelInsight.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelInstance.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelInstance.go index fc8b830e..e2cc6eb8 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelInstance.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelInstance.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelInstitution.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelInstitution.go index d23f4841..67b80dc8 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelInstitution.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelInstitution.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelInternet.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelInternet.go index 4e6d0fb2..aadad705 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelInternet.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelInternet.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelIntune.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelIntune.go index 6f21c939..2403e4b4 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelIntune.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelIntune.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelInvitation.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelInvitation.go index 59a8f232..c9979549 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelInvitation.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelInvitation.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelInvite.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelInvite.go index 6c83a995..5604183c 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelInvite.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelInvite.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelInvited.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelInvited.go index 03714128..0c79e38a 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelInvited.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelInvited.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelIosik.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelIosik.go index b8744c83..903c207c 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelIosik.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelIosik.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelItem.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelItem.go index 033b2141..f364ad11 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelItem.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelItem.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelJSON.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelJSON.go index ae844bbe..8c363b8a 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelJSON.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelJSON.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelJob.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelJob.go index 0b2d2712..8a9670fd 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelJob.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelJob.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelJournal.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelJournal.go index 10aa8215..8d116a08 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelJournal.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelJournal.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelJustify.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelJustify.go index 6e53ec1c..bc2fc191 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelJustify.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelJustify.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelKerberos.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelKerberos.go index 12f18230..835efac1 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelKerberos.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelKerberos.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelKey.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelKey.go index 521ef75b..57d07dc4 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelKey.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelKey.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelLabel.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelLabel.go index 0dc843fb..d99fb613 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelLabel.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelLabel.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelLabeling.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelLabeling.go index 16790a31..606c21c6 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelLabeling.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelLabeling.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelLanguage.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelLanguage.go index 499a03a9..34ca4d2d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelLanguage.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelLanguage.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelLeaked.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelLeaked.go index 9f111932..4d5fd995 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelLeaked.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelLeaked.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelLearned.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelLearned.go index 216c9422..38f2db72 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelLearned.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelLearned.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelLicense.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelLicense.go index aa9fd7e3..b1b8fc3f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelLicense.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelLicense.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelList.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelList.go index eedb7042..c17a84ea 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelList.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelList.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelLocale.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelLocale.go index 28fe7ab8..d2fcbca0 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelLocale.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelLocale.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelLocalized.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelLocalized.go index cfa1c170..15e32b32 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelLocalized.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelLocalized.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelLocate.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelLocate.go index d211b4db..19322494 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelLocate.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelLocate.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelLocated.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelLocated.go index 5b4a2f21..cba847c1 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelLocated.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelLocated.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelLocation.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelLocation.go index ad455598..830c26aa 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelLocation.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelLocation.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelLogged.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelLogged.go index 28c8d030..77f78b20 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelLogged.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelLogged.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelLogon.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelLogon.go index 78aa9f0e..2375c1e9 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelLogon.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelLogon.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelLookup.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelLookup.go index 15f682a7..93f93013 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelLookup.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelLookup.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelMDM.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelMDM.go index ddba816b..e9d63f9b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelMDM.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelMDM.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelMFA.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelMFA.go index 12efcdc9..0c2906e9 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelMFA.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelMFA.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelMac.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelMac.go index e1360e10..72654490 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelMac.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelMac.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelMail.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelMail.go index bd602c59..34018067 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelMail.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelMail.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelMailbox.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelMailbox.go index 398e1c25..f8e11aa1 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelMailbox.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelMailbox.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelMalware.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelMalware.go index 596220f6..3eddf4fa 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelMalware.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelMalware.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelManaged.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelManaged.go index 0c8671dd..59d6287c 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelManaged.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelManaged.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelManagement.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelManagement.go index 03ec2eb5..6c1e9a28 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelManagement.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelManagement.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelMark.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelMark.go index 52adcc86..a370324d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelMark.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelMark.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelMatch.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelMatch.go index 1399ee58..72516329 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelMatch.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelMatch.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelMatching.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelMatching.go index 27bd79b9..ea682537 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelMatching.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelMatching.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelMedia.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelMedia.go index 28a00e6d..b545f809 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelMedia.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelMedia.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelMeeting.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelMeeting.go index 0360874b..62406b01 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelMeeting.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelMeeting.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelMembership.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelMembership.go index dd67f2b9..60845bcc 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelMembership.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelMembership.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelMention.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelMention.go index 4381a5a2..6c694912 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelMention.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelMention.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelMentions.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelMentions.go index 2e950ba1..097c899c 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelMentions.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelMentions.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelMessage.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelMessage.go index 415cc7b5..c6b4d2ca 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelMessage.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelMessage.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelMetadata.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelMetadata.go index 1f974da6..33c441d1 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelMetadata.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelMetadata.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelMicrosoft.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelMicrosoft.go index 9eaa6827..e2c2a3cb 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelMicrosoft.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelMicrosoft.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelMime.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelMime.go index 3742495a..d407de02 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelMime.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelMime.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelMobile.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelMobile.go index 49d05eb9..020e130c 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelMobile.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelMobile.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelModified.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelModified.go index f99cedb8..446b209d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelModified.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelModified.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelMove.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelMove.go index 5ce40c03..3b2a2e89 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelMove.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelMove.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelMulti.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelMulti.go index 3e56ba05..5ac33888 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelMulti.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelMulti.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelMute.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelMute.go index f680af3a..f5a1ae4e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelMute.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelMute.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelNDES.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelNDES.go index 59eea30e..15df9511 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelNDES.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelNDES.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelNamed.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelNamed.go index 75c1f627..4ce52fdd 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelNamed.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelNamed.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelNetwork.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelNetwork.go index 8f4c5c59..c9ececec 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelNetwork.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelNetwork.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelNotebook.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelNotebook.go index 92f152d4..000831f5 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelNotebook.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelNotebook.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelNotification.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelNotification.go index 344a4f98..49d9a841 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelNotification.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelNotification.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelNotify.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelNotify.go index d64add7f..3c565c39 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelNotify.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelNotify.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelNumber.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelNumber.go index 27f1e828..b9b23199 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelNumber.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelNumber.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelOAuth2.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelOAuth.go index aab9aaaf..da3ae9ac 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelOAuth2.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelOAuth.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelOMA.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelOMA.go index 1491d533..fa942501 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelOMA.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelOMA.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelObject.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelObject.go index 691569b2..23ba1eb4 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelObject.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelObject.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelOffice.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelOffice.go index 55202512..e89b8128 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelOffice.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelOffice.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelOffice365.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelOffice365.go index 3f81ff91..7bda323d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelOffice365.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelOffice365.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelOn.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelOn.go index 06971674..c8fc5196 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelOn.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelOn.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelOne.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelOne.go index e88e93b7..0eeb131f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelOne.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelOne.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelOnenote.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelOnenote.go index 72b03b4f..9b638e7e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelOnenote.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelOnenote.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelOnline.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelOnline.go index ce82ae84..7d7dae00 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelOnline.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelOnline.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelOpen.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelOpen.go index f82e2e36..3b6cbfa4 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelOpen.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelOpen.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelOpening.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelOpening.go index e04a623c..48312a2f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelOpening.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelOpening.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelOperating.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelOperating.go index 5d4a77eb..49235f0d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelOperating.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelOperating.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelOperation.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelOperation.go index 59e60029..3c58d3d2 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelOperation.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelOperation.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelOptional.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelOptional.go index aa3b8402..6303d039 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelOptional.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelOptional.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelOrg.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelOrg.go index 4229b653..df17e2de 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelOrg.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelOrg.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelOrganization.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelOrganization.go index 56e66e04..201ae6df 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelOrganization.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelOrganization.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelOrganizational.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelOrganizational.go index 3e2465c4..78818db2 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelOrganizational.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelOrganizational.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelOrganizer.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelOrganizer.go index 5d375fc8..2aad339a 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelOrganizer.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelOrganizer.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelOs.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelOs.go index ddf69c89..3995b9ca 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelOs.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelOs.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelOut.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelOut.go index 61d5785c..4cbdca42 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelOut.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelOut.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelOutgoing.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelOutgoing.go index bda17fc7..0dd3b9af 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelOutgoing.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelOutgoing.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelOutlook.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelOutlook.go index ae598476..4d2d45cf 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelOutlook.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelOutlook.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPackage.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPackage.go index 3b57e1c4..00378833 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPackage.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPackage.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPage.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPage.go index ad243183..ad3c00ed 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPage.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPage.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelParental.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelParental.go index 8fc0e60b..36a816a4 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelParental.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelParental.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelParse.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelParse.go index cad8b8b2..a527217e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelParse.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelParse.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelParticipant.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelParticipant.go index 16bc3594..a634a259 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelParticipant.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelParticipant.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPassword.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPassword.go index 62d286e1..f16188a7 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPassword.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPassword.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPatterned.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPatterned.go index 796403ed..4373f04e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPatterned.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPatterned.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPayload.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPayload.go index 240db8ac..99df92b4 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPayload.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPayload.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPayment.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPayment.go index fc736373..934d5801 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPayment.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPayment.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPending.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPending.go index aadeb5b8..017b342f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPending.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPending.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPermission.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPermission.go index 1d0899af..49e05c61 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPermission.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPermission.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPersistent.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPersistent.go index 47ad1b7c..01f8edaf 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPersistent.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPersistent.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPerson.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPerson.go index 293e65db..e9aa4b05 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPerson.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPerson.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPhone.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPhone.go index eee02a65..ad6ab7c5 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPhone.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPhone.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPhoto.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPhoto.go index 3c9c6efe..8d189cdc 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPhoto.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPhoto.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPhysical.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPhysical.go index c16a2fbd..2bafd504 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPhysical.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPhysical.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPicture.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPicture.go index b8a534b0..9bf685d8 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPicture.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPicture.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPlace.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPlace.go index 7bc69643..c9d54d55 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPlace.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPlace.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPlanner.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPlanner.go index b7734555..e88f8b9f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPlanner.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPlanner.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPlay.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPlay.go index 146be3eb..d97f0e7a 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPlay.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPlay.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPolicy.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPolicy.go index 3461275d..609dc0bc 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPolicy.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPolicy.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPosition.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPosition.go index e9b8f675..5f9053ef 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPosition.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPosition.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPost.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPost.go index b8910473..358923e6 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPost.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPost.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPostal.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPostal.go index 984c6aec..dd190e18 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPostal.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPostal.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPre.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPre.go index 57bfb8e4..4f682a31 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPre.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPre.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPresence.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPresence.go index 1d39d651..1a7f001f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPresence.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPresence.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPrivacy.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPrivacy.go index 8450ffbd..285e63ca 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPrivacy.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPrivacy.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPrivileged.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPrivileged.go index 5b2e08c1..d9469528 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPrivileged.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPrivileged.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelProcess.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelProcess.go index 9ce88c9d..72c2c137 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelProcess.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelProcess.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelProfile.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelProfile.go index a961c8b1..422baa24 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelProfile.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelProfile.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelProgram.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelProgram.go index 08035641..95718556 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelProgram.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelProgram.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelProject.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelProject.go index 1bf4f4ff..b740a926 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelProject.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelProject.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPrompt.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPrompt.go index 6a6e9440..91ddbe69 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPrompt.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPrompt.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelProperties.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelProperties.go index 3d6e6c6e..78c0fce6 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelProperties.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelProperties.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelProperty.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelProperty.go index 93e3b788..5e5178b9 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelProperty.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelProperty.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelProtect.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelProtect.go index 492276d1..773421d1 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelProtect.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelProtect.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelProvider.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelProvider.go index 45e2d21c..5ffc3e88 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelProvider.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelProvider.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelProvisioned.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelProvisioned.go index 4872b0de..e48f9ce6 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelProvisioned.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelProvisioned.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelProvisioning.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelProvisioning.go index 0eda9577..0542d820 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelProvisioning.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelProvisioning.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelProxied.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelProxied.go index 77b6eaa1..6a23135b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelProxied.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelProxied.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPublic.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPublic.go index feb05085..21be0e57 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPublic.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPublic.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPublication.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPublication.go index 706baf5e..74f6f747 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPublication.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPublication.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPublished.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPublished.go index 50c36732..393d02b3 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPublished.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPublished.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPurchase.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPurchase.go index 86722acb..6a50bfce 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelPurchase.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelPurchase.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelQuota.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelQuota.go index a9f5c006..6b39a2cc 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelQuota.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelQuota.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRanked.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRanked.go index 624afb6b..91727ee2 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRanked.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRanked.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRbac.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRbac.go index ff835349..df2b5356 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRbac.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRbac.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRecent.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRecent.go index aac540bf..3323a0ca 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRecent.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRecent.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRecipient.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRecipient.go index 153f5d81..fb06a749 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRecipient.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRecipient.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRecommend.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRecommend.go index 90ad812a..36362087 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRecommend.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRecommend.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRecord.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRecord.go index 8916aee1..31e7f9c3 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRecord.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRecord.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRecording.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRecording.go index 4b0606f0..822de307 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRecording.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRecording.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRecurrence.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRecurrence.go index 3ecaa71a..1744f63e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRecurrence.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRecurrence.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelReference.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelReference.go index 89573af8..153ad9e4 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelReference.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelReference.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelReferenced.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelReferenced.go index 1daef9b5..02a9f400 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelReferenced.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelReferenced.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRegistry.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRegistry.go index dc29428c..fa8eb4ba 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRegistry.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRegistry.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRelated.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRelated.go index ca6ab7bc..f6ed0506 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRelated.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRelated.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRelying.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRelying.go index 1920d4fd..66b2a89d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRelying.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRelying.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelReminder.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelReminder.go index ef800c55..0dfe4b18 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelReminder.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelReminder.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRemote.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRemote.go index e7b7511e..3f3c44d7 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRemote.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRemote.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRemove.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRemove.go index e103ce2f..aa4536c6 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRemove.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRemove.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRename.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRename.go index 68f06de8..fb37c488 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRename.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRename.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelReport.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelReport.go index 11f75657..4b5c127b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelReport.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelReport.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelReputation.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelReputation.go index b42108e3..03e13f75 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelReputation.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelReputation.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRequest.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRequest.go index ccc09fc4..a59b4fad 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRequest.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRequest.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRequired.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRequired.go index cf8fc609..4bef3601 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRequired.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRequired.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelReset.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelReset.go index b421b61d..edaca74e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelReset.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelReset.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelResource.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelResource.go index f9ae8a19..8135cf41 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelResource.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelResource.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelResponse.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelResponse.go index feb5a2e2..7a2b07a2 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelResponse.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelResponse.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelResponsible.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelResponsible.go index 3945510b..a17b5587 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelResponsible.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelResponsible.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRestore.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRestore.go index 62679c24..580e218b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRestore.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRestore.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRestricted.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRestricted.go index e7e8cbd5..cde432fe 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRestricted.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRestricted.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelResult.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelResult.go index 9b34e8f9..a0129c65 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelResult.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelResult.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRevoke.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRevoke.go index 3c786c06..2c30ed4e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRevoke.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRevoke.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRgb.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRgb.go index 4f1812b0..58e69db4 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRgb.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRgb.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRisk.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRisk.go index b7948167..f7868f96 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRisk.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRisk.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRisky.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRisky.go index 451084dd..ebb1e6a3 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRisky.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRisky.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRole.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRole.go index b19c9b98..5c96e661 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRole.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRole.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRoom.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRoom.go index 40cd7e49..dc25e0c3 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRoom.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRoom.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRoot.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRoot.go index 7c19a720..5c5a5fc4 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRoot.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRoot.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRotate.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRotate.go index d203e7bd..7aeb6c87 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRotate.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRotate.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRubric.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRubric.go index 9d5643fd..26eb6a63 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRubric.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRubric.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRun.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRun.go index d80439e1..7cd6b24e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelRun.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelRun.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSales.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSales.go index 9f617a09..4302b79e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSales.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSales.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSchedule.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSchedule.go index f846bafd..2be7f6f5 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSchedule.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSchedule.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelScheduling.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelScheduling.go index 12ca976a..44b361bd 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelScheduling.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelScheduling.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSchema.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSchema.go index fbe68b8c..d498aa8d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSchema.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSchema.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelScoped.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelScoped.go index 78fabe4e..1c491881 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelScoped.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelScoped.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSearch.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSearch.go index 4aa68d09..4e38406e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSearch.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSearch.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSection.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSection.go index 3bebf9e6..b84d70ab 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSection.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSection.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSecure.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSecure.go index e55504e6..9099e3b6 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSecure.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSecure.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSecurity.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSecurity.go index 6d636d02..af6adf33 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSecurity.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSecurity.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSensitive.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSensitive.go index 885a1fd8..9e64e6d1 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSensitive.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSensitive.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSensitivity.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSensitivity.go index 0385085f..1924ed19 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSensitivity.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSensitivity.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelService.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelService.go index c92a62b1..7fcdb85b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelService.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelService.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -86,8 +86,8 @@ type ServicePrincipal struct { AppRoleAssignedTo []AppRoleAssignment `json:"appRoleAssignedTo,omitempty"` // AppRoleAssignments undocumented AppRoleAssignments []AppRoleAssignment `json:"appRoleAssignments,omitempty"` - // Oauth2PermissionGrants undocumented - Oauth2PermissionGrants []OAuth2PermissionGrant `json:"oauth2PermissionGrants,omitempty"` + // OAuth2PermissionGrants undocumented + OAuth2PermissionGrants []OAuth2PermissionGrant `json:"oauth2PermissionGrants,omitempty"` // MemberOf undocumented MemberOf []DirectoryObject `json:"memberOf,omitempty"` // TransitiveMemberOf undocumented diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSetting.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSetting.go index ad6e5dbb..7547eea7 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSetting.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSetting.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSettings.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSettings.go index fb153674..128b964e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSettings.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSettings.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelShare.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelShare.go index b3f327b1..aa1a2976 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelShare.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelShare.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelShared.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelShared.go index 4e093a82..11a19bd9 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelShared.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelShared.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSharepoint.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSharepoint.go index a2d419ad..0cba2f18 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSharepoint.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSharepoint.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSharing.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSharing.go index 4067665d..11a60403 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSharing.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSharing.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelShift.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelShift.go index 2fd0de15..82b5bb2a 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelShift.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelShift.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelShipment.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelShipment.go index 06a0985c..48199f44 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelShipment.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelShipment.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSide.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSide.go index 13e64b1b..18242331 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSide.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSide.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSign.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSign.go index 60a20ac3..3fa6b4f0 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSign.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSign.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSingle.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSingle.go index 1f93e5b8..2cc24358 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSingle.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSingle.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSite.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSite.go index b9e50fc3..dd1e98e6 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSite.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSite.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSize.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSize.go index 18580abd..82d4a639 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSize.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSize.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSkill.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSkill.go index 6ea43aa2..7c50468a 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSkill.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSkill.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSkype.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSkype.go index d037c301..5814aaad 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSkype.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSkype.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSoftware.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSoftware.go index df8638a8..06427643 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSoftware.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSoftware.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSpecial.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSpecial.go index 68793e68..938c21ee 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSpecial.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSpecial.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelStandard.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelStandard.go index 4e6bb327..69305551 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelStandard.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelStandard.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelStatus.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelStatus.go index 42e06390..efd57589 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelStatus.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelStatus.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelStorage.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelStorage.go index 95a52ce8..b1cdd532 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelStorage.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelStorage.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelString.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelString.go index 3c50c6a7..67d237a5 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelString.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelString.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSubscribe.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSubscribe.go index e7c70138..1cda6c98 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSubscribe.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSubscribe.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSubscribed.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSubscribed.go index 45947da3..bc620bba 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSubscribed.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSubscribed.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSubscription.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSubscription.go index b36cb605..671ee60e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSubscription.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSubscription.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSuspicious.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSuspicious.go index 11870b5e..b3dfe0ce 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSuspicious.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSuspicious.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSwap.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSwap.go index a8fffde0..ea48cb2d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSwap.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSwap.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSymantec.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSymantec.go index 3588802b..9ed5c4cc 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSymantec.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSymantec.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSynchronization.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSynchronization.go index c0e24833..d82432ed 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSynchronization.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSynchronization.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSystem.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSystem.go index 0b0de01c..94f8818c 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelSystem.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelSystem.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelTarget.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelTarget.go index 8233fa2b..12b0b20a 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelTarget.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelTarget.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelTargeted.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelTargeted.go index 33ec1c88..25e8c7ce 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelTargeted.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelTargeted.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelTax.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelTax.go index 34141e37..5387f986 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelTax.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelTax.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelTeam.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelTeam.go index 820c61d8..42b83eb7 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelTeam.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelTeam.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelTeams.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelTeams.go index 352f1d01..770dd2a9 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelTeams.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelTeams.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelTeamwork.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelTeamwork.go index 78a4196a..192c98ed 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelTeamwork.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelTeamwork.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelTelecom.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelTelecom.go index 5b0e13f4..58a5161d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelTelecom.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelTelecom.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelTenant.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelTenant.go index 6aac0c67..9bcce4e1 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelTenant.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelTenant.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelTerms.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelTerms.go index a3f2dc07..9013daf7 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelTerms.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelTerms.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelText.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelText.go index 20fafac2..39839bdf 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelText.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelText.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelThreat.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelThreat.go index cdcd4d02..8c93e395 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelThreat.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelThreat.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelThumbnail.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelThumbnail.go index 362a62ac..af98e2db 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelThumbnail.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelThumbnail.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelTi.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelTi.go index 51f58588..2b56168d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelTi.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelTi.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelTime.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelTime.go index c7c7baa5..5b982b60 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelTime.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelTime.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelToken.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelToken.go index bdc1164c..b46c0367 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelToken.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelToken.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelTone.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelTone.go index 5675acba..f41251b6 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelTone.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelTone.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelTrending.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelTrending.go index e7b979f3..969e8167 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelTrending.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelTrending.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelTrust.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelTrust.go index 82534669..3e1ec30a 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelTrust.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelTrust.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelTyped.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelTyped.go index f930901b..59913115 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelTyped.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelTyped.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelURL.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelURL.go index 9a15fed9..904216f7 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelURL.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelURL.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelUnary.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelUnary.go index 1f7494f3..c3aec3b1 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelUnary.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelUnary.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelUnfamiliar.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelUnfamiliar.go index 09bca98a..863a99c2 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelUnfamiliar.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelUnfamiliar.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelUnified.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelUnified.go index 99c70171..a8b3c6ed 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelUnified.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelUnified.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelUnit.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelUnit.go index c55d760b..274fd84e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelUnit.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelUnit.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelUnmute.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelUnmute.go index d37eaf01..4629e718 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelUnmute.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelUnmute.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelUnsupported.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelUnsupported.go index 57ac1817..46a8fe33 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelUnsupported.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelUnsupported.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelUpdate.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelUpdate.go index 0be000c6..af778ecf 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelUpdate.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelUpdate.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelUpload.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelUpload.go index dfb43012..3be5e392 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelUpload.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelUpload.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelUsage.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelUsage.go index 5cecac71..53c8546b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelUsage.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelUsage.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelUsed.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelUsed.go index 98e415b6..fbfbd834 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelUsed.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelUsed.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelUser.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelUser.go index fd74221d..fa69c175 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelUser.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelUser.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelVPN.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelVPN.go index 668f139f..9a7c465a 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelVPN.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelVPN.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelVPP.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelVPP.go index 148bac28..fb0c0224 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelVPP.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelVPP.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelVariable.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelVariable.go index 375fd930..3d8ed344 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelVariable.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelVariable.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelVendor.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelVendor.go index e5789555..e1ce87cf 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelVendor.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelVendor.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelVerified.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelVerified.go index dca1549e..b37c9c45 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelVerified.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelVerified.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelVersion.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelVersion.go index 7cbb8695..1ff84521 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelVersion.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelVersion.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelVideo.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelVideo.go index ffebe388..67640fb9 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelVideo.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelVideo.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelVisual.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelVisual.go index 26a1f326..647dd84a 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelVisual.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelVisual.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelVulnerability.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelVulnerability.go index efa57bbe..88bc9996 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelVulnerability.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelVulnerability.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelWeb.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelWeb.go index 3556f029..42a8552b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelWeb.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelWeb.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -36,8 +36,8 @@ type WebApplication struct { HomePageURL *string `json:"homePageUrl,omitempty"` // RedirectUris undocumented RedirectUris []string `json:"redirectUris,omitempty"` - // Oauth2AllowImplicitFlow undocumented - Oauth2AllowImplicitFlow *bool `json:"oauth2AllowImplicitFlow,omitempty"` + // OAuth2AllowImplicitFlow undocumented + OAuth2AllowImplicitFlow *bool `json:"oauth2AllowImplicitFlow,omitempty"` // LogoutURL undocumented LogoutURL *string `json:"logoutUrl,omitempty"` // ImplicitGrantSettings undocumented diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelWebsite.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelWebsite.go index 86c680d5..c56d50cf 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelWebsite.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelWebsite.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelWin32.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelWin32.go index 38682cfc..4938d7be 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelWin32.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelWin32.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelWindows.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelWindows.go index 9c8bcfc6..28e852cd 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelWindows.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelWindows.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelWindows10.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelWindows10.go index 3eabd951..b75cfa56 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelWindows10.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelWindows10.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelWindows81.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelWindows81.go index c499e4fa..88f3cb2b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelWindows81.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelWindows81.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelWork.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelWork.go index 767879ca..1b5fd696 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelWork.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelWork.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelWorkbook.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelWorkbook.go index 86361184..944dd544 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelWorkbook.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelWorkbook.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelWorkforce.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelWorkforce.go index c07f9368..96b3cb78 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelWorkforce.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelWorkforce.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelWorking.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelWorking.go index 3dc0c940..7ca8f117 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelWorking.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelWorking.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelYammer.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelYammer.go index b32ef25a..37ae9019 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelYammer.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelYammer.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ModelYomi.go b/vendor/github.com/yaegashi/msgraph.go/beta/ModelYomi.go index 73eaa030..fe5fd333 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ModelYomi.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ModelYomi.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestAad.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestAad.go index 37230e31..874beb63 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestAad.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestAad.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestAccess.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestAccess.go index 06ae52c0..497b5ef4 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestAccess.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestAccess.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestAccount.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestAccount.go index 8dcf76f6..55e28d99 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestAccount.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestAccount.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestActive.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestActive.go index a4379831..4b5fb9d4 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestActive.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestActive.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestActivity.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestActivity.go index 82a7a4b2..0de52330 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestActivity.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestActivity.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestAdministrative.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestAdministrative.go index 1cacdc94..5cc106f1 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestAdministrative.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestAdministrative.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestAdvanced.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestAdvanced.go index ffa9fd12..df41d520 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestAdvanced.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestAdvanced.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestAged.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestAged.go index 46f9fc8c..d79bc550 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestAged.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestAged.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestAgreement.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestAgreement.go index 647a2de5..aa62df15 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestAgreement.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestAgreement.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestAlert.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestAlert.go index f43985de..992f5d56 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestAlert.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestAlert.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -80,9 +80,9 @@ func (r *AlertCollectionUpdateAlertsRequest) Paging(ctx context.Context, method, } var values []Alert for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -95,6 +95,7 @@ func (r *AlertCollectionUpdateAlertsRequest) Paging(ctx context.Context, method, value []Alert ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestAllowed.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestAllowed.go index ececc01e..3adeccf2 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestAllowed.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestAllowed.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestAndroid.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestAndroid.go index 1323cbd0..ecb87026 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestAndroid.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestAndroid.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -1202,9 +1202,9 @@ func (r *AndroidManagedAppProtectionCollectionHasPayloadLinksRequest) Paging(ctx } var values []HasPayloadLinkResultItem for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1217,6 +1217,7 @@ func (r *AndroidManagedAppProtectionCollectionHasPayloadLinksRequest) Paging(ctx value []HasPayloadLinkResultItem ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestAnonymous.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestAnonymous.go index 4a23bb19..bf102374 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestAnonymous.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestAnonymous.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestApp.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestApp.go index c63b0637..cbaf61d3 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestApp.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestApp.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestApple.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestApple.go index 0fe8789d..2e7e2582 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestApple.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestApple.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestApplication.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestApplication.go index a726375f..25d96080 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestApplication.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestApplication.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestApproval.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestApproval.go index ad5232c0..ca1630f8 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestApproval.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestApproval.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestAttachment.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestAttachment.go index 1a42beb0..17fb88bd 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestAttachment.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestAttachment.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestAttribute.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestAttribute.go index d548f6ef..43d27c64 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestAttribute.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestAttribute.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestAudio.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestAudio.go index 3c67b3a8..58858e84 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestAudio.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestAudio.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestAudit.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestAudit.go index 461f4ff3..dbdc4385 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestAudit.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestAudit.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestBase.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestBase.go index a699ed93..613b6e67 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestBase.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestBase.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestBooking.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestBooking.go index 766f8f34..f1e61bb9 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestBooking.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestBooking.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestBusiness.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestBusiness.go index ccf1209c..8419fb2c 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestBusiness.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestBusiness.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestCalendar.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestCalendar.go index bef252ae..4faf4a67 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestCalendar.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestCalendar.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -179,9 +179,9 @@ func (r *CalendarGetScheduleRequest) Paging(ctx context.Context, method, path st } var values []ScheduleInformation for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -194,6 +194,7 @@ func (r *CalendarGetScheduleRequest) Paging(ctx context.Context, method, path st value []ScheduleInformation ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestCall.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestCall.go index 41ebd8d9..a01f2e8a 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestCall.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestCall.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestCart.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestCart.go index 3e31d71e..3e355ba5 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestCart.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestCart.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestCertificate.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestCertificate.go index d5f5e4e7..3c442a46 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestCertificate.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestCertificate.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestChannel.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestChannel.go index 36dfb0d4..a3764ccc 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestChannel.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestChannel.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestChat.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestChat.go index d872f014..91ef1bf5 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestChat.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestChat.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestCloud.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestCloud.go index a91f5876..c31c10da 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestCloud.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestCloud.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -113,9 +113,9 @@ func (r *CloudCommunicationsGetPresencesByUserIDRequest) Paging(ctx context.Cont } var values []Presence for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -128,6 +128,7 @@ func (r *CloudCommunicationsGetPresencesByUserIDRequest) Paging(ctx context.Cont value []Presence ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestColumn.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestColumn.go index 954062ed..98a1f5ff 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestColumn.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestColumn.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestCommand.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestCommand.go index 9339a987..0f3daa42 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestCommand.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestCommand.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestComms.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestComms.go index 48a826a3..b770ce01 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestComms.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestComms.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestCompany.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestCompany.go index 30aec000..1930398c 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestCompany.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestCompany.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestCompliance.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestCompliance.go index 1b2d8ded..1b72d95c 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestCompliance.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestCompliance.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestConditional.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestConditional.go index c9a83b10..5fb28c30 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestConditional.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestConditional.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestConnection.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestConnection.go index 8d975eff..c47d6c0d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestConnection.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestConnection.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestContact.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestContact.go index 540be8e3..1cd2636e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestContact.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestContact.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestContent.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestContent.go index b30ebd65..1461d115 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestContent.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestContent.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestContract.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestContract.go index d8465c8f..d48bb8f0 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestContract.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestContract.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestConversation.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestConversation.go index d3405b7b..b865a0e8 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestConversation.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestConversation.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestCountry.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestCountry.go index 1a37db72..ff95b66f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestCountry.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestCountry.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestCredential.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestCredential.go index 3e2a29f3..f060bc72 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestCredential.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestCredential.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestCurrency.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestCurrency.go index 3605e038..fc3dcefc 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestCurrency.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestCurrency.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestCustomer.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestCustomer.go index d0787d29..d9dbbaee 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestCustomer.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestCustomer.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestData.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestData.go index 8a5f8500..b69719e2 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestData.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestData.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestDefault.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestDefault.go index 800f2c39..e7a02d54 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestDefault.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestDefault.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestDep.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestDep.go index 72da7e40..dcb6fac8 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestDep.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestDep.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestDetected.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestDetected.go index 9513c445..d472e5e0 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestDetected.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestDetected.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestDevice.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestDevice.go index 6eef9117..3e601ef6 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestDevice.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestDevice.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -2324,9 +2324,9 @@ func (r *DeviceCompliancePolicyCollectionHasPayloadLinksRequest) Paging(ctx cont } var values []HasPayloadLinkResultItem for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2339,6 +2339,7 @@ func (r *DeviceCompliancePolicyCollectionHasPayloadLinksRequest) Paging(ctx cont value []HasPayloadLinkResultItem ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2444,9 +2445,9 @@ func (r *DeviceConfigurationCollectionHasPayloadLinksRequest) Paging(ctx context } var values []HasPayloadLinkResultItem for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2459,6 +2460,7 @@ func (r *DeviceConfigurationCollectionHasPayloadLinksRequest) Paging(ctx context value []HasPayloadLinkResultItem ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2538,9 +2540,9 @@ func (r *DeviceConfigurationCollectionGetTargetedUsersAndDevicesRequest) Paging( } var values []DeviceConfigurationTargetedUserAndDevice for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2553,6 +2555,7 @@ func (r *DeviceConfigurationCollectionGetTargetedUsersAndDevicesRequest) Paging( value []DeviceConfigurationTargetedUserAndDevice ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2632,9 +2635,9 @@ func (r *DeviceEnrollmentConfigurationCollectionHasPayloadLinksRequest) Paging(c } var values []HasPayloadLinkResultItem for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2647,6 +2650,7 @@ func (r *DeviceEnrollmentConfigurationCollectionHasPayloadLinksRequest) Paging(c value []HasPayloadLinkResultItem ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2718,9 +2722,9 @@ func (r *DeviceManagementScriptCollectionHasPayloadLinksRequest) Paging(ctx cont } var values []HasPayloadLinkResultItem for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2733,6 +2737,7 @@ func (r *DeviceManagementScriptCollectionHasPayloadLinksRequest) Paging(ctx cont value []HasPayloadLinkResultItem ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2856,9 +2861,9 @@ func (r *DeviceCompliancePolicyAssignRequest) Paging(ctx context.Context, method } var values []DeviceCompliancePolicyAssignment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2871,6 +2876,7 @@ func (r *DeviceCompliancePolicyAssignRequest) Paging(ctx context.Context, method value []DeviceCompliancePolicyAssignment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -2968,9 +2974,9 @@ func (r *DeviceConfigurationAssignRequest) Paging(ctx context.Context, method, p } var values []DeviceConfigurationAssignment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -2983,6 +2989,7 @@ func (r *DeviceConfigurationAssignRequest) Paging(ctx context.Context, method, p value []DeviceConfigurationAssignment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestDimension.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestDimension.go index cd0afa8c..1208973b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestDimension.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestDimension.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestDirectory.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestDirectory.go index 3b17c5d5..82f1d3f1 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestDirectory.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestDirectory.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -591,9 +591,9 @@ func (r *DirectoryObjectCollectionGetByIDsRequest) Paging(ctx context.Context, m } var values []DirectoryObject for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -606,6 +606,7 @@ func (r *DirectoryObjectCollectionGetByIDsRequest) Paging(ctx context.Context, m value []DirectoryObject ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1317,9 +1318,9 @@ func (r *DirectoryObjectCheckMemberGroupsRequest) Paging(ctx context.Context, me } var values []string for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1332,6 +1333,7 @@ func (r *DirectoryObjectCheckMemberGroupsRequest) Paging(ctx context.Context, me value []string ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1403,9 +1405,9 @@ func (r *DirectoryObjectCheckMemberObjectsRequest) Paging(ctx context.Context, m } var values []string for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1418,6 +1420,7 @@ func (r *DirectoryObjectCheckMemberObjectsRequest) Paging(ctx context.Context, m value []string ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1489,9 +1492,9 @@ func (r *DirectoryObjectGetMemberGroupsRequest) Paging(ctx context.Context, meth } var values []string for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1504,6 +1507,7 @@ func (r *DirectoryObjectGetMemberGroupsRequest) Paging(ctx context.Context, meth value []string ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -1575,9 +1579,9 @@ func (r *DirectoryObjectGetMemberObjectsRequest) Paging(ctx context.Context, met } var values []string for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1590,6 +1594,7 @@ func (r *DirectoryObjectGetMemberObjectsRequest) Paging(ctx context.Context, met value []string ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestDocument.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestDocument.go index d236a730..cb31d2b2 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestDocument.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestDocument.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestDomain.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestDomain.go index 37a926ac..21421733 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestDomain.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestDomain.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestDrive.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestDrive.go index 20a48500..a990c6e0 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestDrive.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestDrive.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -332,9 +332,9 @@ func (r *DriveItemInviteRequest) Paging(ctx context.Context, method, path string } var values []Permission for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -347,6 +347,7 @@ func (r *DriveItemInviteRequest) Paging(ctx context.Context, method, path string value []Permission ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestE.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestE.go index a656df11..d3c16cc4 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestE.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestE.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestEducation.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestEducation.go index 4d546e57..d5f7a113 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestEducation.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestEducation.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -695,9 +695,9 @@ func (r *EducationSynchronizationProfileStartRequest) Paging(ctx context.Context } var values []EducationFileSynchronizationVerificationMessage for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -710,6 +710,7 @@ func (r *EducationSynchronizationProfileStartRequest) Paging(ctx context.Context value []EducationFileSynchronizationVerificationMessage ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestEducational.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestEducational.go index d378bfed..056724e9 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestEducational.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestEducational.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestEmbedded.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestEmbedded.go index 625aa25f..25263152 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestEmbedded.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestEmbedded.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -146,9 +146,9 @@ func (r *EmbeddedSIMActivationCodePoolAssignRequest) Paging(ctx context.Context, } var values []EmbeddedSIMActivationCodePoolAssignment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -161,6 +161,7 @@ func (r *EmbeddedSIMActivationCodePoolAssignRequest) Paging(ctx context.Context, value []EmbeddedSIMActivationCodePoolAssignment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestEmployee.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestEmployee.go index fbad90f4..24c498ff 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestEmployee.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestEmployee.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestEndpoint.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestEndpoint.go index 2565686b..4191544d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestEndpoint.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestEndpoint.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestEnrollment.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestEnrollment.go index 631378d7..a66fa931 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestEnrollment.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestEnrollment.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestEnterprise.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestEnterprise.go index 7489fb8b..95515f30 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestEnterprise.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestEnterprise.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestEntitlement.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestEntitlement.go index 01378829..17c04194 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestEntitlement.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestEntitlement.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestEntity.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestEntity.go index 6ec06098..232c17b4 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestEntity.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestEntity.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestEvent.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestEvent.go index 5c149336..aede96a2 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestEvent.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestEvent.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestExact.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestExact.go index bec6bbc1..f7f85621 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestExact.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestExact.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -179,9 +179,9 @@ func (r *ExactMatchDataStoreLookupRequest) Paging(ctx context.Context, method, p } var values []string for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -194,6 +194,7 @@ func (r *ExactMatchDataStoreLookupRequest) Paging(ctx context.Context, method, p value []string ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestExtension.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestExtension.go index 1eb20dba..97ebd86b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestExtension.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestExtension.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestExternal.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestExternal.go index 75ebe1dd..f0033aa6 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestExternal.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestExternal.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestFeature.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestFeature.go index 53d0e533..db46a3cc 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestFeature.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestFeature.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestField.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestField.go index 94498be5..cbf647f4 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestField.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestField.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestFile.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestFile.go index f9820c89..2efd27c4 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestFile.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestFile.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestFilter.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestFilter.go index a660d5be..bee34e07 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestFilter.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestFilter.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestFinancials.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestFinancials.go index bd252376..bf5f1256 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestFinancials.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestFinancials.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestGeneral.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestGeneral.go index ef24a378..d6988ff1 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestGeneral.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestGeneral.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestGovernance.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestGovernance.go index d4a886e2..d96745a8 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestGovernance.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestGovernance.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestGroup.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestGroup.go index cb875491..d1466682 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestGroup.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestGroup.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -517,9 +517,9 @@ func (r *GroupCheckGrantedPermissionsForAppRequest) Paging(ctx context.Context, } var values []ResourceSpecificPermissionGrant for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -532,6 +532,7 @@ func (r *GroupCheckGrantedPermissionsForAppRequest) Paging(ctx context.Context, value []ResourceSpecificPermissionGrant ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -867,9 +868,9 @@ func (r *GroupPolicyConfigurationAssignRequest) Paging(ctx context.Context, meth } var values []GroupPolicyConfigurationAssignment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -882,6 +883,7 @@ func (r *GroupPolicyConfigurationAssignRequest) Paging(ctx context.Context, meth value []GroupPolicyConfigurationAssignment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestHost.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestHost.go index 89d8b576..35860238 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestHost.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestHost.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestIOS.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestIOS.go index 8e4d7ca2..a9a5b5b6 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestIOS.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestIOS.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -608,9 +608,9 @@ func (r *IOSLobAppProvisioningConfigurationCollectionHasPayloadLinksRequest) Pag } var values []HasPayloadLinkResultItem for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -623,6 +623,7 @@ func (r *IOSLobAppProvisioningConfigurationCollectionHasPayloadLinksRequest) Pag value []HasPayloadLinkResultItem ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -694,9 +695,9 @@ func (r *IOSManagedAppProtectionCollectionHasPayloadLinksRequest) Paging(ctx con } var values []HasPayloadLinkResultItem for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -709,6 +710,7 @@ func (r *IOSManagedAppProtectionCollectionHasPayloadLinksRequest) Paging(ctx con value []HasPayloadLinkResultItem ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestIP.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestIP.go index 4c946ccd..91ddd535 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestIP.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestIP.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestIdentity.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestIdentity.go index 8cd8c14a..925f5145 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestIdentity.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestIdentity.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestImported.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestImported.go index 35ba4339..f66090d5 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestImported.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestImported.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -179,9 +179,9 @@ func (r *ImportedAppleDeviceIdentityCollectionImportAppleDeviceIdentityListReque } var values []ImportedAppleDeviceIdentityResult for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -194,6 +194,7 @@ func (r *ImportedAppleDeviceIdentityCollectionImportAppleDeviceIdentityListReque value []ImportedAppleDeviceIdentityResult ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -265,9 +266,9 @@ func (r *ImportedDeviceIdentityCollectionImportDeviceIdentityListRequest) Paging } var values []ImportedDeviceIdentityResult for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -280,6 +281,7 @@ func (r *ImportedDeviceIdentityCollectionImportDeviceIdentityListRequest) Paging value []ImportedDeviceIdentityResult ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -351,9 +353,9 @@ func (r *ImportedDeviceIdentityCollectionSearchExistingIdentitiesRequest) Paging } var values []ImportedDeviceIdentity for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -366,6 +368,7 @@ func (r *ImportedDeviceIdentityCollectionSearchExistingIdentitiesRequest) Paging value []ImportedDeviceIdentity ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -445,9 +448,9 @@ func (r *ImportedWindowsAutopilotDeviceIdentityCollectionImportRequest) Paging(c } var values []ImportedWindowsAutopilotDeviceIdentity for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -460,6 +463,7 @@ func (r *ImportedWindowsAutopilotDeviceIdentityCollectionImportRequest) Paging(c value []ImportedWindowsAutopilotDeviceIdentity ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestImpossible.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestImpossible.go index e4e07d70..d55e1056 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestImpossible.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestImpossible.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestInference.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestInference.go index 31c365c3..4e215bbc 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestInference.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestInference.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestInformation.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestInformation.go index 0aae5f7d..8801a199 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestInformation.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestInformation.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -173,9 +173,9 @@ func (r *InformationProtectionLabelCollectionEvaluateApplicationRequest) Paging( } var values []InformationProtectionAction for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -188,6 +188,7 @@ func (r *InformationProtectionLabelCollectionEvaluateApplicationRequest) Paging( value []InformationProtectionAction ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -259,9 +260,9 @@ func (r *InformationProtectionLabelCollectionEvaluateRemovalRequest) Paging(ctx } var values []InformationProtectionAction for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -274,6 +275,7 @@ func (r *InformationProtectionLabelCollectionEvaluateRemovalRequest) Paging(ctx value []InformationProtectionAction ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -345,9 +347,9 @@ func (r *InformationProtectionLabelCollectionEvaluateClassificationResultsReques } var values []InformationProtectionAction for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -360,6 +362,7 @@ func (r *InformationProtectionLabelCollectionEvaluateClassificationResultsReques value []InformationProtectionAction ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestIntune.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestIntune.go index f62b0841..78a580e3 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestIntune.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestIntune.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestInvitation.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestInvitation.go index bc48af95..7850e7f1 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestInvitation.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestInvitation.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestItem.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestItem.go index a5fc97de..2efe856f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestItem.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestItem.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestJob.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestJob.go index bdc5ffa9..1260c960 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestJob.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestJob.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestJournal.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestJournal.go index 63eb391b..bb53bd90 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestJournal.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestJournal.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestLanguage.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestLanguage.go index e16707c6..5bb457de 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestLanguage.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestLanguage.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestLeaked.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestLeaked.go index 74784d7d..19bf531a 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestLeaked.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestLeaked.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestLicense.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestLicense.go index 50430177..7aaf5c93 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestLicense.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestLicense.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestList.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestList.go index 921ce37d..0b90e3fd 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestList.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestList.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestLocalized.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestLocalized.go index 424d3c2f..0b279bd3 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestLocalized.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestLocalized.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestLookup.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestLookup.go index 880c399c..ce986da1 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestLookup.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestLookup.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestMDM.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestMDM.go index 3769bff8..247b549f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestMDM.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestMDM.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -80,9 +80,9 @@ func (r *MDMWindowsInformationProtectionPolicyCollectionHasPayloadLinksRequest) } var values []HasPayloadLinkResultItem for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -95,6 +95,7 @@ func (r *MDMWindowsInformationProtectionPolicyCollectionHasPayloadLinksRequest) value []HasPayloadLinkResultItem ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestMac.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestMac.go index 733a457b..8fcf8ced 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestMac.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestMac.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestMail.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestMail.go index aa743184..d2e742c8 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestMail.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestMail.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestMalware.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestMalware.go index 52e0aa9c..df103e53 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestMalware.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestMalware.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestManaged.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestManaged.go index 57a7bf8c..0c73e1fb 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestManaged.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestManaged.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestManagement.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestManagement.go index 90231821..d88dddfc 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestManagement.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestManagement.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestMention.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestMention.go index c29b2084..68bd0efd 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestMention.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestMention.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestMessage.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestMessage.go index 9b24b207..714972c9 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestMessage.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestMessage.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestMicrosoft.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestMicrosoft.go index 54c9a9b2..3f459fc0 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestMicrosoft.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestMicrosoft.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestMobile.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestMobile.go index 62d153f2..8f850c79 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestMobile.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestMobile.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -509,9 +509,9 @@ func (r *MobileAppCollectionHasPayloadLinksRequest) Paging(ctx context.Context, } var values []HasPayloadLinkResultItem for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -524,6 +524,7 @@ func (r *MobileAppCollectionHasPayloadLinksRequest) Paging(ctx context.Context, value []HasPayloadLinkResultItem ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestMulti.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestMulti.go index e5adca48..b86886cc 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestMulti.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestMulti.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestNDES.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestNDES.go index 41be05da..46b0ede1 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestNDES.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestNDES.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestNamed.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestNamed.go index 1028c430..b0125e64 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestNamed.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestNamed.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestNotebook.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestNotebook.go index 9059a609..091c2ac9 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestNotebook.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestNotebook.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestNotification.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestNotification.go index 0ddaeb8e..ea976aa9 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestNotification.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestNotification.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestOAuth2.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestOAuth.go index 26aeaae2..e713d1bc 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestOAuth2.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestOAuth.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestOffice.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestOffice.go index d8947a58..4a03f8bf 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestOffice.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestOffice.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -205,9 +205,9 @@ func (r *OfficeClientConfigurationAssignRequest) Paging(ctx context.Context, met } var values []OfficeClientConfigurationAssignment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -220,6 +220,7 @@ func (r *OfficeClientConfigurationAssignRequest) Paging(ctx context.Context, met value []OfficeClientConfigurationAssignment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestOn.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestOn.go index 3404da12..d1313cdc 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestOn.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestOn.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestOnenote.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestOnenote.go index f9d52484..2a439862 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestOnenote.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestOnenote.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestOnline.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestOnline.go index badf6bff..370697fe 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestOnline.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestOnline.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestOpen.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestOpen.go index 35f7be1b..be157e01 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestOpen.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestOpen.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestOrg.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestOrg.go index 958b619d..bd2e5fea 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestOrg.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestOrg.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestOrganization.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestOrganization.go index 2294428c..59f2f2e2 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestOrganization.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestOrganization.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestOrganizational.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestOrganizational.go index 640fc926..0b9b8ac5 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestOrganizational.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestOrganizational.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestOutlook.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestOutlook.go index 8d0985f3..d426e40f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestOutlook.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestOutlook.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -245,9 +245,9 @@ func (r *OutlookTaskCompleteRequest) Paging(ctx context.Context, method, path st } var values []OutlookTask for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -260,6 +260,7 @@ func (r *OutlookTaskCompleteRequest) Paging(ctx context.Context, method, path st value []OutlookTask ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestParticipant.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestParticipant.go index 65a87c50..97c73ede 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestParticipant.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestParticipant.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestPayload.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestPayload.go index e31fbddd..0762dc5e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestPayload.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestPayload.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestPayment.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestPayment.go index 58bdbebc..f8eb3911 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestPayment.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestPayment.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestPermission.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestPermission.go index 4b745a95..da21d307 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestPermission.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestPermission.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -80,9 +80,9 @@ func (r *PermissionGrantRequest) Paging(ctx context.Context, method, path string } var values []Permission for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -95,6 +95,7 @@ func (r *PermissionGrantRequest) Paging(ctx context.Context, method, path string value []Permission ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestPerson.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestPerson.go index ed29abd3..25b6756c 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestPerson.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestPerson.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestPicture.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestPicture.go index c26f120f..5c48a7e5 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestPicture.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestPicture.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestPlace.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestPlace.go index b69def77..fdcec99b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestPlace.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestPlace.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestPlanner.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestPlanner.go index 2b352565..adba3962 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestPlanner.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestPlanner.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestPolicy.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestPolicy.go index c18de810..d9f03df1 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestPolicy.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestPolicy.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -179,9 +179,9 @@ func (r *PolicySetCollectionGetPolicySetsRequest) Paging(ctx context.Context, me } var values []PolicySet for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -194,6 +194,7 @@ func (r *PolicySetCollectionGetPolicySetsRequest) Paging(ctx context.Context, me value []PolicySet ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestPost.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestPost.go index 654ea0ff..522f1a8f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestPost.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestPost.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestPresence.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestPresence.go index 5363317c..d7c5effe 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestPresence.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestPresence.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestPrivileged.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestPrivileged.go index 6964f237..f799ae92 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestPrivileged.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestPrivileged.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestProfile.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestProfile.go index 5648bc5c..18f30a2e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestProfile.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestProfile.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestProgram.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestProgram.go index 028e303c..35e3fc31 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestProgram.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestProgram.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestProject.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestProject.go index ab6911bc..629ee745 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestProject.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestProject.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestProvider.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestProvider.go index 0425dcbb..ec2050fc 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestProvider.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestProvider.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestProvisioning.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestProvisioning.go index e5bb5bde..2635d34d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestProvisioning.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestProvisioning.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestPublished.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestPublished.go index 350c43ee..6ba49dd7 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestPublished.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestPublished.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestPurchase.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestPurchase.go index 196b3886..73210a37 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestPurchase.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestPurchase.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestRbac.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestRbac.go index 4312d5a7..a2057e41 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestRbac.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestRbac.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestRemote.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestRemote.go index 0b77c8e0..26821721 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestRemote.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestRemote.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestReport.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestReport.go index 5cf07e9d..791fe1f0 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestReport.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestReport.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestRequest.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestRequest.go index 7238961b..66bf9ba0 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestRequest.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestRequest.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestResource.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestResource.go index 66984dc9..d7fca8ab 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestResource.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestResource.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestRestricted.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestRestricted.go index 9170ff2d..1d9cca07 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestRestricted.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestRestricted.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestRisk.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestRisk.go index 1fe8f7e1..da38ae47 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestRisk.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestRisk.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestRisky.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestRisky.go index 9095f794..85096214 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestRisky.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestRisky.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestRole.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestRole.go index b0f4b9a2..e6401bbf 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestRole.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestRole.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -220,9 +220,9 @@ func (r *RoleScopeTagCollectionGetRoleScopeTagsByIDRequest) Paging(ctx context.C } var values []RoleScopeTag for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -235,6 +235,7 @@ func (r *RoleScopeTagCollectionGetRoleScopeTagsByIDRequest) Paging(ctx context.C value []RoleScopeTag ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -306,9 +307,9 @@ func (r *RoleScopeTagAssignRequest) Paging(ctx context.Context, method, path str } var values []RoleScopeTagAutoAssignment for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -321,6 +322,7 @@ func (r *RoleScopeTagAssignRequest) Paging(ctx context.Context, method, path str value []RoleScopeTagAutoAssignment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestRoom.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestRoom.go index f3d50146..aa50a708 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestRoom.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestRoom.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestSales.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestSales.go index d559478c..02c11a9e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestSales.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestSales.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestSchedule.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestSchedule.go index 6d708728..cf1485b4 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestSchedule.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestSchedule.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestScheduling.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestScheduling.go index 4fba8a73..5c8561da 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestScheduling.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestScheduling.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestSchema.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestSchema.go index 74099e42..986d14bf 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestSchema.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestSchema.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestScoped.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestScoped.go index b1852f1e..4baa8b80 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestScoped.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestScoped.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestSearch.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestSearch.go index 43787114..f726659b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestSearch.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestSearch.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -80,9 +80,9 @@ func (r *SearchQueryRequest) Paging(ctx context.Context, method, path string, ob } var values []SearchResponse for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -95,6 +95,7 @@ func (r *SearchQueryRequest) Paging(ctx context.Context, method, path string, ob value []SearchResponse ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestSection.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestSection.go index 838b11c4..b641df0c 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestSection.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestSection.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestSecure.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestSecure.go index a56a96b9..5a3d4bb7 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestSecure.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestSecure.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestSecurity.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestSecurity.go index a45d616d..67b1f93f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestSecurity.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestSecurity.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestSensitive.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestSensitive.go index 45ad6a70..7a400736 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestSensitive.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestSensitive.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestSensitivity.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestSensitivity.go index 1c9fab29..2097f146 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestSensitivity.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestSensitivity.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestService.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestService.go index d014f7f2..a5334bdd 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestService.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestService.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestSetting.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestSetting.go index f7612727..769b8978 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestSetting.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestSetting.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestShared.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestShared.go index 20848dee..4761751e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestShared.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestShared.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestShift.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestShift.go index efe3a1ba..a3801062 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestShift.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestShift.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestShipment.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestShipment.go index a9c6c10c..e941b7f5 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestShipment.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestShipment.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestSide.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestSide.go index 9bc07030..66dc429a 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestSide.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestSide.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestSign.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestSign.go index 9e0df0a2..dacf2ea2 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestSign.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestSign.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestSingle.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestSingle.go index f5659f59..cea8bb30 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestSingle.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestSingle.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestSite.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestSite.go index d8cb8ab0..e1b59bd3 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestSite.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestSite.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -129,9 +129,9 @@ func (r *SiteCollectionAddRequest) Paging(ctx context.Context, method, path stri } var values []Site for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -144,6 +144,7 @@ func (r *SiteCollectionAddRequest) Paging(ctx context.Context, method, path stri value []Site ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -231,9 +232,9 @@ func (r *SiteCollectionRemoveRequest) Paging(ctx context.Context, method, path s } var values []Site for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -246,6 +247,7 @@ func (r *SiteCollectionRemoveRequest) Paging(ctx context.Context, method, path s value []Site ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestSkill.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestSkill.go index 44f4462e..403b90d4 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestSkill.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestSkill.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestSoftware.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestSoftware.go index 5e20be15..2dc3cba7 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestSoftware.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestSoftware.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestSubscribed.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestSubscribed.go index 2f446f06..51158a96 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestSubscribed.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestSubscribed.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestSubscription.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestSubscription.go index 8cc22431..c2b1a705 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestSubscription.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestSubscription.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestSuspicious.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestSuspicious.go index e79d0d72..598e0706 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestSuspicious.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestSuspicious.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestSwap.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestSwap.go index 717cc288..4fe7bd20 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestSwap.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestSwap.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestSymantec.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestSymantec.go index acd23845..6a76cdf9 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestSymantec.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestSymantec.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestSynchronization.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestSynchronization.go index 39f93af3..5d8a0156 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestSynchronization.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestSynchronization.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestTargeted.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestTargeted.go index 847bf1da..8d433101 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestTargeted.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestTargeted.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -146,9 +146,9 @@ func (r *TargetedManagedAppConfigurationCollectionHasPayloadLinksRequest) Paging } var values []HasPayloadLinkResultItem for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -161,6 +161,7 @@ func (r *TargetedManagedAppConfigurationCollectionHasPayloadLinksRequest) Paging value []HasPayloadLinkResultItem ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestTax.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestTax.go index 7a965faf..afce90b5 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestTax.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestTax.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestTeam.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestTeam.go index d58b2404..c0007ec3 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestTeam.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestTeam.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestTeams.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestTeams.go index 550f2bed..05bdd871 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestTeams.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestTeams.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestTeamwork.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestTeamwork.go index eed0fadc..89762177 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestTeamwork.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestTeamwork.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestTelecom.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestTelecom.go index d2523408..2671c2c8 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestTelecom.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestTelecom.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestTenant.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestTenant.go index 0b1e6a4f..0aff5dfb 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestTenant.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestTenant.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestTerms.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestTerms.go index ea6ab90e..e994d884 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestTerms.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestTerms.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestText.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestText.go index b0954e8e..59a257b3 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestText.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestText.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestThreat.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestThreat.go index 2e8fa2da..f2cb7a9a 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestThreat.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestThreat.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestThumbnail.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestThumbnail.go index d028a8d6..00394a7c 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestThumbnail.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestThumbnail.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestTi.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestTi.go index cb821cfd..f757c55b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestTi.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestTi.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -80,9 +80,9 @@ func (r *TiIndicatorCollectionSubmitTiIndicatorsRequest) Paging(ctx context.Cont } var values []TiIndicator for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -95,6 +95,7 @@ func (r *TiIndicatorCollectionSubmitTiIndicatorsRequest) Paging(ctx context.Cont value []TiIndicator ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -166,9 +167,9 @@ func (r *TiIndicatorCollectionUpdateTiIndicatorsRequest) Paging(ctx context.Cont } var values []TiIndicator for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -181,6 +182,7 @@ func (r *TiIndicatorCollectionUpdateTiIndicatorsRequest) Paging(ctx context.Cont value []TiIndicator ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -252,9 +254,9 @@ func (r *TiIndicatorCollectionDeleteTiIndicatorsRequest) Paging(ctx context.Cont } var values []ResultInfo for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -267,6 +269,7 @@ func (r *TiIndicatorCollectionDeleteTiIndicatorsRequest) Paging(ctx context.Cont value []ResultInfo ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -338,9 +341,9 @@ func (r *TiIndicatorCollectionDeleteTiIndicatorsByExternalIDRequest) Paging(ctx } var values []ResultInfo for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -353,6 +356,7 @@ func (r *TiIndicatorCollectionDeleteTiIndicatorsByExternalIDRequest) Paging(ctx value []ResultInfo ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestTime.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestTime.go index ef3a04c9..f1eb2ae2 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestTime.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestTime.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestTrending.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestTrending.go index ccea21bf..80743b6e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestTrending.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestTrending.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestTrust.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestTrust.go index 7d3e61e2..59ee4b46 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestTrust.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestTrust.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestUnfamiliar.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestUnfamiliar.go index 52cea47e..3bc89dc7 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestUnfamiliar.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestUnfamiliar.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestUnified.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestUnified.go index a7b67a05..a59abfeb 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestUnified.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestUnified.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestUnit.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestUnit.go index 1cbf4f70..edbed37b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestUnit.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestUnit.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestUsed.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestUsed.go index 236599c0..fc0e2403 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestUsed.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestUsed.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestUser.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestUser.go index d4639284..0f39af4a 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestUser.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestUser.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -861,9 +861,9 @@ func (r *UserGetMailTipsRequest) Paging(ctx context.Context, method, path string } var values []MailTips for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -876,6 +876,7 @@ func (r *UserGetMailTipsRequest) Paging(ctx context.Context, method, path string value []MailTips ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -947,9 +948,9 @@ func (r *UserTranslateExchangeIDsRequest) Paging(ctx context.Context, method, pa } var values []ConvertIDResult for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -962,6 +963,7 @@ func (r *UserTranslateExchangeIDsRequest) Paging(ctx context.Context, method, pa value []ConvertIDResult ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestVPP.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestVPP.go index 6f1f2dca..bfaf7bbd 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestVPP.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestVPP.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestVendor.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestVendor.go index 99838274..ee25ffdd 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestVendor.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestVendor.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWeb.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWeb.go index 11b2d481..e1a991db 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWeb.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWeb.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWindows.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWindows.go index 796cd176..70dc25e7 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWindows.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWindows.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -1169,9 +1169,9 @@ func (r *WindowsAutopilotDeploymentProfileCollectionHasPayloadLinksRequest) Pagi } var values []HasPayloadLinkResultItem for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -1184,6 +1184,7 @@ func (r *WindowsAutopilotDeploymentProfileCollectionHasPayloadLinksRequest) Pagi value []HasPayloadLinkResultItem ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWindows10.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWindows10.go index 1fcecf35..9447f56e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWindows10.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWindows10.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWindows81.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWindows81.go index ac24feb7..76bb57dc 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWindows81.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWindows81.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWork.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWork.go index 19929506..1aded9f7 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWork.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWork.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbook.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbook.go index 2bd14067..5a8026da 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbook.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbook.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctions.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctions.go index 21f472e3..07360b41 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctions.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctions.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAbs.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAbs.go index 999c4dd9..4657e149 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAbs.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAbs.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAccr.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAccr.go index 688bb23e..fbe4785e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAccr.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAccr.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAcos.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAcos.go index dc0fc6dc..3159f0ad 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAcos.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAcos.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAcosh.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAcosh.go index 4d8b0799..2c00e879 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAcosh.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAcosh.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAcot.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAcot.go index 010d417f..63ea6a03 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAcot.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAcot.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAcoth.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAcoth.go index b47e69bc..c5f75488 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAcoth.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAcoth.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAmor.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAmor.go index 256a6dcc..74b36dcf 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAmor.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAmor.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAnd.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAnd.go index 928c1791..75cd7071 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAnd.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAnd.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsArabic.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsArabic.go index 2c520522..ed3cd061 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsArabic.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsArabic.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAreas.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAreas.go index 6d16c45c..91e788a4 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAreas.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAreas.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAsc.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAsc.go index 79ad3437..d5b4c42c 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAsc.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAsc.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAsin.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAsin.go index a3c8bbcc..7041f2a1 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAsin.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAsin.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAsinh.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAsinh.go index 5ef3c4fe..73a46078 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAsinh.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAsinh.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAtan.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAtan.go index 1d4b7e50..c0d73e88 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAtan.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAtan.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAtan2.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAtan2.go index bb0cf4b2..66bc26c8 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAtan2.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAtan2.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAtanh.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAtanh.go index 3a5176da..e94243f7 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAtanh.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAtanh.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAve.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAve.go index 4b7ce1e8..32b861be 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAve.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAve.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAverage.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAverage.go index 442b7bd3..280f0ff2 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAverage.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsAverage.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsBaht.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsBaht.go index 319c842c..50b530a7 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsBaht.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsBaht.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsBase.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsBase.go index 1c82ae33..e36385b9 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsBase.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsBase.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsBessel.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsBessel.go index dbe1a623..78aa7ba6 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsBessel.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsBessel.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsBeta_.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsBeta_.go index 8fb590ac..2b31a3db 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsBeta_.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsBeta_.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsBin2.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsBin2.go index 246221ac..8565e419 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsBin2.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsBin2.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsBinom_.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsBinom_.go index 9a8618ee..6a67c36a 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsBinom_.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsBinom_.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsBitand.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsBitand.go index 9f65036f..5865af6a 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsBitand.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsBitand.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsBitlshift.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsBitlshift.go index adee0b2e..df9dec0f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsBitlshift.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsBitlshift.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsBitor.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsBitor.go index 783d5711..fcd300ff 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsBitor.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsBitor.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsBitrshift.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsBitrshift.go index cccb26e4..e4239b89 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsBitrshift.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsBitrshift.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsBitxor.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsBitxor.go index bf310030..3bb04147 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsBitxor.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsBitxor.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsCeiling_.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsCeiling_.go index 79222fde..22e67d55 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsCeiling_.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsCeiling_.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsChar.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsChar.go index fd85809b..c972b665 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsChar.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsChar.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsChi.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsChi.go index 71f1e138..251c58a2 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsChi.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsChi.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsChoose.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsChoose.go index a5019aec..41372f00 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsChoose.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsChoose.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsClean.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsClean.go index cc058905..8a20ad72 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsClean.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsClean.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsCode.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsCode.go index 943c0ee6..c919da86 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsCode.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsCode.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsColumns.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsColumns.go index 1feea1e5..bd77411a 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsColumns.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsColumns.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsCombin.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsCombin.go index 6ef3bfae..5d502fc5 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsCombin.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsCombin.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsCombina.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsCombina.go index d6f238e5..734dcf0f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsCombina.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsCombina.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsComplex.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsComplex.go index c09c37db..92f651c1 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsComplex.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsComplex.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsConcatenate.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsConcatenate.go index f50086a2..ab160104 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsConcatenate.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsConcatenate.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsConfidence_.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsConfidence_.go index fd62c985..a51e9171 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsConfidence_.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsConfidence_.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsConvert.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsConvert.go index ecc8d197..a800385b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsConvert.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsConvert.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsCos.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsCos.go index 9fb77382..07ef2d94 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsCos.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsCos.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsCosh.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsCosh.go index 034ed2f0..2b395bad 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsCosh.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsCosh.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsCot.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsCot.go index c525ded5..f2f008f1 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsCot.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsCot.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsCoth.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsCoth.go index 3e3cf4c3..0bfbd590 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsCoth.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsCoth.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsCount.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsCount.go index 268ca5fa..a8005a44 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsCount.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsCount.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsCoup.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsCoup.go index f012e035..01f1f7a8 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsCoup.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsCoup.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsCsc.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsCsc.go index e61aeddc..745f1cff 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsCsc.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsCsc.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsCsch.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsCsch.go index 84308a81..1bbeb9e0 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsCsch.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsCsch.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsCum.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsCum.go index 052f5d1c..b31d49be 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsCum.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsCum.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDate.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDate.go index 29c3d611..88533dac 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDate.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDate.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDatevalue.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDatevalue.go index 1823f2d4..90ec80a5 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDatevalue.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDatevalue.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDaverage.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDaverage.go index 597a62cf..c2626e25 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDaverage.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDaverage.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDay.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDay.go index 4ded07fd..2fa104ee 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDay.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDay.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDays.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDays.go index 89b842ea..b47f3448 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDays.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDays.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDays360.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDays360.go index 97a1c040..a1ec612f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDays360.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDays360.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDb.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDb.go index 223ba861..bb831da0 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDb.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDb.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDbcs.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDbcs.go index 5b9c4784..e0ce9143 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDbcs.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDbcs.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDcount.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDcount.go index 74d81dec..7ffcfda5 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDcount.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDcount.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDdb.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDdb.go index e5d4566a..b8a10b49 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDdb.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDdb.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDec2.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDec2.go index 6735a51e..1eaba7ae 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDec2.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDec2.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDecimal.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDecimal.go index d4711bf4..b82993ba 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDecimal.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDecimal.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDegrees.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDegrees.go index 3d25a9ad..27c48246 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDegrees.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDegrees.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDelta.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDelta.go index 3eba64a7..afc128c0 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDelta.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDelta.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDev.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDev.go index 0a9e54ea..789e0ecc 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDev.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDev.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDget.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDget.go index fcbd1bcc..9106e806 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDget.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDget.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDisc.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDisc.go index 80ed0d9b..bebc7ccd 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDisc.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDisc.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDmax.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDmax.go index f28ac3e3..721ce512 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDmax.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDmax.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDmin.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDmin.go index 3fe32a26..486d6d0c 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDmin.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDmin.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDollar.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDollar.go index a6c4698a..58da18cd 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDollar.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDollar.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDproduct.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDproduct.go index 7bb8a235..79a7fb2b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDproduct.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDproduct.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDst.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDst.go index 55121d23..8f09ea56 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDst.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDst.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDsum.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDsum.go index d4dcbebb..65542dff 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDsum.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDsum.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDuration.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDuration.go index b2a73833..9aac152e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDuration.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDuration.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDvar.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDvar.go index cb552383..d43ca9d6 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDvar.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDvar.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsEcma_.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsEcma_.go index 2c9d9291..72a4e6a8 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsEcma_.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsEcma_.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsEdate.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsEdate.go index 98ae17a5..9c612903 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsEdate.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsEdate.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsEffect.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsEffect.go index 28b05b9e..98064e51 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsEffect.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsEffect.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsEo.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsEo.go index 58588a1f..28bdecd5 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsEo.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsEo.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsErf.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsErf.go index 715e1247..be16537f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsErf.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsErf.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsErf_.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsErf_.go index d953d6a8..541d7087 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsErf_.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsErf_.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsError_.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsError_.go index 883f88f4..3c983d22 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsError_.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsError_.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsEven.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsEven.go index 2a1f55f1..04ff22e1 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsEven.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsEven.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsExact.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsExact.go index bb7e4d83..b32c4a19 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsExact.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsExact.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsExp.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsExp.go index 70e093b6..4ea4fbb9 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsExp.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsExp.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsExpon_.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsExpon_.go index 75197055..4133418d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsExpon_.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsExpon_.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsF_.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsF_.go index 9b4f8b06..8509f102 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsF_.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsF_.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsFact.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsFact.go index f9b10b12..3282a326 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsFact.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsFact.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsFalse.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsFalse.go index 3b060ee4..c8318030 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsFalse.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsFalse.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsFind.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsFind.go index 67e60325..9b8ff0ec 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsFind.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsFind.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsFisher.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsFisher.go index 2ae8b49e..a9682152 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsFisher.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsFisher.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsFixed.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsFixed.go index 43c58e93..8a6f4e33 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsFixed.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsFixed.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsFloor_.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsFloor_.go index 1699714a..18a8620d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsFloor_.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsFloor_.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsFv.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsFv.go index 31d86bd2..eb5b802f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsFv.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsFv.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsFvschedule.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsFvschedule.go index fe0e4bf8..e2fbc7e2 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsFvschedule.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsFvschedule.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsGamma.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsGamma.go index 7e8a1b6b..9bd60a37 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsGamma.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsGamma.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsGamma_.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsGamma_.go index c5c764fd..7afa0a93 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsGamma_.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsGamma_.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsGauss.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsGauss.go index 868a0bce..7420fad1 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsGauss.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsGauss.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsGcd.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsGcd.go index 01ee73b7..bae01803 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsGcd.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsGcd.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsGe.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsGe.go index e15339da..ff3f308c 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsGe.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsGe.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsGeo.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsGeo.go index fe62e6e2..1c7d5609 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsGeo.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsGeo.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsHar.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsHar.go index a31b150c..601254fd 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsHar.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsHar.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsHex2.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsHex2.go index a3e784c2..3546112b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsHex2.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsHex2.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsHlookup.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsHlookup.go index 9487a05e..20561c15 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsHlookup.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsHlookup.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsHour.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsHour.go index 93ae3fc0..aa80d64b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsHour.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsHour.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsHyp.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsHyp.go index 2593c34d..bd966270 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsHyp.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsHyp.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsHyperlink.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsHyperlink.go index d961df1a..17c107c2 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsHyperlink.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsHyperlink.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsIf.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsIf.go index 6a886d1b..e3615910 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsIf.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsIf.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsIm.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsIm.go index 0cdb7f3e..715aead4 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsIm.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsIm.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsImaginary.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsImaginary.go index 4c64af6d..65d61de0 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsImaginary.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsImaginary.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsInt.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsInt.go index 7b9c82c4..3335ec41 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsInt.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsInt.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsIpmt.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsIpmt.go index 38fadd93..dc766fea 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsIpmt.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsIpmt.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsIrr.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsIrr.go index 6eab11db..5f5f4172 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsIrr.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsIrr.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsIs.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsIs.go index 231d1ee0..9a2b5943 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsIs.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsIs.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsIso.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsIso.go index 6cd39ed6..aa195278 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsIso.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsIso.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsIso_.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsIso_.go index 752b9b33..b1a7ccf8 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsIso_.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsIso_.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsIspmt.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsIspmt.go index 10e5d69e..875c9c20 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsIspmt.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsIspmt.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsIsref.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsIsref.go index ad791918..43be16c2 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsIsref.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsIsref.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsKurt.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsKurt.go index 245d36bf..e57de720 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsKurt.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsKurt.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsLarge.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsLarge.go index ac5330ef..67a593f9 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsLarge.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsLarge.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsLcm.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsLcm.go index c0928d06..067b9684 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsLcm.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsLcm.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsLeft.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsLeft.go index 16c25d74..dc911fb0 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsLeft.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsLeft.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsLeftb.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsLeftb.go index 61b4f74e..f220cbe0 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsLeftb.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsLeftb.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsLen.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsLen.go index 34411b5f..ce478d8f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsLen.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsLen.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsLenb.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsLenb.go index e7fe8401..8737ccd1 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsLenb.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsLenb.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsLn.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsLn.go index db775808..6a0e1840 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsLn.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsLn.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsLog.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsLog.go index f536108a..95b3a341 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsLog.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsLog.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsLog10.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsLog10.go index 7ca02dc5..f9232f64 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsLog10.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsLog10.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsLookup.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsLookup.go index a3746245..4fc4c762 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsLookup.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsLookup.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsLower.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsLower.go index 954adabf..de98f264 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsLower.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsLower.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsMatch.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsMatch.go index 7013bdbd..5d5b2d4a 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsMatch.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsMatch.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsMax.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsMax.go index a77a1f89..c36639e2 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsMax.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsMax.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsMduration.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsMduration.go index e3029e78..55d8aec2 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsMduration.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsMduration.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsMedian.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsMedian.go index 2c911f56..26a41211 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsMedian.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsMedian.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsMid.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsMid.go index 330f54a3..a4991f8c 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsMid.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsMid.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsMidb.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsMidb.go index 3da0e64d..a93d7dc2 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsMidb.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsMidb.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsMin.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsMin.go index f2fc805a..d4e5cc16 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsMin.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsMin.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsMinute.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsMinute.go index 39200c97..44c77dd1 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsMinute.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsMinute.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsMirr.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsMirr.go index e6857606..bc4017b7 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsMirr.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsMirr.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsMod.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsMod.go index 9c528fd1..29d63219 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsMod.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsMod.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsMonth.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsMonth.go index 1657c1a2..01e935a6 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsMonth.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsMonth.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsMround.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsMround.go index ee7a443a..7973276d 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsMround.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsMround.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsMulti.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsMulti.go index 9fa57eeb..bb8db880 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsMulti.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsMulti.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsN.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsN.go index dd3095b8..25cba5ff 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsN.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsN.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsNa.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsNa.go index 8065e8a3..51ae7836 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsNa.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsNa.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsNeg.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsNeg.go index b7950a53..c97c510a 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsNeg.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsNeg.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsNetwork.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsNetwork.go index 5003df98..de597a26 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsNetwork.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsNetwork.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsNominal.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsNominal.go index b17b3fa6..22cbd304 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsNominal.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsNominal.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsNorm_.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsNorm_.go index 83ca0012..d12303e7 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsNorm_.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsNorm_.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsNot.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsNot.go index 9e568d82..db7204ed 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsNot.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsNot.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsNow.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsNow.go index 3fa1181f..c4855955 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsNow.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsNow.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsNper.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsNper.go index 2abf6221..d658f494 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsNper.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsNper.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsNpv.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsNpv.go index 3fe990de..85445a34 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsNpv.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsNpv.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsNumber.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsNumber.go index c783e95d..7fa70f72 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsNumber.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsNumber.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsOct2.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsOct2.go index 625b478c..b9a0938f 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsOct2.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsOct2.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsOdd.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsOdd.go index 0600ab4b..0f8529e3 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsOdd.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsOdd.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsOr.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsOr.go index 6ac56589..9178afd4 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsOr.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsOr.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPduration.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPduration.go index 65bbddd8..1c919cae 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPduration.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPduration.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPercent.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPercent.go index a866813d..0578cc03 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPercent.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPercent.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPercentile_.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPercentile_.go index 74e6da92..8ba2a2db 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPercentile_.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPercentile_.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPermut.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPermut.go index 28600d2c..e31bfb40 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPermut.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPermut.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPermutationa.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPermutationa.go index 39777101..f1590a37 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPermutationa.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPermutationa.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPhi.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPhi.go index bc3b1acd..af391080 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPhi.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPhi.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPi.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPi.go index 0fe31000..238dc071 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPi.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPi.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPmt.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPmt.go index b7ad651b..3af64cf5 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPmt.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPmt.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPoisson_.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPoisson_.go index 398a2d35..eff06c83 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPoisson_.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPoisson_.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPower.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPower.go index 12f0b4be..3a9bd716 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPower.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPower.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPpmt.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPpmt.go index c82a5cdb..f4ed9094 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPpmt.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPpmt.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPrice.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPrice.go index 05eb4618..8b1d6f83 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPrice.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPrice.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsProduct.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsProduct.go index c0455d05..d8427491 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsProduct.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsProduct.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsProper.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsProper.go index 92813ddb..38519e19 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsProper.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsProper.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPv.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPv.go index 364e2c11..77560358 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPv.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPv.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsQuartile_.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsQuartile_.go index a02ef532..91a2c563 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsQuartile_.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsQuartile_.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsQuotient.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsQuotient.go index 7599aad5..4a342e65 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsQuotient.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsQuotient.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsRadians.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsRadians.go index b77a6eef..a03c1c11 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsRadians.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsRadians.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsRand.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsRand.go index 51aa766e..dbc8290e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsRand.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsRand.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsRank_.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsRank_.go index 2f427adb..9ad66203 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsRank_.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsRank_.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsRate.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsRate.go index 226d7543..6edf7de7 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsRate.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsRate.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsReceived.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsReceived.go index 18b6723a..032d960b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsReceived.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsReceived.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsReplace.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsReplace.go index 48a08e59..9e018250 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsReplace.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsReplace.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsRept.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsRept.go index 72f10a91..74b3d7b9 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsRept.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsRept.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsRight.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsRight.go index a705dc38..cdae6220 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsRight.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsRight.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsRightb.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsRightb.go index da4b46d9..baa82f6c 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsRightb.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsRightb.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsRoman.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsRoman.go index 5c262917..8aa4ee76 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsRoman.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsRoman.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsRound.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsRound.go index 98b7d91e..90b5189c 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsRound.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsRound.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsRows.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsRows.go index 4ddcd439..55cd6473 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsRows.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsRows.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsRri.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsRri.go index 9a791b5f..7db7bb78 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsRri.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsRri.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSec.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSec.go index 3980aed4..20beedd8 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSec.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSec.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSech.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSech.go index 67ba1f1a..8a2257c2 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSech.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSech.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSecond.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSecond.go index aeb62248..383bcad3 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSecond.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSecond.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSeries.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSeries.go index 3172ebec..8e8f3c99 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSeries.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSeries.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSheet.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSheet.go index ebc3f3f1..59d2f048 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSheet.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSheet.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSheets.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSheets.go index a6de3c52..99f5f347 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSheets.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSheets.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSign.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSign.go index 8351ef61..4627b670 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSign.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSign.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSin.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSin.go index 459b2862..88ee63aa 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSin.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSin.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSinh.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSinh.go index a9d198c2..901151bd 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSinh.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSinh.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSkew.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSkew.go index 141c4690..cf56e1c3 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSkew.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSkew.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSkew_p.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSkew_p.go index 2b52da68..67a64af4 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSkew_p.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSkew_p.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSln.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSln.go index a67e6de1..95ae575a 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSln.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSln.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSmall.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSmall.go index c18f86df..b4f94c2e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSmall.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSmall.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSqrt.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSqrt.go index bc30d0b3..2cb76ff1 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSqrt.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSqrt.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSt.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSt.go index a1bebc65..a1dedf79 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSt.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSt.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsStandardize.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsStandardize.go index 894506cd..7a428dcb 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsStandardize.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsStandardize.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSubstitute.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSubstitute.go index 46069aad..f6168706 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSubstitute.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSubstitute.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSubtotal.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSubtotal.go index 0b0cc269..691a74bf 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSubtotal.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSubtotal.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSum.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSum.go index 6c8e0307..5373cdf7 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSum.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSum.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSyd.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSyd.go index 386a96f1..b5fca643 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSyd.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsSyd.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsT.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsT.go index 953679f5..78d79069 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsT.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsT.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsT_.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsT_.go index 80a2644f..2a6149dd 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsT_.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsT_.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsTan.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsTan.go index a64002a1..0a768500 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsTan.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsTan.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsTanh.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsTanh.go index 9be09161..3e8a5b66 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsTanh.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsTanh.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsTbill.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsTbill.go index 93ae1da8..81ea7a86 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsTbill.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsTbill.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsText.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsText.go index 4a5be392..e34c59ce 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsText.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsText.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsTime.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsTime.go index 2d9256ad..1ba10621 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsTime.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsTime.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsTimevalue.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsTimevalue.go index be96da8b..728a442b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsTimevalue.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsTimevalue.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsToday.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsToday.go index 9169d6a1..ff456d21 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsToday.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsToday.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsTrim.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsTrim.go index 8c195d68..7bcc1506 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsTrim.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsTrim.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsTrue.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsTrue.go index df1f7b2a..f5e8025b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsTrue.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsTrue.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsTrunc.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsTrunc.go index 98e4aec5..263e879a 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsTrunc.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsTrunc.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsType.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsType.go index 8f2b24de..0c13f804 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsType.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsType.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsUnichar.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsUnichar.go index 11df67e7..9510a6a4 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsUnichar.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsUnichar.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsUnicode.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsUnicode.go index b92f3570..7e4ac816 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsUnicode.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsUnicode.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsUpper.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsUpper.go index 6ae98c66..e2310ae5 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsUpper.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsUpper.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsUsdollar.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsUsdollar.go index 7c7b5b7f..18a2dfed 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsUsdollar.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsUsdollar.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsValue.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsValue.go index bc0bdcaa..dfa7fef0 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsValue.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsValue.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsVar.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsVar.go index 25dbef1c..5c6c6497 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsVar.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsVar.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsVar_.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsVar_.go index 3f088766..10aacf34 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsVar_.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsVar_.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsVdb.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsVdb.go index abb90fa3..2ecb5e34 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsVdb.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsVdb.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsVlookup.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsVlookup.go index ad7debc2..7dcecfc4 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsVlookup.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsVlookup.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsWeek.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsWeek.go index 4cfbea3e..9e00e1b0 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsWeek.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsWeek.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsWeekday.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsWeekday.go index 5862a2e3..978b3a5b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsWeekday.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsWeekday.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsWeibull_.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsWeibull_.go index 7d5588dc..16005b00 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsWeibull_.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsWeibull_.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsWork.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsWork.go index 2f07d28e..cdc87948 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsWork.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsWork.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsXirr.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsXirr.go index 56143a27..05ce9914 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsXirr.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsXirr.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsXnpv.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsXnpv.go index 962bd0d0..3cb51efa 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsXnpv.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsXnpv.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsXor.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsXor.go index b541a3f4..8dd1f9ed 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsXor.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsXor.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsYear.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsYear.go index 4a5e1e73..8b5c2d48 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsYear.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsYear.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsYield.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsYield.go index d69dc736..e65b940a 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsYield.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsYield.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsZ_.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsZ_.go index 1117ce36..19db663b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsZ_.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsZ_.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkforce.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkforce.go index 30a69010..700f2d22 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkforce.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkforce.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/const.go b/vendor/github.com/yaegashi/msgraph.go/beta/const.go new file mode 100644 index 00000000..3d267974 --- /dev/null +++ b/vendor/github.com/yaegashi/msgraph.go/beta/const.go @@ -0,0 +1,7 @@ +// Code generated by msgraph.go/gen DO NOT EDIT. + +package msgraph + +const ( + defaultBaseURL = "https://graph.microsoft.com/beta" +) diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/extensions.go b/vendor/github.com/yaegashi/msgraph.go/beta/extensions.go index 23971438..627143de 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/extensions.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/extensions.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/msgraph.go b/vendor/github.com/yaegashi/msgraph.go/beta/msgraph.go index df1f4384..bf23e41e 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/msgraph.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/msgraph.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -18,10 +18,6 @@ import ( "github.com/yaegashi/msgraph.go/jsonx" ) -const ( - defaultBaseURL = "https://graph.microsoft.com/beta" -) - // Binary is type alias for Edm.Binary type Binary []byte |