Class Endpoint
Combination of DNS server name and port.
Inherited Members
Namespace: Oci.FilestorageService.Models
Assembly: OCI.DotNetSDK.Filestorage.dll
Syntax
public class Endpoint
Properties
Hostname
Declaration
[Required(ErrorMessage = "Hostname is required.")]
[JsonProperty(PropertyName = "hostname")]
public string Hostname { get; set; }
Property Value
| Type | Description |
|---|---|
| string | Name of the DNS server. |
Remarks
Required
Port
Declaration
[Required(ErrorMessage = "Port is required.")]
[JsonProperty(PropertyName = "port")]
public long? Port { get; set; }
Property Value
| Type | Description |
|---|---|
| long? | Port of the DNS server. |
Remarks
Required