Show / Hide Table of Contents

Class ExadataMemberSummary

Lists name, display name and type of exadata member.

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

Properties

DisplayName

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

Display Name of exadata member target

Remarks

Required

EntityType

Declaration
[Required(ErrorMessage = "EntityType is required.")]
[JsonProperty(PropertyName = "entityType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ExadataMemberSummary.EntityTypeEnum? EntityType { get; set; }
Property Value
Type Description
ExadataMemberSummary.EntityTypeEnum?

Entity type of exadata member target

Remarks

Required

Name

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

Name of exadata member target

Remarks

Required

In this article
Back to top