Show / Hide Table of Contents

Class CreatePortForwardingSessionTargetResourceDetails

Details about a port forwarding session for a target resource.

Inheritance
object
CreateSessionTargetResourceDetails
CreatePortForwardingSessionTargetResourceDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.BastionService.Models
Assembly: OCI.DotNetSDK.Bastion.dll
Syntax
public class CreatePortForwardingSessionTargetResourceDetails : CreateSessionTargetResourceDetails

Properties

TargetResourceFqdn

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

The Fully Qualified Domain Name of the target resource that the session connects to.

TargetResourceId

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

The unique identifier (OCID) of the target resource (a Compute instance, for example) that the session connects to.

TargetResourcePort

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

The port number to connect to on the target resource.

TargetResourcePrivateIpAddress

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

The private IP address of the target resource that the session connects to.

In this article
Back to top