/** * 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. */ /** * The host iSCSI details. */ export interface OlvmIscsiDetails { /** * Address of iSCSI */ "address"?: string; /** * Disk ID of iSCSI */ "diskId"?: string; /** * Initiator of iSCSI */ "initiator"?: string; /** * LUN Mapping of iSCSI Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "lunMapping"?: number; /** * Number of paths of iSCSI Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "paths"?: number; /** * Port number of iSCSI Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "port"?: number; /** * Portal of iSCSI */ "portal"?: string; /** * Product ID of iSCSI */ "productId"?: string; /** * Serial of iSCSI */ "serial"?: string; /** * size of iSCSI Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "sizeInBytes"?: number; /** * Status of iSCSI */ "status"?: string; /** * Storage Domain ID of iSCSI */ "storageDomainId"?: string; /** * target of iSCSI */ "target"?: string; /** * Username of iSCSI */ "username"?: string; /** * Vendor ID of iSCSI */ "vendorId"?: string; /** * Volume Group ID of iSCSI */ "volumeGroupId"?: string; } export declare namespace OlvmIscsiDetails { function getJsonObj(obj: OlvmIscsiDetails): object; function getDeserializedJsonObj(obj: OlvmIscsiDetails): object; }