Skip to content
qibdo qibdo
v1
API version
  • v1
Theme
Book a demo

List Deployment Targets

GET
/topology/v1/targets
curl --request GET \
--url https://example.com/topology/v1/targets

Returns a paginated list of deployment targets filtered by optional parameters

page_size
integer format: int32

The maximum number of deployment targets to return. The service may return fewer than this value. If unspecified, at most 20 deployment targets will be returned. The maximum value is 100; values above 100 will be coerced to 100.

page_token
string

A page token, received from a previous ListDeploymentTargets call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to ListDeploymentTargets must match the call that provided the page token.

filter
string

A filter expression allows you to filter the deployment targets listed in the response. At qibdo, we use the AIP-160 proposal, that means that your expression should include: field name, an operator, and the value you wish to filter by. The value can be a string, number, or boolean, and the operator must be one of the following: =, !=, >, <, <=, >=, or : You can group multiple expressions using parentheses and the logical operators AND and OR. Examples: name = "host-01" -> Filter by deployment target name hostname = "node1.qibdo.local" -> Filter by hostname cpu_topology.architecture = "CPU_ARCHITECTURE_X86_64" -> Filter by CPU architecture

order_by
string

The order in which to sort the results. If not specified, the results will be sorted by name in ascending order. At qibdo, we use the AIP-132 proposal, that means: Values should be a comma separated list of fields. For example: "foo,bar". The default sort order is ascending. To specify descending order, a suffix " desc" should be added. For example: "foo desc,bar". Redundant space characters in the syntax are insignificant.

OK

Media type application/json

ListDeploymentTargetsResponse

Response message for ListDeploymentTargets. Note: This API intentionally omits total_size from list responses. Keyset pagination does not support efficient total count computation (COUNT(*) requires a full table scan). Per AIP-158, total_size is optional.

object
deployment_targets

The list of deployment targets

Array<object>

Deployment Target

Represents a physical host (deployment target) within a resource pool in the Qibdo Cloud topology. A deployment target contains full hardware specifications including CPU topology, GPU topology, memory topology, disk nodes, and network information.

object
id

The unique identifier of the deployment target

stringOutput only
resource_pool_id

The unique identifier of the parent resource pool (optional — a deployment target can exist without belonging to a resource pool)

string
name
required

The display name of the deployment target (RFC 1035 DNS label)

string
hostname
required

The hostname of the physical host (RFC 1123 FQDN, max 253)

string
os
required

The operating system running on the host

object
family
required

The OS family (e.g., “Linux”, “Windows”)

string
manufacturer

The OS manufacturer (e.g., “Canonical”, “Microsoft”)

string
version

The OS version (e.g., “22.04”, “11”)

string
bitness

The bitness of the operating system

string format: enum
Allowed values: OS_BITNESS_UNSPECIFIED OS_BITNESS_8 OS_BITNESS_16 OS_BITNESS_32 OS_BITNESS_64 OS_BITNESS_128 OS_BITNESS_256
cpu_topology
required

The CPU topology of the host

object
byte_order

The byte order of the CPU

string format: enum
Allowed values: BYTE_ORDER_UNSPECIFIED BYTE_ORDER_LITTLE_ENDIAN BYTE_ORDER_BIG_ENDIAN
vendor_id

The CPU vendor identifier (e.g., “GenuineIntel”, “AuthenticAMD”)

string
model_name

The CPU model name (e.g., “Intel(R) Xeon(R) Gold 6248R”)

string
model

The CPU model number

integer format: uint32
cpu_family_id

The CPU family identifier

integer format: uint32
stepping

The CPU stepping (revision within a model)

integer format: uint32
min_frequency

The minimum clock frequency of the CPU

object
value
required

The numerical value of the clock speed

number format: double
unit
required

The unit of the clock speed value

string format: enum
Allowed values: TOPOLOGY_CLOCK_SPEED_UNIT_UNSPECIFIED TOPOLOGY_CLOCK_SPEED_UNIT_HZ TOPOLOGY_CLOCK_SPEED_UNIT_KHZ TOPOLOGY_CLOCK_SPEED_UNIT_MHZ TOPOLOGY_CLOCK_SPEED_UNIT_GHZ TOPOLOGY_CLOCK_SPEED_UNIT_THZ
max_frequency

The maximum clock frequency of the CPU

object
value
required

The numerical value of the clock speed

number format: double
unit
required

The unit of the clock speed value

string format: enum
Allowed values: TOPOLOGY_CLOCK_SPEED_UNIT_UNSPECIFIED TOPOLOGY_CLOCK_SPEED_UNIT_HZ TOPOLOGY_CLOCK_SPEED_UNIT_KHZ TOPOLOGY_CLOCK_SPEED_UNIT_MHZ TOPOLOGY_CLOCK_SPEED_UNIT_GHZ TOPOLOGY_CLOCK_SPEED_UNIT_THZ
online_cpus
required

The number of online (available) CPUs. In hybrid architectures this number won’t necessarily match the formula: threads_per_core x cores_per_socket x sockets

integer format: uint32
threads_per_core

The number of threads per physical core

integer format: uint32
cores_per_socket

The number of physical cores per socket

integer format: uint32
sockets

The number of CPU sockets

integer format: uint32
architecture
required

The CPU architecture

string format: enum
Allowed values: CPU_ARCHITECTURE_UNSPECIFIED CPU_ARCHITECTURE_X86_64 CPU_ARCHITECTURE_X86 CPU_ARCHITECTURE_PPC64 CPU_ARCHITECTURE_ARM64
caches

The CPU caches (L1, L2, L3, etc.)

Array<object>

CPU Cache

Represents a single level of CPU cache (L1, L2, L3, etc.).

object
level
required

The cache level (1, 2, 3, etc.)

integer format: uint32
bytes
required

The cache size in bytes

string
numa

The NUMA topology of the CPU

object
nodes
required

The list of NUMA nodes

Array<object>

NUMA Node

Represents a single NUMA node with its associated CPUs.

object
id
required

The NUMA node identifier

integer format: uint32
cpus

The list of CPU identifiers belonging to this NUMA node

Array<integer>
gpu_topology

The GPU topology of the host (may have zero or more GPUs)

Array<object>

GPU Topology

Describes a GPU installed on the physical host, including clock speeds, VRAM, core count, and AI-specific features.

object
name
required

The GPU name (e.g., “NVIDIA A100”, “AMD Instinct MI300X”)

string
device_id
required

The GPU device identifier

string
vendor

The GPU vendor (e.g., “NVIDIA”, “AMD”, “Intel”)

string
base_clock

The base clock speed of the GPU

object
value
required

The numerical value of the clock speed

number format: double
unit
required

The unit of the clock speed value

string format: enum
Allowed values: TOPOLOGY_CLOCK_SPEED_UNIT_UNSPECIFIED TOPOLOGY_CLOCK_SPEED_UNIT_HZ TOPOLOGY_CLOCK_SPEED_UNIT_KHZ TOPOLOGY_CLOCK_SPEED_UNIT_MHZ TOPOLOGY_CLOCK_SPEED_UNIT_GHZ TOPOLOGY_CLOCK_SPEED_UNIT_THZ
boost_clock

The boost clock speed of the GPU

object
value
required

The numerical value of the clock speed

number format: double
unit
required

The unit of the clock speed value

string format: enum
Allowed values: TOPOLOGY_CLOCK_SPEED_UNIT_UNSPECIFIED TOPOLOGY_CLOCK_SPEED_UNIT_HZ TOPOLOGY_CLOCK_SPEED_UNIT_KHZ TOPOLOGY_CLOCK_SPEED_UNIT_MHZ TOPOLOGY_CLOCK_SPEED_UNIT_GHZ TOPOLOGY_CLOCK_SPEED_UNIT_THZ
tflops

The theoretical peak performance in TFLOPS

string
vram

The GPU video RAM

object
size
required

The total VRAM size

object
value
required

The numerical value of the size

number format: double
unit
required

The unit of the size value

string format: enum
Allowed values: TOPOLOGY_DATA_UNIT_UNSPECIFIED TOPOLOGY_DATA_UNIT_BYTES TOPOLOGY_DATA_UNIT_KIB TOPOLOGY_DATA_UNIT_MIB TOPOLOGY_DATA_UNIT_GIB TOPOLOGY_DATA_UNIT_TIB TOPOLOGY_DATA_UNIT_PIB TOPOLOGY_DATA_UNIT_EIB TOPOLOGY_DATA_UNIT_KB TOPOLOGY_DATA_UNIT_MB TOPOLOGY_DATA_UNIT_GB TOPOLOGY_DATA_UNIT_TB TOPOLOGY_DATA_UNIT_PB TOPOLOGY_DATA_UNIT_EB
type
required

The type of VRAM

string format: enum
Allowed values: VRAM_TYPE_UNSPECIFIED VRAM_TYPE_GDDR VRAM_TYPE_HBM VRAM_TYPE_SGRAM VRAM_TYPE_UNKNOWN
memory_bus

The memory bus width

object
value
required

The numerical value of the size

number format: double
unit
required

The unit of the size value

string format: enum
Allowed values: TOPOLOGY_DATA_UNIT_UNSPECIFIED TOPOLOGY_DATA_UNIT_BYTES TOPOLOGY_DATA_UNIT_KIB TOPOLOGY_DATA_UNIT_MIB TOPOLOGY_DATA_UNIT_GIB TOPOLOGY_DATA_UNIT_TIB TOPOLOGY_DATA_UNIT_PIB TOPOLOGY_DATA_UNIT_EIB TOPOLOGY_DATA_UNIT_KB TOPOLOGY_DATA_UNIT_MB TOPOLOGY_DATA_UNIT_GB TOPOLOGY_DATA_UNIT_TB TOPOLOGY_DATA_UNIT_PB TOPOLOGY_DATA_UNIT_EB
cores

The number of GPU cores (CUDA cores, stream processors, etc.)

integer format: uint32
ai_features

AI-specific features of the GPU

object
tensor_cores

The number of tensor cores (NVIDIA) or equivalent

integer format: uint32
rt_cores

The number of ray tracing cores

integer format: uint32
has_dlss_support

Whether DLSS (Deep Learning Super Sampling) is supported

boolean
has_fp16_support

Whether FP16 (half-precision) is supported

boolean
has_fp64_support

Whether FP64 (double-precision) is supported

boolean
memory_bandwidth

The memory bandwidth of the GPU

object
value
required

The numerical value of the transfer rate

number format: double
unit
required

The unit of the transfer rate value

string format: enum
Allowed values: TOPOLOGY_DATA_TRANSFER_RATE_UNIT_UNSPECIFIED TOPOLOGY_DATA_TRANSFER_RATE_UNIT_BPS TOPOLOGY_DATA_TRANSFER_RATE_UNIT_KBPS TOPOLOGY_DATA_TRANSFER_RATE_UNIT_MBPS TOPOLOGY_DATA_TRANSFER_RATE_UNIT_GBPS TOPOLOGY_DATA_TRANSFER_RATE_UNIT_BYTES_PER_SEC TOPOLOGY_DATA_TRANSFER_RATE_UNIT_KBYTES_PER_SEC TOPOLOGY_DATA_TRANSFER_RATE_UNIT_MBYTES_PER_SEC TOPOLOGY_DATA_TRANSFER_RATE_UNIT_GBYTES_PER_SEC
memory_topology
required

The memory topology of the host

object
available_memory
required

The available memory (usable without swapping)

object
value
required

The numerical value of the size

number format: double
unit
required

The unit of the size value

string format: enum
Allowed values: TOPOLOGY_DATA_UNIT_UNSPECIFIED TOPOLOGY_DATA_UNIT_BYTES TOPOLOGY_DATA_UNIT_KIB TOPOLOGY_DATA_UNIT_MIB TOPOLOGY_DATA_UNIT_GIB TOPOLOGY_DATA_UNIT_TIB TOPOLOGY_DATA_UNIT_PIB TOPOLOGY_DATA_UNIT_EIB TOPOLOGY_DATA_UNIT_KB TOPOLOGY_DATA_UNIT_MB TOPOLOGY_DATA_UNIT_GB TOPOLOGY_DATA_UNIT_TB TOPOLOGY_DATA_UNIT_PB TOPOLOGY_DATA_UNIT_EB
free_memory
required

The free memory (unused by the OS)

object
value
required

The numerical value of the size

number format: double
unit
required

The unit of the size value

string format: enum
Allowed values: TOPOLOGY_DATA_UNIT_UNSPECIFIED TOPOLOGY_DATA_UNIT_BYTES TOPOLOGY_DATA_UNIT_KIB TOPOLOGY_DATA_UNIT_MIB TOPOLOGY_DATA_UNIT_GIB TOPOLOGY_DATA_UNIT_TIB TOPOLOGY_DATA_UNIT_PIB TOPOLOGY_DATA_UNIT_EIB TOPOLOGY_DATA_UNIT_KB TOPOLOGY_DATA_UNIT_MB TOPOLOGY_DATA_UNIT_GB TOPOLOGY_DATA_UNIT_TB TOPOLOGY_DATA_UNIT_PB TOPOLOGY_DATA_UNIT_EB
total_memory
required

The total physical memory installed

object
value
required

The numerical value of the size

number format: double
unit
required

The unit of the size value

string format: enum
Allowed values: TOPOLOGY_DATA_UNIT_UNSPECIFIED TOPOLOGY_DATA_UNIT_BYTES TOPOLOGY_DATA_UNIT_KIB TOPOLOGY_DATA_UNIT_MIB TOPOLOGY_DATA_UNIT_GIB TOPOLOGY_DATA_UNIT_TIB TOPOLOGY_DATA_UNIT_PIB TOPOLOGY_DATA_UNIT_EIB TOPOLOGY_DATA_UNIT_KB TOPOLOGY_DATA_UNIT_MB TOPOLOGY_DATA_UNIT_GB TOPOLOGY_DATA_UNIT_TB TOPOLOGY_DATA_UNIT_PB TOPOLOGY_DATA_UNIT_EB
type

The type of physical memory

string format: enum
Allowed values: MEMORY_TYPE_UNSPECIFIED MEMORY_TYPE_DDR MEMORY_TYPE_DRAM MEMORY_TYPE_SRAM MEMORY_TYPE_SDRAM
ddr_generation

The DDR generation (e.g., 4 for DDR4, 5 for DDR5). Only applicable when type is DDR.

integer format: uint32
disks
required

The disk nodes attached to the deployment target

Array<object>

Disk Node

Describes a physical disk attached to the deployment target.

object
name
required

The disk device name (e.g., “/dev/sda”, “/dev/nvme0n1”)

string
serial

The disk serial number

string
size
required

The total disk size

object
value
required

The numerical value of the size

number format: double
unit
required

The unit of the size value

string format: enum
Allowed values: TOPOLOGY_DATA_UNIT_UNSPECIFIED TOPOLOGY_DATA_UNIT_BYTES TOPOLOGY_DATA_UNIT_KIB TOPOLOGY_DATA_UNIT_MIB TOPOLOGY_DATA_UNIT_GIB TOPOLOGY_DATA_UNIT_TIB TOPOLOGY_DATA_UNIT_PIB TOPOLOGY_DATA_UNIT_EIB TOPOLOGY_DATA_UNIT_KB TOPOLOGY_DATA_UNIT_MB TOPOLOGY_DATA_UNIT_GB TOPOLOGY_DATA_UNIT_TB TOPOLOGY_DATA_UNIT_PB TOPOLOGY_DATA_UNIT_EB
free_space
required

The free space available on the disk

object
value
required

The numerical value of the size

number format: double
unit
required

The unit of the size value

string format: enum
Allowed values: TOPOLOGY_DATA_UNIT_UNSPECIFIED TOPOLOGY_DATA_UNIT_BYTES TOPOLOGY_DATA_UNIT_KIB TOPOLOGY_DATA_UNIT_MIB TOPOLOGY_DATA_UNIT_GIB TOPOLOGY_DATA_UNIT_TIB TOPOLOGY_DATA_UNIT_PIB TOPOLOGY_DATA_UNIT_EIB TOPOLOGY_DATA_UNIT_KB TOPOLOGY_DATA_UNIT_MB TOPOLOGY_DATA_UNIT_GB TOPOLOGY_DATA_UNIT_TB TOPOLOGY_DATA_UNIT_PB TOPOLOGY_DATA_UNIT_EB
model

The disk model name

string
type
required

The type of physical disk

string format: enum
Allowed values: DISK_TYPE_UNSPECIFIED DISK_TYPE_HDD DISK_TYPE_SSD DISK_TYPE_SSHD DISK_TYPE_NVME DISK_TYPE_UNKNOWN
throughput

The disk throughput (read/write speeds)

object
read_speed

The sequential read speed

object
value
required

The numerical value of the transfer rate

number format: double
unit
required

The unit of the transfer rate value

string format: enum
Allowed values: TOPOLOGY_DATA_TRANSFER_RATE_UNIT_UNSPECIFIED TOPOLOGY_DATA_TRANSFER_RATE_UNIT_BPS TOPOLOGY_DATA_TRANSFER_RATE_UNIT_KBPS TOPOLOGY_DATA_TRANSFER_RATE_UNIT_MBPS TOPOLOGY_DATA_TRANSFER_RATE_UNIT_GBPS TOPOLOGY_DATA_TRANSFER_RATE_UNIT_BYTES_PER_SEC TOPOLOGY_DATA_TRANSFER_RATE_UNIT_KBYTES_PER_SEC TOPOLOGY_DATA_TRANSFER_RATE_UNIT_MBYTES_PER_SEC TOPOLOGY_DATA_TRANSFER_RATE_UNIT_GBYTES_PER_SEC
write_speed

The sequential write speed

object
value
required

The numerical value of the transfer rate

number format: double
unit
required

The unit of the transfer rate value

string format: enum
Allowed values: TOPOLOGY_DATA_TRANSFER_RATE_UNIT_UNSPECIFIED TOPOLOGY_DATA_TRANSFER_RATE_UNIT_BPS TOPOLOGY_DATA_TRANSFER_RATE_UNIT_KBPS TOPOLOGY_DATA_TRANSFER_RATE_UNIT_MBPS TOPOLOGY_DATA_TRANSFER_RATE_UNIT_GBPS TOPOLOGY_DATA_TRANSFER_RATE_UNIT_BYTES_PER_SEC TOPOLOGY_DATA_TRANSFER_RATE_UNIT_KBYTES_PER_SEC TOPOLOGY_DATA_TRANSFER_RATE_UNIT_MBYTES_PER_SEC TOPOLOGY_DATA_TRANSFER_RATE_UNIT_GBYTES_PER_SEC
iops

The disk IOPS (input/output operations per second)

object
ips

Input operations per time unit (read IOPS)

object
value
required

The numerical value of operations

number format: double
unit
required

The time unit denominator

string format: enum
Allowed values: TOPOLOGY_DURATION_UNIT_UNSPECIFIED TOPOLOGY_DURATION_UNIT_NANOSECONDS TOPOLOGY_DURATION_UNIT_MICROSECONDS TOPOLOGY_DURATION_UNIT_MILLISECONDS TOPOLOGY_DURATION_UNIT_SECONDS TOPOLOGY_DURATION_UNIT_MINUTES TOPOLOGY_DURATION_UNIT_HOURS TOPOLOGY_DURATION_UNIT_DAYS
ops

Output operations per time unit (write IOPS)

object
value
required

The numerical value of operations

number format: double
unit
required

The time unit denominator

string format: enum
Allowed values: TOPOLOGY_DURATION_UNIT_UNSPECIFIED TOPOLOGY_DURATION_UNIT_NANOSECONDS TOPOLOGY_DURATION_UNIT_MICROSECONDS TOPOLOGY_DURATION_UNIT_MILLISECONDS TOPOLOGY_DURATION_UNIT_SECONDS TOPOLOGY_DURATION_UNIT_MINUTES TOPOLOGY_DURATION_UNIT_HOURS TOPOLOGY_DURATION_UNIT_DAYS
network_info
required

The network information of the host

object
host_name
required

The hostname of the host

string
domain_name

The domain name of the host

string
dns_servers

The DNS servers configured on the host

Array<string>
mac_address

The primary MAC address of the host

string
interfaces

The network interfaces available on the host

Array<object>

Network Interface

Describes a network interface on the physical host.

object
ip_addresses

The IP addresses assigned to this interface

Array<string>
type

The interface type identifier

integer format: uint32
status
required

The operational status of the interface

string format: enum
Allowed values: NETWORK_STATUS_UNSPECIFIED NETWORK_STATUS_UP NETWORK_STATUS_DOWN NETWORK_STATUS_TESTING NETWORK_STATUS_DORMANT NETWORK_STATUS_NOT_PRESENT NETWORK_STATUS_LOWER_LAYER_DOWN NETWORK_STATUS_UNKNOWN
mtu

The Maximum Transmission Unit (MTU) in bytes

string
name

The interface name (e.g., “eth0”, “ens3”)

string
display_name

The display name of the interface

string
bandwidth

The bandwidth of the interface

object
download_speed

The current download speed

object
value
required

The numerical value of the transfer rate

number format: double
unit
required

The unit of the transfer rate value

string format: enum
Allowed values: TOPOLOGY_DATA_TRANSFER_RATE_UNIT_UNSPECIFIED TOPOLOGY_DATA_TRANSFER_RATE_UNIT_BPS TOPOLOGY_DATA_TRANSFER_RATE_UNIT_KBPS TOPOLOGY_DATA_TRANSFER_RATE_UNIT_MBPS TOPOLOGY_DATA_TRANSFER_RATE_UNIT_GBPS TOPOLOGY_DATA_TRANSFER_RATE_UNIT_BYTES_PER_SEC TOPOLOGY_DATA_TRANSFER_RATE_UNIT_KBYTES_PER_SEC TOPOLOGY_DATA_TRANSFER_RATE_UNIT_MBYTES_PER_SEC TOPOLOGY_DATA_TRANSFER_RATE_UNIT_GBYTES_PER_SEC
upload_speed

The current upload speed

object
value
required

The numerical value of the transfer rate

number format: double
unit
required

The unit of the transfer rate value

string format: enum
Allowed values: TOPOLOGY_DATA_TRANSFER_RATE_UNIT_UNSPECIFIED TOPOLOGY_DATA_TRANSFER_RATE_UNIT_BPS TOPOLOGY_DATA_TRANSFER_RATE_UNIT_KBPS TOPOLOGY_DATA_TRANSFER_RATE_UNIT_MBPS TOPOLOGY_DATA_TRANSFER_RATE_UNIT_GBPS TOPOLOGY_DATA_TRANSFER_RATE_UNIT_BYTES_PER_SEC TOPOLOGY_DATA_TRANSFER_RATE_UNIT_KBYTES_PER_SEC TOPOLOGY_DATA_TRANSFER_RATE_UNIT_MBYTES_PER_SEC TOPOLOGY_DATA_TRANSFER_RATE_UNIT_GBYTES_PER_SEC
peak_download_speed

The peak download speed observed

object
value
required

The numerical value of the transfer rate

number format: double
unit
required

The unit of the transfer rate value

string format: enum
Allowed values: TOPOLOGY_DATA_TRANSFER_RATE_UNIT_UNSPECIFIED TOPOLOGY_DATA_TRANSFER_RATE_UNIT_BPS TOPOLOGY_DATA_TRANSFER_RATE_UNIT_KBPS TOPOLOGY_DATA_TRANSFER_RATE_UNIT_MBPS TOPOLOGY_DATA_TRANSFER_RATE_UNIT_GBPS TOPOLOGY_DATA_TRANSFER_RATE_UNIT_BYTES_PER_SEC TOPOLOGY_DATA_TRANSFER_RATE_UNIT_KBYTES_PER_SEC TOPOLOGY_DATA_TRANSFER_RATE_UNIT_MBYTES_PER_SEC TOPOLOGY_DATA_TRANSFER_RATE_UNIT_GBYTES_PER_SEC
peak_upload_speed

The peak upload speed observed

object
value
required

The numerical value of the transfer rate

number format: double
unit
required

The unit of the transfer rate value

string format: enum
Allowed values: TOPOLOGY_DATA_TRANSFER_RATE_UNIT_UNSPECIFIED TOPOLOGY_DATA_TRANSFER_RATE_UNIT_BPS TOPOLOGY_DATA_TRANSFER_RATE_UNIT_KBPS TOPOLOGY_DATA_TRANSFER_RATE_UNIT_MBPS TOPOLOGY_DATA_TRANSFER_RATE_UNIT_GBPS TOPOLOGY_DATA_TRANSFER_RATE_UNIT_BYTES_PER_SEC TOPOLOGY_DATA_TRANSFER_RATE_UNIT_KBYTES_PER_SEC TOPOLOGY_DATA_TRANSFER_RATE_UNIT_MBYTES_PER_SEC TOPOLOGY_DATA_TRANSFER_RATE_UNIT_GBYTES_PER_SEC
ip_gateways

The IP gateways configured on the host

Array<string>
tags

Tags associated with this deployment target for labeling and categorization

Array<object>

Topology Tag

A key-value pair used to label and categorize topology resources such as regions, zones, resource pools, and deployment targets.

object
id

The unique identifier of the tag

string
key
required

The key of the tag

string
value
required

The value of the tag

string
type

The type of the tag (system or user-defined)

string format: enum
Allowed values: TOPOLOGY_TAG_TYPE_UNSPECIFIED TOPOLOGY_TAG_TYPE_SYSTEM TOPOLOGY_TAG_TYPE_USER
description

An optional description for the tag

string
created

The timestamp when the deployment target was registered

string format: date-time Output only
updated

The timestamp when the deployment target was last updated

string format: date-time Output only
node_name

Node Name

The Kubernetes Node name this deployment target projects (node.metadata.name). Mutable on K8s rename. Used for human-friendly identification and filtering, NOT for correlation — use node_uid for that.

stringOutput only
node_uid

Node Uid

The Kubernetes Node uid (node.metadata.uid) — durable correlation key (AD-003 §Correlation). Immutable; a deleted-and-recreated Node yields a new uid, which produces a new DeploymentTarget row rather than resurrecting the old one.

stringOutput only
status

Status

Domain status of the deployment target: one of ready, not_ready, maintenance, deleted. deleted is the terminal soft-delete state; findAll listings exclude it by default. maintenance is preferred over the K8s-specific “cordoned” — see AD-003 §Vocabulary.

stringOutput only
labels

Labels

The full Kubernetes Node label map. Powers ResourcePool selector matching.

object
key
additional properties
string
last_observed_at

Last Observed At

Last successful reconciler observation — freshness proof for the 5-second SLA.

string format: date-time Output only
zone_id

Zone Id

The zone this deployment target belongs to (FK to topology.zones(id), denormalised onto the row so AIP-160 filters can scope by zone without a JOIN). Populated by the K8s reconciler from the standard topology.kubernetes.io/zone label; empty when the label is absent. Used by compute’s scheduler feasibility check.

stringOutput only
next_page_token

A token, which can be sent as page_token to retrieve the next page. If this field is empty, there are no subsequent pages.

string
Example
{
"deployment_targets": [
{
"os": {
"bitness": "OS_BITNESS_UNSPECIFIED"
},
"cpu_topology": {
"byte_order": "BYTE_ORDER_UNSPECIFIED",
"min_frequency": {
"unit": "TOPOLOGY_CLOCK_SPEED_UNIT_UNSPECIFIED"
},
"max_frequency": {
"unit": "TOPOLOGY_CLOCK_SPEED_UNIT_UNSPECIFIED"
},
"architecture": "CPU_ARCHITECTURE_UNSPECIFIED"
},
"gpu_topology": [
{
"base_clock": {
"unit": "TOPOLOGY_CLOCK_SPEED_UNIT_UNSPECIFIED"
},
"boost_clock": {
"unit": "TOPOLOGY_CLOCK_SPEED_UNIT_UNSPECIFIED"
},
"vram": {
"size": {
"unit": "TOPOLOGY_DATA_UNIT_UNSPECIFIED"
},
"type": "VRAM_TYPE_UNSPECIFIED",
"memory_bus": {
"unit": "TOPOLOGY_DATA_UNIT_UNSPECIFIED"
}
},
"memory_bandwidth": {
"unit": "TOPOLOGY_DATA_TRANSFER_RATE_UNIT_UNSPECIFIED"
}
}
],
"memory_topology": {
"available_memory": {
"unit": "TOPOLOGY_DATA_UNIT_UNSPECIFIED"
},
"free_memory": {
"unit": "TOPOLOGY_DATA_UNIT_UNSPECIFIED"
},
"total_memory": {
"unit": "TOPOLOGY_DATA_UNIT_UNSPECIFIED"
},
"type": "MEMORY_TYPE_UNSPECIFIED"
},
"disks": [
{
"size": {
"unit": "TOPOLOGY_DATA_UNIT_UNSPECIFIED"
},
"free_space": {
"unit": "TOPOLOGY_DATA_UNIT_UNSPECIFIED"
},
"type": "DISK_TYPE_UNSPECIFIED",
"throughput": {
"read_speed": {
"unit": "TOPOLOGY_DATA_TRANSFER_RATE_UNIT_UNSPECIFIED"
},
"write_speed": {
"unit": "TOPOLOGY_DATA_TRANSFER_RATE_UNIT_UNSPECIFIED"
}
},
"iops": {
"ips": {
"unit": "TOPOLOGY_DURATION_UNIT_UNSPECIFIED"
},
"ops": {
"unit": "TOPOLOGY_DURATION_UNIT_UNSPECIFIED"
}
}
}
],
"network_info": {
"interfaces": [
{
"status": "NETWORK_STATUS_UNSPECIFIED",
"bandwidth": {
"download_speed": {
"unit": "TOPOLOGY_DATA_TRANSFER_RATE_UNIT_UNSPECIFIED"
},
"upload_speed": {
"unit": "TOPOLOGY_DATA_TRANSFER_RATE_UNIT_UNSPECIFIED"
},
"peak_download_speed": {
"unit": "TOPOLOGY_DATA_TRANSFER_RATE_UNIT_UNSPECIFIED"
},
"peak_upload_speed": {
"unit": "TOPOLOGY_DATA_TRANSFER_RATE_UNIT_UNSPECIFIED"
}
}
}
]
},
"tags": [
{
"type": "TOPOLOGY_TAG_TYPE_UNSPECIFIED"
}
]
}
]
}

Default error response

Media type application/json

The Status type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by gRPC. Each Status message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the API Design Guide.

object
code

The status code, which should be an enum value of [google.rpc.Code][google.rpc.Code].

integer format: int32
message

A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the [google.rpc.Status.details][google.rpc.Status.details] field, or localized by the client.

string
details

A list of messages that carry the error details. There is a common set of message types for APIs to use.

Array<object>

Contains an arbitrary serialized message along with a @type that describes the type of the serialized message.

object
@type

The type of the serialized message.

string
key
additional properties
any
Example generated
{
"code": 1,
"message": "example",
"details": [
{
"@type": "example"
}
]
}