Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add service max idle time #59

Merged
merged 1 commit into from
Dec 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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