> ## Documentation Index
> Fetch the complete documentation index at: https://deepline.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Clickhouse Instance Private Create: Inputs, Cost & CLI

> Create a private endpoint. Clickhouse Clickhouse Instance Private Endpoint Create docs include request fields, response shape, pricing notes, and Deepline CLI

## Run in Enrichment Spreadsheet

<Info>
  Use this function as a column step in `deepline enrich`.
</Info>

```bash theme={null}
deepline enrich --input leads.csv --output leads.enriched.csv --with 'result=clickhouse_instance_private_endpoint_create:{"organizationId":"{{organizationId}}","serviceId":"{{serviceId}}"}' --json
```

<Tip>
  Map payload values to spreadsheet columns with `{{column_name}}` placeholders.
</Tip>

## Input Schema

| Name                     | Type     | Required | Default | Description                       |
| ------------------------ | -------- | -------- | ------- | --------------------------------- |
| `payload.organizationId` | `string` | Yes      |         | ID of the requested organization. |
| `payload.serviceId`      | `string` | Yes      |         | ID of the requested service.      |
| `payload.id`             | `string` | No       |         | Private endpoint identifier       |
| `payload.description`    | `string` | No       |         | Description of private endpoint   |

<details>
  <summary>Show raw input schema</summary>

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Create a new private endpoint. The private endpoint will be associated with this service and organization",
    "properties": {
      "organizationId": {
        "type": "string",
        "description": "ID of the requested organization.",
        "format": "uuid"
      },
      "serviceId": {
        "type": "string",
        "description": "ID of the requested service.",
        "format": "uuid"
      },
      "id": {
        "type": "string",
        "description": "Private endpoint identifier"
      },
      "description": {
        "type": "string",
        "description": "Description of private endpoint"
      }
    },
    "required": [
      "organizationId",
      "serviceId"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output Schema

| Name          | Type     | Required | Default | Description                                    |
| ------------- | -------- | -------- | ------- | ---------------------------------------------- |
| `result.data` | `object` | Yes      |         | Provider response payload.                     |
| `result.meta` | `object` | No       |         | Additional response metadata (status, paging). |

<details>
  <summary>Show raw output schema</summary>

  ### Output JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Standard tool result payload.",
    "properties": {
      "data": {
        "type": "object",
        "description": "Provider response payload.",
        "properties": {
          "status": {
            "type": "number",
            "description": "HTTP status code."
          },
          "requestId": {
            "type": "string",
            "description": "Unique id assigned to every request. UUIDv4",
            "format": "uuid"
          },
          "result": {
            "properties": {
              "id": {
                "type": "string",
                "description": "Private endpoint identifier"
              },
              "description": {
                "type": "string",
                "description": "Description of private endpoint"
              },
              "cloudProvider": {
                "type": "string",
                "description": "Cloud provider in which the private endpoint is lcoated",
                "enum": [
                  "gcp",
                  "aws",
                  "azure"
                ]
              },
              "region": {
                "type": "string",
                "description": "Region in which the private endpoint is located",
                "enum": [
                  "ap-northeast-1",
                  "ap-northeast-2",
                  "ap-south-1",
                  "ap-southeast-1",
                  "ap-southeast-2",
                  "ca-central-1",
                  "eu-central-1",
                  "eu-west-1",
                  "eu-west-2",
                  "il-central-1",
                  "us-east-1",
                  "us-east-2",
                  "us-west-2",
                  "us-east1",
                  "us-central1",
                  "europe-west2",
                  "europe-west4",
                  "asia-southeast1",
                  "asia-northeast1",
                  "eastus",
                  "eastus2",
                  "westus3",
                  "germanywestcentral",
                  "centralus"
                ]
              }
            },
            "additionalProperties": false
          }
        },
        "additionalProperties": false
      },
      "meta": {
        "type": "object",
        "description": "Additional response metadata (status, paging).",
        "additionalProperties": true
      }
    },
    "required": [
      "data"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Advanced: Direct CLI

<Info>
  Use direct execution for single payload debugging.
</Info>

```bash theme={null}
deepline tools execute clickhouse_instance_private_endpoint_create --payload '{
  "organizationId": "string",
  "serviceId": "string"
}' --json
```

### CLI flags

| Flag                        | Description                                         |
| --------------------------- | --------------------------------------------------- |
| `--json`                    | Print machine-readable output.                      |
| `--wait`                    | Wait for terminal provider status when supported.   |
| `--debug`                   | Enable wait mode with additional status/log output. |
| `--wait-timeout SECONDS`    | Max seconds to wait in wait mode.                   |
| `--poll-interval SECONDS`   | Polling interval in seconds during wait mode.       |
| `--timeout SECONDS`         | Request timeout in seconds.                         |
| `--connect-timeout SECONDS` | Connection timeout in seconds.                      |

## Cost

* Pricing model: `fixed` (per call).
* Estimated Deepline credits: `0` per pricing unit.
* Provider-native pricing may still exist outside Deepline credit billing.
* Billing mode: `no_bill`.
