/** * 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. */ /** * Logical unit of the host storage. */ export interface LogicalUnit { /** * Address of the logical unit. */ "address"?: string; /** * The maximum number of bytes that can be discarded by the logical unit???s underlying storage in a single operation. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "discardMaxSizeInBytes"?: number; /** * True, if previously discarded blocks in the logical unit???s underlying storage are read back as zeros. */ "isDiscardZeroesData"?: boolean; /** * Disk ID of the logical unit. */ "diskId"?: string; /** * a unique identifier. */ "id"?: string; /** * LUN Mapping Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "lunMapping"?: number; /** * LUN Status */ "lunStatus"?: LogicalUnit.LunStatus; /** * Password of the logical unit. */ "password"?: string; /** * Paths of the logical unit. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "paths"?: number; /** * Port of the logical unit. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "port"?: number; /** * Portal of the logical unit. */ "portal"?: string; /** * Product ID of the logical unit. */ "productId"?: string; /** * Serial of the logical unit. */ "serial"?: string; /** * Size of the logical unit. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "size"?: number; /** * Storage Domain ID of the logical unit. */ "storageDomainId"?: string; /** * Target of the logical unit. */ "target"?: string; /** * Username of the logical unit. */ "username"?: string; /** * Vendor ID of the logical unit. */ "vendorId"?: string; /** * Volume Group ID of the logical unit. */ "volumeGroupId"?: string; } export declare namespace LogicalUnit { enum LunStatus { Free = "FREE", Unusable = "UNUSABLE", Used = "USED" } function getJsonObj(obj: LogicalUnit): object; function getDeserializedJsonObj(obj: LogicalUnit): object; }