/** * 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"; /** * An OLVM Data Center. */ export interface OlvmDataCenter { /** * Free text containing comments about this object. */ "comment"?: string; /** * A human-readable description in plain text. */ "description"?: string; /** * A unique identifier. */ "id"?: string; /** * A human-readable name in plain text. */ "name"?: string; /** * Whether the data center is local. */ "isLocal"?: boolean; /** * The type of quota mode */ "quotaModeType"?: OlvmDataCenter.QuotaModeType; /** * The status of data center */ "dataCenterStatus"?: OlvmDataCenter.DataCenterStatus; /** * Type which represents a format of storage domain */ "storageFormat"?: OlvmDataCenter.StorageFormat; /** * List of supported versions. */ "supportedVersions"?: Array; "version"?: model.OlvmVersion; } export declare namespace OlvmDataCenter { enum QuotaModeType { Audit = "AUDIT", Disabled = "DISABLED", Enabled = "ENABLED" } enum DataCenterStatus { Contend = "CONTEND", Maintenance = "MAINTENANCE", NotOperational = "NOT_OPERATIONAL", Problematic = "PROBLEMATIC", Uninitialized = "UNINITIALIZED", Up = "UP" } enum StorageFormat { V1 = "V1", V2 = "V2", V3 = "V3", V4 = "V4", V5 = "V5" } function getJsonObj(obj: OlvmDataCenter): object; function getDeserializedJsonObj(obj: OlvmDataCenter): object; }