dedicated_inference_ca
Creates, updates, deletes, gets or lists a dedicated_inference_ca resource.
Overview
| Name | dedicated_inference_ca |
| Type | Resource |
| Id | digitalocean.inference.dedicated_inference_ca |
Fields
The following fields are returned by SELECT queries:
- dedicated_inferences_get_ca
CA certificate for the Dedicated Inference (base64-encoded). Required for private endpoint connectivity.
| Name | Datatype | Description |
|---|---|---|
cert | string | Base64-encoded CA certificate. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
dedicated_inferences_get_ca | select | dedicated_inference_id | Get the CA certificate for a Dedicated Inference instance (base64-encoded). Required for private endpoint connectivity. Send a GET request to /v2/dedicated-inferences/{dedicated_inference_id}/ca. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
dedicated_inference_id | string (uuid) | A unique identifier for a Dedicated Inference instance. (example: 6b5c619c-359c-44ca-87e2-47e98170c01d) |
SELECT examples
- dedicated_inferences_get_ca
Get the CA certificate for a Dedicated Inference instance (base64-encoded).
Required for private endpoint connectivity. Send a GET request to/v2/dedicated-inferences/{dedicated_inference_id}/ca.
SELECT
cert
FROM digitalocean.inference.dedicated_inference_ca
WHERE dedicated_inference_id = '{{ dedicated_inference_id }}' -- required
;