Show / Hide Table of Contents

Class CreateProxyConfigurationDetails

Information used to create the proxy configuration for a management station.

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

Properties

Forward

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

The URL the proxy will forward to.

Hosts

Declaration
[JsonProperty(PropertyName = "hosts")]
public List<string> Hosts { get; set; }
Property Value
Type Description
List<string>

List of hosts.

IsEnabled

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

Indicates if the proxy should be enabled or disabled. Default is enabled.

Remarks

Required

Port

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

Listening port used for the proxy.

In this article
Back to top