/** *

Describes the virtual private server (or instance) status.

*/ export interface _InstanceState { /** *

The status code for the instance.

*/ code?: number; /** *

The state of the instance (e.g., running or pending).

*/ name?: string; } export declare type _UnmarshalledInstanceState = _InstanceState;