Skip to content

Commit

Permalink
Add service max idle time
Browse files Browse the repository at this point in the history
  • Loading branch information
plorenz committed Dec 7, 2023
1 parent 887e04b commit f76d621
Show file tree
Hide file tree
Showing 16 changed files with 143 additions and 125 deletions.
9 changes: 8 additions & 1 deletion client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ info:
license:
name: Apache 2.0
url: https://www.apache.org/licenses/LICENSE-2.0.html
version: 0.26.1
version: 0.26.2
host: demo.ziti.dev
basePath: /edge/client/v1
paths:
Expand Down Expand Up @@ -4725,6 +4725,7 @@ definitions:
- type: object
required:
- name
- maxIdleTimeMillis
- terminatorStrategy
- roleAttributes
- permissions
Expand All @@ -4749,6 +4750,8 @@ definitions:
description: Describes whether connections must support end-to-end encryption
on both sides of the connection. Read-only property, set at create.
type: boolean
maxIdleTimeMillis:
type: integer
name:
type: string
permissions:
Expand Down Expand Up @@ -4783,6 +4786,8 @@ definitions:
description: Describes whether connections must support end-to-end encryption
on both sides of the connection. Read-only property, set at create.
type: boolean
maxIdleTimeMillis:
type: integer
name:
type: string
roleAttributes:
Expand All @@ -4806,6 +4811,8 @@ definitions:
description: Describes whether connections must support end-to-end encryption
on both sides of the connection. Read-only property, set at create.
type: boolean
maxIdleTimeMillis:
type: integer
name:
type: string
roleAttributes:
Expand Down
19 changes: 9 additions & 10 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ require (
github.com/go-openapi/errors v0.20.4
github.com/go-openapi/loads v0.21.2
github.com/go-openapi/runtime v0.26.0
github.com/go-openapi/spec v0.20.9
github.com/go-openapi/strfmt v0.21.7
github.com/go-openapi/spec v0.20.11
github.com/go-openapi/strfmt v0.21.9
github.com/go-openapi/swag v0.22.4
github.com/go-openapi/validate v0.22.1
github.com/go-openapi/validate v0.22.3
github.com/jessevdk/go-flags v1.5.0
github.com/pkg/errors v0.9.1
github.com/sirupsen/logrus v1.9.3
golang.org/x/net v0.18.0
golang.org/x/net v0.19.0
)

require (
Expand All @@ -30,12 +30,11 @@ 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
github.com/rogpeppe/go-internal v1.11.0 // indirect
go.mongodb.org/mongo-driver v1.13.0 // indirect
go.opentelemetry.io/otel v1.20.0 // indirect
go.opentelemetry.io/otel/metric v1.20.0 // indirect
go.opentelemetry.io/otel/trace v1.20.0 // indirect
golang.org/x/sys v0.14.0 // indirect
go.mongodb.org/mongo-driver v1.13.1 // indirect
go.opentelemetry.io/otel v1.21.0 // indirect
go.opentelemetry.io/otel/metric v1.21.0 // indirect
go.opentelemetry.io/otel/trace v1.21.0 // indirect
golang.org/x/sys v0.15.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
124 changes: 19 additions & 105 deletions go.sum

Large diffs are not rendered by default.

11 changes: 10 additions & 1 deletion management.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ info:
license:
name: Apache 2.0
url: https://www.apache.org/licenses/LICENSE-2.0.html
version: 0.26.1
version: 0.26.2
host: demo.ziti.dev
basePath: /edge/management/v1
paths:
Expand Down Expand Up @@ -19130,6 +19130,8 @@ definitions:
description: Describes whether connections must support end-to-end encryption
on both sides of the connection.
type: boolean
maxIdleTimeMillis:
type: integer
name:
type: string
roleAttributes:
Expand All @@ -19147,6 +19149,7 @@ definitions:
- type: object
required:
- name
- maxIdleTimeMillis
- terminatorStrategy
- roleAttributes
- permissions
Expand All @@ -19171,6 +19174,8 @@ definitions:
description: Describes whether connections must support end-to-end encryption
on both sides of the connection. Read-only property, set at create.
type: boolean
maxIdleTimeMillis:
type: integer
name:
type: string
permissions:
Expand Down Expand Up @@ -19272,6 +19277,8 @@ definitions:
description: Describes whether connections must support end-to-end encryption
on both sides of the connection. Read-only property, set at create.
type: boolean
maxIdleTimeMillis:
type: integer
name:
type: string
roleAttributes:
Expand Down Expand Up @@ -19392,6 +19399,8 @@ definitions:
description: Describes whether connections must support end-to-end encryption
on both sides of the connection. Read-only property, set at create.
type: boolean
maxIdleTimeMillis:
type: integer
name:
type: string
roleAttributes:
Expand Down
2 changes: 1 addition & 1 deletion rest_client_api_server/doc.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 22 additions & 2 deletions rest_client_api_server/embedded_spec.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion rest_management_api_server/doc.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 28 additions & 2 deletions rest_management_api_server/embedded_spec.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions rest_model/service_create.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit f76d621

Please sign in to comment.