make -B gen

This commit is contained in:
Sas Swart
2025-02-12 12:29:07 +00:00
parent 22eb048690
commit af4eb7f754
5 changed files with 4 additions and 16 deletions

3
coderd/apidoc/docs.go generated
View File

@ -13028,9 +13028,6 @@ const docTemplate = `{
"name": { "name": {
"type": "string" "type": "string"
}, },
"presetID": {
"type": "string"
},
"value": { "value": {
"type": "string" "type": "string"
} }

View File

@ -11757,9 +11757,6 @@
"name": { "name": {
"type": "string" "type": "string"
}, },
"presetID": {
"type": "string"
},
"value": { "value": {
"type": "string" "type": "string"
} }

View File

@ -4436,7 +4436,6 @@ Git clone makes use of this by parsing the URL from: 'Username for "https://gith
"parameters": [ "parameters": [
{ {
"name": "string", "name": "string",
"presetID": "string",
"value": "string" "value": "string"
} }
] ]
@ -4456,18 +4455,16 @@ Git clone makes use of this by parsing the URL from: 'Username for "https://gith
```json ```json
{ {
"name": "string", "name": "string",
"presetID": "string",
"value": "string" "value": "string"
} }
``` ```
### Properties ### Properties
| Name | Type | Required | Restrictions | Description | | Name | Type | Required | Restrictions | Description |
|------------|--------|----------|--------------|-------------| |---------|--------|----------|--------------|-------------|
| `name` | string | false | | | | `name` | string | false | | |
| `presetID` | string | false | | | | `value` | string | false | | |
| `value` | string | false | | |
## codersdk.PrometheusConfig ## codersdk.PrometheusConfig

View File

@ -2703,7 +2703,6 @@ curl -X GET http://coder-server:8080/api/v2/templateversions/{templateversion}/p
"parameters": [ "parameters": [
{ {
"name": "string", "name": "string",
"presetID": "string",
"value": "string" "value": "string"
} }
] ]
@ -2728,7 +2727,6 @@ Status Code **200**
| `» name` | string | false | | | | `» name` | string | false | | |
| `» parameters` | array | false | | | | `» parameters` | array | false | | |
| `»» name` | string | false | | | | `»» name` | string | false | | |
| `»» presetID` | string | false | | |
| `»» value` | string | false | | | | `»» value` | string | false | | |
To perform this operation, you must be authenticated. [Learn more](authentication.md). To perform this operation, you must be authenticated. [Learn more](authentication.md).

View File

@ -1559,7 +1559,6 @@ export interface Preset {
// From codersdk/presets.go // From codersdk/presets.go
export interface PresetParameter { export interface PresetParameter {
readonly PresetID: string;
readonly Name: string; readonly Name: string;
readonly Value: string; readonly Value: string;
} }