> For the complete documentation index, see [llms.txt](https://docs.roboflow.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.roboflow.com/roboflow/roboflow-jp/deploy/dedicated-deployments/create-a-dedicated-deployment.md).

# Dedicated Deployment を作成

{% hint style="warning" %}
Dedicated Deployments は Public（無料）ティアでは利用できません。
{% endhint %}

### Web Interface で Deployment を作成する

workspace のダッシュボードページを開き、 **Deployments** を左パネルでクリックします:

<figure><img src="/files/4fbd9d59fc2ea7a4f416f5d22660b8613bbdc13e" alt=""><figcaption></figcaption></figure>

次の **New Deployment** ボタンをクリックすると、 **Create a Dedicated Deployment** ダイアログが次のように表示されます:

<figure><img src="/files/a3f812a82b8b5c428aa6cff18cd86b0ca579a375" alt=""><figcaption><p>Dedicated Deployment のプロパティを設定します。</p></figcaption></figure>

ダイアログ内の各プロパティについては、下の表で説明します。ダイアログに入力し、 **Create Dedicated Deployment** ボタンをクリックしてください。Deployment のプロビジョニングには、数秒から数分かかる場合があります。

<table><thead><tr><th width="165">プロパティ</th><th>説明</th></tr></thead><tbody><tr><td>名前</td><td><p>Dedicated Deployment を識別するための一意の名前（5〜15文字）を選択してください。この名前は、Deployment エンドポイントのサブドメインにもなります（例: <em><strong>dev-testing</strong>.roboflow.cloud</em>).</p><ul><li><strong>覚えやすさ:</strong> Deployment の目的がはっきり分かる名前を選んでください（例: "prod-inference"、"dev-testing"）。</li><li><strong>workspace 内で一意:</strong> 選んだ名前がすでに使用されている場合は、一意のサブドメインを作成するために短いランダムコードが追加されます。</li></ul><p><strong>ヒント:</strong></p><ul><li>名前には小文字、数字、ハイフン（-）を使用してください。</li><li>特殊文字やスペースは避けてください。</li></ul></td></tr><tr><td>マシンタイプ</td><td>CPU のみの Dedicated Deployment が必要か、GPU の Dedicated Deployment が必要かを示します。</td></tr><tr><td>Deployment タイプ</td><td><p><strong>Development</strong>: 開発や実験用途に最適で、3時間後に自動的に期限切れになります。</p><p><strong>Production</strong>: 本番リクエストの提供に最適で、手動で削除するまで永続的に有効です。</p></td></tr><tr><td>Autoscaling</td><td>この機能は <strong>prod-cpu</strong> と <strong>prod-gpu</strong>.</td></tr></tbody></table>

### CLI で Dedicated Deployment を作成する

この `roboflow deployment` コマンドは、Roboflow の Dedicated Deployments を管理するためのサブコマンド群を提供します。続行する前に、以下のように `roboflow` CLI がインストールされ、API キーで設定されていることを確認してください。 [こちら。](https://docs.roboflow.com/roboflow-cli/roboflow-cli-documentation)

#### **サブコマンド**

* **`machine_type`**: Dedicated Deployments で利用可能なマシンタイプを一覧表示します。現在サポートしているのは `dev-cpu, dev-gpu, prod-cpu, prod-gpu`.
* **`add`**: 新しい Dedicated Deployment を作成します。
* **`get`**: 特定の Dedicated Deployment の詳細情報を取得します。
* **`list`**: workspace 内のすべての Dedicated Deployments を一覧表示します。
* **`usage_workspace`**: workspace 内のすべての Dedicated Deployments の使用状況統計を取得します。
* **`usage_deployment`**: 特定の Dedicated Deployment の使用状況統計を取得します。
* **`delete`**: Dedicated Deployment を削除します。
* **`log`**: 特定の Dedicated Deployment のログを表示します。

#### **サブコマンドの例**

* **新しい Deployment を作成する**

  ```
  roboflow deployment add my-deployment -m prod-gpu -e YOUR_EMAIL@aaa.com
  ```
* **Deployment 情報を取得する**

  ```
  roboflow deployment get my-deployment
  ```
* **すべての Deployments を一覧表示する**

  ```
  roboflow deployment list
  ```

  コードの使用は慎重に行ってください。
* **workspace の使用状況を取得する**

  ```
  roboflow deployment usage_workspace
  ```
* **Deployment の使用状況を取得する**

  ```
  roboflow deployment usage_deployment my-deployment
  ```
* **Deployment を削除する**

  ```
  roboflow deployment delete my-deployment
  ```
* **Deployment ログを表示する**

  ```
  roboflow deployment log my-deployment -t 60 -n 20
  ```

#### **追加 नोट**

* 各サブコマンドのより詳細な情報やオプションについては、 `--help` フラグを使用してください。


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.roboflow.com/roboflow/roboflow-jp/deploy/dedicated-deployments/create-a-dedicated-deployment.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
