Show / Hide Table of Contents

Class HostInfo

The Host Info.

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

Properties

HostCores

Declaration
[Required(ErrorMessage = "HostCores is required.")]
[JsonProperty(PropertyName = "hostCores")]
public int? HostCores { get; set; }
Property Value
Type Description
int?

Number of host cores.

Remarks

Required

HostName

Declaration
[Required(ErrorMessage = "HostName is required.")]
[JsonProperty(PropertyName = "hostName")]
public string HostName { get; set; }
Property Value
Type Description
string

The name of the host.

Remarks

Required

In this article
Back to top