Show / Hide Table of Contents

Class OlvmDataCenter

An OLVM Data Center.

Inheritance
object
OlvmDataCenter
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.CloudmigrationsService.Models
Assembly: OCI.DotNetSDK.Cloudmigrations.dll
Syntax
public class OlvmDataCenter

Properties

Comment

Declaration
[JsonProperty(PropertyName = "comment")]
public string Comment { get; set; }
Property Value
Type Description
string

Free text containing comments about this object.

DataCenterStatus

Declaration
[JsonProperty(PropertyName = "dataCenterStatus")]
[JsonConverter(typeof(StringEnumConverter))]
public OlvmDataCenter.DataCenterStatusEnum? DataCenterStatus { get; set; }
Property Value
Type Description
OlvmDataCenter.DataCenterStatusEnum?

The status of data center

Description

Declaration
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
Property Value
Type Description
string

A human-readable description in plain text.

Id

Declaration
[JsonProperty(PropertyName = "id")]
public string Id { get; set; }
Property Value
Type Description
string

A unique identifier.

IsLocal

Declaration
[JsonProperty(PropertyName = "isLocal")]
public bool? IsLocal { get; set; }
Property Value
Type Description
bool?

Whether the data center is local.

Name

Declaration
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
Type Description
string

A human-readable name in plain text.

QuotaModeType

Declaration
[JsonProperty(PropertyName = "quotaModeType")]
[JsonConverter(typeof(StringEnumConverter))]
public OlvmDataCenter.QuotaModeTypeEnum? QuotaModeType { get; set; }
Property Value
Type Description
OlvmDataCenter.QuotaModeTypeEnum?

The type of quota mode

StorageFormat

Declaration
[JsonProperty(PropertyName = "storageFormat")]
[JsonConverter(typeof(StringEnumConverter))]
public OlvmDataCenter.StorageFormatEnum? StorageFormat { get; set; }
Property Value
Type Description
OlvmDataCenter.StorageFormatEnum?

Type which represents a format of storage domain

SupportedVersions

Declaration
[JsonProperty(PropertyName = "supportedVersions")]
public List<OlvmVersion> SupportedVersions { get; set; }
Property Value
Type Description
List<OlvmVersion>

List of supported versions.

Version

Declaration
[JsonProperty(PropertyName = "version")]
public OlvmVersion Version { get; set; }
Property Value
Type Description
OlvmVersion
In this article
Back to top