Skip to content
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
24 changes: 24 additions & 0 deletions swagger/docs.go
Original file line number Diff line number Diff line change
Expand Up @@ -2946,6 +2946,30 @@ const docTemplate = `{
},
"url": {
"type": "string"
},
"verification": {
"$ref": "#/definitions/config.GalleryVerification"
}
}
},
"config.GalleryVerification": {
"type": "object",
"properties": {
"identity": {
"type": "string"
},
"identity_regex": {
"type": "string"
},
"issuer": {
"type": "string"
},
"issuer_regex": {
"type": "string"
},
"not_before": {
"description": "NotBefore is an RFC3339 timestamp. Empty disables the time check.",
"type": "string"
}
}
},
Expand Down
24 changes: 24 additions & 0 deletions swagger/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -2943,6 +2943,30 @@
},
"url": {
"type": "string"
},
"verification": {
"$ref": "#/definitions/config.GalleryVerification"
}
}
},
"config.GalleryVerification": {
"type": "object",
"properties": {
"identity": {
"type": "string"
},
"identity_regex": {
"type": "string"
},
"issuer": {
"type": "string"
},
"issuer_regex": {
"type": "string"
},
"not_before": {
"description": "NotBefore is an RFC3339 timestamp. Empty disables the time check.",
"type": "string"
}
}
},
Expand Down
16 changes: 16 additions & 0 deletions swagger/swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,22 @@ definitions:
type: string
url:
type: string
verification:
$ref: '#/definitions/config.GalleryVerification'
type: object
config.GalleryVerification:
properties:
identity:
type: string
identity_regex:
type: string
issuer:
type: string
issuer_regex:
type: string
not_before:
description: NotBefore is an RFC3339 timestamp. Empty disables the time check.
type: string
type: object
functions.Function:
properties:
Expand Down
Loading