CreateProxyConfigurationDetails¶
-
class
oci.os_management_hub.models.
CreateProxyConfigurationDetails
(**kwargs)¶ Bases:
object
Information used to create the proxy configuration for a management station.
Methods
__init__
(**kwargs)Initializes a new CreateProxyConfigurationDetails object with values from keyword arguments. Attributes
forward
Gets the forward of this CreateProxyConfigurationDetails. hosts
Gets the hosts of this CreateProxyConfigurationDetails. is_enabled
[Required] Gets the is_enabled of this CreateProxyConfigurationDetails. port
Gets the port of this CreateProxyConfigurationDetails. -
__init__
(**kwargs)¶ Initializes a new CreateProxyConfigurationDetails object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - is_enabled (bool) – The value to assign to the is_enabled property of this CreateProxyConfigurationDetails.
- hosts (list[str]) – The value to assign to the hosts property of this CreateProxyConfigurationDetails.
- port (str) – The value to assign to the port property of this CreateProxyConfigurationDetails.
- forward (str) – The value to assign to the forward property of this CreateProxyConfigurationDetails.
-
forward
¶ Gets the forward of this CreateProxyConfigurationDetails. The URL the proxy will forward to.
Returns: The forward of this CreateProxyConfigurationDetails. Return type: str
-
hosts
¶ Gets the hosts of this CreateProxyConfigurationDetails. List of hosts.
Returns: The hosts of this CreateProxyConfigurationDetails. Return type: list[str]
-
is_enabled
¶ [Required] Gets the is_enabled of this CreateProxyConfigurationDetails. Indicates if the proxy should be enabled or disabled. Default is enabled.
Returns: The is_enabled of this CreateProxyConfigurationDetails. Return type: bool
-
port
¶ Gets the port of this CreateProxyConfigurationDetails. Listening port used for the proxy.
Returns: The port of this CreateProxyConfigurationDetails. Return type: str
-