Retrieve all Sites
Retrieve all Sites for org.
User must have authorization role with PROVIDER_ADMIN or TENANT_ADMIN suffix. infrastructureProviderId or tenantId query parameter may be required for older API versions.
Query parameters
Filter Sites by Infrastructure Provider ID. Deprecated: Infrastructure Provider is now inferred from the org's membership.
Filter Sites by Tenant ID. Deprecated: Tenant is now inferred from the org's membership.
Filter Sites by Status. Can be specified multiple times to filter on more than one status
Filter Sites by native networking enabled flag. Requires Provider Admin role.
Filter Sites by network security group enabled flag. Requires Provider Admin role.
Filter Sites by NVLink partitioning enabled flag. Requires Provider Admin role.
Filter Sites by NICo Flow enabled flag. Requires Provider Admin role.
Include a breakdown of Machine counts by lifecycle status and health. Requires Provider Admin role.
Include a per-Site breakdown of GPU counts grouped by GPU type. Requires Provider Admin role.
Search for matches across all Sites. Input will be matched against name, description, location, contact, and status fields
Related entity to expand
One-indexed page number.
Page number for pagination query
Page size for pagination query
Ordering for pagination query
Response
OK
Example response
[
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"name": "San Jose Central 4",
"description": "Datacenter serving the San Jose central region",
"org": "qygdmg8oqik8",
"infrastructureProviderId": "5f2cc306-76e9-4fca-9186-950c9ef9a74e",
"siteControllerVersion": "0.1",
"siteAgentVersion": "0.1",
"registrationToken": "J7KO-89RR-Y7WQ-AD90",
"registrationTokenExpiration": "2019-08-25T12:00:00Z",
"serialConsoleHostname": "sjc.nico.acme.com",
"isSerialConsoleEnabled": true,
"serialConsoleIdleTimeout": 60,
"serialConsoleMaxSessionLength": 3600,
"isSerialConsoleSSHKeysEnabled": true,
"machineStats": {
"total": 15,
"totalByStatus": {
"Initializing": 0,
"Ready": 7,
"Reset": 0,
"Maintenance": 0,
"InUse": 3,
"Error": 5,
"Decommissioning": 0,
"Decommissioned": 0,
"Unknown": 0
},
"totalByHealth": {
"healthy": 12,
"unhealthy": 3
},
"totalByStatusAndHealth": {
"Initializing": {
"healthy": 0,
"unhealthy": 0
},
"Ready": {
"healthy": 5,
"unhealthy": 0
},
"Reset": {
"healthy": 0,
"unhealthy": 0
},
"Maintenance": {
"healthy": 5,
"unhealthy": 0
},
"InUse": {
"healthy": 3,
"unhealthy": 0
},
"Error": {
"healthy": 2,
"unhealthy": 3
},
"Decommissioning": {
"healthy": 0,
"unhealthy": 0
},
"Decommissioned": {
"healthy": 0,
"unhealthy": 0
},
"Unknown": {
"healthy": 0,
"unhealthy": 0
}
},
"totalByAllocation": {
"allocatedInUse": 3,
"allocatedNotInUse": 3,
"unallocated": 5
}
},
"gpuStats": [
{
"name": "NVIDIA GB200",
"gpus": 64,
"machines": 16
}
],
"capabilities": {
"nativeNetworking": true,
"networkSecurityGroup": true,
"nvLinkPartition": false,
"flow": false,
"imageBasedOperatingSystem": false,
"vpcSlaac": false
},
"isOnline": false,
"status": "Pending",
"statusHistory": [
{
"status": "Pending",
"message": "Request received, pending processing",
"created": "2019-08-24T14:15:22Z",
"updated": "2019-08-24T14:15:22Z"
}
],
"created": "2019-08-24T14:15:22Z",
"updated": "2019-08-24T14:15:22Z",
"location": {
"city": "San Jose",
"state": "CA",
"country": "USA"
},
"contact": {
"email": "johndoe@nvidia.com"
}
}
]Changes
Changed in 6 of the 90 revisions of this API.18
- ○
added the optional property
items/capabilities/dpsPowerManagementto the response with the200statusresponse-optional-property-added
- ○
- ○
added the optional property
items/machineStats/totalByStatus/Decommissioningto the response with the200statusresponse-optional-property-added
- ○
added the optional property
items/machineStats/totalByStatusAndHealth/Decommissioningto the response with the200statusresponse-optional-property-added
- ○
- ○
added the optional property
items/capabilities/vpcSlaacto the response with the200statusresponse-optional-property-added
- ○
- ●
for the
queryrequest parameterpageNumber, the max was set to21474836.00request-parameter-max-set
- ●
- ○
queryrequest parameterinfrastructureProviderIdwas deprecatedrequest-parameter-deprecated
- ○
queryrequest parametertenantIdwas deprecatedrequest-parameter-deprecated
- ○
- ○
added the new optional
queryrequest parameterincludeGpuStatsnew-optional-request-parameter
- ○
added the optional property
items/gpuStatsto the response with the200statusresponse-optional-property-added
- ○