From 05da909aefc4c5dcd00397f8edfbeea0c1b308a6 Mon Sep 17 00:00:00 2001 From: Anshul Verma Date: Tue, 9 Jul 2024 10:50:28 +0530 Subject: [PATCH 1/2] [Draft]Fixed context issue --- .../cosmosdb/zz_generated_authorizer.go | 17 +++++++++-------- pkg/database/cosmosdb/zz_generated_cosmosdb.go | 2 +- pkg/database/database.go | 6 +++--- 3 files changed, 13 insertions(+), 12 deletions(-) diff --git a/pkg/database/cosmosdb/zz_generated_authorizer.go b/pkg/database/cosmosdb/zz_generated_authorizer.go index a9784f9ff3f..b280c61295a 100644 --- a/pkg/database/cosmosdb/zz_generated_authorizer.go +++ b/pkg/database/cosmosdb/zz_generated_authorizer.go @@ -3,6 +3,7 @@ package cosmosdb import ( + "context" "crypto/hmac" "crypto/sha256" "encoding/base64" @@ -15,14 +16,14 @@ import ( ) type Authorizer interface { - Authorize(*http.Request, string, string) error + Authorize(context.Context , *http.Request, string, string) error } type masterKeyAuthorizer struct { masterKey []byte } -func (a *masterKeyAuthorizer) Authorize(req *http.Request, resourceType, resourceLink string) error { +func (a *masterKeyAuthorizer) Authorize(ctx context.Context, req *http.Request, resourceType, resourceLink string) error { date := time.Now().UTC().Format("Mon, 02 Jan 2006 15:04:05 GMT") h := hmac.New(sha256.New, a.masterKey) @@ -49,11 +50,11 @@ type tokenAuthorizer struct { cond *sync.Cond acquiring bool lastAttempt time.Time - getToken func() (token string, newExpiration time.Time, err error) + getToken func(context.Context) (token string, newExpiration time.Time, err error) } -func (a *tokenAuthorizer) Authorize(req *http.Request, resourceType, resourceLink string) error { - token, err := a.acquireToken() +func (a *tokenAuthorizer) Authorize(ctx context.Context, req *http.Request, resourceType, resourceLink string) error { + token, err := a.acquireToken(ctx) if err != nil { return err } @@ -65,13 +66,13 @@ func (a *tokenAuthorizer) Authorize(req *http.Request, resourceType, resourceLin return nil } -func NewTokenAuthorizer(token string, expiration time.Time, getToken func() (token string, newExpiration time.Time, err error)) Authorizer { +func NewTokenAuthorizer(token string, expiration time.Time, getToken func(context.Context) (token string, newExpiration time.Time, err error)) Authorizer { return &tokenAuthorizer{token: token, expiration: expiration, getToken: getToken, cond: sync.NewCond(&sync.Mutex{})} } // Get returns the underlying resource. // If the resource is fresh, no refresh is performed. -func (a *tokenAuthorizer) acquireToken() (string, error) { +func (a *tokenAuthorizer) acquireToken(ctx context.Context) (string, error) { // If the resource is expiring within this time window, update it eagerly. // This allows other goroutines to keep running by using the not-yet-expired // resource value while one goroutine updates the resource. @@ -119,7 +120,7 @@ func (a *tokenAuthorizer) acquireToken() (string, error) { var expiration time.Time var newValue string a.lastAttempt = now - newValue, expiration, err = a.getToken() + newValue, expiration, err = a.getToken(ctx) // Atomically, update the shared token's new value & expiration. a.cond.L.Lock() diff --git a/pkg/database/cosmosdb/zz_generated_cosmosdb.go b/pkg/database/cosmosdb/zz_generated_cosmosdb.go index d4cfcd5f71d..8784fbcda4b 100644 --- a/pkg/database/cosmosdb/zz_generated_cosmosdb.go +++ b/pkg/database/cosmosdb/zz_generated_cosmosdb.go @@ -119,7 +119,7 @@ func (c *databaseClient) _do(ctx context.Context, method, path, resourceType, re req.Header.Set("x-ms-version", "2018-12-31") if c.authorizer != nil { - err := c.authorizer.Authorize(req, resourceType, resourceLink) + err := c.authorizer.Authorize(ctx, req, resourceType, resourceLink) if err != nil { return nil, err } diff --git a/pkg/database/database.go b/pkg/database/database.go index c2d00e945c3..36f8cb93652 100644 --- a/pkg/database/database.go +++ b/pkg/database/database.go @@ -74,14 +74,14 @@ func NewMasterKeyAuthorizer(ctx context.Context, log *logrus.Entry, token azcore } func NewTokenAuthorizer(ctx context.Context, log *logrus.Entry, cred azcore.TokenCredential, databaseAccountName string, scopes []string) (cosmosdb.Authorizer, error) { - acquireToken := func() (token string, newExpiration time.Time, err error) { - tk, err := cred.GetToken(ctx, azcorepolicy.TokenRequestOptions{Scopes: scopes}) + acquireToken := func(contxt context.Context) (token string, newExpiration time.Time, err error) { + tk, err := cred.GetToken(contxt, azcorepolicy.TokenRequestOptions{Scopes: scopes}) if err != nil { return "", time.Time{}, err } return tk.Token, tk.ExpiresOn, nil } - tk, expiration, err := acquireToken() + tk, expiration, err := acquireToken(ctx) if err != nil { return nil, err } From cb9a49bb5f261f621096b3bf70709d7c3e63136a Mon Sep 17 00:00:00 2001 From: Anshul Verma Date: Tue, 23 Jul 2024 13:38:57 +0530 Subject: [PATCH 2/2] generated code from jewzaam/go-cosmosdb --- go.mod | 2 +- go.sum | 4 ++-- pkg/database/cosmosdb/zz_generated_authorizer.go | 2 +- .../github.com/jewzaam/go-cosmosdb/pkg/gencosmosdb/bindata.go | 4 ++-- vendor/modules.txt | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/go.mod b/go.mod index 244f17aded3..dfb908a2a40 100644 --- a/go.mod +++ b/go.mod @@ -45,7 +45,7 @@ require ( github.com/gorilla/sessions v1.2.2 github.com/hashicorp/go-multierror v1.1.1 github.com/itchyny/gojq v0.12.13 - github.com/jewzaam/go-cosmosdb v0.0.0-20240603205015-e096456eff37 + github.com/jewzaam/go-cosmosdb v0.0.0-20240723075448-058185e3c66d github.com/jongio/azidext/go/azidext v0.5.0 github.com/microsoft/kiota-abstractions-go v1.2.0 github.com/microsoft/kiota-http-go v1.0.0 diff --git a/go.sum b/go.sum index 055e96e6ff2..2563edb4de2 100644 --- a/go.sum +++ b/go.sum @@ -372,8 +372,8 @@ github.com/itchyny/gojq v0.12.13/go.mod h1:JzwzAqenfhrPUuwbmEz3nu3JQmFLlQTQMUcOd github.com/itchyny/timefmt-go v0.1.5 h1:G0INE2la8S6ru/ZI5JecgyzbbJNs5lG1RcBqa7Jm6GE= github.com/itchyny/timefmt-go v0.1.5/go.mod h1:nEP7L+2YmAbT2kZ2HfSs1d8Xtw9LY8D2stDBckWakZ8= github.com/jessevdk/go-flags v1.4.0/go.mod h1:4FA24M0QyGHXBuZZK/XkWh8h0e1EYbRYJSGM75WSRxI= -github.com/jewzaam/go-cosmosdb v0.0.0-20240603205015-e096456eff37 h1:69P76EErLYvPuva+ITbDvOIaA+KH9153kU8QeGhJijk= -github.com/jewzaam/go-cosmosdb v0.0.0-20240603205015-e096456eff37/go.mod h1:hEk8/SoE/NBT9ofV69Gzs98vbGyF155SaYl1p9bxKb8= +github.com/jewzaam/go-cosmosdb v0.0.0-20240723075448-058185e3c66d h1:2Xp2eP830w13cWq6sombl3EsBM46xYkdkLog8BgFWyQ= +github.com/jewzaam/go-cosmosdb v0.0.0-20240723075448-058185e3c66d/go.mod h1:hEk8/SoE/NBT9ofV69Gzs98vbGyF155SaYl1p9bxKb8= github.com/jinzhu/copier v0.4.0 h1:w3ciUoD19shMCRargcpm0cm91ytaBhDvuRpz1ODO/U8= github.com/jinzhu/copier v0.4.0/go.mod h1:DfbEm0FYsaqBcKcFuvmOZb218JkPGtvSHsKg8S8hyyg= github.com/jmespath/go-jmespath v0.3.0/go.mod h1:9QtRXoHjLGCJ5IBSaohpXITPlowMeeYCZ7fLUTSywik= diff --git a/pkg/database/cosmosdb/zz_generated_authorizer.go b/pkg/database/cosmosdb/zz_generated_authorizer.go index b280c61295a..12cdcfe3356 100644 --- a/pkg/database/cosmosdb/zz_generated_authorizer.go +++ b/pkg/database/cosmosdb/zz_generated_authorizer.go @@ -16,7 +16,7 @@ import ( ) type Authorizer interface { - Authorize(context.Context , *http.Request, string, string) error + Authorize(context.Context, *http.Request, string, string) error } type masterKeyAuthorizer struct { diff --git a/vendor/github.com/jewzaam/go-cosmosdb/pkg/gencosmosdb/bindata.go b/vendor/github.com/jewzaam/go-cosmosdb/pkg/gencosmosdb/bindata.go index 910b8ed7191..c2ad9297bac 100644 --- a/vendor/github.com/jewzaam/go-cosmosdb/pkg/gencosmosdb/bindata.go +++ b/vendor/github.com/jewzaam/go-cosmosdb/pkg/gencosmosdb/bindata.go @@ -86,7 +86,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _authorizerGo = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x56\xdf\x6f\xe3\xb8\x11\x7e\x16\xff\x8a\x59\x03\xe7\x4a\x0b\x59\xce\x6d\x2f\xfb\x60\xc0\x0f\xb9\xbb\xbd\xed\xb5\x49\x80\x5e\xbc\x2d\xd0\x5e\x1f\x68\x69\x14\x11\x96\x48\x2f\x49\x45\x71\x73\xfe\xdf\x8b\x21\x45\x49\x76\xdc\x5d\xa0\xd7\x00\xbb\xa6\xf8\x63\xe6\x9b\x99\xef\x1b\x72\xcf\xf3\x1d\x7f\x44\xc8\x95\x69\x94\x29\xb6\x8c\x89\x66\xaf\xb4\x85\x98\x45\xb3\x5c\x1f\xf6\x56\x2d\xab\x86\xe7\xb3\xf1\xd3\x54\xfc\xdd\xf5\x7b\x9a\x40\x99\xab\x42\xc8\xc7\xe5\x96\x1b\x7c\xff\x1d\x4d\x95\x8d\xa5\x1f\x89\x76\x59\x59\xbb\x0f\xe3\x56\xd7\x34\x34\x56\x0b\xf9\x68\xdc\xf0\x20\x9d\x51\x2b\x1a\x9c\xb1\x84\x31\x7b\xd8\x23\xdc\xb4\xb6\x52\x5a\xfc\x1b\x35\x08\x69\x51\x97\x3c\x47\x78\x61\xd1\x30\x1f\xbf\x25\xb3\xd9\x2f\xf8\xb9\x45\x63\x53\xf0\x16\xc3\x6f\x02\xa8\xb5\xd2\xec\xd8\x9b\x6b\xb8\xb1\xa8\xff\x82\x87\x89\x5d\x63\x75\x9b\x5b\x32\x3a\xac\xc2\x3f\xff\xb5\x3d\x58\xa4\x63\x65\x2b\x73\x88\x39\xbc\xbd\x70\x34\x19\xe1\xc5\x1a\x3f\xc3\x19\x14\x8d\x46\xb5\x3a\xc7\xcd\x61\x8f\xe3\xd7\xad\x90\xbb\x53\x74\xe4\xba\xe0\x16\x61\xb5\x06\x8a\x3e\xbb\x57\x5d\x9c\x64\x9f\x36\x3f\xc4\x49\xf6\x93\xd2\x0d\xb7\xf1\xec\x4e\xc9\x14\xae\xde\xc1\x9f\xb9\x84\x77\x57\x57\xef\xe1\xdb\xeb\xd5\xd5\x77\xab\xab\x6b\xf8\x78\xb7\x99\x25\x8c\x45\x15\x9d\xa7\xd2\x64\xf7\xd8\xc5\xbe\x28\x34\x4c\x81\x67\x03\xf8\x84\x45\x65\x63\xb3\x9f\xf6\x5a\x48\x5b\xc6\x55\x0a\xb3\x6f\xcc\xaf\x72\xfa\xef\x57\x39\x0b\xe9\x33\xd9\x46\xdd\xaa\x0e\x35\x85\x97\xdd\xa1\xad\x54\x91\x7c\x29\xb0\xd7\x07\x29\xb0\x84\xe0\x91\x85\x3f\x21\x2f\x50\x67\x0f\x68\xe3\x59\x48\x1d\xb7\x42\x91\xc7\x56\xd7\xd9\x5f\x5b\xd4\x87\x0f\x26\xe7\x7b\x8c\x09\xe6\x43\x0f\x73\x46\xc5\x5b\xfb\x20\xe6\x4f\xa8\xd7\xdf\x66\x57\x73\x23\x1e\xd7\xdf\x98\x59\x0a\x9e\x6c\xd9\x83\x2d\x3e\xf4\xfc\xcb\xdc\x00\x37\xea\xc1\xa1\x89\xab\xec\xa1\x6d\x62\x29\xea\x84\xfe\x5e\x63\x79\x5e\x34\x66\x41\x48\x67\x29\x38\xc0\x0e\xaf\x6d\xb5\x04\x29\xea\x81\x06\xf7\xd8\xdd\xbd\x66\x41\x3c\xd2\x26\x94\x35\x1e\x57\x53\x5f\xe3\x84\x8a\xbc\x75\x1f\x54\xa6\x0b\x90\x7f\x44\x82\xdc\x03\x9e\xd6\x4b\x94\xee\xd4\x9b\x35\x61\x21\x33\x13\x68\xce\x20\x8b\x8e\x23\xde\xf9\x05\x9e\xbe\x0c\x73\x2b\xd8\x1e\xd3\x10\x93\x53\x84\x55\x3b\x94\x17\xd5\xe0\x56\xc0\xff\xf9\xc0\x58\x84\xcf\x7b\xa1\x5d\xc5\xc0\x53\x75\x23\x1a\x64\x51\xae\x64\xd1\xef\x84\xb7\x24\xe4\xec\x07\x25\x0b\x16\xf1\xfc\x73\x2b\xe8\x24\x00\x6c\x95\xaa\x59\x54\x73\x63\x6f\xac\xc5\x66\x6f\xa7\x06\x1e\xd1\x6e\x82\x3b\x4a\x75\x9c\x40\xec\xfd\x07\x3d\x4b\xec\x3e\x8c\xce\x87\xa3\x3e\xa3\x3e\xc5\x27\x72\x3d\x8b\xeb\xff\x28\x55\x67\x79\xa8\x24\xcf\x7c\x90\xe8\xf0\xc7\x5f\xaa\x57\x5f\xaa\x88\x4f\x99\xef\x69\x48\x96\x5e\x13\x9e\xf3\xe2\x35\xdb\x9d\xfb\x84\x45\x79\xab\x35\x4a\x4b\x49\xf8\x5d\x8d\xe3\xab\xc2\xbc\x00\xf7\x2b\x12\x9a\x40\xfb\xef\x4a\xda\x9c\x16\xe8\xac\xdc\x78\xb1\xd6\x03\x4d\xfe\x67\x8e\x24\xd3\x1b\xe5\x65\x54\xcd\x19\x5d\x5e\xdc\xf7\x0a\x42\xad\x07\xab\xab\xc9\x78\xc4\xb3\x1a\x46\x29\x90\x16\x56\xe0\x44\x70\x8f\x1d\xe9\x20\x9e\xbb\xaf\xbb\xd6\xe2\xf3\xcb\x31\x39\x52\x16\x96\x4b\xf8\x88\x16\xbc\x7b\x03\xb6\x42\x68\x65\x81\xba\x3e\x90\x5a\x02\x01\x33\xda\xf7\x73\xe9\x96\xc3\x1c\x08\x03\xa5\x46\x53\xa5\x20\x15\x68\x74\x63\x9a\xdc\xa3\x2e\x95\x6e\xb0\xc8\xbe\xa0\x82\x53\xb2\x42\x3c\xe4\x7b\x68\x52\x97\x3d\xba\xa8\x09\x5a\x27\x6c\x25\x24\xd8\x4a\x18\x97\x61\xe8\x84\x2c\x54\x97\x42\xbb\x77\x77\x98\xb0\x80\xfc\x91\x02\xc9\x9c\xad\x0d\x6d\xe4\x75\xad\x3a\x03\xca\x56\xa8\xe1\x51\x69\xd5\x5a\x21\xd1\x80\x55\xb0\x43\xdc\x83\x6e\xa5\x24\xe3\xdb\x03\xb4\x86\x06\xe4\x5e\x2a\xbb\x38\xa0\x5d\x38\xd7\x58\x38\x6b\x03\xa4\x27\x5e\xb7\x08\x5d\x25\x6a\x04\x25\x71\x34\xda\xe3\x30\x27\x11\x64\xae\x45\x19\xdb\x83\x85\x35\x5c\xc3\x5b\x4f\x90\x3b\x21\x5b\x8b\x00\x40\x58\x55\x88\x82\x0e\x7b\x6e\x89\x12\xae\xa1\x11\xd2\x40\x8d\xa5\x25\xc4\x1e\x4f\xb0\xb8\xe5\xf9\x4e\x95\x25\xac\xe1\x8f\x57\xc1\xe6\x03\xba\x86\xb8\x5c\xc2\x9d\x90\xa2\x69\x1b\xe8\xb8\xf0\xfd\x0e\xb6\x68\x3b\x44\x09\xdc\x37\x41\xc3\x22\x49\xd9\xeb\xeb\xd2\x53\x0d\x8b\x53\x49\xa7\x50\xf2\xda\x60\xff\xc3\x5c\x2a\xfa\x13\x80\xcf\x79\xdd\x1a\xf1\x84\x50\xab\x7c\xc7\x22\x9e\x91\xf3\xec\x36\xbb\x55\xf9\x8e\xfa\x91\x8f\xc3\xb5\x2a\x37\x64\x2c\x2a\x7d\x27\x8b\x82\x33\x5a\x1b\x79\x9d\xfd\x6c\xfe\x81\x5a\xc5\x09\xfc\xf6\xdb\xe9\xc2\xf7\x58\x2a\x8d\xb1\x54\x5d\xc2\x22\xd7\xe8\x7a\x03\x64\x8c\xbe\xdf\x84\x76\x48\x45\x74\x93\x03\x07\xc6\x0a\x75\xa2\xae\x07\xf8\x43\xa6\x33\xb7\x7b\x72\x7e\x48\x0a\xac\xc1\xea\x16\x53\xf7\xbf\xdb\xb5\xd5\xc8\x77\x34\x3a\x32\xef\xe1\x23\x5a\x4b\x2e\x2b\xd4\x08\x0d\x72\x27\x29\x6e\x3d\x4d\xcf\x3c\xbb\x5a\x50\x06\x9c\xe8\x5c\xbd\x0b\x0f\x81\x45\xd1\x11\xb0\x36\x48\x55\x3f\x09\xfc\xa6\x28\xe2\x85\x27\x4f\x32\xcd\x82\x8f\xd1\x85\x38\x10\xc6\x10\x39\x45\x01\xdb\xd6\x5e\x56\x0e\x4e\x85\x13\x7b\x76\x25\x97\x12\x38\x9f\x03\xcf\x26\x37\xa6\x83\xd1\x13\xee\x02\x8c\x5e\xba\x5c\x9e\xe9\x8c\x50\x48\x65\x61\x30\xbc\xd4\x28\xb1\x0b\x3a\xeb\x7b\x1c\x97\x05\x48\x92\x52\xc5\x4d\x60\x27\xa9\xce\xdb\xb5\x0a\x0a\x05\x46\x4d\xa3\x20\x64\xc4\x7a\xe3\xe8\x6e\xd2\x8b\xd9\x2e\x14\x08\xfb\x7b\x4a\x7b\x89\x3c\xad\xf1\xc4\xc1\x67\x61\x5c\xdd\x7d\xea\xa7\x4d\x21\x64\x21\xb4\x03\x0f\xc2\xef\x1b\xa5\x30\x71\xd8\x57\xfe\x62\x41\x29\x7b\x79\xad\xc8\xab\x1a\x0a\xda\xc7\x6b\x54\xdf\xb3\x84\x35\xe1\xe6\xf3\x48\xbe\xe6\x90\x85\x8a\x75\x48\xf7\x87\x23\x6f\x7a\x4a\x4f\x89\xdd\x49\x6c\x56\xc1\x16\x43\xf2\x8a\x65\xcf\x5e\x16\x05\xd5\xff\x9d\x0b\x4b\x9a\x3f\x4e\xfa\xc0\x27\x59\xbb\x4e\x40\xfd\xe8\x17\xac\x91\xf7\xc9\xa3\x59\x42\x2f\xd5\xb4\x25\x73\x8d\xb0\xa5\x25\x2c\x18\x8b\x9e\xb8\x1e\x2f\x4f\xf7\xb4\x09\x85\x7b\x61\x97\xaa\x43\xdc\xd9\x52\x7b\x33\x58\x63\xee\x85\x15\x8e\x2c\xcf\x7b\x2b\x8b\xbc\xfd\x0b\x57\x76\xbf\x24\xb1\xfb\x9b\x8b\x3b\xbc\x3f\xa3\x13\x3d\xc0\x1a\xa4\xea\x58\x14\x85\x7d\xe9\xc9\xed\x4c\xc0\x29\xf3\xe1\x6e\x8e\xe9\x31\x42\xa0\x6f\xac\x6a\x44\xce\xeb\xfa\x90\x4e\x1b\xbe\xa9\xb8\x0e\xad\xe0\x0f\xc6\xe5\xde\x67\x7d\x3e\x31\x9b\x8d\xc9\x1e\x5b\x6c\x78\xf3\xad\xc7\x37\x1f\xf9\xf9\xd4\xdb\x76\x05\x9c\x9f\x60\xeb\xdf\x1d\xa1\xc6\xaf\xf8\x12\x22\x62\x4e\x38\x41\xa2\x93\x96\x44\xca\x39\x7f\x9c\x9c\xf4\xaf\x37\x27\xbd\x99\xa2\x96\xfe\x66\x0e\x21\x97\x5c\xd4\x58\x64\xf0\xa3\x30\x39\xd7\x85\x17\x94\x7b\xe4\x52\x2b\x98\x00\xec\x49\xbd\x58\x18\x4b\xe2\x73\xdd\x6d\xb1\x98\xd0\x92\x1c\xf8\x64\xd3\x1b\xcf\x33\x7b\xda\xc7\xd6\xfd\xbd\x15\xbd\x26\xe5\x38\xf7\xbd\x56\xbc\xc8\xb9\x09\xfc\x0d\x00\x86\xd7\x36\x3b\xb2\xff\x04\x00\x00\xff\xff\xf0\x7d\xaf\xa8\x9d\x10\x00\x00") +var _authorizerGo = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x56\xdf\x8f\xdb\xb8\x11\x7e\x16\xff\x8a\x89\x81\x73\xa5\x40\x96\xf7\xd2\xdb\x3c\x18\xf0\x43\xee\x2e\x97\x5e\x9b\x0d\xd0\x5b\xa7\x05\xda\xeb\x03\x2d\x8d\x56\x84\x25\xd2\x4b\x52\xab\x75\xf7\xfc\xbf\x17\x43\x8a\x92\xfc\xa3\xc9\xc3\xb5\x0b\x24\xa6\xf8\x63\xe6\x9b\x99\xef\x1b\x72\xcf\xf3\x1d\x7f\x40\xc8\x95\x69\x94\x29\xb6\x8c\x89\x66\xaf\xb4\x85\x98\x45\xb3\x5c\x49\x8b\xcf\x76\x46\x43\x7d\xd8\x5b\xb5\xac\x1a\x9e\x4f\x3e\x4d\xc5\xdf\xdc\xbe\xa5\x09\x94\xb9\x2a\x84\x7c\x58\x6e\xb9\xc1\xb7\xdf\xd1\x54\xd9\xb8\x93\x12\xed\xb2\xb2\x76\x1f\xc6\xad\xae\x69\x68\xac\x16\xf2\xc1\xb8\xe1\x41\x3a\xa3\x56\x34\x38\x63\x09\x63\xf6\xb0\x47\x78\xd7\xda\x4a\x69\xf1\x6f\xd4\x20\xa4\x45\x5d\xf2\x1c\xe1\x85\x45\xc3\x7c\xdc\xc3\xcb\x7e\xf0\xbf\x29\xbc\x26\x3f\xd9\x2f\xf8\xd8\xa2\xb1\x29\x78\x17\xe1\x37\x01\xd4\x5a\x69\x76\xec\xed\x37\xdc\x58\xd4\x7f\xc1\xc3\xc4\x91\xb1\xba\xcd\x2d\x79\x19\x56\xe1\x9f\xff\xda\x1e\x2c\xd2\xb1\xb2\x95\x39\xc4\x1c\x5e\x5f\x39\x9a\xc0\x04\x97\x7d\x86\x0b\x6c\x1a\x1f\xcf\xf1\x69\x34\xaa\xd5\x39\x6e\x0e\x7b\x1c\xbf\x3e\x0a\xb9\x3b\x85\x4c\x78\x0a\x6e\x11\x56\x6b\xa0\x1c\x65\x9f\x54\x17\x27\xd9\xe7\xcd\x0f\x71\x92\xfd\xa4\x74\xc3\x6d\x3c\xbb\x53\x32\x85\x9b\x37\xf0\x67\x2e\xe1\xcd\xcd\xcd\x5b\xf8\xf6\x76\x75\xf3\xdd\xea\xe6\x16\x3e\xdc\x6d\x66\x09\x63\x51\x45\xe7\xa9\x80\xd9\x27\xec\x62\x5f\x3a\x1a\xa6\xc0\xb3\x21\xa2\x84\x45\x65\x63\xb3\x9f\xf6\x5a\x48\x5b\xc6\x55\x0a\xb3\x6f\xcc\xaf\x72\xfa\xef\x57\x39\x0b\x39\x35\xd9\x46\x7d\x54\x1d\xea\x58\xe3\x63\x76\x87\xb6\x52\x45\xf2\xa5\xc0\x2e\x0f\x52\x60\x09\xc1\x23\x0b\x7f\x42\x5e\xa0\xce\xee\xd1\xc6\xb3\x90\x4f\x6e\x85\x22\x8f\xad\xae\xb3\xbf\xb6\xa8\x0f\xef\x4d\xce\xf7\x18\x13\xcc\xfb\x1e\xe6\x8c\x2a\xba\xf6\x41\xcc\x9f\x50\xaf\xbf\xcd\x6e\xe6\x46\x3c\xac\xbf\x31\xb3\x14\x3c\x25\xb3\x7b\x5b\xbc\xef\x59\x9a\xb9\x01\x6e\xd4\xbd\x43\x13\x57\xd9\x7d\xdb\xc4\x52\xd4\x09\xfd\x5d\x62\x79\x5e\x34\x66\x41\x48\x67\x29\x38\xc0\x0e\xaf\x6d\xb5\x04\x29\xea\x81\x1b\x9f\xb0\xbb\xbb\xa4\x46\x3c\x72\x29\x94\x35\x1e\x57\x53\x5f\xe3\x84\x8a\xbc\x75\x1f\x54\xa6\x2b\x90\x7f\x44\x82\xdc\x03\x9e\xd6\x4b\x94\xee\xd4\xab\x35\x61\x21\x33\x13\x68\xce\x20\x8b\x8e\x23\xde\xf9\x15\xf2\xbe\x0c\x73\x2b\xd8\x1e\xd3\x10\x93\x93\x89\x55\x3b\x94\x57\x25\xe2\x56\xc0\xff\xf9\xc0\x58\x84\xcf\x7b\xa1\x5d\xc5\xc0\x53\x75\x23\x1a\x64\x51\xae\x64\xd1\xef\x84\xd7\x24\x77\xd2\x45\xc1\x22\x9e\x3f\xb6\x82\x4e\x02\xc0\x56\xa9\x9a\x45\x35\x37\xf6\x9d\xb5\xd8\xec\xed\xd4\xc0\x03\xda\x4d\x70\x47\xa9\x3e\xd7\x7e\x02\xb1\x87\x13\x34\x2f\xb1\x7b\x3f\x62\x19\x2c\xf9\x04\xfb\x8c\x9f\x48\xfa\x2c\xcc\xff\xb7\x9c\x9d\xbb\xa1\xda\x3c\xf3\x89\x40\x17\x23\x39\xfc\x52\x59\xfb\x8a\x46\x7c\x2a\x10\xcf\x56\x32\x76\xa9\x0b\xce\x8b\x4b\x51\x38\x04\x09\x8b\xf2\x56\x6b\x94\x96\x92\xf3\xbb\xfa\xcb\x57\xf5\x7b\x05\xee\x57\x94\x36\x81\xf6\xdf\x05\xb7\x39\x2d\xdc\x19\x0d\xf0\x2a\x07\x06\x36\xfd\xaf\xa8\x94\x4c\x6f\xab\x97\x51\x6b\x67\xac\x7a\x71\xdf\x2b\x08\xd5\x1f\xac\xae\x26\xe3\x11\xde\x6a\x18\xa5\x44\xc0\x62\x05\x4e\x3a\x9f\xb0\x23\xf5\xc4\x73\xf7\x75\xd7\x5a\x7c\x7e\x39\x26\x47\x4a\xca\x72\x09\x1f\xd0\x82\x77\x6f\xc0\x56\x08\xad\x2c\x50\xd7\x07\xd2\x58\xa0\x64\x46\xfb\x7e\x2e\xdd\x72\x98\x03\x61\xa0\xd4\x68\xaa\x14\xa4\x02\x8d\x6e\x4c\x93\x7b\xd4\xa5\xd2\x0d\x16\xd9\x17\xc4\x72\x4e\xdf\x73\xbd\x24\x10\x0f\x15\x19\xba\xdd\x75\x10\x2e\x11\x84\xb6\x13\xb6\x12\x12\x6c\x25\x8c\x4b\x3a\x74\x42\x16\xaa\x4b\xa1\xdd\xbb\xcb\x50\x58\x40\xfe\x40\xb1\x65\xce\xd6\x86\x36\xf2\xba\x56\x9d\x01\x65\x2b\xd4\xf0\xa0\xb4\x6a\xad\x90\x68\xc0\x2a\xd8\x21\xee\x41\xb7\x52\x92\xf1\xed\x01\x5a\x43\x03\x72\x2f\x95\x5d\x1c\xd0\x2e\x9c\x6b\x2c\x9c\xb5\x01\xd2\x13\xaf\x5b\x84\xae\x12\x35\x82\x92\x38\x1a\xed\x71\x98\x93\x08\x32\xd7\xeb\x8c\xed\xc1\xc2\x1a\x6e\xe1\xb5\xe7\xcc\x9d\x90\xad\x45\x00\x20\xac\x2a\x44\x41\x87\x3d\xdd\x44\x09\xb7\xd0\x08\x69\xa0\xc6\xd2\x12\x62\x8f\x27\x58\xdc\xf2\x7c\xa7\xca\x12\xd6\xf0\xc7\x9b\x60\xf3\x1e\x5d\x67\x5d\x2e\xe1\x4e\x48\xd1\xb4\x0d\x74\x5c\xf8\xc6\x09\x5b\xb4\x1d\xa2\x04\xee\xbb\xa9\x61\x91\xa4\xec\xf5\xa5\xea\xd9\x87\xc5\xa9\xe8\x53\x28\x79\x6d\xb0\xff\x61\x2e\x15\xfd\x09\xc0\xe7\xbc\x6e\x8d\x78\x42\xa8\x55\xbe\x63\x11\xcf\xc8\x79\xf6\x31\xfb\xa8\xf2\x5d\x9c\x84\x0b\xc1\xf5\x33\x37\x64\x2c\x2a\x7d\xbb\x8b\x82\x33\x5a\x1b\xa9\x9e\xfd\x6c\xfe\x81\x5a\xc5\x09\xfc\xf6\xdb\xe9\xc2\xf7\x58\x2a\x8d\xb1\x54\x5d\xc2\x22\xd7\x0a\x7b\x03\x64\x8c\xbe\x5f\x85\x9e\x49\x45\x74\x93\x03\x07\xc6\x0a\x75\xa2\xae\x07\xf8\x43\xa6\x33\xb7\x7b\x72\x7e\x48\x0a\xac\xc1\xea\x16\x53\xf7\xbf\xdb\xb5\xd5\xc8\x77\x34\x3a\x32\xef\xe1\x03\x5a\x4b\x2e\x2b\xd4\x08\x0d\x72\xa7\x32\x6e\x3d\x4d\xcf\x3c\xbb\x5a\x50\x06\x9c\x0e\x5d\xbd\x0b\x0f\x81\x45\xd1\x11\xb0\x36\x48\x55\x3f\x09\xfc\x5d\x51\xc4\x0b\x4f\x9e\x64\x9a\x05\x1f\xa3\x0b\x71\x20\x8c\x21\x72\x8a\x02\xb6\xad\xbd\xae\x1c\x9c\x0a\x27\xf6\xec\x4a\xae\x25\x70\x3e\x07\x9e\x4d\xae\x5e\x07\xa3\x27\xdc\x15\x18\xbd\x74\xb9\x3c\xd3\x19\xa1\x90\xca\xc2\x60\x78\xa9\x51\x62\x17\x74\xd6\xb7\x3d\x2e\x0b\x90\x24\xa5\x8a\x9b\xc0\x4e\x52\x9d\xb7\x6b\x15\x14\x0a\x8c\x9a\x46\x41\xc8\x88\xf5\xc6\xd1\xdd\xa4\x57\xb3\x5d\x28\x10\xf6\xf7\x94\xf6\x1a\x79\x5a\xe3\x89\x83\xcf\xc2\xb8\xba\xfb\xd4\x4f\x9b\x42\xc8\x42\x68\x07\x1e\x84\xdf\x37\x4a\x61\xe2\xb0\xaf\xfc\xd5\x82\x52\xf6\xf2\x5a\x91\x57\x35\x14\xb4\x8f\xd7\xa8\xbe\x67\x09\x6b\xc2\xdd\xe8\x91\x7c\xcd\x21\x0b\x15\xeb\x90\xae\x14\x47\xde\xf4\x94\x9e\x12\xbb\x93\xd8\xac\x82\x2d\x86\xe4\x15\xcb\x9e\xbd\x2c\x0a\xaa\xff\x3b\x17\x96\x34\x7f\x9c\xf4\x81\xcf\xb2\x76\x9d\x80\xfa\xd1\x2f\x58\x23\xef\x93\x47\xb3\x84\x5e\xaa\x69\x4b\xe6\x1a\x61\x4b\x4b\x58\x30\x16\x3d\x71\x3d\xde\xa7\xee\xf1\x13\x0a\xf7\xc2\xae\x55\x87\xb8\xb3\xa5\xf6\x66\xb0\xc6\xdc\x0b\x2b\x1c\x59\x9e\xf7\x56\x16\x79\xfb\x57\x6e\xf1\x7e\x49\x62\xf7\x37\x17\x77\x78\xc8\x46\x27\x7a\x80\x35\x48\xd5\xb1\x28\x0a\xfb\xd2\x93\x0b\x9b\x80\x53\xe6\xc3\x75\xed\x5f\x70\x1e\xf7\x3b\xab\x1a\x91\xf3\xba\x3e\xa4\xd3\x9e\x6f\x2a\xae\x43\x37\xf8\x83\x71\xe9\xf7\x89\x9f\x4f\x2c\x67\x63\xbe\xc7\x2e\x1b\x1e\x86\xeb\xf1\x61\x48\x7e\x3e\xf7\xb6\x5d\x0d\xe7\x27\xf0\xfa\xd7\x48\x28\xf3\x05\x65\x42\x50\xcc\x69\x27\xa8\x74\xd2\x95\x48\x3c\xe7\x4f\x96\x93\x16\xf6\xea\xa4\x3d\x53\xd4\xd2\x5f\xce\x21\xe4\x92\x8b\x1a\x8b\x0c\x7e\x14\x26\xe7\xba\xf0\x9a\x72\x8f\x61\xea\x06\x13\x80\x3d\xaf\x17\x0b\x63\x49\x7f\xae\xc1\x2d\x16\x13\x66\x92\x03\x9f\x6f\x7a\x08\x7a\x72\x4f\x5b\xd9\xba\xbf\xba\xa2\x4b\x5e\x8e\x73\xdf\x6b\xc5\x8b\x9c\x9b\x40\xe1\x00\x60\x78\x95\xb3\x23\xfb\x4f\x00\x00\x00\xff\xff\xd2\x89\xf7\x59\x1a\x11\x00\x00") func authorizerGoBytes() ([]byte, error) { return bindataRead( @@ -126,7 +126,7 @@ func collectionGo() (*asset, error) { return a, nil } -var _cosmosdbGo = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x56\x5f\x4f\xdc\xba\x12\x7f\x4e\x3e\xc5\x34\x12\x28\x81\x90\x85\x5e\x5d\xe9\x8a\x76\x1f\x5a\xe0\x9e\xa2\x16\x8a\x80\xa3\x3e\x54\x55\xeb\x4d\x26\xbb\xee\x26\x76\x6a\x3b\x1c\xf6\x20\xbe\xfb\xd1\xd8\xce\x9f\xdd\x85\xaa\xe7\x3c\x1d\x1e\x58\xc7\xe3\x99\xf9\xcd\xcc\x6f\xc6\x6e\x58\xbe\x64\x73\x84\x5c\xea\x5a\xea\x62\x16\x86\xbc\x6e\xa4\x32\x10\x87\x41\x34\x5b\x19\xd4\x51\x18\x44\xb9\x14\x06\xef\x0d\x2d\xcb\xda\xfe\x70\x49\xff\x05\x9a\xc9\xc2\x98\xa6\x5b\xd3\xa1\x46\x49\x63\x85\xda\xa8\x5c\x8a\x3b\x5a\x1a\x5e\x63\x14\x86\x41\x34\xe7\x66\xd1\xce\xb2\x5c\xd6\x93\x76\x2e\xd5\x77\x3e\x99\xcb\x49\x2e\x0b\xcc\xa3\x30\x09\xc3\xc9\x04\x3e\x36\x86\x4b\xa1\x41\x61\xa3\x50\xa3\x30\x1a\xde\x5c\x9d\x83\x74\xdb\xa1\x59\x35\xd8\x9f\xd1\x46\xb5\xb9\x81\x87\x30\xb8\x94\x67\xb7\x6c\x0e\x6b\x7f\x33\x29\xab\x30\xb8\x52\x78\xab\xf8\x7c\x8e\x4a\xf7\x92\xcf\x5f\xb4\x51\x5c\xcc\xc3\xe0\x4a\x6a\xb3\x29\x1e\x49\x99\x32\x9c\x5c\xbd\xc7\xd5\x35\x13\x73\x3c\x3f\x85\x4e\x76\x22\x85\xe1\xa2\x65\x24\xee\x34\xbd\xec\xd1\x06\x72\xa6\x94\x54\xe3\x30\x98\x00\xa4\x3d\x17\x83\x13\x0f\x11\xdc\x18\x66\x5a\x7d\x22\x0b\x04\x2e\x0c\xd9\x2f\x70\xcd\x2c\x7c\xfb\xae\xa5\x38\x8e\x28\x5b\xd1\xb7\x30\xb8\x40\xad\xa9\x72\x5b\x07\x6a\x27\x88\xbe\x11\x90\xb2\x15\x39\xc4\x08\x7b\xd6\x5f\xe2\xdc\xc6\x49\xa7\xf2\x10\x06\x0a\x4d\xab\x04\x94\xb5\xc9\x6e\x1a\xc5\x85\x29\xe3\x68\xa7\x80\x1d\x7d\x0c\x3b\x3a\x4a\x01\xb3\x01\x1a\x7d\x75\xbf\xde\x7f\xe2\xc3\x3d\xd7\xd6\xf4\x28\x0c\x67\x58\x83\x51\x2d\x02\x2f\x29\x78\xe0\x1a\x64\x09\xa3\x04\x30\x51\x00\x37\x1a\x06\x3d\x32\x56\x33\x93\x2f\x90\x0a\xdc\xef\xda\x40\xb6\x9c\xc4\x64\xd4\x66\x35\x1d\x1d\xa6\x0c\x26\xb6\xfe\x14\xa0\x73\x9d\x82\x5c\xc2\xf1\x94\x96\x59\xec\xb3\xf1\x8a\xf6\x1e\xc2\xa0\xcb\x01\xc9\x46\x01\x4c\xa7\x63\x00\xc1\xe3\x90\x2b\x56\x69\x1c\xca\x4c\xd4\xbb\xc6\x1f\x2d\x57\x58\x50\x84\x66\x81\x0e\x93\x4f\x01\xed\x96\x76\xd7\x92\xb4\xe4\x58\xd9\x73\x42\x1a\x68\x64\xd3\x56\xcc\x20\x48\x01\x8c\xec\x5d\xfd\x7e\x0b\x52\xc1\xe9\xd9\x87\xb3\xdb\x33\x90\x0d\x2a\x4b\xb1\xf0\x8e\xa9\x2d\x5f\x53\x5b\x35\x1b\x4b\x19\x47\xd6\x38\xa7\xce\x71\xe2\x28\xe9\x00\x5e\x4a\x73\x5e\x37\x15\xd6\x28\xcc\xcf\x20\x32\x28\xd9\x12\x81\x52\x6d\x69\xed\x31\xf2\x41\xb7\x83\xb1\x61\x71\x1d\xc8\x86\x8e\xc7\x71\x8d\x46\xad\x3e\x8a\x2b\x85\xb9\x14\x85\x6d\xab\xff\x33\x5e\x61\x41\x10\x14\x47\x4d\xee\x7b\xcf\x25\x70\x03\x25\xe3\x95\x86\xa2\x45\x30\xd2\xe6\x66\x4b\xd7\xd1\xe2\x59\xd3\x71\x69\x4d\xc6\x89\x0b\x36\x81\x81\x2f\x09\x15\xbe\x94\x0a\x38\xb1\xe2\xf0\x15\x70\x78\x0d\xff\x7d\x05\x7c\x7f\xdf\x52\x82\x0e\x4e\xa1\x8c\x93\x30\x20\x06\xbd\x78\x92\x7a\x29\xd0\xf4\xf3\x9c\xd9\x76\x6f\x7d\x74\xec\x0a\x03\x62\x50\x40\xa3\x30\xbb\xa9\x10\x9b\xd8\x2e\x4f\x5b\x57\xe0\xf8\xe8\xf0\x70\x8f\x27\xb0\x07\x76\xfb\x82\x57\x15\xd7\xd6\x60\x32\xa2\xde\xd0\xd2\x39\xec\x15\xcc\xb0\x19\xd3\x78\x52\x71\x24\xc2\x17\x32\xce\xcd\x3d\xf8\x61\x9d\x9d\xb8\xdf\x14\x6a\x34\x0b\x59\xa4\xd0\x30\xb3\x48\x41\xa1\x96\xad\xca\xf1\x76\xd5\xe0\xf0\xf5\x81\x8b\xa5\x1f\x0a\x29\xe0\x7d\x83\xb9\xc1\x62\x7d\x26\xa5\xc0\x45\x0a\xb2\x35\xf4\x81\xaa\x64\x39\x3e\x3c\xa6\xb0\x40\x56\xd0\xf4\xb4\x99\x78\x67\x3f\x7c\xba\x29\x7a\xe2\x8b\x42\xdd\xc0\x9e\x95\x5f\xa3\x6e\xa4\xd0\xe8\x04\x7d\x31\x42\x57\x0a\x22\xc2\xca\x97\xc3\xad\x5f\x43\x9e\xd5\xec\xfe\xda\x31\xc4\xef\xfa\x0a\x91\xd9\x14\x5c\x9d\xf2\xec\xab\x8b\xfe\xd7\xa3\x7d\x2a\xcc\x3e\xc4\x3e\xac\x5f\x2f\xff\xad\x94\x17\x4c\xac\xa8\x39\x51\x1b\xed\x6b\x3f\x53\xc8\x96\xb6\xf4\x61\x10\xe4\x59\x25\xe7\xd9\x27\xa6\x04\xcd\x58\x6d\x67\x2c\x33\x06\xeb\xc6\xc0\x4e\xe1\xe7\xed\x26\x7e\xa3\x56\x36\xca\x84\x2c\xd4\xda\xae\x5f\x52\x92\xfc\xfd\x9a\x5d\x31\xa5\xf1\x5c\x98\x98\x12\xe2\x2b\x90\xfd\x86\x26\x8e\xee\x0f\x6a\x7d\x60\x2d\x1c\xb0\xd2\xa0\x3a\xa8\x75\x94\xa4\x70\x74\x98\xc2\xa1\x0f\xcc\x1a\x7b\x31\x05\xc1\xab\x31\x59\xed\x7e\x07\xfb\x59\xca\xd6\xfa\x59\xbe\xda\xb1\x6b\x0b\xef\x8d\xef\xee\xf6\x4c\x19\xb9\xa3\xaa\xdb\xb1\xac\xe8\x7a\xed\x4f\x58\x24\x05\x56\x68\x30\xf6\x7b\x29\x2c\x13\xdf\x42\x56\x29\x85\xbb\x41\x6f\x14\xb9\xd3\xf5\x4a\x9f\x97\x5f\x60\x0a\x77\x4e\x8f\x40\x0d\xd1\xfd\xb4\x93\xbe\xfe\x8b\x5a\x29\x5e\xef\x9c\x74\x34\xbe\x14\xfe\x70\x0d\x70\x3c\x75\x3a\x97\xf8\x87\xe7\xdf\x27\x6e\x16\x1e\xf5\x7a\x5b\x44\x74\x50\x1f\x4f\x26\xd1\x7e\x9e\x75\x71\xbf\x93\xda\x08\x56\xe3\x7e\x34\x89\xf6\x5d\x6c\x82\x57\x49\x77\x77\x8e\x2b\xe6\x33\x28\x78\x65\x5d\xf7\xb5\xe6\x62\x7c\x6a\xd6\x96\x04\x6a\xd7\xbe\x20\xb3\xb7\x6d\x59\xa2\x7a\x78\xf4\x63\xf5\x78\x0a\xf6\xc9\x47\x70\xcf\x04\x2d\x55\x3c\x6b\xcb\x14\xf2\x8c\x5e\x30\xef\x98\x28\x2a\x4c\x32\x27\x8a\xb9\x18\xa8\xfa\x14\x53\x07\x24\x96\x1c\x0a\x7f\x64\x6f\x65\xb1\x82\x29\x70\x99\x5d\xca\xe6\xa4\x92\xda\x39\x48\xbc\xd8\xb7\xc8\x0d\xb5\x88\xcd\x91\x30\x07\x54\xc2\x28\x85\x88\x35\x4d\xc5\x73\x4b\xef\x09\x81\x89\x3c\x9b\xb7\x39\x37\xe6\xea\x60\xf5\x73\xff\x04\xce\x4e\x98\x90\x82\xe7\xac\xba\x38\xbf\x38\x73\xd2\xf7\xb8\x8a\x97\x89\xe7\xa4\xe3\xe3\x3a\x1c\xdb\xb1\x77\xa8\x34\x97\x82\xe0\xbc\x3c\x3c\xfa\xdf\xc1\xd1\xcb\x83\xff\x1c\xd1\x2d\x4a\x59\xc8\x33\xd6\x9a\x85\x54\xfc\x4f\x5c\x4b\x47\x97\xd8\x91\x38\x7b\xd3\x2d\x63\xcb\x94\xe7\xe9\xfa\x77\x32\x6c\xef\xa2\x6e\xf2\x5a\x8f\x8b\x3c\x3b\x95\xe4\xe2\x57\x09\x13\x14\x58\xa2\xea\xae\xe6\x6e\x96\xdb\xb2\x65\xd7\xc8\x8a\xd8\x91\x6f\xb4\x6b\x8b\x48\x77\xf1\x63\x4c\x79\x28\xd6\x38\x74\x8a\x8e\x43\xfd\xf1\x0d\x26\x0d\xc3\x68\xfc\xba\x7b\x31\x7d\xaa\x39\x47\xa9\xdc\xb5\x13\xdf\xb2\xb6\x53\x1f\x0f\xd7\x35\xe6\x24\xf4\x58\xdc\x26\x8f\x1f\x64\x99\x43\x18\xef\xda\x31\xee\x78\xba\xf9\xd6\xdc\xc4\x37\x64\xae\xcf\x76\xdf\x6b\x34\x38\x86\xb1\xfa\xcf\x91\xad\x39\x18\x50\xca\xd6\x24\x6b\xe3\xd2\x1d\x10\xbc\x0a\x1f\xc3\xbf\x02\x00\x00\xff\xff\x6b\x72\x70\xbe\x31\x0e\x00\x00") +var _cosmosdbGo = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x56\x5f\x4f\xdc\x38\x10\x7f\x4e\x3e\xc5\x34\x12\x28\x81\x90\x85\x9e\x4e\x3a\xd1\xee\x43\x0b\xdc\x15\xb5\x50\x04\x9c\xfa\x50\x55\xad\x37\x99\xec\xba\x9b\xd8\xc1\x76\x38\xf6\x10\xdf\xfd\x34\xb6\xf3\x67\x59\xa8\x7a\xf7\x74\x3c\xb0\x8e\xc7\x33\xf3\x9b\x99\xdf\x8c\xdd\xb0\x7c\xc9\xe6\x08\xb9\xd4\xb5\xd4\xc5\x2c\x0c\x79\xdd\x48\x65\x20\x0e\x83\x68\xb6\x32\xa8\xa3\x30\x88\x72\x29\x0c\xde\x19\x5a\x96\xb5\xfd\xe1\x92\xfe\x0b\x34\x93\x85\x31\x4d\xb7\xa6\x43\x8d\x92\xc6\x0a\xb5\x51\xb9\x14\xb7\xb4\x34\xbc\xc6\x28\x0c\x83\x68\xce\xcd\xa2\x9d\x65\xb9\xac\x27\xed\x5c\xaa\xef\x7c\x32\x97\x93\x5c\x16\x98\x47\x61\x12\x86\x93\x09\x7c\x6c\x0c\x97\x42\x83\xc2\x46\xa1\x46\x61\x34\xbc\xb9\x38\x05\xe9\xb6\x43\xb3\x6a\xb0\x3f\xa3\x8d\x6a\x73\x03\xf7\x61\x70\x2e\x4f\xae\xd9\x1c\xd6\xfe\x66\x52\x56\x61\x70\xa1\xf0\x5a\xf1\xf9\x1c\x95\xee\x25\x9f\xbf\x68\xa3\xb8\x98\x87\xc1\x85\xd4\xe6\xb1\x78\x24\x65\xca\x70\x72\xf5\x1e\x57\x97\x4c\xcc\xf1\xf4\x18\x3a\xd9\x91\x14\x86\x8b\x96\x91\xb8\xd3\xf4\xb2\x07\x1b\xc8\x89\x52\x52\x8d\xc3\x60\x02\x90\xf6\x5c\x0c\x4e\x3c\x44\x70\x65\x98\x69\xf5\x91\x2c\x10\xb8\x30\x64\xbf\xc0\x35\xb3\xf0\xed\xbb\x96\xe2\x30\xa2\x6c\x45\xdf\xc2\xe0\x0c\xb5\xa6\xca\x6d\x1c\xa8\x9d\x20\xfa\x46\x40\xca\x56\xe4\x10\x23\xec\x58\x7f\x89\x73\x1b\x27\x9d\xca\x7d\x18\x28\x34\xad\x12\x50\xd6\x26\xbb\x6a\x14\x17\xa6\x8c\xa3\xad\x02\xb6\xf4\x21\x6c\xe9\x28\x05\xcc\x06\x68\xf4\xd5\xfd\x7a\xff\x89\x0f\xf7\x54\x5b\xd3\xa3\x30\x9c\x61\x0d\x46\xb5\x08\xbc\xa4\xe0\x81\x6b\x90\x25\x8c\x12\xc0\x44\x01\xdc\x68\x18\xf4\xc8\x58\xcd\x4c\xbe\x40\x2a\x70\xbf\x6b\x03\xd9\x70\x12\x93\x51\x9b\xd5\x74\x74\x98\x32\x98\xd8\xfa\x53\x80\xce\x75\x0a\x72\x09\x87\x53\x5a\x66\xb1\xcf\xc6\x2b\xda\xbb\x0f\x83\x2e\x07\x24\x1b\x05\x30\x9d\x8e\x01\x04\x0f\x43\xae\x58\xa5\x71\x28\x33\x51\xef\x12\x6f\x5a\xae\xb0\xa0\x08\xcd\x02\x1d\x26\x9f\x02\xda\x2d\xed\xae\x25\x69\xc9\xb1\xb2\xe7\x84\x34\xd0\xc8\xa6\xad\x98\x41\x90\x02\x18\xd9\xbb\xf8\xf3\x1a\xa4\x82\xe3\x93\x0f\x27\xd7\x27\x20\x1b\x54\x96\x62\xe1\x2d\x53\x1b\xbe\xa6\xb6\x6a\x36\x96\x32\x8e\xac\x71\x4e\x9d\xe3\xc4\x51\xd2\x01\x3c\x97\xe6\xb4\x6e\x2a\xac\x51\x98\x1f\x41\x64\x50\xb2\x25\x02\xa5\xda\xd2\xda\x63\xe4\x83\x6e\x07\xe3\x91\xc5\x75\x20\x8f\x74\x3c\x8e\x4b\x34\x6a\xf5\x51\x5c\x28\xcc\xa5\x28\x6c\x5b\xfd\xce\x78\x85\x05\x41\x50\x1c\x35\xb9\xef\x3d\x97\xc0\x0d\x94\x8c\x57\x1a\x8a\x16\xc1\x48\x9b\x9b\x0d\x5d\x47\x8b\x67\x4d\xc7\xa5\x35\x19\x27\x2e\xd8\x04\x06\xbe\x24\x54\xf8\x52\x2a\xe0\xc4\x8a\xfd\x57\xc0\xe1\x35\xfc\xfa\x0a\xf8\xee\xae\xa5\x04\x1d\x9c\x42\x19\x27\x61\x40\x0c\x7a\xf1\x24\xf5\x52\xa0\xe9\xe7\x39\xb3\xe9\xde\xfa\xe8\xd8\x15\x06\xc4\xa0\x80\x46\x61\x76\x55\x21\x36\xb1\x5d\x1e\xb7\xae\xc0\xf1\xc1\xfe\xfe\x0e\x4f\x60\x07\xec\xf6\x19\xaf\x2a\xae\xad\xc1\x64\x44\xbd\xa1\xa5\x73\xd8\x29\x98\x61\x33\xa6\xf1\xa8\xe2\x48\x84\x2f\x64\x9c\x9b\x3b\xf0\xc3\x3a\x3b\x72\xbf\x29\xd4\x68\x16\xb2\x48\xa1\x61\x66\x91\x82\x42\x2d\x5b\x95\xe3\xf5\xaa\xc1\xe1\xeb\x03\x17\x4b\x3f\x14\x52\xc0\xbb\x06\x73\x83\xc5\xfa\x4c\x4a\x81\x8b\x14\x64\x6b\xe8\x03\x55\xc9\x72\xbc\x7f\x48\x61\x81\xac\xa0\xe9\x69\x33\xf1\xce\x7e\xf8\x74\x53\xf4\xc4\x17\x85\xba\x81\x1d\x2b\xbf\x44\xdd\x48\xa1\xd1\x09\xfa\x62\x84\xae\x14\x44\x84\x95\x2f\x87\x5b\xbf\x86\x3c\xab\xd9\xdd\xa5\x63\x88\xdf\xf5\x15\x22\xb3\x29\xb8\x3a\xe5\xd9\x57\x17\xfd\xcf\x47\xfb\x54\x98\x7d\x88\x7d\x58\x3f\x5f\xfe\x6b\x29\xcf\x98\x58\x51\x73\xa2\x36\xda\xd7\x7e\xa6\x90\x2d\x6d\xe9\xc3\x20\xc8\xb3\x4a\xce\xb3\x4f\x4c\x09\x9a\xb1\xda\xce\x58\x66\x0c\xd6\x8d\x81\xad\xc2\xcf\xdb\xc7\xf8\x8d\x5a\xd9\x28\x13\xb2\x50\x6b\xbb\x7e\x49\x49\xf2\xf7\x6b\x76\xc1\x94\xc6\x53\x61\x62\x4a\x88\xaf\x40\xf6\x07\x9a\x38\xba\xdb\xab\xf5\x9e\xb5\xb0\xc7\x4a\x83\x6a\xaf\xd6\x51\x92\xc2\xc1\x7e\x0a\xfb\x3e\x30\x6b\xec\xc5\x14\x04\xaf\xc6\x64\xb5\xfb\x1d\xec\x67\x29\x5b\xeb\x67\xf9\x6a\xc7\xae\x2d\xbc\x37\xbe\xbd\xdd\x33\x65\xe4\x8e\xaa\x6e\xc7\xb2\xa2\xeb\xb5\x3f\x61\x91\x14\x58\xa1\xc1\xd8\xef\xa5\xb0\x4c\x7c\x0b\x59\xa5\x14\x6e\x07\xbd\x51\xe4\x4e\xd7\x2b\x7d\x5e\x7e\x81\x29\xdc\x3a\x3d\x02\x35\x44\xf7\xc3\x4e\xfa\xfa\x3f\x6a\xa5\x78\xbd\x73\xd2\xd1\xf8\x52\x78\xe3\x1a\xe0\x70\xea\x74\xce\xf1\x2f\xcf\xbf\x4f\xdc\x2c\x3c\xea\xf5\xb6\x88\xe8\xa0\x3e\x9c\x4c\xa2\xdd\x3c\xeb\xe2\x7e\x27\xb5\x11\xac\xc6\xdd\x68\x12\xed\xba\xd8\x04\xaf\x92\xee\xee\x1c\x57\xcc\x67\x50\xf0\xca\xba\xee\x6b\xcd\xc5\xf8\xd4\xac\x2d\x09\xd4\xb6\x7d\x41\x66\x6f\xdb\xb2\x44\x75\xff\xe0\xc7\xea\xe1\x14\xec\x93\x8f\xe0\x9e\x08\x5a\xaa\x78\xd6\x96\x29\xe4\x19\xbd\x60\xde\x31\x51\x54\x98\x64\x4e\x14\x73\x31\x50\xf5\x29\xa6\x0e\x48\x2c\x39\x14\xde\x64\x6f\x65\xb1\x82\x29\x70\x99\x9d\xcb\xe6\xa8\x92\xda\x39\x48\xbc\xd8\xb7\xc8\x15\xb5\x88\xcd\x91\x30\x7b\x54\xc2\x28\x85\x88\x35\x4d\xc5\x73\x4b\xef\x09\x81\x89\x3c\x9b\x37\x39\x37\xe6\xea\x60\xf5\x73\xff\x04\xce\x8e\x98\x90\x82\xe7\xac\x3a\x3b\x3d\x3b\x71\xd2\xf7\xb8\x8a\x97\x89\xe7\xa4\xe3\xe3\x3a\x1c\xdb\xb1\xb7\xa8\x34\x97\x82\xe0\xbc\xdc\x3f\xf8\x6d\xef\xe0\xe5\xde\x2f\x07\x74\x8b\x52\x16\xf2\x8c\xb5\x66\x21\x15\xff\x1b\xd7\xd2\xd1\x25\x76\x24\xce\xde\x74\x4b\x47\x01\x4b\x97\xe7\x39\xfb\x6f\xd2\x6c\x2f\xa4\x6e\xfc\x5a\xb7\x8b\x3c\x3b\x96\xb1\xc2\x9b\x9f\x65\x4d\x50\x60\x89\xaa\xbb\x9f\xbb\x81\x6e\x6b\x97\x5d\x22\x2b\x62\xc7\xc0\xd1\xae\xad\x24\x5d\xc8\x0f\x31\x25\xa3\x58\x23\xd2\x31\x3a\x22\xf5\xc7\x1f\xd1\x69\x98\x48\xe3\x27\xde\x8b\xe9\x53\x1d\x3a\xca\xe7\xb6\x1d\xfb\x96\xba\x9d\xfa\x78\xc2\xae\xd1\x27\xa1\x17\xe3\x26\x83\xfc\x34\xcb\x1c\xc2\x78\xdb\xce\x72\x47\xd6\xc7\x0f\xce\xc7\xf8\x86\xcc\xf5\xd9\xee\x1b\x8e\xa6\xc7\x30\x5b\xff\x3b\xb2\x35\x07\x03\x4a\xd9\x9a\x64\x6d\x66\xba\x03\x82\x57\xe1\x43\xf8\x4f\x00\x00\x00\xff\xff\x33\x6d\x19\x41\x36\x0e\x00\x00") func cosmosdbGoBytes() ([]byte, error) { return bindataRead( diff --git a/vendor/modules.txt b/vendor/modules.txt index 746af953ea3..7c902cbc478 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -759,7 +759,7 @@ github.com/itchyny/gojq/cli # github.com/itchyny/timefmt-go v0.1.5 ## explicit; go 1.17 github.com/itchyny/timefmt-go -# github.com/jewzaam/go-cosmosdb v0.0.0-20240603205015-e096456eff37 +# github.com/jewzaam/go-cosmosdb v0.0.0-20240723075448-058185e3c66d ## explicit; go 1.18 github.com/jewzaam/go-cosmosdb/cmd/gencosmosdb github.com/jewzaam/go-cosmosdb/pkg/gencosmosdb