Class UpdateProxyConfigurationDetails
Provides the information used to update the proxy configuration for a management station.
Inherited Members
Namespace: Oci.OsmanagementhubService.Models
Assembly: OCI.DotNetSDK.Osmanagementhub.dll
Syntax
public class UpdateProxyConfigurationDetails
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. |