Show / Hide Table of Contents

Class Hostname

A hostname resource associated with a load balancer for use by one or more listeners.
Warning: Oracle recommends that you avoid using any confidential information when you supply string values using the API.

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

Properties

HostnameProp

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

A virtual hostname. For more information about virtual hostname string construction, see Managing Request Routing.
Example: app.example.com

Remarks

Required

Name

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

A friendly name for the hostname resource. It must be unique and it cannot be changed. Avoid entering confidential information.
Example: example_hostname_001

Remarks

Required

In this article
Back to top