Skip to main content
GET
/
api
/
admin
/
v1
/
deploymentTargets
/
{deploymentTargetId}
/
resourceConfigurations
Gets all non-archived Resource Configurations based on the provided filters
curl --request GET \
  --url https://api.example.com/api/admin/v1/deploymentTargets/{deploymentTargetId}/resourceConfigurations \
  --header 'X-Domino-Api-Key: <api-key>'
{
  "items": [
    {
      "configuration": {},
      "deploymentTargetId": "<string>",
      "id": "<string>",
      "lastModified": "2023-11-07T05:31:56Z",
      "name": "gpu_large",
      "description": "<string>"
    }
  ],
  "metadata": {
    "notices": [
      "<string>"
    ],
    "requestId": "<string>",
    "limit": 123,
    "offset": 123,
    "totalCount": 123
  }
}

Authorizations

X-Domino-Api-Key
string
header
required

Path Parameters

deploymentTargetId
string
required

ID of Deployment Target that Resource Configuration belongs to.

Query Parameters

name
string

Filter by Resource Configuration name

offset
integer
default:0

How many Resource Configurations from the start to skip. Defaults to 0.

limit
integer
default:10

Max number of Resource Configurations to fetch. Defaults to 10.

Response

Success

items
object[]
required
metadata
object
required