Show / Hide Table of Contents

Class CreateApplicationVipDetails

Details to create an application virtual IP (VIP) address on a cloud VM cluster.

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

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

DbNodeId

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

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

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

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.

SubnetId

Declaration
[Required(ErrorMessage = "SubnetId is required.")]
[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.

Remarks

Required

In this article
Back to top