CreatePortForwardingSessionTargetResourceDetails¶
-
class
oci.bastion.models.
CreatePortForwardingSessionTargetResourceDetails
(**kwargs)¶ Bases:
oci.bastion.models.create_session_target_resource_details.CreateSessionTargetResourceDetails
Details about a port forwarding session for a target resource.
Attributes
SESSION_TYPE_DYNAMIC_PORT_FORWARDING
str(object=’’) -> str SESSION_TYPE_MANAGED_SSH
str(object=’’) -> str SESSION_TYPE_PORT_FORWARDING
str(object=’’) -> str session_type
[Required] Gets the session_type of this CreateSessionTargetResourceDetails. target_resource_fqdn
Gets the target_resource_fqdn of this CreatePortForwardingSessionTargetResourceDetails. target_resource_id
Gets the target_resource_id of this CreatePortForwardingSessionTargetResourceDetails. target_resource_port
Gets the target_resource_port of this CreatePortForwardingSessionTargetResourceDetails. target_resource_private_ip_address
Gets the target_resource_private_ip_address of this CreatePortForwardingSessionTargetResourceDetails. Methods
__init__
(**kwargs)Initializes a new CreatePortForwardingSessionTargetResourceDetails object with values from keyword arguments. get_subtype
(object_dictionary)Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype. -
SESSION_TYPE_DYNAMIC_PORT_FORWARDING
= 'DYNAMIC_PORT_FORWARDING'¶
-
SESSION_TYPE_MANAGED_SSH
= 'MANAGED_SSH'¶
-
SESSION_TYPE_PORT_FORWARDING
= 'PORT_FORWARDING'¶
-
__init__
(**kwargs)¶ Initializes a new CreatePortForwardingSessionTargetResourceDetails object with values from keyword arguments. The default value of the
session_type
attribute of this class isPORT_FORWARDING
and it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class):Parameters: - session_type (str) – The value to assign to the session_type property of this CreatePortForwardingSessionTargetResourceDetails. Allowed values for this property are: “MANAGED_SSH”, “PORT_FORWARDING”, “DYNAMIC_PORT_FORWARDING”
- target_resource_id (str) – The value to assign to the target_resource_id property of this CreatePortForwardingSessionTargetResourceDetails.
- target_resource_private_ip_address (str) – The value to assign to the target_resource_private_ip_address property of this CreatePortForwardingSessionTargetResourceDetails.
- target_resource_fqdn (str) – The value to assign to the target_resource_fqdn property of this CreatePortForwardingSessionTargetResourceDetails.
- target_resource_port (int) – The value to assign to the target_resource_port property of this CreatePortForwardingSessionTargetResourceDetails.
-
static
get_subtype
(object_dictionary)¶ Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.
-
session_type
¶ [Required] Gets the session_type of this CreateSessionTargetResourceDetails. The session type.
Allowed values for this property are: “MANAGED_SSH”, “PORT_FORWARDING”, “DYNAMIC_PORT_FORWARDING”
Returns: The session_type of this CreateSessionTargetResourceDetails. Return type: str
-
target_resource_fqdn
¶ Gets the target_resource_fqdn of this CreatePortForwardingSessionTargetResourceDetails. The Fully Qualified Domain Name of the target resource that the session connects to.
Returns: The target_resource_fqdn of this CreatePortForwardingSessionTargetResourceDetails. Return type: str
-
target_resource_id
¶ Gets the target_resource_id of this CreatePortForwardingSessionTargetResourceDetails. The unique identifier (OCID) of the target resource (a Compute instance, for example) that the session connects to.
Returns: The target_resource_id of this CreatePortForwardingSessionTargetResourceDetails. Return type: str
-
target_resource_port
¶ Gets the target_resource_port of this CreatePortForwardingSessionTargetResourceDetails. The port number to connect to on the target resource.
Returns: The target_resource_port of this CreatePortForwardingSessionTargetResourceDetails. Return type: int
-
target_resource_private_ip_address
¶ Gets the target_resource_private_ip_address of this CreatePortForwardingSessionTargetResourceDetails. The private IP address of the target resource that the session connects to.
Returns: The target_resource_private_ip_address of this CreatePortForwardingSessionTargetResourceDetails. Return type: str
-