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

adds id field and type id enumeration for auth queries #134

Merged
merged 1 commit into from
Oct 4, 2024
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
12 changes: 10 additions & 2 deletions 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.32
version: 0.26.33
host: demo.ziti.dev
basePath: /edge/client/v1
paths:
Expand Down Expand Up @@ -3867,6 +3867,8 @@ definitions:
type: string
httpUrl:
type: string
id:
type: string
maxLength:
type: integer
minLength:
Expand All @@ -3878,11 +3880,17 @@ definitions:
items:
type: string
typeId:
type: string
$ref: '#/definitions/authQueryType'
authQueryList:
type: array
items:
$ref: '#/definitions/authQueryDetail'
authQueryType:
type: string
enum:
- MFA
- TOTP
- EXT-JWT
authenticate:
description: A generic authenticate object meant for use with the /authenticate
path. Required fields depend on authentication method.
Expand Down
12 changes: 10 additions & 2 deletions 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.32
version: 0.26.33
host: demo.ziti.dev
basePath: /edge/management/v1
paths:
Expand Down Expand Up @@ -16322,6 +16322,8 @@ definitions:
type: string
httpUrl:
type: string
id:
type: string
maxLength:
type: integer
minLength:
Expand All @@ -16333,11 +16335,17 @@ definitions:
items:
type: string
typeId:
type: string
$ref: '#/definitions/authQueryType'
authQueryList:
type: array
items:
$ref: '#/definitions/authQueryDetail'
authQueryType:
type: string
enum:
- MFA
- TOTP
- EXT-JWT
authenticate:
description: A generic authenticate object meant for use with the /authenticate
path. Required fields depend on authentication method.
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.

30 changes: 26 additions & 4 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: 26 additions & 4 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.

44 changes: 43 additions & 1 deletion rest_model/auth_query_detail.go

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

Loading
Loading