Saving initial generation

This commit is contained in:
Luke Hagar
2024-11-19 21:24:42 -06:00
commit c70b67b33e
403 changed files with 63390 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
# BuildPack
The build pack type.
## Example Usage
```typescript
import { BuildPack } from "coolify/models/operations";
let value: BuildPack = "dockerfile";
```
## Values
```typescript
"nixpacks" | "static" | "dockerfile" | "dockercompose"
```

View File

@@ -0,0 +1,39 @@
# CreateDatabaseClickhouseRequestBody
Database data
## Example Usage
```typescript
import { CreateDatabaseClickhouseRequestBody } from "coolify/models/operations";
let value: CreateDatabaseClickhouseRequestBody = {
serverUuid: "<id>",
projectUuid: "<id>",
environmentName: "<value>",
};
```
## Fields
| Field | Type | Required | Description |
| --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- |
| `serverUuid` | *string* | :heavy_check_mark: | UUID of the server |
| `projectUuid` | *string* | :heavy_check_mark: | UUID of the project |
| `environmentName` | *string* | :heavy_check_mark: | Name of the environment |
| `destinationUuid` | *string* | :heavy_minus_sign: | UUID of the destination if the server has multiple destinations |
| `clickhouseAdminUser` | *string* | :heavy_minus_sign: | Clickhouse admin user |
| `clickhouseAdminPassword` | *string* | :heavy_minus_sign: | Clickhouse admin password |
| `name` | *string* | :heavy_minus_sign: | Name of the database |
| `description` | *string* | :heavy_minus_sign: | Description of the database |
| `image` | *string* | :heavy_minus_sign: | Docker Image of the database |
| `isPublic` | *boolean* | :heavy_minus_sign: | Is the database public? |
| `publicPort` | *number* | :heavy_minus_sign: | Public port of the database |
| `limitsMemory` | *string* | :heavy_minus_sign: | Memory limit of the database |
| `limitsMemorySwap` | *string* | :heavy_minus_sign: | Memory swap limit of the database |
| `limitsMemorySwappiness` | *number* | :heavy_minus_sign: | Memory swappiness of the database |
| `limitsMemoryReservation` | *string* | :heavy_minus_sign: | Memory reservation of the database |
| `limitsCpus` | *string* | :heavy_minus_sign: | CPU limit of the database |
| `limitsCpuset` | *string* | :heavy_minus_sign: | CPU set of the database |
| `limitsCpuShares` | *number* | :heavy_minus_sign: | CPU shares of the database |
| `instantDeploy` | *boolean* | :heavy_minus_sign: | Instant deploy the database |

View File

@@ -0,0 +1,38 @@
# CreateDatabaseDragonflyRequestBody
Database data
## Example Usage
```typescript
import { CreateDatabaseDragonflyRequestBody } from "coolify/models/operations";
let value: CreateDatabaseDragonflyRequestBody = {
serverUuid: "<id>",
projectUuid: "<id>",
environmentName: "<value>",
};
```
## Fields
| Field | Type | Required | Description |
| --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- |
| `serverUuid` | *string* | :heavy_check_mark: | UUID of the server |
| `projectUuid` | *string* | :heavy_check_mark: | UUID of the project |
| `environmentName` | *string* | :heavy_check_mark: | Name of the environment |
| `destinationUuid` | *string* | :heavy_minus_sign: | UUID of the destination if the server has multiple destinations |
| `dragonflyPassword` | *string* | :heavy_minus_sign: | DragonFly password |
| `name` | *string* | :heavy_minus_sign: | Name of the database |
| `description` | *string* | :heavy_minus_sign: | Description of the database |
| `image` | *string* | :heavy_minus_sign: | Docker Image of the database |
| `isPublic` | *boolean* | :heavy_minus_sign: | Is the database public? |
| `publicPort` | *number* | :heavy_minus_sign: | Public port of the database |
| `limitsMemory` | *string* | :heavy_minus_sign: | Memory limit of the database |
| `limitsMemorySwap` | *string* | :heavy_minus_sign: | Memory swap limit of the database |
| `limitsMemorySwappiness` | *number* | :heavy_minus_sign: | Memory swappiness of the database |
| `limitsMemoryReservation` | *string* | :heavy_minus_sign: | Memory reservation of the database |
| `limitsCpus` | *string* | :heavy_minus_sign: | CPU limit of the database |
| `limitsCpuset` | *string* | :heavy_minus_sign: | CPU set of the database |
| `limitsCpuShares` | *number* | :heavy_minus_sign: | CPU shares of the database |
| `instantDeploy` | *boolean* | :heavy_minus_sign: | Instant deploy the database |

View File

@@ -0,0 +1,39 @@
# CreateDatabaseKeydbRequestBody
Database data
## Example Usage
```typescript
import { CreateDatabaseKeydbRequestBody } from "coolify/models/operations";
let value: CreateDatabaseKeydbRequestBody = {
serverUuid: "<id>",
projectUuid: "<id>",
environmentName: "<value>",
};
```
## Fields
| Field | Type | Required | Description |
| --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- |
| `serverUuid` | *string* | :heavy_check_mark: | UUID of the server |
| `projectUuid` | *string* | :heavy_check_mark: | UUID of the project |
| `environmentName` | *string* | :heavy_check_mark: | Name of the environment |
| `destinationUuid` | *string* | :heavy_minus_sign: | UUID of the destination if the server has multiple destinations |
| `keydbPassword` | *string* | :heavy_minus_sign: | KeyDB password |
| `keydbConf` | *string* | :heavy_minus_sign: | KeyDB conf |
| `name` | *string* | :heavy_minus_sign: | Name of the database |
| `description` | *string* | :heavy_minus_sign: | Description of the database |
| `image` | *string* | :heavy_minus_sign: | Docker Image of the database |
| `isPublic` | *boolean* | :heavy_minus_sign: | Is the database public? |
| `publicPort` | *number* | :heavy_minus_sign: | Public port of the database |
| `limitsMemory` | *string* | :heavy_minus_sign: | Memory limit of the database |
| `limitsMemorySwap` | *string* | :heavy_minus_sign: | Memory swap limit of the database |
| `limitsMemorySwappiness` | *number* | :heavy_minus_sign: | Memory swappiness of the database |
| `limitsMemoryReservation` | *string* | :heavy_minus_sign: | Memory reservation of the database |
| `limitsCpus` | *string* | :heavy_minus_sign: | CPU limit of the database |
| `limitsCpuset` | *string* | :heavy_minus_sign: | CPU set of the database |
| `limitsCpuShares` | *number* | :heavy_minus_sign: | CPU shares of the database |
| `instantDeploy` | *boolean* | :heavy_minus_sign: | Instant deploy the database |

View File

@@ -0,0 +1,42 @@
# CreateDatabaseMariadbRequestBody
Database data
## Example Usage
```typescript
import { CreateDatabaseMariadbRequestBody } from "coolify/models/operations";
let value: CreateDatabaseMariadbRequestBody = {
serverUuid: "<id>",
projectUuid: "<id>",
environmentName: "<value>",
};
```
## Fields
| Field | Type | Required | Description |
| --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- |
| `serverUuid` | *string* | :heavy_check_mark: | UUID of the server |
| `projectUuid` | *string* | :heavy_check_mark: | UUID of the project |
| `environmentName` | *string* | :heavy_check_mark: | Name of the environment |
| `destinationUuid` | *string* | :heavy_minus_sign: | UUID of the destination if the server has multiple destinations |
| `mariadbConf` | *string* | :heavy_minus_sign: | MariaDB conf |
| `mariadbRootPassword` | *string* | :heavy_minus_sign: | MariaDB root password |
| `mariadbUser` | *string* | :heavy_minus_sign: | MariaDB user |
| `mariadbPassword` | *string* | :heavy_minus_sign: | MariaDB password |
| `mariadbDatabase` | *string* | :heavy_minus_sign: | MariaDB database |
| `name` | *string* | :heavy_minus_sign: | Name of the database |
| `description` | *string* | :heavy_minus_sign: | Description of the database |
| `image` | *string* | :heavy_minus_sign: | Docker Image of the database |
| `isPublic` | *boolean* | :heavy_minus_sign: | Is the database public? |
| `publicPort` | *number* | :heavy_minus_sign: | Public port of the database |
| `limitsMemory` | *string* | :heavy_minus_sign: | Memory limit of the database |
| `limitsMemorySwap` | *string* | :heavy_minus_sign: | Memory swap limit of the database |
| `limitsMemorySwappiness` | *number* | :heavy_minus_sign: | Memory swappiness of the database |
| `limitsMemoryReservation` | *string* | :heavy_minus_sign: | Memory reservation of the database |
| `limitsCpus` | *string* | :heavy_minus_sign: | CPU limit of the database |
| `limitsCpuset` | *string* | :heavy_minus_sign: | CPU set of the database |
| `limitsCpuShares` | *number* | :heavy_minus_sign: | CPU shares of the database |
| `instantDeploy` | *boolean* | :heavy_minus_sign: | Instant deploy the database |

View File

@@ -0,0 +1,39 @@
# CreateDatabaseMongodbRequestBody
Database data
## Example Usage
```typescript
import { CreateDatabaseMongodbRequestBody } from "coolify/models/operations";
let value: CreateDatabaseMongodbRequestBody = {
serverUuid: "<id>",
projectUuid: "<id>",
environmentName: "<value>",
};
```
## Fields
| Field | Type | Required | Description |
| --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- |
| `serverUuid` | *string* | :heavy_check_mark: | UUID of the server |
| `projectUuid` | *string* | :heavy_check_mark: | UUID of the project |
| `environmentName` | *string* | :heavy_check_mark: | Name of the environment |
| `destinationUuid` | *string* | :heavy_minus_sign: | UUID of the destination if the server has multiple destinations |
| `mongoConf` | *string* | :heavy_minus_sign: | MongoDB conf |
| `mongoInitdbRootUsername` | *string* | :heavy_minus_sign: | MongoDB initdb root username |
| `name` | *string* | :heavy_minus_sign: | Name of the database |
| `description` | *string* | :heavy_minus_sign: | Description of the database |
| `image` | *string* | :heavy_minus_sign: | Docker Image of the database |
| `isPublic` | *boolean* | :heavy_minus_sign: | Is the database public? |
| `publicPort` | *number* | :heavy_minus_sign: | Public port of the database |
| `limitsMemory` | *string* | :heavy_minus_sign: | Memory limit of the database |
| `limitsMemorySwap` | *string* | :heavy_minus_sign: | Memory swap limit of the database |
| `limitsMemorySwappiness` | *number* | :heavy_minus_sign: | Memory swappiness of the database |
| `limitsMemoryReservation` | *string* | :heavy_minus_sign: | Memory reservation of the database |
| `limitsCpus` | *string* | :heavy_minus_sign: | CPU limit of the database |
| `limitsCpuset` | *string* | :heavy_minus_sign: | CPU set of the database |
| `limitsCpuShares` | *number* | :heavy_minus_sign: | CPU shares of the database |
| `instantDeploy` | *boolean* | :heavy_minus_sign: | Instant deploy the database |

View File

@@ -0,0 +1,41 @@
# CreateDatabaseMysqlRequestBody
Database data
## Example Usage
```typescript
import { CreateDatabaseMysqlRequestBody } from "coolify/models/operations";
let value: CreateDatabaseMysqlRequestBody = {
serverUuid: "<id>",
projectUuid: "<id>",
environmentName: "<value>",
};
```
## Fields
| Field | Type | Required | Description |
| --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- |
| `serverUuid` | *string* | :heavy_check_mark: | UUID of the server |
| `projectUuid` | *string* | :heavy_check_mark: | UUID of the project |
| `environmentName` | *string* | :heavy_check_mark: | Name of the environment |
| `destinationUuid` | *string* | :heavy_minus_sign: | UUID of the destination if the server has multiple destinations |
| `mysqlRootPassword` | *string* | :heavy_minus_sign: | MySQL root password |
| `mysqlUser` | *string* | :heavy_minus_sign: | MySQL user |
| `mysqlDatabase` | *string* | :heavy_minus_sign: | MySQL database |
| `mysqlConf` | *string* | :heavy_minus_sign: | MySQL conf |
| `name` | *string* | :heavy_minus_sign: | Name of the database |
| `description` | *string* | :heavy_minus_sign: | Description of the database |
| `image` | *string* | :heavy_minus_sign: | Docker Image of the database |
| `isPublic` | *boolean* | :heavy_minus_sign: | Is the database public? |
| `publicPort` | *number* | :heavy_minus_sign: | Public port of the database |
| `limitsMemory` | *string* | :heavy_minus_sign: | Memory limit of the database |
| `limitsMemorySwap` | *string* | :heavy_minus_sign: | Memory swap limit of the database |
| `limitsMemorySwappiness` | *number* | :heavy_minus_sign: | Memory swappiness of the database |
| `limitsMemoryReservation` | *string* | :heavy_minus_sign: | Memory reservation of the database |
| `limitsCpus` | *string* | :heavy_minus_sign: | CPU limit of the database |
| `limitsCpuset` | *string* | :heavy_minus_sign: | CPU set of the database |
| `limitsCpuShares` | *number* | :heavy_minus_sign: | CPU shares of the database |
| `instantDeploy` | *boolean* | :heavy_minus_sign: | Instant deploy the database |

View File

@@ -0,0 +1,43 @@
# CreateDatabasePostgresqlRequestBody
Database data
## Example Usage
```typescript
import { CreateDatabasePostgresqlRequestBody } from "coolify/models/operations";
let value: CreateDatabasePostgresqlRequestBody = {
serverUuid: "<id>",
projectUuid: "<id>",
environmentName: "<value>",
};
```
## Fields
| Field | Type | Required | Description |
| --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- |
| `serverUuid` | *string* | :heavy_check_mark: | UUID of the server |
| `projectUuid` | *string* | :heavy_check_mark: | UUID of the project |
| `environmentName` | *string* | :heavy_check_mark: | Name of the environment |
| `postgresUser` | *string* | :heavy_minus_sign: | PostgreSQL user |
| `postgresPassword` | *string* | :heavy_minus_sign: | PostgreSQL password |
| `postgresDb` | *string* | :heavy_minus_sign: | PostgreSQL database |
| `postgresInitdbArgs` | *string* | :heavy_minus_sign: | PostgreSQL initdb args |
| `postgresHostAuthMethod` | *string* | :heavy_minus_sign: | PostgreSQL host auth method |
| `postgresConf` | *string* | :heavy_minus_sign: | PostgreSQL conf |
| `destinationUuid` | *string* | :heavy_minus_sign: | UUID of the destination if the server has multiple destinations |
| `name` | *string* | :heavy_minus_sign: | Name of the database |
| `description` | *string* | :heavy_minus_sign: | Description of the database |
| `image` | *string* | :heavy_minus_sign: | Docker Image of the database |
| `isPublic` | *boolean* | :heavy_minus_sign: | Is the database public? |
| `publicPort` | *number* | :heavy_minus_sign: | Public port of the database |
| `limitsMemory` | *string* | :heavy_minus_sign: | Memory limit of the database |
| `limitsMemorySwap` | *string* | :heavy_minus_sign: | Memory swap limit of the database |
| `limitsMemorySwappiness` | *number* | :heavy_minus_sign: | Memory swappiness of the database |
| `limitsMemoryReservation` | *string* | :heavy_minus_sign: | Memory reservation of the database |
| `limitsCpus` | *string* | :heavy_minus_sign: | CPU limit of the database |
| `limitsCpuset` | *string* | :heavy_minus_sign: | CPU set of the database |
| `limitsCpuShares` | *number* | :heavy_minus_sign: | CPU shares of the database |
| `instantDeploy` | *boolean* | :heavy_minus_sign: | Instant deploy the database |

View File

@@ -0,0 +1,39 @@
# CreateDatabaseRedisRequestBody
Database data
## Example Usage
```typescript
import { CreateDatabaseRedisRequestBody } from "coolify/models/operations";
let value: CreateDatabaseRedisRequestBody = {
serverUuid: "<id>",
projectUuid: "<id>",
environmentName: "<value>",
};
```
## Fields
| Field | Type | Required | Description |
| --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- |
| `serverUuid` | *string* | :heavy_check_mark: | UUID of the server |
| `projectUuid` | *string* | :heavy_check_mark: | UUID of the project |
| `environmentName` | *string* | :heavy_check_mark: | Name of the environment |
| `destinationUuid` | *string* | :heavy_minus_sign: | UUID of the destination if the server has multiple destinations |
| `redisPassword` | *string* | :heavy_minus_sign: | Redis password |
| `redisConf` | *string* | :heavy_minus_sign: | Redis conf |
| `name` | *string* | :heavy_minus_sign: | Name of the database |
| `description` | *string* | :heavy_minus_sign: | Description of the database |
| `image` | *string* | :heavy_minus_sign: | Docker Image of the database |
| `isPublic` | *boolean* | :heavy_minus_sign: | Is the database public? |
| `publicPort` | *number* | :heavy_minus_sign: | Public port of the database |
| `limitsMemory` | *string* | :heavy_minus_sign: | Memory limit of the database |
| `limitsMemorySwap` | *string* | :heavy_minus_sign: | Memory swap limit of the database |
| `limitsMemorySwappiness` | *number* | :heavy_minus_sign: | Memory swappiness of the database |
| `limitsMemoryReservation` | *string* | :heavy_minus_sign: | Memory reservation of the database |
| `limitsCpus` | *string* | :heavy_minus_sign: | CPU limit of the database |
| `limitsCpuset` | *string* | :heavy_minus_sign: | CPU set of the database |
| `limitsCpuShares` | *number* | :heavy_minus_sign: | CPU shares of the database |
| `instantDeploy` | *boolean* | :heavy_minus_sign: | Instant deploy the database |

View File

@@ -0,0 +1,30 @@
# CreateDockercomposeApplicationRequestBody
Application object that needs to be created.
## Example Usage
```typescript
import { CreateDockercomposeApplicationRequestBody } from "coolify/models/operations";
let value: CreateDockercomposeApplicationRequestBody = {
projectUuid: "<id>",
serverUuid: "<id>",
environmentName: "<value>",
dockerComposeRaw: "<value>",
};
```
## Fields
| Field | Type | Required | Description |
| --------------------------------------------------------------------- | --------------------------------------------------------------------- | --------------------------------------------------------------------- | --------------------------------------------------------------------- |
| `projectUuid` | *string* | :heavy_check_mark: | The project UUID. |
| `serverUuid` | *string* | :heavy_check_mark: | The server UUID. |
| `environmentName` | *string* | :heavy_check_mark: | The environment name. |
| `dockerComposeRaw` | *string* | :heavy_check_mark: | The Docker Compose raw content. |
| `destinationUuid` | *string* | :heavy_minus_sign: | The destination UUID if the server has more than one destinations. |
| `name` | *string* | :heavy_minus_sign: | The application name. |
| `description` | *string* | :heavy_minus_sign: | The application description. |
| `instantDeploy` | *boolean* | :heavy_minus_sign: | The flag to indicate if the application should be deployed instantly. |
| `useBuildServer` | *boolean* | :heavy_minus_sign: | Use build server. |

View File

@@ -0,0 +1,17 @@
# CreateDockerfileApplicationBuildPack
The build pack type.
## Example Usage
```typescript
import { CreateDockerfileApplicationBuildPack } from "coolify/models/operations";
let value: CreateDockerfileApplicationBuildPack = "dockerfile";
```
## Values
```typescript
"nixpacks" | "static" | "dockerfile" | "dockercompose"
```

View File

@@ -0,0 +1,17 @@
# CreateDockerfileApplicationRedirect
How to set redirect with Traefik / Caddy. www<->non-www.
## Example Usage
```typescript
import { CreateDockerfileApplicationRedirect } from "coolify/models/operations";
let value: CreateDockerfileApplicationRedirect = "both";
```
## Values
```typescript
"www" | "non-www" | "both"
```

View File

@@ -0,0 +1,67 @@
# CreateDockerfileApplicationRequestBody
Application object that needs to be created.
## Example Usage
```typescript
import { CreateDockerfileApplicationRequestBody } from "coolify/models/operations";
let value: CreateDockerfileApplicationRequestBody = {
projectUuid: "<id>",
serverUuid: "<id>",
environmentName: "<value>",
dockerfile: "<value>",
};
```
## Fields
| Field | Type | Required | Description |
| ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ |
| `projectUuid` | *string* | :heavy_check_mark: | The project UUID. |
| `serverUuid` | *string* | :heavy_check_mark: | The server UUID. |
| `environmentName` | *string* | :heavy_check_mark: | The environment name. |
| `dockerfile` | *string* | :heavy_check_mark: | The Dockerfile content. |
| `buildPack` | [operations.CreateDockerfileApplicationBuildPack](../../models/operations/createdockerfileapplicationbuildpack.md) | :heavy_minus_sign: | The build pack type. |
| `portsExposes` | *string* | :heavy_minus_sign: | The ports to expose. |
| `destinationUuid` | *string* | :heavy_minus_sign: | The destination UUID. |
| `name` | *string* | :heavy_minus_sign: | The application name. |
| `description` | *string* | :heavy_minus_sign: | The application description. |
| `domains` | *string* | :heavy_minus_sign: | The application domains. |
| `dockerRegistryImageName` | *string* | :heavy_minus_sign: | The docker registry image name. |
| `dockerRegistryImageTag` | *string* | :heavy_minus_sign: | The docker registry image tag. |
| `portsMappings` | *string* | :heavy_minus_sign: | The ports mappings. |
| `baseDirectory` | *string* | :heavy_minus_sign: | The base directory for all commands. |
| `healthCheckEnabled` | *boolean* | :heavy_minus_sign: | Health check enabled. |
| `healthCheckPath` | *string* | :heavy_minus_sign: | Health check path. |
| `healthCheckPort` | *string* | :heavy_minus_sign: | Health check port. |
| `healthCheckHost` | *string* | :heavy_minus_sign: | Health check host. |
| `healthCheckMethod` | *string* | :heavy_minus_sign: | Health check method. |
| `healthCheckReturnCode` | *number* | :heavy_minus_sign: | Health check return code. |
| `healthCheckScheme` | *string* | :heavy_minus_sign: | Health check scheme. |
| `healthCheckResponseText` | *string* | :heavy_minus_sign: | Health check response text. |
| `healthCheckInterval` | *number* | :heavy_minus_sign: | Health check interval in seconds. |
| `healthCheckTimeout` | *number* | :heavy_minus_sign: | Health check timeout in seconds. |
| `healthCheckRetries` | *number* | :heavy_minus_sign: | Health check retries count. |
| `healthCheckStartPeriod` | *number* | :heavy_minus_sign: | Health check start period in seconds. |
| `limitsMemory` | *string* | :heavy_minus_sign: | Memory limit. |
| `limitsMemorySwap` | *string* | :heavy_minus_sign: | Memory swap limit. |
| `limitsMemorySwappiness` | *number* | :heavy_minus_sign: | Memory swappiness. |
| `limitsMemoryReservation` | *string* | :heavy_minus_sign: | Memory reservation. |
| `limitsCpus` | *string* | :heavy_minus_sign: | CPU limit. |
| `limitsCpuset` | *string* | :heavy_minus_sign: | CPU set. |
| `limitsCpuShares` | *number* | :heavy_minus_sign: | CPU shares. |
| `customLabels` | *string* | :heavy_minus_sign: | Custom labels. |
| `customDockerRunOptions` | *string* | :heavy_minus_sign: | Custom docker run options. |
| `postDeploymentCommand` | *string* | :heavy_minus_sign: | Post deployment command. |
| `postDeploymentCommandContainer` | *string* | :heavy_minus_sign: | Post deployment command container. |
| `preDeploymentCommand` | *string* | :heavy_minus_sign: | Pre deployment command. |
| `preDeploymentCommandContainer` | *string* | :heavy_minus_sign: | Pre deployment command container. |
| `manualWebhookSecretGithub` | *string* | :heavy_minus_sign: | Manual webhook secret for Github. |
| `manualWebhookSecretGitlab` | *string* | :heavy_minus_sign: | Manual webhook secret for Gitlab. |
| `manualWebhookSecretBitbucket` | *string* | :heavy_minus_sign: | Manual webhook secret for Bitbucket. |
| `manualWebhookSecretGitea` | *string* | :heavy_minus_sign: | Manual webhook secret for Gitea. |
| `redirect` | [operations.CreateDockerfileApplicationRedirect](../../models/operations/createdockerfileapplicationredirect.md) | :heavy_minus_sign: | How to set redirect with Traefik / Caddy. www<->non-www. |
| `instantDeploy` | *boolean* | :heavy_minus_sign: | The flag to indicate if the application should be deployed instantly. |
| `useBuildServer` | *boolean* | :heavy_minus_sign: | Use build server. |

View File

@@ -0,0 +1,17 @@
# CreateDockerimageApplicationRedirect
How to set redirect with Traefik / Caddy. www<->non-www.
## Example Usage
```typescript
import { CreateDockerimageApplicationRedirect } from "coolify/models/operations";
let value: CreateDockerimageApplicationRedirect = "www";
```
## Values
```typescript
"www" | "non-www" | "both"
```

View File

@@ -0,0 +1,65 @@
# CreateDockerimageApplicationRequestBody
Application object that needs to be created.
## Example Usage
```typescript
import { CreateDockerimageApplicationRequestBody } from "coolify/models/operations";
let value: CreateDockerimageApplicationRequestBody = {
projectUuid: "<id>",
serverUuid: "<id>",
environmentName: "<value>",
dockerRegistryImageName: "<value>",
portsExposes: "<value>",
};
```
## Fields
| Field | Type | Required | Description |
| ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ |
| `projectUuid` | *string* | :heavy_check_mark: | The project UUID. |
| `serverUuid` | *string* | :heavy_check_mark: | The server UUID. |
| `environmentName` | *string* | :heavy_check_mark: | The environment name. |
| `dockerRegistryImageName` | *string* | :heavy_check_mark: | The docker registry image name. |
| `dockerRegistryImageTag` | *string* | :heavy_minus_sign: | The docker registry image tag. |
| `portsExposes` | *string* | :heavy_check_mark: | The ports to expose. |
| `destinationUuid` | *string* | :heavy_minus_sign: | The destination UUID. |
| `name` | *string* | :heavy_minus_sign: | The application name. |
| `description` | *string* | :heavy_minus_sign: | The application description. |
| `domains` | *string* | :heavy_minus_sign: | The application domains. |
| `portsMappings` | *string* | :heavy_minus_sign: | The ports mappings. |
| `healthCheckEnabled` | *boolean* | :heavy_minus_sign: | Health check enabled. |
| `healthCheckPath` | *string* | :heavy_minus_sign: | Health check path. |
| `healthCheckPort` | *string* | :heavy_minus_sign: | Health check port. |
| `healthCheckHost` | *string* | :heavy_minus_sign: | Health check host. |
| `healthCheckMethod` | *string* | :heavy_minus_sign: | Health check method. |
| `healthCheckReturnCode` | *number* | :heavy_minus_sign: | Health check return code. |
| `healthCheckScheme` | *string* | :heavy_minus_sign: | Health check scheme. |
| `healthCheckResponseText` | *string* | :heavy_minus_sign: | Health check response text. |
| `healthCheckInterval` | *number* | :heavy_minus_sign: | Health check interval in seconds. |
| `healthCheckTimeout` | *number* | :heavy_minus_sign: | Health check timeout in seconds. |
| `healthCheckRetries` | *number* | :heavy_minus_sign: | Health check retries count. |
| `healthCheckStartPeriod` | *number* | :heavy_minus_sign: | Health check start period in seconds. |
| `limitsMemory` | *string* | :heavy_minus_sign: | Memory limit. |
| `limitsMemorySwap` | *string* | :heavy_minus_sign: | Memory swap limit. |
| `limitsMemorySwappiness` | *number* | :heavy_minus_sign: | Memory swappiness. |
| `limitsMemoryReservation` | *string* | :heavy_minus_sign: | Memory reservation. |
| `limitsCpus` | *string* | :heavy_minus_sign: | CPU limit. |
| `limitsCpuset` | *string* | :heavy_minus_sign: | CPU set. |
| `limitsCpuShares` | *number* | :heavy_minus_sign: | CPU shares. |
| `customLabels` | *string* | :heavy_minus_sign: | Custom labels. |
| `customDockerRunOptions` | *string* | :heavy_minus_sign: | Custom docker run options. |
| `postDeploymentCommand` | *string* | :heavy_minus_sign: | Post deployment command. |
| `postDeploymentCommandContainer` | *string* | :heavy_minus_sign: | Post deployment command container. |
| `preDeploymentCommand` | *string* | :heavy_minus_sign: | Pre deployment command. |
| `preDeploymentCommandContainer` | *string* | :heavy_minus_sign: | Pre deployment command container. |
| `manualWebhookSecretGithub` | *string* | :heavy_minus_sign: | Manual webhook secret for Github. |
| `manualWebhookSecretGitlab` | *string* | :heavy_minus_sign: | Manual webhook secret for Gitlab. |
| `manualWebhookSecretBitbucket` | *string* | :heavy_minus_sign: | Manual webhook secret for Bitbucket. |
| `manualWebhookSecretGitea` | *string* | :heavy_minus_sign: | Manual webhook secret for Gitea. |
| `redirect` | [operations.CreateDockerimageApplicationRedirect](../../models/operations/createdockerimageapplicationredirect.md) | :heavy_minus_sign: | How to set redirect with Traefik / Caddy. www<->non-www. |
| `instantDeploy` | *boolean* | :heavy_minus_sign: | The flag to indicate if the application should be deployed instantly. |
| `useBuildServer` | *boolean* | :heavy_minus_sign: | Use build server. |

View File

@@ -0,0 +1,19 @@
# CreateEnvByApplicationUuidRequest
## Example Usage
```typescript
import { CreateEnvByApplicationUuidRequest } from "coolify/models/operations";
let value: CreateEnvByApplicationUuidRequest = {
uuid: "56ecb1eb-f2d2-491d-8c96-1b7bdfd05b28",
requestBody: {},
};
```
## Fields
| Field | Type | Required | Description |
| -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- |
| `uuid` | *string* | :heavy_check_mark: | UUID of the application. |
| `requestBody` | [operations.CreateEnvByApplicationUuidRequestBody](../../models/operations/createenvbyapplicationuuidrequestbody.md) | :heavy_check_mark: | Env created. |

View File

@@ -0,0 +1,23 @@
# CreateEnvByApplicationUuidRequestBody
Env created.
## Example Usage
```typescript
import { CreateEnvByApplicationUuidRequestBody } from "coolify/models/operations";
let value: CreateEnvByApplicationUuidRequestBody = {};
```
## Fields
| Field | Type | Required | Description |
| -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- |
| `key` | *string* | :heavy_minus_sign: | The key of the environment variable. |
| `value` | *string* | :heavy_minus_sign: | The value of the environment variable. |
| `isPreview` | *boolean* | :heavy_minus_sign: | The flag to indicate if the environment variable is used in preview deployments. |
| `isBuildTime` | *boolean* | :heavy_minus_sign: | The flag to indicate if the environment variable is used in build time. |
| `isLiteral` | *boolean* | :heavy_minus_sign: | The flag to indicate if the environment variable is a literal, nothing espaced. |
| `isMultiline` | *boolean* | :heavy_minus_sign: | The flag to indicate if the environment variable is multiline. |
| `isShownOnce` | *boolean* | :heavy_minus_sign: | The flag to indicate if the environment variable's value is shown on the UI. |

View File

@@ -0,0 +1,19 @@
# CreateEnvByApplicationUuidResponseBody
Environment variable created.
## Example Usage
```typescript
import { CreateEnvByApplicationUuidResponseBody } from "coolify/models/operations";
let value: CreateEnvByApplicationUuidResponseBody = {
uuid: "nc0k04gk8g0cgsk440g0koko",
};
```
## Fields
| Field | Type | Required | Description | Example |
| ------------------------ | ------------------------ | ------------------------ | ------------------------ | ------------------------ |
| `uuid` | *string* | :heavy_minus_sign: | N/A | nc0k04gk8g0cgsk440g0koko |

View File

@@ -0,0 +1,19 @@
# CreateEnvByServiceUuidRequest
## Example Usage
```typescript
import { CreateEnvByServiceUuidRequest } from "coolify/models/operations";
let value: CreateEnvByServiceUuidRequest = {
uuid: "c8177365-2748-40ed-98df-1aff92903f5a",
requestBody: {},
};
```
## Fields
| Field | Type | Required | Description |
| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ |
| `uuid` | *string* | :heavy_check_mark: | UUID of the service. |
| `requestBody` | [operations.CreateEnvByServiceUuidRequestBody](../../models/operations/createenvbyserviceuuidrequestbody.md) | :heavy_check_mark: | Env created. |

View File

@@ -0,0 +1,23 @@
# CreateEnvByServiceUuidRequestBody
Env created.
## Example Usage
```typescript
import { CreateEnvByServiceUuidRequestBody } from "coolify/models/operations";
let value: CreateEnvByServiceUuidRequestBody = {};
```
## Fields
| Field | Type | Required | Description |
| -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- |
| `key` | *string* | :heavy_minus_sign: | The key of the environment variable. |
| `value` | *string* | :heavy_minus_sign: | The value of the environment variable. |
| `isPreview` | *boolean* | :heavy_minus_sign: | The flag to indicate if the environment variable is used in preview deployments. |
| `isBuildTime` | *boolean* | :heavy_minus_sign: | The flag to indicate if the environment variable is used in build time. |
| `isLiteral` | *boolean* | :heavy_minus_sign: | The flag to indicate if the environment variable is a literal, nothing espaced. |
| `isMultiline` | *boolean* | :heavy_minus_sign: | The flag to indicate if the environment variable is multiline. |
| `isShownOnce` | *boolean* | :heavy_minus_sign: | The flag to indicate if the environment variable's value is shown on the UI. |

View File

@@ -0,0 +1,19 @@
# CreateEnvByServiceUuidResponseBody
Environment variable created.
## Example Usage
```typescript
import { CreateEnvByServiceUuidResponseBody } from "coolify/models/operations";
let value: CreateEnvByServiceUuidResponseBody = {
uuid: "nc0k04gk8g0cgsk440g0koko",
};
```
## Fields
| Field | Type | Required | Description | Example |
| ------------------------ | ------------------------ | ------------------------ | ------------------------ | ------------------------ |
| `uuid` | *string* | :heavy_minus_sign: | N/A | nc0k04gk8g0cgsk440g0koko |

View File

@@ -0,0 +1,17 @@
# CreatePrivateDeployKeyApplicationBuildPack
The build pack type.
## Example Usage
```typescript
import { CreatePrivateDeployKeyApplicationBuildPack } from "coolify/models/operations";
let value: CreatePrivateDeployKeyApplicationBuildPack = "static";
```
## Values
```typescript
"nixpacks" | "static" | "dockerfile" | "dockercompose"
```

View File

@@ -0,0 +1,17 @@
# CreatePrivateDeployKeyApplicationRedirect
How to set redirect with Traefik / Caddy. www<->non-www.
## Example Usage
```typescript
import { CreatePrivateDeployKeyApplicationRedirect } from "coolify/models/operations";
let value: CreatePrivateDeployKeyApplicationRedirect = "both";
```
## Values
```typescript
"www" | "non-www" | "both"
```

View File

@@ -0,0 +1,87 @@
# CreatePrivateDeployKeyApplicationRequestBody
Application object that needs to be created.
## Example Usage
```typescript
import { CreatePrivateDeployKeyApplicationRequestBody } from "coolify/models/operations";
let value: CreatePrivateDeployKeyApplicationRequestBody = {
projectUuid: "<id>",
serverUuid: "<id>",
environmentName: "<value>",
privateKeyUuid: "<id>",
gitRepository: "<value>",
gitBranch: "<value>",
portsExposes: "<value>",
buildPack: "dockerfile",
};
```
## Fields
| Field | Type | Required | Description |
| ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- |
| `projectUuid` | *string* | :heavy_check_mark: | The project UUID. |
| `serverUuid` | *string* | :heavy_check_mark: | The server UUID. |
| `environmentName` | *string* | :heavy_check_mark: | The environment name. |
| `privateKeyUuid` | *string* | :heavy_check_mark: | The private key UUID. |
| `gitRepository` | *string* | :heavy_check_mark: | The git repository URL. |
| `gitBranch` | *string* | :heavy_check_mark: | The git branch. |
| `portsExposes` | *string* | :heavy_check_mark: | The ports to expose. |
| `destinationUuid` | *string* | :heavy_minus_sign: | The destination UUID. |
| `buildPack` | [operations.CreatePrivateDeployKeyApplicationBuildPack](../../models/operations/createprivatedeploykeyapplicationbuildpack.md) | :heavy_check_mark: | The build pack type. |
| `name` | *string* | :heavy_minus_sign: | The application name. |
| `description` | *string* | :heavy_minus_sign: | The application description. |
| `domains` | *string* | :heavy_minus_sign: | The application domains. |
| `gitCommitSha` | *string* | :heavy_minus_sign: | The git commit SHA. |
| `dockerRegistryImageName` | *string* | :heavy_minus_sign: | The docker registry image name. |
| `dockerRegistryImageTag` | *string* | :heavy_minus_sign: | The docker registry image tag. |
| `isStatic` | *boolean* | :heavy_minus_sign: | The flag to indicate if the application is static. |
| `staticImage` | [operations.CreatePrivateDeployKeyApplicationStaticImage](../../models/operations/createprivatedeploykeyapplicationstaticimage.md) | :heavy_minus_sign: | The static image. |
| `installCommand` | *string* | :heavy_minus_sign: | The install command. |
| `buildCommand` | *string* | :heavy_minus_sign: | The build command. |
| `startCommand` | *string* | :heavy_minus_sign: | The start command. |
| `portsMappings` | *string* | :heavy_minus_sign: | The ports mappings. |
| `baseDirectory` | *string* | :heavy_minus_sign: | The base directory for all commands. |
| `publishDirectory` | *string* | :heavy_minus_sign: | The publish directory. |
| `healthCheckEnabled` | *boolean* | :heavy_minus_sign: | Health check enabled. |
| `healthCheckPath` | *string* | :heavy_minus_sign: | Health check path. |
| `healthCheckPort` | *string* | :heavy_minus_sign: | Health check port. |
| `healthCheckHost` | *string* | :heavy_minus_sign: | Health check host. |
| `healthCheckMethod` | *string* | :heavy_minus_sign: | Health check method. |
| `healthCheckReturnCode` | *number* | :heavy_minus_sign: | Health check return code. |
| `healthCheckScheme` | *string* | :heavy_minus_sign: | Health check scheme. |
| `healthCheckResponseText` | *string* | :heavy_minus_sign: | Health check response text. |
| `healthCheckInterval` | *number* | :heavy_minus_sign: | Health check interval in seconds. |
| `healthCheckTimeout` | *number* | :heavy_minus_sign: | Health check timeout in seconds. |
| `healthCheckRetries` | *number* | :heavy_minus_sign: | Health check retries count. |
| `healthCheckStartPeriod` | *number* | :heavy_minus_sign: | Health check start period in seconds. |
| `limitsMemory` | *string* | :heavy_minus_sign: | Memory limit. |
| `limitsMemorySwap` | *string* | :heavy_minus_sign: | Memory swap limit. |
| `limitsMemorySwappiness` | *number* | :heavy_minus_sign: | Memory swappiness. |
| `limitsMemoryReservation` | *string* | :heavy_minus_sign: | Memory reservation. |
| `limitsCpus` | *string* | :heavy_minus_sign: | CPU limit. |
| `limitsCpuset` | *string* | :heavy_minus_sign: | CPU set. |
| `limitsCpuShares` | *number* | :heavy_minus_sign: | CPU shares. |
| `customLabels` | *string* | :heavy_minus_sign: | Custom labels. |
| `customDockerRunOptions` | *string* | :heavy_minus_sign: | Custom docker run options. |
| `postDeploymentCommand` | *string* | :heavy_minus_sign: | Post deployment command. |
| `postDeploymentCommandContainer` | *string* | :heavy_minus_sign: | Post deployment command container. |
| `preDeploymentCommand` | *string* | :heavy_minus_sign: | Pre deployment command. |
| `preDeploymentCommandContainer` | *string* | :heavy_minus_sign: | Pre deployment command container. |
| `manualWebhookSecretGithub` | *string* | :heavy_minus_sign: | Manual webhook secret for Github. |
| `manualWebhookSecretGitlab` | *string* | :heavy_minus_sign: | Manual webhook secret for Gitlab. |
| `manualWebhookSecretBitbucket` | *string* | :heavy_minus_sign: | Manual webhook secret for Bitbucket. |
| `manualWebhookSecretGitea` | *string* | :heavy_minus_sign: | Manual webhook secret for Gitea. |
| `redirect` | [operations.CreatePrivateDeployKeyApplicationRedirect](../../models/operations/createprivatedeploykeyapplicationredirect.md) | :heavy_minus_sign: | How to set redirect with Traefik / Caddy. www<->non-www. |
| `instantDeploy` | *boolean* | :heavy_minus_sign: | The flag to indicate if the application should be deployed instantly. |
| `dockerfile` | *string* | :heavy_minus_sign: | The Dockerfile content. |
| `dockerComposeLocation` | *string* | :heavy_minus_sign: | The Docker Compose location. |
| `dockerComposeRaw` | *string* | :heavy_minus_sign: | The Docker Compose raw content. |
| `dockerComposeCustomStartCommand` | *string* | :heavy_minus_sign: | The Docker Compose custom start command. |
| `dockerComposeCustomBuildCommand` | *string* | :heavy_minus_sign: | The Docker Compose custom build command. |
| `dockerComposeDomains` | *any*[] | :heavy_minus_sign: | The Docker Compose domains. |
| `watchPaths` | *string* | :heavy_minus_sign: | The watch paths. |
| `useBuildServer` | *boolean* | :heavy_minus_sign: | Use build server. |

View File

@@ -0,0 +1,17 @@
# CreatePrivateDeployKeyApplicationStaticImage
The static image.
## Example Usage
```typescript
import { CreatePrivateDeployKeyApplicationStaticImage } from "coolify/models/operations";
let value: CreatePrivateDeployKeyApplicationStaticImage = "nginx:alpine";
```
## Values
```typescript
"nginx:alpine"
```

View File

@@ -0,0 +1,17 @@
# CreatePrivateGithubAppApplicationBuildPack
The build pack type.
## Example Usage
```typescript
import { CreatePrivateGithubAppApplicationBuildPack } from "coolify/models/operations";
let value: CreatePrivateGithubAppApplicationBuildPack = "static";
```
## Values
```typescript
"nixpacks" | "static" | "dockerfile" | "dockercompose"
```

View File

@@ -0,0 +1,17 @@
# CreatePrivateGithubAppApplicationRedirect
How to set redirect with Traefik / Caddy. www<->non-www.
## Example Usage
```typescript
import { CreatePrivateGithubAppApplicationRedirect } from "coolify/models/operations";
let value: CreatePrivateGithubAppApplicationRedirect = "both";
```
## Values
```typescript
"www" | "non-www" | "both"
```

View File

@@ -0,0 +1,87 @@
# CreatePrivateGithubAppApplicationRequestBody
Application object that needs to be created.
## Example Usage
```typescript
import { CreatePrivateGithubAppApplicationRequestBody } from "coolify/models/operations";
let value: CreatePrivateGithubAppApplicationRequestBody = {
projectUuid: "<id>",
serverUuid: "<id>",
environmentName: "<value>",
githubAppUuid: "<id>",
gitRepository: "<value>",
gitBranch: "<value>",
portsExposes: "<value>",
buildPack: "dockercompose",
};
```
## Fields
| Field | Type | Required | Description |
| ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- |
| `projectUuid` | *string* | :heavy_check_mark: | The project UUID. |
| `serverUuid` | *string* | :heavy_check_mark: | The server UUID. |
| `environmentName` | *string* | :heavy_check_mark: | The environment name. |
| `githubAppUuid` | *string* | :heavy_check_mark: | The Github App UUID. |
| `gitRepository` | *string* | :heavy_check_mark: | The git repository URL. |
| `gitBranch` | *string* | :heavy_check_mark: | The git branch. |
| `portsExposes` | *string* | :heavy_check_mark: | The ports to expose. |
| `destinationUuid` | *string* | :heavy_minus_sign: | The destination UUID. |
| `buildPack` | [operations.CreatePrivateGithubAppApplicationBuildPack](../../models/operations/createprivategithubappapplicationbuildpack.md) | :heavy_check_mark: | The build pack type. |
| `name` | *string* | :heavy_minus_sign: | The application name. |
| `description` | *string* | :heavy_minus_sign: | The application description. |
| `domains` | *string* | :heavy_minus_sign: | The application domains. |
| `gitCommitSha` | *string* | :heavy_minus_sign: | The git commit SHA. |
| `dockerRegistryImageName` | *string* | :heavy_minus_sign: | The docker registry image name. |
| `dockerRegistryImageTag` | *string* | :heavy_minus_sign: | The docker registry image tag. |
| `isStatic` | *boolean* | :heavy_minus_sign: | The flag to indicate if the application is static. |
| `staticImage` | [operations.CreatePrivateGithubAppApplicationStaticImage](../../models/operations/createprivategithubappapplicationstaticimage.md) | :heavy_minus_sign: | The static image. |
| `installCommand` | *string* | :heavy_minus_sign: | The install command. |
| `buildCommand` | *string* | :heavy_minus_sign: | The build command. |
| `startCommand` | *string* | :heavy_minus_sign: | The start command. |
| `portsMappings` | *string* | :heavy_minus_sign: | The ports mappings. |
| `baseDirectory` | *string* | :heavy_minus_sign: | The base directory for all commands. |
| `publishDirectory` | *string* | :heavy_minus_sign: | The publish directory. |
| `healthCheckEnabled` | *boolean* | :heavy_minus_sign: | Health check enabled. |
| `healthCheckPath` | *string* | :heavy_minus_sign: | Health check path. |
| `healthCheckPort` | *string* | :heavy_minus_sign: | Health check port. |
| `healthCheckHost` | *string* | :heavy_minus_sign: | Health check host. |
| `healthCheckMethod` | *string* | :heavy_minus_sign: | Health check method. |
| `healthCheckReturnCode` | *number* | :heavy_minus_sign: | Health check return code. |
| `healthCheckScheme` | *string* | :heavy_minus_sign: | Health check scheme. |
| `healthCheckResponseText` | *string* | :heavy_minus_sign: | Health check response text. |
| `healthCheckInterval` | *number* | :heavy_minus_sign: | Health check interval in seconds. |
| `healthCheckTimeout` | *number* | :heavy_minus_sign: | Health check timeout in seconds. |
| `healthCheckRetries` | *number* | :heavy_minus_sign: | Health check retries count. |
| `healthCheckStartPeriod` | *number* | :heavy_minus_sign: | Health check start period in seconds. |
| `limitsMemory` | *string* | :heavy_minus_sign: | Memory limit. |
| `limitsMemorySwap` | *string* | :heavy_minus_sign: | Memory swap limit. |
| `limitsMemorySwappiness` | *number* | :heavy_minus_sign: | Memory swappiness. |
| `limitsMemoryReservation` | *string* | :heavy_minus_sign: | Memory reservation. |
| `limitsCpus` | *string* | :heavy_minus_sign: | CPU limit. |
| `limitsCpuset` | *string* | :heavy_minus_sign: | CPU set. |
| `limitsCpuShares` | *number* | :heavy_minus_sign: | CPU shares. |
| `customLabels` | *string* | :heavy_minus_sign: | Custom labels. |
| `customDockerRunOptions` | *string* | :heavy_minus_sign: | Custom docker run options. |
| `postDeploymentCommand` | *string* | :heavy_minus_sign: | Post deployment command. |
| `postDeploymentCommandContainer` | *string* | :heavy_minus_sign: | Post deployment command container. |
| `preDeploymentCommand` | *string* | :heavy_minus_sign: | Pre deployment command. |
| `preDeploymentCommandContainer` | *string* | :heavy_minus_sign: | Pre deployment command container. |
| `manualWebhookSecretGithub` | *string* | :heavy_minus_sign: | Manual webhook secret for Github. |
| `manualWebhookSecretGitlab` | *string* | :heavy_minus_sign: | Manual webhook secret for Gitlab. |
| `manualWebhookSecretBitbucket` | *string* | :heavy_minus_sign: | Manual webhook secret for Bitbucket. |
| `manualWebhookSecretGitea` | *string* | :heavy_minus_sign: | Manual webhook secret for Gitea. |
| `redirect` | [operations.CreatePrivateGithubAppApplicationRedirect](../../models/operations/createprivategithubappapplicationredirect.md) | :heavy_minus_sign: | How to set redirect with Traefik / Caddy. www<->non-www. |
| `instantDeploy` | *boolean* | :heavy_minus_sign: | The flag to indicate if the application should be deployed instantly. |
| `dockerfile` | *string* | :heavy_minus_sign: | The Dockerfile content. |
| `dockerComposeLocation` | *string* | :heavy_minus_sign: | The Docker Compose location. |
| `dockerComposeRaw` | *string* | :heavy_minus_sign: | The Docker Compose raw content. |
| `dockerComposeCustomStartCommand` | *string* | :heavy_minus_sign: | The Docker Compose custom start command. |
| `dockerComposeCustomBuildCommand` | *string* | :heavy_minus_sign: | The Docker Compose custom build command. |
| `dockerComposeDomains` | *any*[] | :heavy_minus_sign: | The Docker Compose domains. |
| `watchPaths` | *string* | :heavy_minus_sign: | The watch paths. |
| `useBuildServer` | *boolean* | :heavy_minus_sign: | Use build server. |

View File

@@ -0,0 +1,17 @@
# CreatePrivateGithubAppApplicationStaticImage
The static image.
## Example Usage
```typescript
import { CreatePrivateGithubAppApplicationStaticImage } from "coolify/models/operations";
let value: CreatePrivateGithubAppApplicationStaticImage = "nginx:alpine";
```
## Values
```typescript
"nginx:alpine"
```

View File

@@ -0,0 +1,19 @@
# CreatePrivateKeyRequestBody
## Example Usage
```typescript
import { CreatePrivateKeyRequestBody } from "coolify/models/operations";
let value: CreatePrivateKeyRequestBody = {
privateKey: "<value>",
};
```
## Fields
| Field | Type | Required | Description |
| ------------------ | ------------------ | ------------------ | ------------------ |
| `name` | *string* | :heavy_minus_sign: | N/A |
| `description` | *string* | :heavy_minus_sign: | N/A |
| `privateKey` | *string* | :heavy_check_mark: | N/A |

View File

@@ -0,0 +1,17 @@
# CreatePrivateKeyResponseBody
The created private key's UUID.
## Example Usage
```typescript
import { CreatePrivateKeyResponseBody } from "coolify/models/operations";
let value: CreatePrivateKeyResponseBody = {};
```
## Fields
| Field | Type | Required | Description |
| ------------------ | ------------------ | ------------------ | ------------------ |
| `uuid` | *string* | :heavy_minus_sign: | N/A |

View File

@@ -0,0 +1,18 @@
# CreateProjectRequestBody
Project created.
## Example Usage
```typescript
import { CreateProjectRequestBody } from "coolify/models/operations";
let value: CreateProjectRequestBody = {};
```
## Fields
| Field | Type | Required | Description |
| ------------------------------- | ------------------------------- | ------------------------------- | ------------------------------- |
| `name` | *string* | :heavy_minus_sign: | The name of the project. |
| `description` | *string* | :heavy_minus_sign: | The description of the project. |

View File

@@ -0,0 +1,19 @@
# CreateProjectResponseBody
Project created.
## Example Usage
```typescript
import { CreateProjectResponseBody } from "coolify/models/operations";
let value: CreateProjectResponseBody = {
uuid: "og888os",
};
```
## Fields
| Field | Type | Required | Description | Example |
| ------------------------ | ------------------------ | ------------------------ | ------------------------ | ------------------------ |
| `uuid` | *string* | :heavy_minus_sign: | The UUID of the project. | og888os |

View File

@@ -0,0 +1,85 @@
# CreatePublicApplicationRequestBody
Application object that needs to be created.
## Example Usage
```typescript
import { CreatePublicApplicationRequestBody } from "coolify/models/operations";
let value: CreatePublicApplicationRequestBody = {
projectUuid: "<id>",
serverUuid: "<id>",
environmentName: "<value>",
gitRepository: "<value>",
gitBranch: "<value>",
buildPack: "dockerfile",
portsExposes: "<value>",
};
```
## Fields
| Field | Type | Required | Description |
| --------------------------------------------------------------------- | --------------------------------------------------------------------- | --------------------------------------------------------------------- | --------------------------------------------------------------------- |
| `projectUuid` | *string* | :heavy_check_mark: | The project UUID. |
| `serverUuid` | *string* | :heavy_check_mark: | The server UUID. |
| `environmentName` | *string* | :heavy_check_mark: | The environment name. |
| `gitRepository` | *string* | :heavy_check_mark: | The git repository URL. |
| `gitBranch` | *string* | :heavy_check_mark: | The git branch. |
| `buildPack` | [operations.BuildPack](../../models/operations/buildpack.md) | :heavy_check_mark: | The build pack type. |
| `portsExposes` | *string* | :heavy_check_mark: | The ports to expose. |
| `destinationUuid` | *string* | :heavy_minus_sign: | The destination UUID. |
| `name` | *string* | :heavy_minus_sign: | The application name. |
| `description` | *string* | :heavy_minus_sign: | The application description. |
| `domains` | *string* | :heavy_minus_sign: | The application domains. |
| `gitCommitSha` | *string* | :heavy_minus_sign: | The git commit SHA. |
| `dockerRegistryImageName` | *string* | :heavy_minus_sign: | The docker registry image name. |
| `dockerRegistryImageTag` | *string* | :heavy_minus_sign: | The docker registry image tag. |
| `isStatic` | *boolean* | :heavy_minus_sign: | The flag to indicate if the application is static. |
| `staticImage` | [operations.StaticImage](../../models/operations/staticimage.md) | :heavy_minus_sign: | The static image. |
| `installCommand` | *string* | :heavy_minus_sign: | The install command. |
| `buildCommand` | *string* | :heavy_minus_sign: | The build command. |
| `startCommand` | *string* | :heavy_minus_sign: | The start command. |
| `portsMappings` | *string* | :heavy_minus_sign: | The ports mappings. |
| `baseDirectory` | *string* | :heavy_minus_sign: | The base directory for all commands. |
| `publishDirectory` | *string* | :heavy_minus_sign: | The publish directory. |
| `healthCheckEnabled` | *boolean* | :heavy_minus_sign: | Health check enabled. |
| `healthCheckPath` | *string* | :heavy_minus_sign: | Health check path. |
| `healthCheckPort` | *string* | :heavy_minus_sign: | Health check port. |
| `healthCheckHost` | *string* | :heavy_minus_sign: | Health check host. |
| `healthCheckMethod` | *string* | :heavy_minus_sign: | Health check method. |
| `healthCheckReturnCode` | *number* | :heavy_minus_sign: | Health check return code. |
| `healthCheckScheme` | *string* | :heavy_minus_sign: | Health check scheme. |
| `healthCheckResponseText` | *string* | :heavy_minus_sign: | Health check response text. |
| `healthCheckInterval` | *number* | :heavy_minus_sign: | Health check interval in seconds. |
| `healthCheckTimeout` | *number* | :heavy_minus_sign: | Health check timeout in seconds. |
| `healthCheckRetries` | *number* | :heavy_minus_sign: | Health check retries count. |
| `healthCheckStartPeriod` | *number* | :heavy_minus_sign: | Health check start period in seconds. |
| `limitsMemory` | *string* | :heavy_minus_sign: | Memory limit. |
| `limitsMemorySwap` | *string* | :heavy_minus_sign: | Memory swap limit. |
| `limitsMemorySwappiness` | *number* | :heavy_minus_sign: | Memory swappiness. |
| `limitsMemoryReservation` | *string* | :heavy_minus_sign: | Memory reservation. |
| `limitsCpus` | *string* | :heavy_minus_sign: | CPU limit. |
| `limitsCpuset` | *string* | :heavy_minus_sign: | CPU set. |
| `limitsCpuShares` | *number* | :heavy_minus_sign: | CPU shares. |
| `customLabels` | *string* | :heavy_minus_sign: | Custom labels. |
| `customDockerRunOptions` | *string* | :heavy_minus_sign: | Custom docker run options. |
| `postDeploymentCommand` | *string* | :heavy_minus_sign: | Post deployment command. |
| `postDeploymentCommandContainer` | *string* | :heavy_minus_sign: | Post deployment command container. |
| `preDeploymentCommand` | *string* | :heavy_minus_sign: | Pre deployment command. |
| `preDeploymentCommandContainer` | *string* | :heavy_minus_sign: | Pre deployment command container. |
| `manualWebhookSecretGithub` | *string* | :heavy_minus_sign: | Manual webhook secret for Github. |
| `manualWebhookSecretGitlab` | *string* | :heavy_minus_sign: | Manual webhook secret for Gitlab. |
| `manualWebhookSecretBitbucket` | *string* | :heavy_minus_sign: | Manual webhook secret for Bitbucket. |
| `manualWebhookSecretGitea` | *string* | :heavy_minus_sign: | Manual webhook secret for Gitea. |
| `redirect` | [operations.Redirect](../../models/operations/redirect.md) | :heavy_minus_sign: | How to set redirect with Traefik / Caddy. www<->non-www. |
| `instantDeploy` | *boolean* | :heavy_minus_sign: | The flag to indicate if the application should be deployed instantly. |
| `dockerfile` | *string* | :heavy_minus_sign: | The Dockerfile content. |
| `dockerComposeLocation` | *string* | :heavy_minus_sign: | The Docker Compose location. |
| `dockerComposeRaw` | *string* | :heavy_minus_sign: | The Docker Compose raw content. |
| `dockerComposeCustomStartCommand` | *string* | :heavy_minus_sign: | The Docker Compose custom start command. |
| `dockerComposeCustomBuildCommand` | *string* | :heavy_minus_sign: | The Docker Compose custom build command. |
| `dockerComposeDomains` | *any*[] | :heavy_minus_sign: | The Docker Compose domains. |
| `watchPaths` | *string* | :heavy_minus_sign: | The watch paths. |
| `useBuildServer` | *boolean* | :heavy_minus_sign: | Use build server. |

View File

@@ -0,0 +1,35 @@
# CreateServerRequestBody
Server created.
## Example Usage
```typescript
import { CreateServerRequestBody } from "coolify/models/operations";
let value: CreateServerRequestBody = {
name: "My Server",
description: "My Server Description",
ip: "127.0.0.1",
port: 22,
user: "root",
privateKeyUuid: "og888os",
isBuildServer: false,
instantValidate: false,
proxyType: "traefik",
};
```
## Fields
| Field | Type | Required | Description | Example |
| ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ |
| `name` | *string* | :heavy_minus_sign: | The name of the server. | My Server |
| `description` | *string* | :heavy_minus_sign: | The description of the server. | My Server Description |
| `ip` | *string* | :heavy_minus_sign: | The IP of the server. | 127.0.0.1 |
| `port` | *number* | :heavy_minus_sign: | The port of the server. | 22 |
| `user` | *string* | :heavy_minus_sign: | The user of the server. | root |
| `privateKeyUuid` | *string* | :heavy_minus_sign: | The UUID of the private key. | og888os |
| `isBuildServer` | *boolean* | :heavy_minus_sign: | Is build server. | false |
| `instantValidate` | *boolean* | :heavy_minus_sign: | Instant validate. | false |
| `proxyType` | [operations.ProxyType](../../models/operations/proxytype.md) | :heavy_minus_sign: | The proxy type. | traefik |

View File

@@ -0,0 +1,19 @@
# CreateServerResponseBody
Server created.
## Example Usage
```typescript
import { CreateServerResponseBody } from "coolify/models/operations";
let value: CreateServerResponseBody = {
uuid: "og888os",
};
```
## Fields
| Field | Type | Required | Description | Example |
| ----------------------- | ----------------------- | ----------------------- | ----------------------- | ----------------------- |
| `uuid` | *string* | :heavy_minus_sign: | The UUID of the server. | og888os |

View File

@@ -0,0 +1,27 @@
# CreateServiceRequestBody
## Example Usage
```typescript
import { CreateServiceRequestBody } from "coolify/models/operations";
let value: CreateServiceRequestBody = {
type: "classicpress-with-mysql",
projectUuid: "<id>",
environmentName: "<value>",
serverUuid: "<id>",
};
```
## Fields
| Field | Type | Required | Description |
| --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- | --------------------------------------------------------------- |
| `type` | [operations.Type](../../models/operations/type.md) | :heavy_check_mark: | The one-click service type |
| `name` | *string* | :heavy_minus_sign: | Name of the service. |
| `description` | *string* | :heavy_minus_sign: | Description of the service. |
| `projectUuid` | *string* | :heavy_check_mark: | Project UUID. |
| `environmentName` | *string* | :heavy_check_mark: | Environment name. |
| `serverUuid` | *string* | :heavy_check_mark: | Server UUID. |
| `destinationUuid` | *string* | :heavy_minus_sign: | Destination UUID. Required if server has multiple destinations. |
| `instantDeploy` | *boolean* | :heavy_minus_sign: | Start the service immediately after creation. |

View File

@@ -0,0 +1,18 @@
# CreateServiceResponseBody
Create a service.
## Example Usage
```typescript
import { CreateServiceResponseBody } from "coolify/models/operations";
let value: CreateServiceResponseBody = {};
```
## Fields
| Field | Type | Required | Description |
| ------------------ | ------------------ | ------------------ | ------------------ |
| `uuid` | *string* | :heavy_minus_sign: | Service UUID. |
| `domains` | *string*[] | :heavy_minus_sign: | Service domains. |

View File

@@ -0,0 +1,21 @@
# Data
## Example Usage
```typescript
import { Data } from "coolify/models/operations";
let value: Data = {};
```
## Fields
| Field | Type | Required | Description |
| -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- |
| `key` | *string* | :heavy_minus_sign: | The key of the environment variable. |
| `value` | *string* | :heavy_minus_sign: | The value of the environment variable. |
| `isPreview` | *boolean* | :heavy_minus_sign: | The flag to indicate if the environment variable is used in preview deployments. |
| `isBuildTime` | *boolean* | :heavy_minus_sign: | The flag to indicate if the environment variable is used in build time. |
| `isLiteral` | *boolean* | :heavy_minus_sign: | The flag to indicate if the environment variable is a literal, nothing espaced. |
| `isMultiline` | *boolean* | :heavy_minus_sign: | The flag to indicate if the environment variable is multiline. |
| `isShownOnce` | *boolean* | :heavy_minus_sign: | The flag to indicate if the environment variable's value is shown on the UI. |

View File

@@ -0,0 +1,21 @@
# DeleteApplicationByUuidRequest
## Example Usage
```typescript
import { DeleteApplicationByUuidRequest } from "coolify/models/operations";
let value: DeleteApplicationByUuidRequest = {
uuid: "325597f1-32a4-4732-91a2-35d1d1f7f9b0",
};
```
## Fields
| Field | Type | Required | Description |
| -------------------------- | -------------------------- | -------------------------- | -------------------------- |
| `uuid` | *string* | :heavy_check_mark: | UUID of the application. |
| `deleteConfigurations` | *boolean* | :heavy_minus_sign: | Delete configurations. |
| `deleteVolumes` | *boolean* | :heavy_minus_sign: | Delete volumes. |
| `dockerCleanup` | *boolean* | :heavy_minus_sign: | Run docker cleanup. |
| `deleteConnectedNetworks` | *boolean* | :heavy_minus_sign: | Delete connected networks. |

View File

@@ -0,0 +1,19 @@
# DeleteApplicationByUuidResponseBody
Application deleted.
## Example Usage
```typescript
import { DeleteApplicationByUuidResponseBody } from "coolify/models/operations";
let value: DeleteApplicationByUuidResponseBody = {
message: "Application deleted.",
};
```
## Fields
| Field | Type | Required | Description | Example |
| -------------------- | -------------------- | -------------------- | -------------------- | -------------------- |
| `message` | *string* | :heavy_minus_sign: | N/A | Application deleted. |

View File

@@ -0,0 +1,21 @@
# DeleteDatabaseByUuidRequest
## Example Usage
```typescript
import { DeleteDatabaseByUuidRequest } from "coolify/models/operations";
let value: DeleteDatabaseByUuidRequest = {
uuid: "f31f3b0b-e465-4b32-974d-38fadfcbff71",
};
```
## Fields
| Field | Type | Required | Description |
| -------------------------- | -------------------------- | -------------------------- | -------------------------- |
| `uuid` | *string* | :heavy_check_mark: | UUID of the database. |
| `deleteConfigurations` | *boolean* | :heavy_minus_sign: | Delete configurations. |
| `deleteVolumes` | *boolean* | :heavy_minus_sign: | Delete volumes. |
| `dockerCleanup` | *boolean* | :heavy_minus_sign: | Run docker cleanup. |
| `deleteConnectedNetworks` | *boolean* | :heavy_minus_sign: | Delete connected networks. |

View File

@@ -0,0 +1,19 @@
# DeleteDatabaseByUuidResponseBody
Database deleted.
## Example Usage
```typescript
import { DeleteDatabaseByUuidResponseBody } from "coolify/models/operations";
let value: DeleteDatabaseByUuidResponseBody = {
message: "Database deleted.",
};
```
## Fields
| Field | Type | Required | Description | Example |
| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ |
| `message` | *string* | :heavy_minus_sign: | N/A | Database deleted. |

View File

@@ -0,0 +1,19 @@
# DeleteEnvByApplicationUuidRequest
## Example Usage
```typescript
import { DeleteEnvByApplicationUuidRequest } from "coolify/models/operations";
let value: DeleteEnvByApplicationUuidRequest = {
uuid: "365749d1-82b6-4922-a75f-cbe189f4310e",
envUuid: "c4917fe5-f3ff-4cad-84d9-052f77a52d38",
};
```
## Fields
| Field | Type | Required | Description |
| --------------------------------- | --------------------------------- | --------------------------------- | --------------------------------- |
| `uuid` | *string* | :heavy_check_mark: | UUID of the application. |
| `envUuid` | *string* | :heavy_check_mark: | UUID of the environment variable. |

View File

@@ -0,0 +1,19 @@
# DeleteEnvByApplicationUuidResponseBody
Environment variable deleted.
## Example Usage
```typescript
import { DeleteEnvByApplicationUuidResponseBody } from "coolify/models/operations";
let value: DeleteEnvByApplicationUuidResponseBody = {
message: "Environment variable deleted.",
};
```
## Fields
| Field | Type | Required | Description | Example |
| ----------------------------- | ----------------------------- | ----------------------------- | ----------------------------- | ----------------------------- |
| `message` | *string* | :heavy_minus_sign: | N/A | Environment variable deleted. |

View File

@@ -0,0 +1,19 @@
# DeleteEnvByServiceUuidRequest
## Example Usage
```typescript
import { DeleteEnvByServiceUuidRequest } from "coolify/models/operations";
let value: DeleteEnvByServiceUuidRequest = {
uuid: "064feda5-8d1c-40dc-80a8-22c9fff1f37c",
envUuid: "9211506a-6114-42f2-bc99-8f5c86f916cb",
};
```
## Fields
| Field | Type | Required | Description |
| --------------------------------- | --------------------------------- | --------------------------------- | --------------------------------- |
| `uuid` | *string* | :heavy_check_mark: | UUID of the service. |
| `envUuid` | *string* | :heavy_check_mark: | UUID of the environment variable. |

View File

@@ -0,0 +1,19 @@
# DeleteEnvByServiceUuidResponseBody
Environment variable deleted.
## Example Usage
```typescript
import { DeleteEnvByServiceUuidResponseBody } from "coolify/models/operations";
let value: DeleteEnvByServiceUuidResponseBody = {
message: "Environment variable deleted.",
};
```
## Fields
| Field | Type | Required | Description | Example |
| ----------------------------- | ----------------------------- | ----------------------------- | ----------------------------- | ----------------------------- |
| `message` | *string* | :heavy_minus_sign: | N/A | Environment variable deleted. |

View File

@@ -0,0 +1,17 @@
# DeletePrivateKeyByUuidRequest
## Example Usage
```typescript
import { DeletePrivateKeyByUuidRequest } from "coolify/models/operations";
let value: DeletePrivateKeyByUuidRequest = {
uuid: "91fe6347-0a66-4cbf-95ec-594d1326b870",
};
```
## Fields
| Field | Type | Required | Description |
| ------------------ | ------------------ | ------------------ | ------------------ |
| `uuid` | *string* | :heavy_check_mark: | Private Key UUID |

View File

@@ -0,0 +1,19 @@
# DeletePrivateKeyByUuidResponseBody
Private Key deleted.
## Example Usage
```typescript
import { DeletePrivateKeyByUuidResponseBody } from "coolify/models/operations";
let value: DeletePrivateKeyByUuidResponseBody = {
message: "Private Key deleted.",
};
```
## Fields
| Field | Type | Required | Description | Example |
| -------------------- | -------------------- | -------------------- | -------------------- | -------------------- |
| `message` | *string* | :heavy_minus_sign: | N/A | Private Key deleted. |

View File

@@ -0,0 +1,17 @@
# DeleteProjectByUuidRequest
## Example Usage
```typescript
import { DeleteProjectByUuidRequest } from "coolify/models/operations";
let value: DeleteProjectByUuidRequest = {
uuid: "ba6691da-b816-4650-ab19-baf1d0868530",
};
```
## Fields
| Field | Type | Required | Description |
| ------------------------ | ------------------------ | ------------------------ | ------------------------ |
| `uuid` | *string* | :heavy_check_mark: | UUID of the application. |

View File

@@ -0,0 +1,19 @@
# DeleteProjectByUuidResponseBody
Project deleted.
## Example Usage
```typescript
import { DeleteProjectByUuidResponseBody } from "coolify/models/operations";
let value: DeleteProjectByUuidResponseBody = {
message: "Project deleted.",
};
```
## Fields
| Field | Type | Required | Description | Example |
| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ |
| `message` | *string* | :heavy_minus_sign: | N/A | Project deleted. |

View File

@@ -0,0 +1,17 @@
# DeleteServerByUuidRequest
## Example Usage
```typescript
import { DeleteServerByUuidRequest } from "coolify/models/operations";
let value: DeleteServerByUuidRequest = {
uuid: "eb2725ee-459f-424d-b7e2-855765ebb49c",
};
```
## Fields
| Field | Type | Required | Description |
| ------------------- | ------------------- | ------------------- | ------------------- |
| `uuid` | *string* | :heavy_check_mark: | UUID of the server. |

View File

@@ -0,0 +1,19 @@
# DeleteServerByUuidResponseBody
Server deleted.
## Example Usage
```typescript
import { DeleteServerByUuidResponseBody } from "coolify/models/operations";
let value: DeleteServerByUuidResponseBody = {
message: "Server deleted.",
};
```
## Fields
| Field | Type | Required | Description | Example |
| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ |
| `message` | *string* | :heavy_minus_sign: | N/A | Server deleted. |

View File

@@ -0,0 +1,21 @@
# DeleteServiceByUuidRequest
## Example Usage
```typescript
import { DeleteServiceByUuidRequest } from "coolify/models/operations";
let value: DeleteServiceByUuidRequest = {
uuid: "b06ad7f4-074d-434c-8b8b-600810fd20f4",
};
```
## Fields
| Field | Type | Required | Description |
| -------------------------- | -------------------------- | -------------------------- | -------------------------- |
| `uuid` | *string* | :heavy_check_mark: | Service UUID |
| `deleteConfigurations` | *boolean* | :heavy_minus_sign: | Delete configurations. |
| `deleteVolumes` | *boolean* | :heavy_minus_sign: | Delete volumes. |
| `dockerCleanup` | *boolean* | :heavy_minus_sign: | Run docker cleanup. |
| `deleteConnectedNetworks` | *boolean* | :heavy_minus_sign: | Delete connected networks. |

View File

@@ -0,0 +1,19 @@
# DeleteServiceByUuidResponseBody
Delete a service by UUID
## Example Usage
```typescript
import { DeleteServiceByUuidResponseBody } from "coolify/models/operations";
let value: DeleteServiceByUuidResponseBody = {
message: "Service deletion request queued.",
};
```
## Fields
| Field | Type | Required | Description | Example |
| -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- |
| `message` | *string* | :heavy_minus_sign: | N/A | Service deletion request queued. |

View File

@@ -0,0 +1,17 @@
# DeployByTagOrUuidRequest
## Example Usage
```typescript
import { DeployByTagOrUuidRequest } from "coolify/models/operations";
let value: DeployByTagOrUuidRequest = {};
```
## Fields
| Field | Type | Required | Description |
| -------------------------------------------------------- | -------------------------------------------------------- | -------------------------------------------------------- | -------------------------------------------------------- |
| `tag` | *string* | :heavy_minus_sign: | Tag name(s). Comma separated list is also accepted. |
| `uuid` | *string* | :heavy_minus_sign: | Resource UUID(s). Comma separated list is also accepted. |
| `force` | *boolean* | :heavy_minus_sign: | Force rebuild (without cache) |

View File

@@ -0,0 +1,17 @@
# DeployByTagOrUuidResponseBody
Get deployment(s) UUID's
## Example Usage
```typescript
import { DeployByTagOrUuidResponseBody } from "coolify/models/operations";
let value: DeployByTagOrUuidResponseBody = {};
```
## Fields
| Field | Type | Required | Description |
| ------------------------------------------------------------------ | ------------------------------------------------------------------ | ------------------------------------------------------------------ | ------------------------------------------------------------------ |
| `deployments` | [operations.Deployments](../../models/operations/deployments.md)[] | :heavy_minus_sign: | N/A |

View File

@@ -0,0 +1,17 @@
# Deployments
## Example Usage
```typescript
import { Deployments } from "coolify/models/operations";
let value: Deployments = {};
```
## Fields
| Field | Type | Required | Description |
| ------------------ | ------------------ | ------------------ | ------------------ |
| `message` | *string* | :heavy_minus_sign: | N/A |
| `resourceUuid` | *string* | :heavy_minus_sign: | N/A |
| `deploymentUuid` | *string* | :heavy_minus_sign: | N/A |

View File

@@ -0,0 +1,19 @@
# DisableApiResponseBody
Disable API.
## Example Usage
```typescript
import { DisableApiResponseBody } from "coolify/models/operations";
let value: DisableApiResponseBody = {
message: "API disabled.",
};
```
## Fields
| Field | Type | Required | Description | Example |
| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ |
| `message` | *string* | :heavy_minus_sign: | N/A | API disabled. |

View File

@@ -0,0 +1,19 @@
# EnableApiResponseBody
Enable API.
## Example Usage
```typescript
import { EnableApiResponseBody } from "coolify/models/operations";
let value: EnableApiResponseBody = {
message: "API enabled.",
};
```
## Fields
| Field | Type | Required | Description | Example |
| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ |
| `message` | *string* | :heavy_minus_sign: | N/A | API enabled. |

View File

@@ -0,0 +1,19 @@
# ExecuteCommandApplicationRequest
## Example Usage
```typescript
import { ExecuteCommandApplicationRequest } from "coolify/models/operations";
let value: ExecuteCommandApplicationRequest = {
uuid: "6164d0f5-5026-4e1f-ad75-390061434201",
requestBody: {},
};
```
## Fields
| Field | Type | Required | Description |
| ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ |
| `uuid` | *string* | :heavy_check_mark: | UUID of the application. |
| `requestBody` | [operations.ExecuteCommandApplicationRequestBody](../../models/operations/executecommandapplicationrequestbody.md) | :heavy_check_mark: | Command to execute. |

View File

@@ -0,0 +1,17 @@
# ExecuteCommandApplicationRequestBody
Command to execute.
## Example Usage
```typescript
import { ExecuteCommandApplicationRequestBody } from "coolify/models/operations";
let value: ExecuteCommandApplicationRequestBody = {};
```
## Fields
| Field | Type | Required | Description |
| ------------------- | ------------------- | ------------------- | ------------------- |
| `command` | *string* | :heavy_minus_sign: | Command to execute. |

View File

@@ -0,0 +1,20 @@
# ExecuteCommandApplicationResponseBody
Execute a command on the application's current container.
## Example Usage
```typescript
import { ExecuteCommandApplicationResponseBody } from "coolify/models/operations";
let value: ExecuteCommandApplicationResponseBody = {
message: "Command executed.",
};
```
## Fields
| Field | Type | Required | Description | Example |
| ------------------ | ------------------ | ------------------ | ------------------ | ------------------ |
| `message` | *string* | :heavy_minus_sign: | N/A | Command executed. |
| `response` | *string* | :heavy_minus_sign: | N/A | |

View File

@@ -0,0 +1,17 @@
# GetApplicationByUuidRequest
## Example Usage
```typescript
import { GetApplicationByUuidRequest } from "coolify/models/operations";
let value: GetApplicationByUuidRequest = {
uuid: "10dcdfc7-c1a2-4f86-a4c7-90999fa56b0a",
};
```
## Fields
| Field | Type | Required | Description |
| ------------------------ | ------------------------ | ------------------------ | ------------------------ |
| `uuid` | *string* | :heavy_check_mark: | UUID of the application. |

View File

@@ -0,0 +1,17 @@
# GetDatabaseByUuidRequest
## Example Usage
```typescript
import { GetDatabaseByUuidRequest } from "coolify/models/operations";
let value: GetDatabaseByUuidRequest = {
uuid: "ff62a7f1-c43a-43a8-9684-b65de035dffe",
};
```
## Fields
| Field | Type | Required | Description |
| --------------------- | --------------------- | --------------------- | --------------------- |
| `uuid` | *string* | :heavy_check_mark: | UUID of the database. |

View File

@@ -0,0 +1,17 @@
# GetDeploymentByUuidRequest
## Example Usage
```typescript
import { GetDeploymentByUuidRequest } from "coolify/models/operations";
let value: GetDeploymentByUuidRequest = {
uuid: "438575f2-159a-46f5-8bad-fecb521368cf",
};
```
## Fields
| Field | Type | Required | Description |
| ------------------ | ------------------ | ------------------ | ------------------ |
| `uuid` | *string* | :heavy_check_mark: | Deployment UUID |

View File

@@ -0,0 +1,17 @@
# GetDomainsByServerUuidRequest
## Example Usage
```typescript
import { GetDomainsByServerUuidRequest } from "coolify/models/operations";
let value: GetDomainsByServerUuidRequest = {
uuid: "bd3f2425-78de-4391-9755-7b1eb2f8f384",
};
```
## Fields
| Field | Type | Required | Description |
| ------------------ | ------------------ | ------------------ | ------------------ |
| `uuid` | *string* | :heavy_check_mark: | Server's UUID |

View File

@@ -0,0 +1,16 @@
# GetDomainsByServerUuidResponseBody
## Example Usage
```typescript
import { GetDomainsByServerUuidResponseBody } from "coolify/models/operations";
let value: GetDomainsByServerUuidResponseBody = {};
```
## Fields
| Field | Type | Required | Description |
| ------------------ | ------------------ | ------------------ | ------------------ |
| `ip` | *string* | :heavy_minus_sign: | N/A |
| `domains` | *string*[] | :heavy_minus_sign: | N/A |

View File

@@ -0,0 +1,19 @@
# GetEnvironmentByNameRequest
## Example Usage
```typescript
import { GetEnvironmentByNameRequest } from "coolify/models/operations";
let value: GetEnvironmentByNameRequest = {
uuid: "86547a48-120f-4029-b1eb-f848e84e5035",
environmentName: "<value>",
};
```
## Fields
| Field | Type | Required | Description |
| ------------------ | ------------------ | ------------------ | ------------------ |
| `uuid` | *string* | :heavy_check_mark: | Project UUID |
| `environmentName` | *string* | :heavy_check_mark: | Environment name |

View File

@@ -0,0 +1,17 @@
# GetMembersByTeamIdRequest
## Example Usage
```typescript
import { GetMembersByTeamIdRequest } from "coolify/models/operations";
let value: GetMembersByTeamIdRequest = {
id: 577590,
};
```
## Fields
| Field | Type | Required | Description |
| ------------------ | ------------------ | ------------------ | ------------------ |
| `id` | *number* | :heavy_check_mark: | Team ID |

View File

@@ -0,0 +1,17 @@
# GetPrivateKeyByUuidRequest
## Example Usage
```typescript
import { GetPrivateKeyByUuidRequest } from "coolify/models/operations";
let value: GetPrivateKeyByUuidRequest = {
uuid: "775eff6f-ca33-42e4-877c-d26dd1241619",
};
```
## Fields
| Field | Type | Required | Description |
| ------------------ | ------------------ | ------------------ | ------------------ |
| `uuid` | *string* | :heavy_check_mark: | Private Key UUID |

View File

@@ -0,0 +1,17 @@
# GetProjectByUuidRequest
## Example Usage
```typescript
import { GetProjectByUuidRequest } from "coolify/models/operations";
let value: GetProjectByUuidRequest = {
uuid: "19bdef66-2aad-4179-932d-0717f6d1466a",
};
```
## Fields
| Field | Type | Required | Description |
| ------------------ | ------------------ | ------------------ | ------------------ |
| `uuid` | *string* | :heavy_check_mark: | Project UUID |

View File

@@ -0,0 +1,17 @@
# GetResourcesByServerUuidRequest
## Example Usage
```typescript
import { GetResourcesByServerUuidRequest } from "coolify/models/operations";
let value: GetResourcesByServerUuidRequest = {
uuid: "5c5a87e8-db0c-43e0-9517-d425d231b64b",
};
```
## Fields
| Field | Type | Required | Description |
| ------------------ | ------------------ | ------------------ | ------------------ |
| `uuid` | *string* | :heavy_check_mark: | Server's UUID |

View File

@@ -0,0 +1,17 @@
# GetServerByUuidRequest
## Example Usage
```typescript
import { GetServerByUuidRequest } from "coolify/models/operations";
let value: GetServerByUuidRequest = {
uuid: "13e3dc29-1bac-47e0-a4b6-21d7eb658eb0",
};
```
## Fields
| Field | Type | Required | Description |
| ------------------ | ------------------ | ------------------ | ------------------ |
| `uuid` | *string* | :heavy_check_mark: | Server's UUID |

View File

@@ -0,0 +1,17 @@
# GetServiceByUuidRequest
## Example Usage
```typescript
import { GetServiceByUuidRequest } from "coolify/models/operations";
let value: GetServiceByUuidRequest = {
uuid: "4706739c-39af-4cd7-a2f2-71ffb5442825",
};
```
## Fields
| Field | Type | Required | Description |
| ------------------ | ------------------ | ------------------ | ------------------ |
| `uuid` | *string* | :heavy_check_mark: | Service UUID |

View File

@@ -0,0 +1,17 @@
# GetTeamByIdRequest
## Example Usage
```typescript
import { GetTeamByIdRequest } from "coolify/models/operations";
let value: GetTeamByIdRequest = {
id: 810302,
};
```
## Fields
| Field | Type | Required | Description |
| ------------------ | ------------------ | ------------------ | ------------------ |
| `id` | *number* | :heavy_check_mark: | Team ID |

View File

@@ -0,0 +1,17 @@
# ListEnvsByApplicationUuidRequest
## Example Usage
```typescript
import { ListEnvsByApplicationUuidRequest } from "coolify/models/operations";
let value: ListEnvsByApplicationUuidRequest = {
uuid: "7db4d6e9-ebb8-4fa6-b904-a49624999aa6",
};
```
## Fields
| Field | Type | Required | Description |
| ------------------------ | ------------------------ | ------------------------ | ------------------------ |
| `uuid` | *string* | :heavy_check_mark: | UUID of the application. |

View File

@@ -0,0 +1,17 @@
# ListEnvsByServiceUuidRequest
## Example Usage
```typescript
import { ListEnvsByServiceUuidRequest } from "coolify/models/operations";
let value: ListEnvsByServiceUuidRequest = {
uuid: "b14fa86c-2fd9-40be-b851-ce1c0f984e4d",
};
```
## Fields
| Field | Type | Required | Description |
| -------------------- | -------------------- | -------------------- | -------------------- |
| `uuid` | *string* | :heavy_check_mark: | UUID of the service. |

View File

@@ -0,0 +1,17 @@
# ProxyType
The proxy type.
## Example Usage
```typescript
import { ProxyType } from "coolify/models/operations";
let value: ProxyType = "traefik";
```
## Values
```typescript
"traefik" | "caddy" | "none"
```

View File

@@ -0,0 +1,17 @@
# Redirect
How to set redirect with Traefik / Caddy. www<->non-www.
## Example Usage
```typescript
import { Redirect } from "coolify/models/operations";
let value: Redirect = "non-www";
```
## Values
```typescript
"www" | "non-www" | "both"
```

View File

@@ -0,0 +1,21 @@
# ResponseBody
## Example Usage
```typescript
import { ResponseBody } from "coolify/models/operations";
let value: ResponseBody = {};
```
## Fields
| Field | Type | Required | Description |
| ------------------ | ------------------ | ------------------ | ------------------ |
| `id` | *number* | :heavy_minus_sign: | N/A |
| `uuid` | *string* | :heavy_minus_sign: | N/A |
| `name` | *string* | :heavy_minus_sign: | N/A |
| `type` | *string* | :heavy_minus_sign: | N/A |
| `createdAt` | *string* | :heavy_minus_sign: | N/A |
| `updatedAt` | *string* | :heavy_minus_sign: | N/A |
| `status` | *string* | :heavy_minus_sign: | N/A |

View File

@@ -0,0 +1,17 @@
# RestartApplicationByUuidRequest
## Example Usage
```typescript
import { RestartApplicationByUuidRequest } from "coolify/models/operations";
let value: RestartApplicationByUuidRequest = {
uuid: "6f2e87e7-b6eb-4b5c-aa32-cf79d7f9ded2",
};
```
## Fields
| Field | Type | Required | Description |
| ------------------------ | ------------------------ | ------------------------ | ------------------------ |
| `uuid` | *string* | :heavy_check_mark: | UUID of the application. |

View File

@@ -0,0 +1,21 @@
# RestartApplicationByUuidResponseBody
Restart application.
## Example Usage
```typescript
import { RestartApplicationByUuidResponseBody } from "coolify/models/operations";
let value: RestartApplicationByUuidResponseBody = {
message: "Restart request queued.",
deploymentUuid: "doogksw",
};
```
## Fields
| Field | Type | Required | Description | Example |
| ----------------------- | ----------------------- | ----------------------- | ----------------------- | ----------------------- |
| `message` | *string* | :heavy_minus_sign: | N/A | Restart request queued. |
| `deploymentUuid` | *string* | :heavy_minus_sign: | UUID of the deployment. | doogksw |

View File

@@ -0,0 +1,17 @@
# RestartDatabaseByUuidRequest
## Example Usage
```typescript
import { RestartDatabaseByUuidRequest } from "coolify/models/operations";
let value: RestartDatabaseByUuidRequest = {
uuid: "42e7e2a7-1b30-400e-9bea-84f576f25a19",
};
```
## Fields
| Field | Type | Required | Description |
| --------------------- | --------------------- | --------------------- | --------------------- |
| `uuid` | *string* | :heavy_check_mark: | UUID of the database. |

View File

@@ -0,0 +1,19 @@
# RestartDatabaseByUuidResponseBody
Restart database.
## Example Usage
```typescript
import { RestartDatabaseByUuidResponseBody } from "coolify/models/operations";
let value: RestartDatabaseByUuidResponseBody = {
message: "Database restaring request queued.",
};
```
## Fields
| Field | Type | Required | Description | Example |
| ---------------------------------- | ---------------------------------- | ---------------------------------- | ---------------------------------- | ---------------------------------- |
| `message` | *string* | :heavy_minus_sign: | N/A | Database restaring request queued. |

View File

@@ -0,0 +1,17 @@
# RestartServiceByUuidRequest
## Example Usage
```typescript
import { RestartServiceByUuidRequest } from "coolify/models/operations";
let value: RestartServiceByUuidRequest = {
uuid: "05ddf10e-48f6-4a6c-9834-48bfbc256a44",
};
```
## Fields
| Field | Type | Required | Description |
| -------------------- | -------------------- | -------------------- | -------------------- |
| `uuid` | *string* | :heavy_check_mark: | UUID of the service. |

View File

@@ -0,0 +1,19 @@
# RestartServiceByUuidResponseBody
Restart service.
## Example Usage
```typescript
import { RestartServiceByUuidResponseBody } from "coolify/models/operations";
let value: RestartServiceByUuidResponseBody = {
message: "Service restaring request queued.",
};
```
## Fields
| Field | Type | Required | Description | Example |
| --------------------------------- | --------------------------------- | --------------------------------- | --------------------------------- | --------------------------------- |
| `message` | *string* | :heavy_minus_sign: | N/A | Service restaring request queued. |

View File

@@ -0,0 +1,19 @@
# StartApplicationByUuidRequest
## Example Usage
```typescript
import { StartApplicationByUuidRequest } from "coolify/models/operations";
let value: StartApplicationByUuidRequest = {
uuid: "1dffec51-6320-4b0c-a211-a368db420447",
};
```
## Fields
| Field | Type | Required | Description |
| ------------------------------ | ------------------------------ | ------------------------------ | ------------------------------ |
| `uuid` | *string* | :heavy_check_mark: | UUID of the application. |
| `force` | *boolean* | :heavy_minus_sign: | Force rebuild. |
| `instantDeploy` | *boolean* | :heavy_minus_sign: | Instant deploy (skip queuing). |

View File

@@ -0,0 +1,21 @@
# StartApplicationByUuidResponseBody
Start application.
## Example Usage
```typescript
import { StartApplicationByUuidResponseBody } from "coolify/models/operations";
let value: StartApplicationByUuidResponseBody = {
message: "Deployment request queued.",
deploymentUuid: "doogksw",
};
```
## Fields
| Field | Type | Required | Description | Example |
| -------------------------- | -------------------------- | -------------------------- | -------------------------- | -------------------------- |
| `message` | *string* | :heavy_minus_sign: | Message. | Deployment request queued. |
| `deploymentUuid` | *string* | :heavy_minus_sign: | UUID of the deployment. | doogksw |

View File

@@ -0,0 +1,17 @@
# StartDatabaseByUuidRequest
## Example Usage
```typescript
import { StartDatabaseByUuidRequest } from "coolify/models/operations";
let value: StartDatabaseByUuidRequest = {
uuid: "a9b35ae8-40b0-458e-a160-594319baf0a9",
};
```
## Fields
| Field | Type | Required | Description |
| --------------------- | --------------------- | --------------------- | --------------------- |
| `uuid` | *string* | :heavy_check_mark: | UUID of the database. |

View File

@@ -0,0 +1,19 @@
# StartDatabaseByUuidResponseBody
Start database.
## Example Usage
```typescript
import { StartDatabaseByUuidResponseBody } from "coolify/models/operations";
let value: StartDatabaseByUuidResponseBody = {
message: "Database starting request queued.",
};
```
## Fields
| Field | Type | Required | Description | Example |
| --------------------------------- | --------------------------------- | --------------------------------- | --------------------------------- | --------------------------------- |
| `message` | *string* | :heavy_minus_sign: | N/A | Database starting request queued. |

View File

@@ -0,0 +1,17 @@
# StartServiceByUuidRequest
## Example Usage
```typescript
import { StartServiceByUuidRequest } from "coolify/models/operations";
let value: StartServiceByUuidRequest = {
uuid: "4c79ffd5-ea60-4c8c-9bc4-c87a014f2505",
};
```
## Fields
| Field | Type | Required | Description |
| -------------------- | -------------------- | -------------------- | -------------------- |
| `uuid` | *string* | :heavy_check_mark: | UUID of the service. |

View File

@@ -0,0 +1,19 @@
# StartServiceByUuidResponseBody
Start service.
## Example Usage
```typescript
import { StartServiceByUuidResponseBody } from "coolify/models/operations";
let value: StartServiceByUuidResponseBody = {
message: "Service starting request queued.",
};
```
## Fields
| Field | Type | Required | Description | Example |
| -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- |
| `message` | *string* | :heavy_minus_sign: | N/A | Service starting request queued. |

View File

@@ -0,0 +1,17 @@
# StaticImage
The static image.
## Example Usage
```typescript
import { StaticImage } from "coolify/models/operations";
let value: StaticImage = "nginx:alpine";
```
## Values
```typescript
"nginx:alpine"
```

View File

@@ -0,0 +1,17 @@
# StopApplicationByUuidRequest
## Example Usage
```typescript
import { StopApplicationByUuidRequest } from "coolify/models/operations";
let value: StopApplicationByUuidRequest = {
uuid: "b462c0bc-c459-4453-870c-1849fa0688a4",
};
```
## Fields
| Field | Type | Required | Description |
| ------------------------ | ------------------------ | ------------------------ | ------------------------ |
| `uuid` | *string* | :heavy_check_mark: | UUID of the application. |

View File

@@ -0,0 +1,19 @@
# StopApplicationByUuidResponseBody
Stop application.
## Example Usage
```typescript
import { StopApplicationByUuidResponseBody } from "coolify/models/operations";
let value: StopApplicationByUuidResponseBody = {
message: "Application stopping request queued.",
};
```
## Fields
| Field | Type | Required | Description | Example |
| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
| `message` | *string* | :heavy_minus_sign: | N/A | Application stopping request queued. |

View File

@@ -0,0 +1,17 @@
# StopDatabaseByUuidRequest
## Example Usage
```typescript
import { StopDatabaseByUuidRequest } from "coolify/models/operations";
let value: StopDatabaseByUuidRequest = {
uuid: "f0bd85c1-78b1-4369-be92-fd8e8edfe026",
};
```
## Fields
| Field | Type | Required | Description |
| --------------------- | --------------------- | --------------------- | --------------------- |
| `uuid` | *string* | :heavy_check_mark: | UUID of the database. |

View File

@@ -0,0 +1,19 @@
# StopDatabaseByUuidResponseBody
Stop database.
## Example Usage
```typescript
import { StopDatabaseByUuidResponseBody } from "coolify/models/operations";
let value: StopDatabaseByUuidResponseBody = {
message: "Database stopping request queued.",
};
```
## Fields
| Field | Type | Required | Description | Example |
| --------------------------------- | --------------------------------- | --------------------------------- | --------------------------------- | --------------------------------- |
| `message` | *string* | :heavy_minus_sign: | N/A | Database stopping request queued. |

View File

@@ -0,0 +1,17 @@
# StopServiceByUuidRequest
## Example Usage
```typescript
import { StopServiceByUuidRequest } from "coolify/models/operations";
let value: StopServiceByUuidRequest = {
uuid: "fd60da2f-1d46-4caf-891e-cb062dbefcf9",
};
```
## Fields
| Field | Type | Required | Description |
| -------------------- | -------------------- | -------------------- | -------------------- |
| `uuid` | *string* | :heavy_check_mark: | UUID of the service. |

View File

@@ -0,0 +1,19 @@
# StopServiceByUuidResponseBody
Stop service.
## Example Usage
```typescript
import { StopServiceByUuidResponseBody } from "coolify/models/operations";
let value: StopServiceByUuidResponseBody = {
message: "Service stopping request queued.",
};
```
## Fields
| Field | Type | Required | Description | Example |
| -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- |
| `message` | *string* | :heavy_minus_sign: | N/A | Service stopping request queued. |

Some files were not shown because too many files have changed in this diff Show More