Show / Hide Table of Contents

Class CloudGateExtServers

A list of Server Blocks on this Cloud Gate

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

Properties

HostName

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

Hostname for the Server block
SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
Remarks

Required

NginxSettings

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

More nginx Settings. JSON encoded text block
SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none

Port

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

Port for the Server Block
SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: true
  • returned: default
  • type: integer
  • uniqueness: none
Remarks

Required

ServerId

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

Server Name for the Server Block
SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none

Ssl

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

SSL flag for the Server Block
SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: true
  • returned: default
  • type: boolean
  • uniqueness: none
Remarks

Required

In this article
Back to top