Class RDP

java.lang.Object
com.strongdm.api.RDP
All Implemented Interfaces:
Resource

public class RDP extends Object implements Resource
  • Constructor Summary

    Constructors
    Constructor
    Description
    RDP()
     
  • Method Summary

    Modifier and Type
    Method
    Description
    The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1).
    boolean
    When set, network level authentication will not be used.
    A filter applied to the routing logic to pin datasource to nodes.
    boolean
    True if the datasource is reachable and the credentials are valid.
    The host to dial to initiate a connection from the egress node to this resource.
    Unique identifier of the Resource.
    boolean
    When set, require a resource lock to access the resource to ensure it can only be used by one user at a time.
    Unique human-readable name of the Resource.
    The password to authenticate with.
    int
    The port to dial to initiate a connection from the egress node to this resource.
    int
    The local port used by clients to connect to this resource.
    ID of the secret store containing credentials for this resource, if any.
    Subdomain is the local DNS address.
    Tags is a map of key, value pairs.
    The username to authenticate with.
    void
    The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1).
    void
    When set, network level authentication will not be used.
    void
    A filter applied to the routing logic to pin datasource to nodes.
    void
    setHealthy(boolean in)
    True if the datasource is reachable and the credentials are valid.
    void
    The host to dial to initiate a connection from the egress node to this resource.
    void
    Unique identifier of the Resource.
    void
    setLockRequired(boolean in)
    When set, require a resource lock to access the resource to ensure it can only be used by one user at a time.
    void
    Unique human-readable name of the Resource.
    void
    The password to authenticate with.
    void
    setPort(int in)
    The port to dial to initiate a connection from the egress node to this resource.
    void
    The local port used by clients to connect to this resource.
    void
    ID of the secret store containing credentials for this resource, if any.
    void
    Subdomain is the local DNS address.
    void
    Tags is a map of key, value pairs.
    void
    The username to authenticate with.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • RDP

      public RDP()
  • Method Details

    • getBindInterface

      public String getBindInterface()
      The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
      Specified by:
      getBindInterface in interface Resource
    • setBindInterface

      public void setBindInterface(String in)
      The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided.
      Specified by:
      setBindInterface in interface Resource
    • getDowngradeNlaConnections

      public boolean getDowngradeNlaConnections()
      When set, network level authentication will not be used. May resolve unexpected authentication errors to older servers. When set, healthchecks cannot detect if a provided username / password pair is correct.
    • setDowngradeNlaConnections

      public void setDowngradeNlaConnections(boolean in)
      When set, network level authentication will not be used. May resolve unexpected authentication errors to older servers. When set, healthchecks cannot detect if a provided username / password pair is correct.
    • getEgressFilter

      public String getEgressFilter()
      A filter applied to the routing logic to pin datasource to nodes.
      Specified by:
      getEgressFilter in interface Resource
    • setEgressFilter

      public void setEgressFilter(String in)
      A filter applied to the routing logic to pin datasource to nodes.
      Specified by:
      setEgressFilter in interface Resource
    • getHealthy

      public boolean getHealthy()
      True if the datasource is reachable and the credentials are valid.
    • setHealthy

      public void setHealthy(boolean in)
      True if the datasource is reachable and the credentials are valid.
    • getHostname

      public String getHostname()
      The host to dial to initiate a connection from the egress node to this resource.
    • setHostname

      public void setHostname(String in)
      The host to dial to initiate a connection from the egress node to this resource.
    • getId

      public String getId()
      Unique identifier of the Resource.
      Specified by:
      getId in interface Resource
    • setId

      public void setId(String in)
      Unique identifier of the Resource.
    • getLockRequired

      public boolean getLockRequired()
      When set, require a resource lock to access the resource to ensure it can only be used by one user at a time.
    • setLockRequired

      public void setLockRequired(boolean in)
      When set, require a resource lock to access the resource to ensure it can only be used by one user at a time.
    • getName

      public String getName()
      Unique human-readable name of the Resource.
      Specified by:
      getName in interface Resource
    • setName

      public void setName(String in)
      Unique human-readable name of the Resource.
      Specified by:
      setName in interface Resource
    • getPassword

      public String getPassword()
      The password to authenticate with.
    • setPassword

      public void setPassword(String in)
      The password to authenticate with.
    • getPort

      public int getPort()
      The port to dial to initiate a connection from the egress node to this resource.
    • setPort

      public void setPort(int in)
      The port to dial to initiate a connection from the egress node to this resource.
    • getPortOverride

      public int getPortOverride()
      The local port used by clients to connect to this resource.
    • setPortOverride

      public void setPortOverride(int in)
      The local port used by clients to connect to this resource.
    • getSecretStoreId

      public String getSecretStoreId()
      ID of the secret store containing credentials for this resource, if any.
      Specified by:
      getSecretStoreId in interface Resource
    • setSecretStoreId

      public void setSecretStoreId(String in)
      ID of the secret store containing credentials for this resource, if any.
      Specified by:
      setSecretStoreId in interface Resource
    • getSubdomain

      public String getSubdomain()
      Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
    • setSubdomain

      public void setSubdomain(String in)
      Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
    • getTags

      public Map<String,String> getTags()
      Tags is a map of key, value pairs.
      Specified by:
      getTags in interface Resource
    • setTags

      public void setTags(Map<String,String> in)
      Tags is a map of key, value pairs.
      Specified by:
      setTags in interface Resource
    • getUsername

      public String getUsername()
      The username to authenticate with.
    • setUsername

      public void setUsername(String in)
      The username to authenticate with.