diff --git a/client.yml b/client.yml index 5c3873f4..5c0039b3 100644 --- a/client.yml +++ b/client.yml @@ -15,7 +15,7 @@ info: license: name: Apache 2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html - version: 0.26.14 + version: 0.26.17 host: demo.ziti.dev basePath: /edge/client/v1 paths: @@ -4248,6 +4248,7 @@ definitions: enum: - Dial - Bind + - Invalid dialBindArray: type: array items: diff --git a/go.mod b/go.mod index 7ce7315b..f54cd7c1 100644 --- a/go.mod +++ b/go.mod @@ -33,7 +33,7 @@ require ( github.com/mitchellh/mapstructure v1.5.0 // indirect github.com/oklog/ulid v1.3.1 // indirect github.com/opentracing/opentracing-go v1.2.0 // indirect - go.mongodb.org/mongo-driver v1.14.0 // indirect + go.mongodb.org/mongo-driver v1.15.0 // indirect go.opentelemetry.io/otel v1.25.0 // indirect go.opentelemetry.io/otel/metric v1.25.0 // indirect go.opentelemetry.io/otel/trace v1.25.0 // indirect diff --git a/go.sum b/go.sum index ebf77c2f..50b67f3e 100644 --- a/go.sum +++ b/go.sum @@ -65,8 +65,8 @@ github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UV github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg= github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= -go.mongodb.org/mongo-driver v1.14.0 h1:P98w8egYRjYe3XDjxhYJagTokP/H6HzlsnojRgZRd80= -go.mongodb.org/mongo-driver v1.14.0/go.mod h1:Vzb0Mk/pa7e6cWw85R4F/endUC3u0U9jGcNU603k65c= +go.mongodb.org/mongo-driver v1.15.0 h1:rJCKC8eEliewXjZGf0ddURtl7tTVy1TK3bfl0gkUSLc= +go.mongodb.org/mongo-driver v1.15.0/go.mod h1:Vzb0Mk/pa7e6cWw85R4F/endUC3u0U9jGcNU603k65c= go.opentelemetry.io/otel v1.25.0 h1:gldB5FfhRl7OJQbUHt/8s0a7cE8fbsPAtdpRaApKy4k= go.opentelemetry.io/otel v1.25.0/go.mod h1:Wa2ds5NOXEMkCmUou1WA7ZBfLTHWIsp034OVD7AO+Vg= go.opentelemetry.io/otel/metric v1.25.0 h1:LUKbS7ArpFL/I2jJHdJcqMGxkRdxpPHE0VU/D4NuEwA= diff --git a/management.yml b/management.yml index a3db7567..f37e8127 100644 --- a/management.yml +++ b/management.yml @@ -15,7 +15,7 @@ info: license: name: Apache 2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html - version: 0.26.14 + version: 0.26.17 host: demo.ziti.dev basePath: /edge/management/v1 paths: @@ -16971,6 +16971,7 @@ definitions: enum: - Dial - Bind + - Invalid dialBindArray: type: array items: diff --git a/rest_client_api_server/doc.go b/rest_client_api_server/doc.go index 21011353..2c68b215 100644 --- a/rest_client_api_server/doc.go +++ b/rest_client_api_server/doc.go @@ -30,7 +30,7 @@ // https // Host: demo.ziti.dev // BasePath: /edge/client/v1 -// Version: 0.26.14 +// Version: 0.26.17 // License: Apache 2.0 https://www.apache.org/licenses/LICENSE-2.0.html // Contact: OpenZiti https://openziti.discourse.group // diff --git a/rest_client_api_server/embedded_spec.go b/rest_client_api_server/embedded_spec.go index 93b0107f..40f9afa1 100644 --- a/rest_client_api_server/embedded_spec.go +++ b/rest_client_api_server/embedded_spec.go @@ -64,7 +64,7 @@ func init() { "name": "Apache 2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" }, - "version": "0.26.14" + "version": "0.26.17" }, "host": "demo.ziti.dev", "basePath": "/edge/client/v1", @@ -5889,7 +5889,8 @@ func init() { "type": "string", "enum": [ "Dial", - "Bind" + "Bind", + "Invalid" ] }, "dialBindArray": { @@ -7352,7 +7353,7 @@ func init() { "name": "Apache 2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" }, - "version": "0.26.14" + "version": "0.26.17" }, "host": "demo.ziti.dev", "basePath": "/edge/client/v1", @@ -13260,7 +13261,8 @@ func init() { "type": "string", "enum": [ "Dial", - "Bind" + "Bind", + "Invalid" ] }, "dialBindArray": { diff --git a/rest_management_api_server/doc.go b/rest_management_api_server/doc.go index d1e9cf40..e0c87f92 100644 --- a/rest_management_api_server/doc.go +++ b/rest_management_api_server/doc.go @@ -30,7 +30,7 @@ // https // Host: demo.ziti.dev // BasePath: /edge/management/v1 -// Version: 0.26.14 +// Version: 0.26.17 // License: Apache 2.0 https://www.apache.org/licenses/LICENSE-2.0.html // Contact: OpenZiti https://openziti.discourse.group // diff --git a/rest_management_api_server/embedded_spec.go b/rest_management_api_server/embedded_spec.go index aeab7a9e..50c11f8e 100644 --- a/rest_management_api_server/embedded_spec.go +++ b/rest_management_api_server/embedded_spec.go @@ -64,7 +64,7 @@ func init() { "name": "Apache 2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" }, - "version": "0.26.14" + "version": "0.26.17" }, "host": "demo.ziti.dev", "basePath": "/edge/management/v1", @@ -23407,7 +23407,8 @@ func init() { "type": "string", "enum": [ "Dial", - "Bind" + "Bind", + "Invalid" ] }, "dialBindArray": { @@ -27975,7 +27976,7 @@ func init() { "name": "Apache 2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" }, - "version": "0.26.14" + "version": "0.26.17" }, "host": "demo.ziti.dev", "basePath": "/edge/management/v1", @@ -51415,7 +51416,8 @@ func init() { "type": "string", "enum": [ "Dial", - "Bind" + "Bind", + "Invalid" ] }, "dialBindArray": { diff --git a/rest_model/dial_bind.go b/rest_model/dial_bind.go index a85232bd..5fdcba70 100644 --- a/rest_model/dial_bind.go +++ b/rest_model/dial_bind.go @@ -59,6 +59,9 @@ const ( // DialBindBind captures enum value "Bind" DialBindBind DialBind = "Bind" + + // DialBindInvalid captures enum value "Invalid" + DialBindInvalid DialBind = "Invalid" ) // for schema @@ -66,7 +69,7 @@ var dialBindEnum []interface{} func init() { var res []DialBind - if err := json.Unmarshal([]byte(`["Dial","Bind"]`), &res); err != nil { + if err := json.Unmarshal([]byte(`["Dial","Bind","Invalid"]`), &res); err != nil { panic(err) } for _, v := range res { diff --git a/source/shared/base-entity.yml b/source/shared/base-entity.yml index 5b34eccd..0b8e22b3 100644 --- a/source/shared/base-entity.yml +++ b/source/shared/base-entity.yml @@ -96,6 +96,7 @@ definitions: enum: - Dial - Bind + - Invalid dialBindArray: type: array items: