Files
Dokploy-ts-sdk/docs/models/operations/sshkeycreaterequest.md
2025-09-26 02:33:10 +00:00

23 lines
844 B
Markdown

# SshKeyCreateRequest
## Example Usage
```typescript
import { SshKeyCreateRequest } from "dokploy/models/operations";
let value: SshKeyCreateRequest = {
name: "<value>",
privateKey: "<value>",
publicKey: "<value>",
};
```
## Fields
| Field | Type | Required | Description |
| ------------------ | ------------------ | ------------------ | ------------------ |
| `name` | *string* | :heavy_check_mark: | N/A |
| `description` | *string* | :heavy_minus_sign: | N/A |
| `privateKey` | *string* | :heavy_check_mark: | N/A |
| `publicKey` | *string* | :heavy_check_mark: | N/A |
| `adminId` | *string* | :heavy_minus_sign: | N/A |