Show / Hide Table of Contents

Class CreateRestDetails

Details required to configure REST while creating a DB System.

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

Properties

Configuration

Declaration
[Required(ErrorMessage = "Configuration is required.")]
[JsonProperty(PropertyName = "configuration")]
[JsonConverter(typeof(StringEnumConverter))]
public RestConfigurationType? Configuration { get; set; }
Property Value
Type Description
RestConfigurationType?

Select how REST is configured across the DB System instances.

Remarks

Required

Port

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

The port for REST to listen on. Supported port numbers are 443 and from 1024 to 65535.

In this article
Back to top