/** * Oracle Cloud Migrations API * A description of the Oracle Cloud Migrations API. * OpenAPI spec version: 20220919 * * * NOTE: This class is auto generated by OracleSDKGenerator. * Do not edit the class manually. * * Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ import * as model from "../model"; /** * Information describing the operating system. This is used for both virtual machines and hosts. */ export interface OlvmOperatingSystem { /** * Configuration of the boot sequence of a virtual machine. */ "boot"?: Array; /** * Custom kernel parameters for starting the virtual machine if Linux operating system is used. */ "cmdLine"?: string; /** * A custom part of the host kernel command line. */ "customKernelCmdLine"?: string; /** * Path to custom initial ramdisk on ISO storage domain if Linux operating system is used. */ "initRd"?: string; /** * Path to custom kernel on ISO storage domain if Linux operating system is used. */ "kernel"?: string; /** * The host kernel command line as reported by a running host. */ "reportedKernelCmdLine"?: string; /** * Operating system name in human readable form */ "type"?: string; "version"?: model.OlvmVersion; } export declare namespace OlvmOperatingSystem { function getJsonObj(obj: OlvmOperatingSystem): object; function getDeserializedJsonObj(obj: OlvmOperatingSystem): object; }