1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 import { Resource } from 'models/resource';
7 export interface NodeResource extends Resource {
17 properties: NodeProperties;
20 export interface NodeInfo {
23 ec2_instance_id: string;
27 export interface NodeProperties {
28 cloud_node: CloudNode;
30 total_cpu_cores: number;
31 total_scratch_mb: number;