mirror of
https://github.com/coder/coder.git
synced 2025-07-03 16:13:58 +00:00
feat: add YAML support to server (#6934)
This commit is contained in:
29
coderd/apidoc/docs.go
generated
29
coderd/apidoc/docs.go
generated
@ -5721,12 +5721,6 @@ const docTemplate = `{
|
||||
"clibase.Group": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"children": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/clibase.Group"
|
||||
}
|
||||
},
|
||||
"description": {
|
||||
"type": "string"
|
||||
},
|
||||
@ -5735,6 +5729,9 @@ const docTemplate = `{
|
||||
},
|
||||
"parent": {
|
||||
"$ref": "#/definitions/clibase.Group"
|
||||
},
|
||||
"yaml": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -5803,6 +5800,9 @@ const docTemplate = `{
|
||||
"value": {
|
||||
"description": "Value includes the types listed in values.go."
|
||||
},
|
||||
"value_source": {
|
||||
"$ref": "#/definitions/clibase.ValueSource"
|
||||
},
|
||||
"yaml": {
|
||||
"description": "YAML is the YAML key used to configure this option. If unset, YAML\nconfiguring is disabled.",
|
||||
"type": "string"
|
||||
@ -5883,6 +5883,23 @@ const docTemplate = `{
|
||||
}
|
||||
}
|
||||
},
|
||||
"clibase.ValueSource": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"",
|
||||
"flag",
|
||||
"env",
|
||||
"yaml",
|
||||
"default"
|
||||
],
|
||||
"x-enum-varnames": [
|
||||
"ValueSourceNone",
|
||||
"ValueSourceFlag",
|
||||
"ValueSourceEnv",
|
||||
"ValueSourceYAML",
|
||||
"ValueSourceDefault"
|
||||
]
|
||||
},
|
||||
"coderd.SCIMUser": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
|
Reference in New Issue
Block a user