mirror of
https://github.com/coder/coder.git
synced 2025-07-13 21:36:50 +00:00
make -B gen
This commit is contained in:
3
coderd/apidoc/docs.go
generated
3
coderd/apidoc/docs.go
generated
@ -13028,9 +13028,6 @@ const docTemplate = `{
|
|||||||
"name": {
|
"name": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"presetID": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"value": {
|
"value": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
}
|
}
|
||||||
|
3
coderd/apidoc/swagger.json
generated
3
coderd/apidoc/swagger.json
generated
@ -11757,9 +11757,6 @@
|
|||||||
"name": {
|
"name": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"presetID": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"value": {
|
"value": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
}
|
}
|
||||||
|
11
docs/reference/api/schemas.md
generated
11
docs/reference/api/schemas.md
generated
@ -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
|
||||||
|
|
||||||
|
2
docs/reference/api/templates.md
generated
2
docs/reference/api/templates.md
generated
@ -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).
|
||||||
|
1
site/src/api/typesGenerated.ts
generated
1
site/src/api/typesGenerated.ts
generated
@ -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;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user