Skip to main content
PUT
/
systems
/
{id}
/
attributes
Modify System Attributes
curl --request PUT \
  --url https://{host}/systems/{id}/attributes \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '[
  {
    "name": "Observed Uptime",
    "value": "0.33"
  },
  {
    "name": "Cost",
    "value": "17"
  }
]'
{
  "id": "<string>",
  "name": "<string>",
  "href": "<string>",
  "resource_id": "<string>",
  "type": "host",
  "platform": "VMWARE",
  "platform_model": "<string>",
  "total_physical_cpus": "<string>",
  "total_logical_cpus": "<string>",
  "cores_per_cpu": "<string>",
  "threads_per_core": "<string>",
  "memory": "<string>",
  "parent": "<string>",
  "children": "<string>",
  "manufacturer": "<string>",
  "os": "<string>",
  "os_patch_level": "<string>",
  "os_version": "<string>",
  "ip_address": "<string>",
  "mac_address": "<string>",
  "entity_role_name": "<string>",
  "entity_type": "<string>",
  "control_environment": {
    "id": "<string>",
    "name": "<string>",
    "platform_category": "External Cloud",
    "href": "<string>",
    "icon": "<string>"
  },
  "infrastructure_group": {
    "id": "<string>",
    "name": "<string>",
    "href": "<string>"
  },
  "cpu_benchmarks": [
    {
      "name": "CINT2000",
      "score_type": "cint2000",
      "value": 123
    }
  ],
  "I/O_benchmarks": [
    {
      "name": "Maximum Disk Throughput (bytes/s)",
      "score_type": "disk",
      "value": 123
    }
  ],
  "attributes": [
    {
      "id": "<string>",
      "name": "<string>",
      "value": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Densify unique system ID

Body

application/json · object[]

Array of attributes to set/add

name
string
required
value
string
required

Response

System with attributes modified

A discovered system

id
string
required

Densify unique system ID

name
string
required
href
string
required
resource_id
string

Cloud/provider unique ID (when applicable)

type
enum<string>

System type

Available options:
host,
guest,
vm,
arm_vm,
classic_vm,
rds,
asg,
ecs_svc
platform
enum<string>

System platform

Available options:
VMWARE,
HMC,
AWS,
GCP,
AZURE,
CONTAINERS
platform_model
string

Host model (hosts) or instance type (cloud instances)

total_physical_cpus
string

Secondary sort key for sort_by=size

total_logical_cpus
string
cores_per_cpu
string

Tertiary sort key for sort_by=size

threads_per_core
string
memory
string

Normalized total memory (MB). Primary sort key within size

parent
string

Parent host name for VMs; "N/A" for hosts

children
string

Number of child systems (returned when details=true and applicable)

manufacturer
string

Returned when details=true

os
string

Returned when details=true

os_patch_level
string
os_version
string
ip_address
string
mac_address
string
entity_role_name
string

Role derived from platform/role (e.g., VMWARE_VM)

entity_type
string

Entity type derived from platform/system type

control_environment
object
infrastructure_group
object
cpu_benchmarks
object[]
I/O_benchmarks
object[]
attributes
object[]