mirror of
https://github.com/coder/coder.git
synced 2025-07-15 22:20:27 +00:00
docs: API workspace agents and builds (#5538)
This commit is contained in:
@ -1 +1 @@
|
||||
To perform this operation, you must be authenticated by means of one of the following methods: **{{= data.utils.getAuthenticationStr(data) }}**.
|
||||
To perform this operation, you must be authenticated. [Learn more](authentication.md).
|
||||
|
@ -93,12 +93,13 @@
|
||||
> This page is incomplete, stay tuned.
|
||||
|
||||
{{ for (var s in data.components.schemas) {
|
||||
if (s == "codersdk.NullTime") {
|
||||
continue;
|
||||
}
|
||||
var origSchema = data.components.schemas[s];
|
||||
var schema = data.api.components.schemas[s];
|
||||
|
||||
if (schema.description && schema.description.startsWith("x-apidocgen:skip")) {
|
||||
continue;
|
||||
}
|
||||
}}
|
||||
{{ var origSchema = data.components.schemas[s]; }}
|
||||
{{ var schema = data.api.components.schemas[s]; }}
|
||||
|
||||
{{= data.tags.section }}
|
||||
## {{=s}}
|
||||
|
@ -18,6 +18,12 @@
|
||||
|
||||
## {{= data.operationUniqueName}}
|
||||
|
||||
{{
|
||||
if (data.operation['x-apidocgen'] && data.operation['x-apidocgen'].skip) {
|
||||
return "";
|
||||
}
|
||||
}}
|
||||
|
||||
{{ data.methodUpper = data.method.verb.toUpperCase(); }}
|
||||
{{ data.url = data.utils.slashes(data.baseUrl + data.method.path); }}
|
||||
{{ data.parameters = data.operation.parameters; }}
|
||||
|
Reference in New Issue
Block a user