Show / Hide Table of Contents

Class ApplicationVip

Details of an application virtual IP (VIP) address.

Inheritance
object
ApplicationVip
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 ApplicationVip

Properties

CloudVmClusterId

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

The OCID of the cloud VM cluster associated with the application virtual IP (VIP) address.

Remarks

Required

CompartmentId

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

The OCID of the compartment.

DefinedTags

Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.

FreeformTags

Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type Description
Dictionary<string, string>

Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags.
Example: {"Department": "Finance"}

HostnameLabel

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

The hostname of the application virtual IP (VIP) address.

Remarks

Required

Id

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

The OCID of the application virtual IP (VIP) address.

Remarks

Required

IpAddress

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

The application virtual IP (VIP) IPv4 address.

Ipv6Address

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

The application virtual IP (VIP) IPv6 address.

LifecycleDetails

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

Additional information about the current lifecycle state of the application virtual IP (VIP) address.

LifecycleState

Declaration
[Required(ErrorMessage = "LifecycleState is required.")]
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ApplicationVip.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
ApplicationVip.LifecycleStateEnum?

The current lifecycle state of the application virtual IP (VIP) address.

Remarks

Required

SubnetId

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

The OCID of the subnet associated with the application virtual IP (VIP) address.

TimeAssigned

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

The date and time when the create operation for the application virtual IP (VIP) address completed.

Remarks

Required

In this article
Back to top