Show / Hide Table of Contents

Class ExadataInfrastructureContact

Contact details for Exadata Infrastructure.

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

Properties

Email

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

The email for the Exadata Infrastructure contact.

Remarks

Required

IsContactMosValidated

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

If true, this Exadata Infrastructure contact is a valid My Oracle Support (MOS) contact. If false, this Exadata Infrastructure contact is not a valid MOS contact.

IsPrimary

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

If true, this Exadata Infrastructure contact is a primary contact. If false, this Exadata Infrastructure is a secondary contact.

Remarks

Required

Name

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

The name of the Exadata Infrastructure contact.

Remarks

Required

PhoneNumber

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

The phone number for the Exadata Infrastructure contact.

In this article
Back to top