/** *

The devices that are available on the container instance. The only supported device type is a GPU.

*/ export interface _PlatformDevice { /** *

The ID for the GPU(s) on the container instance. The available GPU IDs can also be obtained on the container instance in the /var/lib/ecs/gpu/nvidia_gpu_info.json file.

*/ id: string; /** *

The type of device that is available on the container instance. The only supported value is GPU.

*/ type: "GPU" | string; } export declare type _UnmarshalledPlatformDevice = _PlatformDevice;